@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500&display=swap");
/*リセット
-----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

li {
  list-style: none;
}

a img {
  border: none;
}

img {
  vertical-align: middle;
}

body {
  padding: 0;
  margin: 0;
  position: relative;
  font-size: 14px;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #06f;
  text-decoration: underline;
}

a:hover {
  color: #00f;
}

hr {
  border: none;
  height: 0;
  overflow: hidden;
  border-bottom: 1px dotted #959595;
  clear: both;
}

main, nav, header, footer, section, article, figure, figcaption {
  display: block;
}

/* ウェブフォント（ペン字：花鳥風月PB http://www.geocities.jp/s318shunkasyuto/ (c)TAKAYA）
---------------------------------------------------------*/
@font-face {
  font-family: "katyoufuugetupb";
  src: url("../fonts/katyoufuugetupb.eot?") format("eot"), url("../fonts/katyoufuugetupb.woff") format("woff");
}
* {
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* img {
  width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header .g_tagengoWrap {
  width: 100%;
}
header .g_tagengoWrap img {
  width: auto;
  height: auto;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  width: 245px;
}
@media screen and (min-width: 1000px) {
  header .logo {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 300px;
  }
}
header .global-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
}
header .global-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  content: "×"; /* Unicodeのバツ印 */
  font-size: 1.4em;
}
header .global-menu li {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 1.3em;
}
@media screen and (min-width: 1000px) {
  header .global-menu {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    width: auto;
    background-color: transparent;
    top: auto;
    left: auto;
  }
  header .global-menu li {
    margin-right: 20px;
    margin-bottom: 0;
    border: none;
  }
}
header .hamburger {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  z-index: 1000;
}
header .hamburger:focus {
  outline: none;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .hamburger span:last-child {
  margin-bottom: 0;
}
header .hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
      -ms-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
      -ms-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
@media screen and (min-width: 1000px) {
  header .hamburger {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 20px;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header .g_tagengoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-bottom: 5px;
}
header .header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  width: 245px;
}
@media screen and (min-width: 1000px) {
  header .logo {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 300px;
  }
}
header .global-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
}
header .global-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
header .global-menu li {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 1.3em;
}
@media screen and (min-width: 1000px) {
  header .global-menu {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    width: auto;
    background-color: transparent;
    top: auto;
    left: auto;
  }
  header .global-menu li {
    margin-right: 20px;
    margin-bottom: 0;
    border: none;
  }
}
header .hamburger {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  z-index: 1000;
}
header .hamburger:focus {
  outline: none;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .hamburger span:last-child {
  margin-bottom: 0;
}
header .hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
      -ms-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
      -ms-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
@media screen and (min-width: 1000px) {
  header .hamburger {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    display: none;
  }
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav ul li {
  margin-right: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ffcc66;
}

main {
  text-align: center;
  margin-top: 60px;
}
main .swiper-container {
  max-width: 100%;
  height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  main .swiper-container {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    height: 700px;
  }
}
main .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 高さを揃えるために追加 */
}
main .swiper-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* 高さを揃えるために追加 */
}
main .swiper-slide img {
  width: 100%;
  height: 100%; /* スライド全体を覆うように設定 */
  -o-object-fit: cover;
     object-fit: cover; /* アスペクト比を保ったまま画像を覆うように設定 */
}

/* イベント */
#sectionEvent {
  width: 100%;
  margin: 0 auto;
  padding: 5px;
}
@media screen and (min-width: 1000px) {
  #sectionEvent {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    padding: 50px;
  }
}
#sectionEvent .content {
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  #sectionEvent .content {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1000px;
  }
}

