/*
  reset
-------------------------------*/
html {
  font-size: 62.5%;
  width: 100%;
}
body {
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  width: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
small {
  font-size: 100%;
}
q:before, q:after {
  content: '';
}
abbr, acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input, textarea, select {
  *font-size: 100%;
}
legend {
  color: #000;
}
img {
  vertical-align: bottom;
  width: 100%;
}
main {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  base
-------------------------------*/
body {
  color: #857b3b;
  font-family: "Bodoni Moda", "Noto Serif JP", "Georgia", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  font-feature-settings: "palt";
  font-kerning: auto;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
.pc {
  display: none !important;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
/*
  scroll-effect
-------------------------------*/
/* フェードイン(初期値) */
.scroll-frombelow {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(60px); /* 下に60pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.scroll-frombelow.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 60px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
/*
  gnav
-------------------------------*/
/* toggle btn */
.nav__toggle {
  /*  background: url(../images/icon_bg_nav.svg) no-repeat center;*/
  background-size: contain;
  cursor: pointer;
  display: block;
  height: 38px;
  margin: .2em 1em 0;
  position: relative;
  right: 0;
  top: 0;
  width: 38px;
  z-index: 1000;
}
.nav__toggle span {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #e95935;
  border-radius: 0;
  display: block;
  height: 2px;
  left: -25%;
  position: absolute;
  width: 100%;
}
.nav__toggle span:nth-of-type(1) {
  top: 12px;
}
/*
.nav__toggle span:nth-of-type(2) {
  top: 18px;
}
*/
.nav__toggle span:nth-of-type(2) {
  top: 24px;
}
.nav__toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
/*
.nav__toggle.active span:nth-of-type(2) {
  opacity: 0;
}
*/
.nav__toggle.active span:nth-of-type(2) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
/* nav contents*/
.nav__contents {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #ffeb2a;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
}
/*
.nav__contents__wrap {
  height: 100vh;
  overflow-y: scroll;
	
}
*/
.gnav {
  background: #ffeb2a;
  color: #fff;
  padding: 4em 2em 2em;
  border-radius: 0 0 0 6em;
}
.gnav__item__list {
  margin-top: 2.5em;
}
.gnav__item {
  width: 100%;
  font-size: 1.8rem;
  color: #857b3b;
}
.gnav__item a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: .5em;
}
.gnav__item a::before {
  background: url(../images/icon_heart.png) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 1em;
  margin-right: 1em;
  width: 1em;
}
/* toggle active */
.js-toggle.active + .nav__contents {
  opacity: 1;
  right: 0;
  visibility: inherit;
  z-index: 999;
  border-radius: 0 0 0 6em;
}
.js-toggle-mask.active {
  position: fixed;
}
@media (min-width: 768px) {
  /* toggle btn */
  .nav__toggle {
    height: 70px;
    margin: 0;
    position: fixed;
    right: 20px;
    top: 2px;
    width: 60px;
  }
  .nav__toggle span {
    height: 3px;
  }
  .nav__toggle span:nth-of-type(1) {
    top: 24px;
  }
  /*
  .nav__toggle span:nth-of-type(2) {
    top: 32px;
  }
*/
  .nav__toggle span:nth-of-type(2) {
    top: 40px;
  }
  .nav__toggle.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .nav__toggle.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  /* nav contents*/
  .nav__contents {
    background: none;
    opacity: 0;
    right: 0;
    visibility: hidden;
    width: auto;
    z-index: -1;
  }
  .nav__contents__wrap {
    height: auto;
    overflow: auto;
  }
  .gnav {
    background-color: rgba(255, 235, 42, 1);
    /*    margin: 2px 1em 0 0;*/
    padding: 3.5em 3.5em 3.5em 1em;
  }
  .gnav__item__list {
    padding: 2em 0 0 1em;
    margin-top: 0;
  }
}
/*
  gnavbar(pc)
-------------------------------*/
.navbar {}
.gnavbar {
  margin: -1em 5.5em 0 0;
}
.gnavbar__item__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.gnavbar__item {
  margin: 1em 1em 0 0;
  padding: .2em 1em;
  background-color: #ffeb2a;
  border-radius: 1em;
}
.gnavbar__item :hover {
  color: rgba(233, 89, 53, 1);
}
/*
  header
-------------------------------*/
.header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.hd__contents {
  height: 100%;
  margin: 0 1em;
}
.hd__contents__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.hd__contents__ttl {
  margin-top: .5em;
  width: 120px;
  z-index: 2000;
}
.sns__contents {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2em 6em 0 0;
  z-index: 2000;
}
.sns__contents__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.sns__contents__list li {
  color: #fff;
  height: 38px;
  margin-right: .5em;
  width: 38px;
}
.sns__contents__list a {
  display: block;
  height: 100%;
  width: 100%;
}
.sns__contents__list .instagram {
  background: url(../images/logo_insta.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list .twitter {
  background: url(../images/logo_twitter.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list .line {
  background: url(../images/logo_line.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list li:last-of-type {
  margin-right: 0;
}
@media (min-width: 768px) {
  .hd__contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0 2em;
    padding: .5em 0;
    width: 100%;
  }
  .hd__contents__ttl {
    margin-top: 0;
    /*    width: 360px;*/
  }
  .place__logo__list {
    margin-left: 1em;
    margin-top: 0;
  }
  .place__logo__list li {
    margin-left: .5em;
    width: 56px;
  }
  .sns__contents {
    margin: 1em 1em 0 0;
    position: absolute;
    z-index: 2000;
  }
  .sns__contents__list li {
    cursor: pointer;
    height: 40px;
    margin-right: 0;
    width: 40px;
  }
  .sns__contents__list .instagram, .sns__contents__list .twitter, .sns__contents__list .line {
    background-size: 70%;
  }
}
/*
  footer
-------------------------------*/
.footer {
  background-color: #d9ef54;
  color: #857b3b;
}
.ft__container {
  padding: 2em 0;
}
.credit__logo__list {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.credit__logo__list li {
  padding: .2em .5em 1em;
  margin-bottom: .8em;
}
.credit__logo__list li img {
  max-height: 140px;
  max-width: 200px
}
.credit__contents__list {
  text-align: center;
}
.credit__contents__list li a {
  text-decoration: underline;
}
.credit__contents__list li :hover {
  color: rgba(233, 89, 53, 1);
}
.policy {
  color: rgba(133, 123, 59, 1);
  font-size: 1.2rem;
  padding: 0 1em;
  text-align: center;
  text-decoration: underline;
}
.copyright {
  color: rgba(133, 123, 59, 1);
  font-size: 1.2rem;
  padding: .5em 1em 1em;
  text-align: center;
}
.policy :hover {
  color: rgba(233, 89, 53, 1);
}
@media (min-width: 768px) {
  /*
  .ft__container {
    padding: 0;
  }
*/
  .credit__logo__list li {
    padding: .2em 1em 1em;
  }
  .policy {
    font-size: 1.4rem;
    /*    margin-right: 2em;*/
    padding: 0 1em;
  }
  .copyright {
    font-size: 1.4rem;
    /*    margin-right: 2em;*/
    padding: .5em 1em 1em;
  }
}
/*
  module
-------------------------------*/
.contents {
  padding-bottom: 2em;
}
.container {
  margin: 0 1em;
}
.sec__container {
  padding: 3.8em .5em .5em;
}
@media (min-width: 768px) {
  .contents {
    padding: 0 2em 2em;
  }
  .container {
    margin: 0 auto;
    max-width: 1144px;
    /*    max-width: 90vw;*/
    padding-left: 2em;
    padding-right: 2em;
  }
  .container > * {
    box-sizing: border-box;
  }
  .sec__container {
    padding: 8.2em 2em 1em;
  }
}
.sec__ttl {
  font-size: 2.45rem;
  margin-bottom: 1em;
  padding: .5em 0 .7em;
  position: relative;
  text-align: center;
  line-height: 1.1;
  z-index: 100;
}
.sec__ttl__grn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/img_ttl-green.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  right: 0;
  z-index: -100;
}
.sec__ttl__beg::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/img_ttl-beige.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  right: 0;
  z-index: -100;
}
.sec__ttl__yel::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/img_ttl-yellow.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  right: 0;
  z-index: -100;
}
.sec__ttl__orn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/img_ttl-orange.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  right: 0;
  z-index: -100;
}
.sec__ttl span {
  position: relative;
}
@media (min-width: 768px) {
  .sec__ttl {
    font-size: 4rem;
  }
}
.bg__curve {
  position: relative;
  /*  line-height: 1.0em;*/
}
.bg__curve img {
  position: absolute;
  box-sizing: content-box;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
}
.ft-ss {
  font-size: 45%;
}
.ft-s {
  font-size: 60%;
}
.ft-m {
  font-size: 80%;
}
.ft-l {
  font-size: 120%;
}
.ft-ll {
  font-size: 150%;
}
.txt-more {
  color: #857b3b;
  font-size: 2.1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .txt-more {
    font-size: 3.2rem;
  }
}
.link__btn {
  background-color: #e95935;
  /*  border-radius: 50px;*/
  color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.link__btn > * {
  display: block;
  padding: .75em;
}
@media (min-width: 768px) {
  .link__btn {
    font-size: 2rem;
  }
  .link__btn > * {
    display: block;
    padding: .75em;
  }
  .btn {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border: 2px solid #e95935;
  }
  .btn:hover {
    background-color: #fff;
    color: #e95935;
  }
}
.mw-200 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .mw-300 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-400 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-500 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.link__txt span {
  text-decoration: underline;
}
.link__txt :hover {
  color: rgba(233, 89, 53, 1);
}
.lay__col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.lay__col > * {
  margin-bottom: 1em;
  margin-right: 1em;
}
.lay__col.col1 > * {
  margin-right: 0;
  width: 100%;
}
.lay__col.col1 > *:last-of-type {
  /*  margin-bottom: 0;*/
  margin-right: 0;
}
.lay__col.col2 > * {
  width: calc((100% - 1em) / 2);
}
.lay__col.col2 > *:nth-of-type(2n) {
  margin-right: 0;
}
.lay__col.col3 > * {
  width: calc((100% - 2em) / 3);
}
.lay__col.col3 > *:nth-of-type(3n) {
  margin-right: 0;
}
@media (min-width: 768px) {
  .lay__col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lay__col.col1 > * {
    margin-right: 1em;
  }
  .lay__col.col2 > *:nth-of-type(2n) {
    margin-right: 1em;
  }
  .lay__col.col2-pc > * {
    width: calc((100% - 1em) / 2);
  }
  .lay__col.col2-pc > *:nth-of-type(2n) {
    margin-right: 0;
  }
  .lay__col.col3-pc > * {
    width: calc((100% - 2em) / 3);
  }
  .lay__col.col3-pc > *:nth-of-type(3n) {
    margin-right: 0;
  }
  .lay__col.col4-pc > * {
    width: calc((100% - 3.1em) / 4);
  }
  .lay__col.col4-pc > *:nth-of-type(4n) {
    margin-right: 0;
  }
}
/*
  main
-------------------------------*/
body {
  background-color: #fff596;
}
.main {
  background-color: #fff596;
  margin-top: 45px;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .main {
    margin-top: 76px;
  }
}
/*
  totop
-------------------------------*/
.totop {
  background-color: #fff596;
  color: #857b3b;
  /*  padding-bottom: 2em;*/
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.page-note {
  background-color: #fff596;
}
.totop a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  align-items: center;
  /*
  border: 4px solid;
  border-radius: 50%;
*/
  margin: -1em auto;
}
@media (min-width: 768px) {
  .totop a {
    margin: 0 1em 0 auto;
  }
}
.totop a::before {
  background: url(../images/img_totop-gld.svg) no-repeat center;
  background-size: 50%;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.totop a:hover::before {
  background: url(../images/img_totop-red.svg) no-repeat center;
  background-size: 50%;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  /*
  .totop {
    padding-bottom: 4em;
  }
*/
  .totop a {
    margin: 0 2em 0 auto;
  }
}
/*
  parts
-------------------------------*/
/* hero */
.hero {
  background-color: #fff596;
  padding: 0;
  margin-top: -3.5em;
  /*
  background-image: url("../images/loading.gif");
  background-repeat: no-repeat;
  background-position: right 50% bottom 75%;
*/
}
.hero__contents {
  margin: 0;
}
.logo__ttl {
  margin: 1em auto;
  max-width: 90%;
}
.hero__date {
  background-color: #fff596;
  color: #857b3b;
  padding: .5em 1em 1em;
  text-align: center;
}
.hero__date .date {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: .25em;
}
.hero__date .info p {
  text-align: justify;
  margin: 0 auto 3em;
}
.hero__date .date span {
  line-height: 1;
  padding-bottom: .1em;
  vertical-align: 10%;
}
.hero__date .info span {
  display: inline-block;
}
.hero__date .info a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .hero {
    margin-top: -4.8em;
  }
  .hero__contents {
    max-width: none;
    padding: 0;
  }
  .hero__img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .logo__ttl {
    margin: .5em auto;
    max-width: 50em;
  }
  .hero__date {
    font-size: 2.4rem;
    padding: 1em 2em;
  }
  .hero__date .date {
    font-size: 5rem;
    margin-bottom: .2em;
  }
  .hero__date .info p {
    max-width: 1050px;
    font-size: 1.8rem;
  }
}
/* icon(3つのイベント) */
.icon3 {
  margin: 1em auto 2em;
}
.icon3 li {
  margin-top: .5em;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.icon3 li p {
  margin: 1em auto;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: justify;
}
/*
.icon3 a {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
*/
.icon3 a:hover {
  color: rgba(233, 89, 53, 1);
}
.icon__live a::before {
  background: url(../images/icon_live.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.icon__live a:hover::before {
  background: url(../images/icon_live-red.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.icon__talk a::before {
  background: url(../images/icon_talk.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.icon__talk a:hover::before {
  background: url(../images/icon_talk-red.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.icon__shop a::before {
  background: url(../images/icon_shop.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
.icon__shop a:hover::before {
  background: url(../images/icon_shop-red.svg) no-repeat center;
  background-size: contain;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .icon3 {
    max-width: 975px;
  }
  /*
  .icon3 .col3-pc li {
    padding: 0 .5em;
  }
  .icon3 .col3-pc li:first-of-type {
    padding: 0 1em 0 0;
  }
  .icon3 .col3-pc li:last-of-type {
    padding: 0 0 0 1em;
  }
*/
  .icon3 li p {
    margin: 1em auto;
    font-size: 1.8rem;
    line-height: 2.4rem;
    text-align: center;
  }
  .icon__live a::before {
    height: 200%;
    width: 100%;
  }
  .icon__live a:hover::before {
    height: 200%;
    width: 100%;
  }
  .icon__talk a::before {
    height: 200%;
    width: 100%;
  }
  .icon__talk a:hover::before {
    height: 200%;
    width: 100%;
  }
  .icon__shop a::before {
    height: 200%;
    width: 100%;
  }
  .icon__shop a:hover::before {
    height: 200%;
    width: 100%;
  }
}
/*
  js
-------------------------------*/
.js-modal-open {
  cursor: pointer;
}
#modal .js-modal-close {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
  height: 100vh;
  margin-bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}
#modal .js-modal-close::after {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0px;
  right: 0px;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  content: '×';
  font-size: 3rem;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  line-height: 1;
  right: 1em;
  top: 1em;
  width: 50px;
}
#modal .js-modal-close img {
  display: block;
  max-height: 90%;
  max-width: 90%;
  padding: 2em;
  margin: 6em auto;
}
@media screen and (min-width: 768px) {
  #modal .js-modal-close::after {
    right: 2em;
    top: 2em;
  }
  #modal .js-modal-close img {
    width: 90vh;
    height: 90vh;
    margin: 2em auto;
  }
}
/* introduction */
#introduction {
  background: linear-gradient(#fff596, #ffeb2a);
  padding: 4em 1em 2em;
}
.bg__introduction {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.bg__introduction img {
  position: absolute;
  max-width: 70%;
  opacity: .15;
}
#introduction p {
  position: relative;
  text-align: center;
  color: #e95935;
  font-size: 1.5rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  #introduction {
    padding: 8em 1em 2em;
  }
  .bg__introduction img {
    max-width: 30%;
  }
  #introduction p {
    font-size: 2.4rem;
  }
}
/* shop */
/*
.shop__txt__list + .btn {
  margin-top: 2em;
}
*/
.shop__days {
  background: linear-gradient(transparent 60%, #d9ef54 60%);
}
.gmap__link {
  font-size: 1.2rem;
}
.menu__price {
  font-size: 1.2rem;
  text-align: right;
}
/* shop-accordion */
.accordion__container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  /*  cursor: pointer;*/
  /*	    border-bottom: 1px solid;*/
  margin-bottom: 1em;
}
.accordion__container:last-of-type {
  margin-bottom: 0;
}
.accordion__container .accordion__ttl {
  display: block;
  position: relative;
  margin: 0;
  color: #857B3B;
  background: #FFF596;
  cursor: pointer;
}
.accordion__container .accordion__ttl:hover, .accordion__container .accordion__ttl:active, .accordion__container .content__entry.open .accordion__ttl {
  color: rgba(233, 89, 53, 1);
}
.accordion__container .accordion__ttl:hover i:before, .accordion__container .accordion__ttl:hover i:active, .accordion__container .content__entry.open i {
  color: rgba(233, 89, 53, 1);
}
.accordion__ttl {
  position: relative;
  margin-bottom: 1em;
}
.accordion__ttl:after {
  content: "";
  position: absolute;
  right: 0;
  top: 88%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #857B3B;
  border-right: solid 2px #857B3B;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion__ttl.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 88%;
}
.accordion__content {
  border-top: 2px dashed rgba(233, 89, 53, 1);
  display: none;
  padding: 1em 0;
}
@media (min-width: 768px) {
  .accordion__ttl {
    font-size: 1.6rem;
  }
  .accordion__content {
    font-size: 1.4rem;
  }
  .accordion__content .sns__links {
    font-size: 1.4rem;
  }
}
/* shop */
.shop__item {
  background-color: #fff596;
  overflow: hidden;
  position: relative;
  border-radius: 1em;
  margin-bottom: 1em;
}
.shop__item.new::before {
  background-color: #ff3178;
  content: 'NEW';
  color: #fff;
  display: block;
  font-size: 10px;
  left: 0;
  line-height: 1;
  padding: .25em;
  position: absolute;
  top: 0;
  z-index: 10;
}
.shop__item img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}
.shop__name {
  /*
  position: absolute;
  top: 0px;
  left: 0px;
*/
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  background-color: rgba(233, 89, 53, 1);
  color: #fff;
  bottom: 0;
  font-size: 1.6rem;
  height: 48px;
  line-height: 1.4;
  padding: .2em .2em .1em;
  text-align: center;
  top: auto;
  width: 100%;
  border-radius: 0 0 1em 1em;
  margin-bottom: 2em;
}
.shop__name.ft-s {
  font-size: 80%;
}
@media (min-width: 768px) {
  /*
  .shop__item:hover img {
    transform: scale(1.2);
  }
*/
  .shop__name {
    height: 56px;
    line-height: 1.4;
    top: auto;
    width: 100%;
  }
  /*
  .shop__name.ft-s {
    font-size: 1.8rem;
  }
*/
}
/* live */
#sec-live {
  background-color: #d9ef54;
}
#sec-live .btn {
  margin-top: 2em;
}
.live__visual {
  padding-bottom: 2em;
}
.live__days {
  text-align: center;
  margin-bottom: 1em;
}
.live__days span {
  font-size: 3rem;
  background: linear-gradient(transparent 60%, #ffeb2a 60%);
}
#sec-live .live__days span {
  font-size: 3rem;
  background: linear-gradient(transparent 60%, #fff596 60%);
}
#sec-live .accordion__ttl {
  background-color: #d9ef54;
}
@media (min-width: 768px) {
  #sec-live .col3-pc li {
    padding: 0 .5em;
  }
  #sec-live .col3-pc li:first-of-type {
    padding: 0 1em 0 0;
  }
  #sec-live .col3-pc li:last-of-type {
    padding: 0 0 0 1em;
  }
}
/* talk */
#sec-talk {
  background-color: #fbd78a;
}
#sec-talk .accordion__ttl {
  background-color: #fbd78a;
}
#sec-talk .live__days {
  margin-bottom: 1em;
}
#sec-talk .live__days span {
  font-size: 2rem;
  background: linear-gradient(transparent 60%, #ffeb2a 60%);
}
#sec-talk .btn {
  margin-top: 2em;
}
.talk__speaker {
  text-align: center;
  margin: 2em 0 1.2em;
}
.talk__speaker span {
  background: linear-gradient(transparent 60%, #ffeb2a 60%);
  font-size: 2rem;
}
@media (min-width: 768px) {
  #sec-talk .live__days span {
    font-size: 3rem;
  }
  .talk__speaker span {
    font-size: 3rem;
  }
  #sec-talk .btn {
    max-width: 60%;
  }
}
/* shop */
#sec-shop {
  background-color: #ffeb2a;
}
#sec-shop .accordion__ttl {
  background-color: #ffeb2a;
}
#sec-shop .btn {
  margin-top: 2em;
}
#sec-shop .accordion__container {
  margin-bottom: 1.5em;
}
.shop__txt {
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  #sec-shop .accordion__container {
    margin-bottom: 0;
  }
  .shop__txt {
    text-align: center
  }
}
/* calendar */
#sec-calendar .btn {
  margin-top: 2em;
}
/* comments */
#sec-comments {
  background-color: #e95935;
  color: #fff596;
}
#sec-comments .sec__ttl__grn::before {
  display: none;
}
#sec-comments .sec__contents {
  position: relative;
  z-index: 100;
}
.signiture {
  text-align: right;
  font-size: 1.2rem;
}
.comments {
  position: relative;
  padding: 1.6em;
  /*
  border-top: dashed 2px #e95935;
  border-bottom: dashed 2px #e95935;
*/
  margin-top: 2em;
  z-index: 100;
}
.comments__profile {
  width: 60%;
  margin: -1em auto 1em;
}
.comments__txt p {
  font-size: 1.2rem;
}
.bg__comments {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.bg__comments img {
  position: absolute;
  max-height: auto;
  width: 100%;
  margin-top: 10em;
  opacity: .3;
}
.sns__links {
  font-size: 1.2rem;
  padding: 1em 0 0 0;
}
.sns__links :hover {
  color: rgba(233, 89, 53, 1);
}
@media (min-width: 768px) {
  #sec-comments .sec__container {
    padding-top: 5em;
    margin-top: 3.2em;
  }
  .about__desc {
    margin: 0 auto;
  }
  .about__desc p {
    font-size: 2rem;
  }
  .about__ttl {
    font-size: 2.8rem;
  }
  .about__note {
    font-size: 1.4rem;
  }
  .comments {
    display: flex;
    align-items: center;
  }
  .comments__txt p {
    font-size: 1.6rem;
  }
  .bg__comments img {
    margin-top: -1em;
    max-height: 30em;
    width: auto;
  }
  .sns__links {
    font-size: 1.6rem;
  }
  .comments__profile {
    padding: 1em 1em 0 0;
    width: 25%;
  }
}
/* campaign */
/* notice */
.notice__list {
  list-style: square;
  margin: 0;
  padding: 0;
}
.notice__list li {
  margin-left: 1em;
  padding: 0;
}