/* コンセプト */
.foodlodgeConcept {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  background-color: #a6e2bd;
  background: url(../../top_img/sweet/concept_bg.png) repeat;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .foodlodgeConceptInner {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1000px;
  }
}
.foodlodgeConcept .circle-image {
  margin: 0 auto;
  width: 80%;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .circle-image {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 40%;
    margin-right: 30px;
  }
}
.foodlodgeConcept .circle-image img {
  width: 100%;
  height: auto;
  display: block;
}
.foodlodgeConcept .conceptTxt {
  margin-bottom: 50px;
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    padding: 30px;
    width: 50%;
  }
}
.foodlodgeConcept .conceptTxt h1 {
  font-size: 2.4em;
  color: #333;
  margin: 0 0 20px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.foodlodgeConcept .conceptTxt p {
  text-align: center;
  font-size: 1.4em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt p {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    text-align: left;
    margin-bottom: 50px;
  }
  .foodlodgeConcept .conceptTxt p.redTxt {
    margin-bottom: 0;
    margin-left: 15%;
  }
}
.foodlodgeConcept .conceptTxt p.redTxt {
  color: #f00;
}
.foodlodgeConcept .conceptTxt .open_closeArea {
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 5px 0 0;
  border: 2px solid #fff;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt .open_closeArea {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 82%;
  }
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner {
  margin: 0 auto;
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner h2 {
  display: inline-block;
  background: #fff;
  text-align: left;
  font-size: 1.2rem;
  padding: 5px 20px;
  margin-bottom: 10px;
  font-weight: bold;
  background: #FFF118;
  width: 100%;
  text-align: center;
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 100%;
  }
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl dt {
  width: 100%;
  text-align: left;
  padding-right: 15px;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl dt {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 100%;
  }
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl dt.redTxt {
  color: #C90F12;
}
.foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl dd {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .foodlodgeConcept .conceptTxt .open_closeArea .open_closeInner dl dd {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 410px;
  }
}

/* フレーバー */
.flavors {
  padding: 100px 40px 40px;
  width: 100%;
  margin: 0 auto;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 24px, rgb(226, 240, 246) 24px, rgb(226, 240, 246) 41px), repeating-linear-gradient(90deg, transparent, transparent 15px, rgb(247, 235, 240) 15px, rgb(247, 235, 240) 41px);
}
.flavors .priceChui {
  text-align: right;
  padding: 10px;
}
.flavors h2 {
  color: #000000;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 80px;
}
.flavors h2 span {
  display: block;
  font-size: 0.6em;
}
.flavors .choiseBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .flavors .choiseBox {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1000px;
  }
}
.flavors .choiseBox h3 {
  margin-bottom: 2em;
  font-size: 2em;
  width: 50%;
  font-weight: bold;
}
@media screen and (min-width: 1000px) {
  .flavors .choiseBox h3 {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    margin-right: 100px;
  }
}
.flavors .choiseBox h3 .price {
  font-size: 0.7em;
  margin-left: 10px;
  background-color: #ffcc66;
  padding: 5px 14px 5px 10px;
  font-weight: bold;
}
.flavors .flavor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.flavors .flavor-list .flavor {
  background-color: #ffcc66;
  color: #333;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.flavors .flavor-list .flavor:hover {
  background-color: #333;
  color: #fff;
}
.flavors .flavorListBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 100px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .flavors .flavorListBox {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1200px;
  }
}
.flavors .flavorListBox li {
  width: 40%;
  padding: 5px;
  margin-bottom: 60px;
}
.flavors .flavorListBox li.osusume {
  position: relative;
}
.flavors .flavorListBox li.osusume::after {
  content: "オス\aスメ";
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #0089ff;
  color: rgb(255, 255, 255);
  padding: 13px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9em;
  line-height: 1.1;
  white-space: pre;
  border-radius: 50%;
}
@media screen and (min-width: 1000px) {
  .flavors .flavorListBox li.osusume::after {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    right: 10px;
    padding: 13px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    line-height: 1.3;
  }
}
.flavors .flavorListBox li.gentei {
  position: relative;
}
.flavors .flavorListBox li.gentei::after {
  content: "期間\a限定";
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #d02f2f;
  color: white;
  padding: 13px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9em;
  line-height: 1.1;
  white-space: pre;
  border-radius: 50%;
}
@media screen and (min-width: 1000px) {
  .flavors .flavorListBox li.gentei::after {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    right: 10px;
    padding: 13px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    line-height: 1.3;
  }
}
.flavors .flavorListBox li.new {
  position: relative;
}
.flavors .flavorListBox li.new::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #e25eab;
  color: white;
  padding: 13px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9em;
  line-height: 1.1;
  white-space: pre;
  border-radius: 50%;
}
@media screen and (min-width: 1000px) {
  .flavors .flavorListBox li.new::after {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    right: 10px;
    padding: 13px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1000px) {
  .flavors .flavorListBox li {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 250px;
    padding: 30px;
  }
}
.flavors .flavorListBox li img {
  margin-bottom: 16px;
}
.flavors .flavorListBox li h4 {
  font-size: 1.4em;
  font-weight: bold;
}
.flavors .flavorListBox li h5.gentei {
  font-size: 1em;
  font-weight: bold;
  color: #d02f2f;
  background: #fff;
  padding: 3px 5px;
  margin-bottom: 3px;
}
.flavors .flavorListBox li p {
  font-size: 1em;
}
.flavors .optionArea {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .flavors .optionArea {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flavors .optionArea .afoBox {
  width: 100%;
  background: url(../../top_img/sweet/afo.jpg) no-repeat top left;
  background-size: contain;
  position: relative;
  height: 360px;
}
@media screen and (min-width: 1000px) {
  .flavors .optionArea .afoBox {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 50%;
  }
}
.flavors .optionArea .afoBox p {
  position: absolute;
  top: -110px;
  right: 0;
  padding: 15px 30px 30px;
  background-color: #fff;
  display: inline-block;
  text-align: left;
  font-weight: bold;
  font-size: 1.2em;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.flavors .optionArea .afoBox p span {
  font-size: 1.5em;
  font-weight: bold;
}
@media screen and (min-width: 1000px) {
  .flavors .optionArea .afoBox p {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    left: 230px;
    top: -75px;
  }
}
.flavors .optionBox {
  width: 100%;
  background: #fff;
  padding: 30px;
  text-align: left;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 40px;
}
@media screen and (min-width: 1000px) {
  .flavors .optionBox {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 50%;
    background: #fff url(../../top_img/sweet/anko.png) right bottom no-repeat;
    background-size: contain;
  }
}
.flavors .optionBox h3 {
  font-size: 1.6em;
  font-weight: bold;
}
.flavors .optionBox ul li {
  font-size: 1.1em;
  font-weight: bold;
}

/* 鯛焼き */
#section2 {
  width: 100%;
  background: url(../../top_img/sweet/taiyaki_bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom left;
}
#section2 .priceChui {
  text-align: right;
  padding: 10px;
}

.taiyakis {
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .taiyakis {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1200px;
    padding: 60px 40px 40px;
  }
}
.taiyakis h2 {
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 80px;
}
.taiyakis h3 {
  margin-bottom: 2em;
}
.taiyakis .taiyakiListBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto 20px;
  width: 100%;
}
.taiyakis .taiyakiListBox li {
  width: 100%;
  padding: 5px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .taiyakis .taiyakiListBox li {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 540px;
  }
}
.taiyakis .taiyakiListBox li img {
  margin-bottom: 16px;
}
.taiyakis .taiyakiListBox li h4 {
  font-size: 1.6em;
  font-weight: bold;
}
.taiyakis .taiyakiListBox li p {
  font-size: 1.6em;
}

/* ミニパフェ */
#section4 {
  width: 100%;
  background: url(../../top_img/sweet/parfait_bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom left;
}
#section4 .priceChui {
  text-align: right;
  padding: 10px;
}

.parfait {
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .parfait {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1200px;
    padding: 60px 40px 40px;
  }
}
.parfait h2 {
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 80px;
}
.parfait h2 span {
  font-size: 0.8em;
  display: block;
}
.parfait h3 {
  margin-bottom: 2em;
}
.parfait .parfaitBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto 20px;
  width: 100%;
}
.parfait .parfaitBox li {
  width: 100%;
  padding: 5px;
  margin: 0 10px 40px 10px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .parfait .parfaitBox li {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 200px;
  }
}
.parfait .parfaitBox li img {
  margin-bottom: 16px;
}
.parfait .parfaitBox li h4 {
  font-size: 1.4em;
  font-weight: bold;
}
.parfait .parfaitBox li p {
  font-size: 1.6em;
}
.parfait .parfaitBox li.genteiParfa {
  position: relative;
}
.parfait .parfaitBox li.genteiParfa::after {
  content: "期間\a限定";
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #db6c17;
  color: white;
  padding: 13px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4em;
  line-height: 1.1;
  white-space: pre;
  border-radius: 50%;
}
@media screen and (min-width: 1000px) {
  .parfait .parfaitBox li.genteiParfa::after {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    right: 10px;
    padding: 13px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    line-height: 1.3;
  }
}

/* ドリンク */
#section3 {
  width: 100%;
  background: url(../../top_img/sweet/taiyaki_bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom left;
}
#section3 .priceChui {
  text-align: right;
  padding: 10px;
}

.drinks {
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .drinks {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 1200px;
    padding: 60px 40px 40px;
  }
}
.drinks h2 {
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 50px;
}
.drinks .drinksListWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.drinks .drinksList {
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 1000px) {
  .drinks .drinksList {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 46%;
  }
}
.drinks .drinksList h3 {
  margin-bottom: 2em;
  font-weight: bold;
  color: #c93333;
  text-align: left;
  margin-bottom: 0;
}
.drinks .drinksList ul {
  width: 100%;
  background: #fff;
  padding: 30px;
}
@media screen and (min-width: 1000px) {
  .drinks .drinksList ul {
    /* PC：デバイス別表示設定
    --------------------------------------------*/
    width: 100%;
  }
}
.drinks .drinksList ul li {
  margin-bottom: 20px;
  font-size: 1.2em;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drinks .drinksList ul li span {
  font-weight: bold;
}

/* フッター */
footer {
  background-color: #006835;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  bottom: 0;
  width: 100%;
}

/* swiper調整 */
.swiper-button-next,
.swiper-button-prev {
  top: 50%; /* メインビジュアルの高さの中央に配置 */
}

.swiper-button-next {
  right: 10px; /* 右からの距離を調整 */
}

.swiper-button-prev {
  left: 10px; /* 左からの距離を調整 */
}

.swiper-pagination {
  bottom: 20px; /* メインビジュアルの下部に配置 */
  left: 50%; /* メインビジュアルの中央に配置 */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); /* 横方向に中央寄せ */
}