@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  color: #222222;
  background: #F3EFEB;
  font-weight: 400;
  line-height: normal;
  overflow-x: hidden;
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto 0;
}
@media screen and (min-width: 1200px) {
  .main {
    margin-top: 0;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
  }
}

.section-title__main {
  font-family: Amatic SC;
  font-size: 32px;
  letter-spacing: 6.4px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 900px) {
  .section-title__main {
    font-size: 72px;
    letter-spacing: 14.4px;
  }
}

.section-title__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 900px) {
  .section-title__sub {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.section-title__main-top {
  font-family: Amatic SC;
  font-size: 40px;
  letter-spacing: 4px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .section-title__main-top {
    font-size: 52px;
    letter-spacing: 10.4px;
  }
}

.section-title__sub-top {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .section-title__sub-top {
    font-size: 14px;
  }
}

.button {
  text-align: center;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 25px 12px 24px 12px;
  width: 280px;
  font-size: 16px;
  font-weight: 700;
  background-color: #222222;
  color: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.button::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 72px;
  bottom: -6px;
  right: -6px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 16px;
  height: 24px;
  background-image: url(../img/arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .button:hover {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  .button:hover::before {
    display: none;
  }
}

.hidden-lg {
  display: block;
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

.hidden-sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sm {
    display: block;
  }
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.pagetop a {
  position: relative;
  display: block;
  text-align: center;
  color: #382620;
  text-decoration: none;
  padding: 15px 11px;
  background: url(../img/icon-arrow-footer.png) center/contain no-repeat;
}
.pagetop a::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.pagetop a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding: 10px 16px;
  opacity: 0.5;
}

.title-area {
  color: #FFFFFF;
  text-align: center;
  font-family: "Amatic SC";
  padding: 32px 100px 23px 100px;
  height: 120px;
  position: relative;
}
.title-area .drawer-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.title-area::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: inherit;
  top: 0;
  left: 0;
  z-index: 1;
}
.title-area::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 16px);
  height: 108px;
  border: 1px solid #FFFFFF;
}
@media screen and (min-width: 900px) {
  .title-area {
    height: 320px;
    padding: 100px 50px;
  }
  .title-area::after {
    top: 10px;
    width: calc(100% - 32px);
    height: 286px;
    border: solid 1px #FFFFFF; /* 内側の線になる一本線の枠線をひく*/
    outline: solid 2px #FFFFFF; /* 外側の線になる一本線の枠線をひく*/
    outline-offset: 4px; /* 外側の線と内側の線の空き具合を調整*/
    margin: 4px; /* 外側の線を広げた分、要素の大きさを調整する*/
  }
}

.nav-links {
  margin-top: 40px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-numbers li a {
  width: 40px;
  height: 40px;
  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;
  border-radius: 50%;
  background: #FFFFFF;
  border: solid 1px currentColor;
  font-size: 16px;
  font-weight: 500;
  color: #382620;
}
.page-numbers li a:hover {
  background: #382620;
  color: #FFFFFF;
}
.page-numbers .current {
  width: 40px;
  height: 40px;
  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;
  border-radius: 50%;
  background: #382620;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb {
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin: 16px auto 0;
  }
}

.home {
  color: #382620;
  font-size: 12px;
  font-weight: 700;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .home {
    margin-top: 16px;
    padding-right: 15px;
    font-size: 14px;
  }
}
.home:hover {
  opacity: 0.7;
}

.post {
  color: #382620;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .post {
    font-size: 14px;
  }
}

.current-item {
  padding-inline: 5px;
}
@media screen and (min-width: 768px) {
  .current-item {
    margin-top: 16px;
    padding-inline: 15px;
  }
}

.post-products-archive,
.post-menu-archive,
.post-root {
  padding-inline: 5px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .post-products-archive,
  .post-menu-archive,
  .post-root {
    margin-top: 16px;
    padding-inline: 15px;
    font-size: 14px;
  }
}

.access {
  padding-top: 81px;
  padding-bottom: 80px;
  background: #EAE0D5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
}
.access::after {
  content: "";
  position: absolute;
  background: url(../img/access-fukidashi.png) center/cover no-repeat;
  width: 200px;
  height: 172.134px;
  top: -42px;
  right: calc(50% + 34px);
}
@media screen and (min-width: 768px) {
  .access::after {
    width: 232.912px;
    height: 200.002px;
    top: -50px;
    right: calc(50% + 71px);
  }
}

.access__inner {
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .access__inner {
    padding-inline: 0;
    max-width: 688px;
  }
}

.access-heading {
  text-align: center;
}

.iframe__wrapper {
  position: relative;
  margin-top: 40px;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比に基づく値 */
  border: 5px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .iframe__wrapper {
    border: 10px solid #FFFFFF;
  }
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__container {
  margin-top: 17px;
}
@media screen and (min-width: 900px) {
  .access__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    max-height: 217px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  padding-block: 18px 12px;
  border-bottom: 1px solid #222222;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .access__list {
    padding-block: 21px 11px;
  }
}

.access__head {
  width: 56px;
  padding-top: 0;
}

.access__text {
  line-height: 24px; /* 171.429% */
}

.footer {
  position: relative;
  background: #382620;
  color: #FFFFFF;
  padding-top: 44px;
  padding-bottom: 41px;
}

.footer__decoration {
  position: absolute;
  width: 128px;
  height: 114px;
  left: -30px;
  top: -56px;
}
@media screen and (min-width: 768px) {
  .footer__decoration {
    max-width: 341px;
    width: 23.6805555556%;
    height: auto;
    left: auto;
    left: -85px;
    top: -120px;
  }
}
@media screen and (min-width: 900px) {
  .footer__decoration {
    left: -85px;
    top: -150px;
  }
}

.drawer__nav-sns.type-footer .drawer__nav-sns-link {
  gap: 30px;
}
.drawer__nav-sns.type-footer .drawer__sns-icon {
  margin-top: 0;
  width: 26px;
  height: 21.117px;
}
@media screen and (min-width: 768px) {
  .drawer__nav-sns.type-footer .drawer__sns-icon {
    width: 19.5px;
    height: 15.838px;
  }
}

.copy-right {
  display: block;
  margin-top: 41px;
  text-align: center;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px; /* 200% */
}

@media screen and (min-width: 1200px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@-webkit-keyframes fadein-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header {
  position: relative;
  background: transparent;
  width: 100%;
  z-index: 1000;
  margin-bottom: 700px;
}
@media screen and (min-width: 600px) {
  .header {
    margin-bottom: 800px;
  }
}
@media screen and (min-width: 768px) {
  .header {
    margin-bottom: 580px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    background: #F3EFEB;
    max-width: 200px;
    min-width: 160px;
    height: 735px;
    position: static;
    margin-bottom: 0;
  }
}

.header__inner {
  padding: 10px 10px 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 27px 18px 20px;
  }
}

.header__logo img {
  width: 120.043px;
  height: 63.084px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__logo img {
    width: 166px;
    height: 93px;
  }
}

.header__nav-pc {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav-pc {
    display: block;
    z-index: 100;
    height: 100%;
    margin: 53px auto 0;
  }
}

.header__nav-pc-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
}

.header__nav-pc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3px;
  color: #222222;
  text-align: center;
}
@media (hover: hover) {
  .header__nav-pc-list:hover {
    opacity: 0.7;
  }
}

.header-nav-pc-list__main {
  font-family: Patua One;
  font-size: 16px;
  letter-spacing: 1.92px;
}

.header-nav-pc-list__sub {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
}

.header__nav-sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29.5px;
}

.sns-icon {
  margin-top: 55px;
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .sns-icon:hover {
    opacity: 0.7;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100%;
  background: #382620;
  padding: 10px 10px 55px 15px;
  -webkit-transition: right 0.9s ease;
  transition: right 0.9s ease;
}
.header__nav.js-open {
  right: 0;
}
.header__nav.js-open .header-nav__cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.drawer-logo img {
  width: 120.043px;
  height: 63.084px;
  display: block;
}

.header__nav-lists {
  margin-top: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding-inline: 25px 30px;
}

.header__nav-list {
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}

.header-nav-list__main {
  font-family: Patua One;
  font-size: 24px;
  letter-spacing: 2.88px;
}

.header-nav-list__space,
.header-nav-list__sub {
  font-family: Noto Serif JP;
  font-size: 10px;
  font-weight: 500;
}

.header-nav-list__sub {
  font-family: Noto Serif JP;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}

.drawer__nav-sns-link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.drawer__sns-icon {
  margin-top: 57px;
  width: 32.5px;
  height: 29.993px;
}
.animation__container,
.drawer-icon-area {
  position: fixed;
  right: 0;
}

.drawer-icon-area {
  top: 10px;
}

.drawer-icon {
  display: block;
  z-index: 101;
  background: #382620;
  outline: none;
  border: none;
  padding: 22px 17px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
}
.drawer-icon.js-open {
  background: #FFFFFF;
}
.drawer-icon-area {
  z-index: 200;
}

@media screen and (min-width: 1200px) {
  .drawer-icon-top {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 27px;
  height: 2.25px;
  background: #FFFFFF;
}
.drawer-icon__bar:nth-child(1) {
  top: 22px;
}
.drawer-icon__bar:nth-child(2) {
  top: 28.75px;
}
.drawer-icon__bar:nth-child(3) {
  top: 35.5px;
}
.drawer-icon__bar.js-open {
  background: #382620;
}
.drawer-icon__bar.js-open:nth-child(1), .drawer-icon__bar.js-open:nth-child(3) {
  top: 28.75px;
}
.drawer-icon__bar.js-open:nth-child(1) {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.drawer-icon__bar.js-open:nth-child(2) {
  display: none;
}
.drawer-icon__bar.js-open:nth-child(3) {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.menu-page {
  background: url(../img/menu/firstview_menu.png) no-repeat center center/cover;
}

.button-area {
  padding-inline: 20px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 13px;
}
@media screen and (min-width: 768px) {
  .button-area {
    margin: 80px auto 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 882px;
  }
}

.tab-button {
  position: relative;
  padding: 12px;
  color: #FFFFFF;
  background: #888888;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  height: 64px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .tab-button {
    font-size: 16px;
    line-height: 20px; /* 125% */
  }
}
.tab-button::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 8px);
  height: 56px;
  border: 1px solid #FFFFFF;
}
.tab-button:hover {
  background: #382620;
}
.tab-button.is-active {
  background: #382620;
}

.main-area {
  padding-inline: 20px;
  margin-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 19px;
}
@media screen and (min-width: 768px) {
  .main-area {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 3.6363636364%;
    max-width: 1140px;
    margin: 80px auto 100px;
  }
}

.grand-menu-box__img {
  border: 5px solid #FFFFFF;
}
.grand-menu-box__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__img {
    border: 8px solid #FFFFFF;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.p-menu-page .grand-menu-box__img {
  border: none;
}

.grand-menu-box__name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__name {
    margin-top: 12px;
  }
}

.grand-menu-box__price {
  font-family: Damion;
  font-size: 24px;
}
.p-menu-page .grand-menu-box__price {
  text-align: center;
}

.news-page {
  background: url(../img/firstview_news_sp.png) no-repeat center center/cover;
}

.main-area__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 20px;
  gap: 60px;
  margin-top: 48px;
  margin-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .main-area__news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 20px;
    max-width: 1140px;
    gap: 6.5454545455%;
    margin: 80px auto 160px;
  }
}

@media screen and (min-width: 768px) {
  .news__main-area {
    max-width: 728px;
  }
}

.news-main-area__title {
  color: #222222;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .news-main-area__title {
    font-size: 24px;
  }
}

.news-main-area__box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 19px;
}
@media screen and (min-width: 768px) {
  .news-main-area__box {
    margin-top: 20px;
    gap: 40px 5.1282051282%;
  }
}

.news-news-box {
  position: relative;
}

.news-news__category-title {
  position: absolute;
  background: url(../img/fv-icon.png) center/cover no-repeat;
  padding: 2px 11px 3px 11px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  top: 10px;
  left: -8px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .news-news__category-title {
    padding: 4px 15px 3px 14px;
    top: 16px;
    font-size: 14px;
  }
}

.news-news-box__title {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .news-news-box__title {
    margin-top: 11px;
    font-size: 16px;
    line-height: 24px;
  }
}

.news-news-box__date {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news-news-box__date {
    margin-top: 12px;
    font-size: 14px;
  }
}

.news__sub-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .news__sub-area {
    gap: 60px;
    min-width: 300px;
  }
}

.news-sub-area {
  background: #F8F8F8;
}

.recentry-posts {
  padding: 20px;
}

.news-sub-area__title {
  color: #222222;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.news-sub-area__title::after {
  content: "";
  position: absolute;
  border: 1px solid #222;
  width: 32px;
  bottom: -22px;
  left: 0;
}

.news-sub-area__box {
  margin-top: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.news__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media (hover: hover) {
  .news__news:hover {
    opacity: 0.7;
  }
}

.news-news__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.news-news__image img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* オプション: 拡大時のアニメーション効果を追加 */
}
@media (hover: hover) {
  .news-news__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news-news__textarea {
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .news-news__textarea {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.news-news__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .news-news__text {
    font-size: 14px;
    line-height: 24px; /* 171.429% */
    width: 146px;
  }
}

.news-news__date {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}

.archive-posts {
  padding: 20px;
}

.news__archive {
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-left: 12px;
}
.news__archive::before {
  content: "";
  position: absolute;
  background: url(../img/icon-news-category.png) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 12px;
}

.news-box__img img {
  width: 100%;
}

.news-box__img.main-post {
  /* main-post に適用するスタイルを指定 */
}

/* normal-post スタイル */
.news-box__img.normal-post {
  /* normal-post に適用するスタイルを指定 */
}

.news-news-box__img img {
  width: 100%;
  aspect-ratio: 340/213;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-page {
  background: url(../img/firstview_shop_sp.png) no-repeat center center/cover;
}

.main-area__shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin: 0 auto 160px;
  max-width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .main-area__shop {
    max-width: 689px;
    padding-inline: 0;
    gap: 121px;
    margin: 0 auto 160px;
  }
}

.shop__container {
  max-width: 100%;
}
.shop-area__title {
  color: #382620;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 14px;
  margin-top: 50px;
}
.shop-area__title::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 29px;
  background-color: #382620;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .shop-area__title {
    font-size: 24px;
    font-weight: 700;
    padding-left: 22px;
    margin-top: 80px;
  }
}

.shop-container__map {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 335/188;
  border: 5px solid #FFFFFF;
}
@media screen and (min-width: 900px) {
  .shop-container__map {
    aspect-ratio: 689/387;
    border: 10px solid #FFFFFF;
  }
}

@media screen and (min-width: 900px) {
  .shop-container__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    max-height: 217px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-top: 0;
  }
}

.shop-container__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  padding-block: 17px 10px;
  border-bottom: 1px solid #222222;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .shop-container__list {
    padding-block: 23px 10px;
    width: 324px;
  }
}

.concept-page {
  background: url(../img/firstview_concept_sp.png) no-repeat center center/cover;
}

.main-area__concept {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .main-area__concept {
    margin: 0 auto;
  }
}

.concept__inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding-inline: 7.03125%;
    max-width: 1280px;
  }
}

.concept1 {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .concept1 {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.4545454545%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept-concept__textarea {
  gap: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .concept-concept__textarea {
    width: 389px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.concept__textarea-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px; /* 200% */
}
@media screen and (min-width: 768px) {
  .concept__textarea-title {
    font-size: 28px;
    line-height: 60px; /* 214.286% */
  }
}

.concept__textarea-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px; /* 200% */
}
.concept1__photoarea {
  position: relative;
  margin: 36px auto 0;
}
.concept1__photoarea::after {
  content: "";
  position: absolute;
  width: 335px;
  height: 100px;
  background: #EAE0D5;
  bottom: -48px;
  right: -20px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .concept1__photoarea::after {
    width: 984px;
    height: 200px;
    bottom: -100px;
    right: -90px;
  }
}
@media screen and (min-width: 900px) {
  .concept1__photoarea {
    margin: 0;
    width: 58.1818181818%;
    max-height: 730px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.concept2 {
  margin-top: 123px;
}
@media screen and (min-width: 768px) {
  .concept2 {
    margin-top: 267px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 6.4545454545%;
  }
}

.concept2__photoarea {
  margin-top: 36px;
  position: relative;
}
.concept2__photoarea::after {
  content: "";
  position: absolute;
  width: 284px;
  height: 227px;
  background: #EAE0D5;
  top: 74px;
  left: -20px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept2__photoarea {
    width: 58.1818181818%;
    margin-top: 0;
  }
  .concept2__photoarea::after {
    width: 580px;
    height: 437px;
    top: 98px;
    left: -90px;
  }
}

.concept__photoarea-image4 {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept__photoarea-image4 {
    width: 100%;
    margin-top: -70px;
  }
}

.concept3 {
  margin-top: 95px;
  margin-bottom: 196px;
}
@media screen and (min-width: 768px) {
  .concept3 {
    margin-top: 243px;
    margin-bottom: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.4545454545%;
  }
}

.concept3__photoarea {
  margin-top: 36px;
  position: relative;
  width: 78.4%;
}
.concept3__photoarea::after {
  content: "";
  position: absolute;
  width: 184px;
  height: 239px;
  background: #EAE0D5;
  top: -19px;
  right: -41px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept3__photoarea {
    width: 640px;
    margin-top: 0;
  }
  .concept3__photoarea::after {
    width: 400px;
    height: 520px;
    top: -100px;
    right: -90px;
  }
}

.concept__photoarea-image6 {
  position: absolute;
  top: 0;
  right: calc(50% - 127.5px);
}
@media screen and (min-width: 768px) {
  .concept__photoarea-image6 {
    top: -43px;
    right: auto;
    left: 0;
  }
}

.news-page {
  background: url(../img/firstview_news_sp.png) no-repeat center center/cover;
}

.main-area__page-name {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .main-area__page-name {
    padding-inline: 0;
    max-width: 688px;
    margin: 0 auto;
  }
}

.page-name__box {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .page-name__box {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .page-name__thumbnail {
    height: 430px;
  }
}
.page-name__thumbnail img {
  width: 100%;
  aspect-ratio: 680/430;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-name__title-h1 {
  margin-top: 24px;
  color: #382620;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .page-name__title-h1 {
    font-size: 28px;
    line-height: 40px;
  }
}

.page-name__details {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  gap: 41px;
}
@media screen and (min-width: 768px) {
  .page-name__details {
    margin-top: 40px;
  }
}

.page-name__date {
  position: relative;
}
.page-name__date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: #382620;
  right: -21px;
  top: 0;
}

.page-name__text {
  margin-top: 37px;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .page-name__text {
    font-size: 16px;
    line-height: 32px;
  }
}

.page-name__img {
  margin-top: 36px;
}

.wp-block-heading h2 {
  margin-top: 75px;
  color: #382620;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-left: 16px;
  position: relative;
}
.wp-block-heading h2::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 54px;
  background-color: #382620;
  left: 0;
}
@media screen and (min-width: 768px) {
  .wp-block-heading h2 {
    font-size: 24px;
    line-height: normal;
    padding-left: 22px;
  }
  .wp-block-heading h2::before {
    width: 6px;
    height: 35px;
  }
}
.wp-block-heading h3 {
  margin-top: 54px;
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border-bottom: 1px solid #382620;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .wp-block-heading h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.wp-block-heading h4 {
  margin-top: 54px;
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .wp-block-heading h4 {
    margin-top: 56px;
    font-size: 16px;
    line-height: normal;
  }
}

.page-name__lists {
  margin-top: 28px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.page-name__list {
  font-size: 14px;
  font-weight: 500;
}

.page-name__quotation-box {
  background: #F8F8F8;
  margin-top: 32px;
  padding: 20px 24px 25px 24px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-name__quotation-box {
    padding: 35px 40px 40px;
    font-size: 16px;
  }
}

.page-name__quotation-text {
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .page-name__quotation-text {
    line-height: 32px;
  }
}

.page-name__source {
  margin-top: 15px;
  text-align: right;
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .page-name__source {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding-right: 0;
  }
}

.related-article__box {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .related-article__box {
    margin-top: 120px;
  }
}

.related-article__title {
  color: #382620;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .related-article__title {
    font-size: 28px;
    line-height: 40px;
  }
}

.related-article__container {
  margin-top: 40px;
  margin-bottom: 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 19px;
}
@media screen and (min-width: 768px) {
  .related-article__container {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.news-box__img img {
  width: 100%;
  aspect-ratio: 158/99;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-name__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}

.page-name-Pagination-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.page-name-Pagination-Item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  color: #382620;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  padding-block: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .page-name-Pagination-Item a {
    padding-block: 12px;
  }
}

.page-name-Pagination-Item-Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  color: #382620;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  padding-block: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .page-name-Pagination-Item-Link {
    padding-block: 12px;
  }
}

.page-name-Pagination-Item-Link-Icon {
  width: 20px;
}

.page-name-Pagination-Item-Link.center {
  padding-inline: 28px;
  border: 1px solid #382620;
}
@media screen and (min-width: 768px) {
  .page-name-Pagination-Item-Link.center {
    padding-inline: 36px;
  }
}

.entry p {
  margin-top: 37px;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .entry p {
    font-size: 16px;
    line-height: 32px;
  }
}
.entry h1 {
  margin-top: 24px;
  color: #382620;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .entry h1 {
    font-size: 28px;
    line-height: 40px;
  }
}
.entry h2 {
  margin-top: 75px;
  color: #382620;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding-left: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry h2::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 54px;
  background-color: #382620;
  left: 0;
}
@media screen and (min-width: 768px) {
  .entry h2 {
    font-size: 24px;
    line-height: normal;
    padding-left: 22px;
  }
  .entry h2::before {
    width: 6px;
    height: 35px;
  }
}
.entry h3 {
  margin-top: 54px;
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border-bottom: 1px solid #382620;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .entry h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.entry h4 {
  margin-top: 54px;
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .entry h4 {
    margin-top: 56px;
    font-size: 16px;
    line-height: normal;
  }
}
.entry ul {
  margin-top: 28px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.entry ul li {
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  list-style: none; /* デフォルトのアイコンを消す */
}
.entry ul li::before {
  content: "・"; /* 空の要素作成 */
  display: inline-block; /* インラインブロックにする */
  color: #222; /* 背景色指定 */
  position: absolute;
  left: 0;
  top: 0;
}
.entry ol {
  margin-top: 28px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  counter-reset: number 0;
}
.entry ol li {
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  list-style: none; /* デフォルトのアイコンを消す */
}
.entry ol li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
}
.entry blockquote {
  background: #F8F8F8;
  margin-top: 32px;
  padding: 20px 24px 25px 24px;
  font-size: 14px;
  font-weight: 500;
  margin-inline: 0;
}
@media screen and (min-width: 768px) {
  .entry blockquote {
    padding: 35px 40px 40px;
    font-size: 16px;
  }
}
.entry blockquote p {
  line-height: 28px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .entry blockquote p {
    line-height: 32px;
    margin-top: 0;
  }
}
.entry blockquote cite {
  font-family: "Noto Serif JP";
  font-style: normal;
  display: block;
  margin-top: 15px;
  text-align: right;
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .entry blockquote cite {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding-right: 0;
  }
}

.products-page {
  background: url(../img/firstview_gift_sp.png) no-repeat center center/cover;
}

.main-area__products {
  margin-top: 44px;
  margin-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .main-area__products {
    margin-top: 80px;
  }
}

.products__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 1140px;
    margin: 0 auto;
  }
}

.products__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: fr repeat(4, 1fr);
  grid-column-gap: 5.0666666667%;
  grid-row-gap: 38px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .products__container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr repeat(2, 0.5fr);
    grid-column-gap: 3.6363636364%;
  }
}

.products-box1 {
  grid-area: 1/1/2/3;
}
@media screen and (min-width: 768px) {
  .products-box1 {
    grid-area: 1/1/3/3;
  }
}

.products__img {
  min-width: 42.1333333333%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .products__img {
    min-width: 19.140625%;
  }
}

.products__name {
  color: #222222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  margin-top: 8px;
}
.top-bg .products__name {
  font-size: 20px;
  min-height: 34px;
}
@media screen and (min-width: 768px) {
  .products__name {
    margin-top: 12px;
  }
  .top-bg .products__name {
    margin-top: 13px;
    font-size: 24px;
  }
}

.products__price {
  color: #222222;
  font-family: Damion;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.top-bg .products__price {
  font-size: 32px;
}
.products__shop {
  display: inline-block;
  color: #FFFFFF;
  background: #222222;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10%;
  margin-top: 12px;
  min-width: 140px;
  max-width: 100%;
}
.top-bg .products__shop {
  margin-top: 0;
  padding: 6px 15px;
}
.top-bg .products__shop:hover {
  padding: 5px 15px;
}
@media screen and (min-width: 768px) {
  .top-bg .products__shop {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .products__shop {
    padding: 8px 10%;
    font-size: 14px;
  }
  .top-bg .products__shop {
    padding: 8px 24px;
  }
  .top-bg .products__shop:hover {
    padding: 6px 24px;
  }
}
.products__shop:hover {
  background: #FFFFFF;
  color: #222222;
  border: 1px solid #222222;
  padding: 5px 10%;
}
@media screen and (min-width: 768px) {
  .products__shop:hover {
    padding: 7px 10%;
  }
}

.products-box2 {
  grid-area: 2/1/3/2;
}
@media screen and (min-width: 768px) {
  .products-box2 {
    grid-area: 1/3/2/4;
  }
}

.products-box3 {
  grid-area: 2/2/3/3;
}
@media screen and (min-width: 768px) {
  .products-box3 {
    grid-area: 1/4/2/5;
  }
}

.products-box4 {
  grid-area: 3/1/4/2;
}
@media screen and (min-width: 768px) {
  .products-box4 {
    grid-area: 2/3/3/4;
  }
}

.products-box5 {
  grid-area: 3/2/4/3;
}
@media screen and (min-width: 768px) {
  .products-box5 {
    grid-area: 2/4/3/5;
  }
}

.products-box6 {
  grid-area: 4/1/5/2;
}
@media screen and (min-width: 768px) {
  .products-box6 {
    grid-area: 3/1/4/2;
  }
}

.products-box7 {
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 768px) {
  .products-box7 {
    grid-area: 3/2/4/3;
  }
}

.products-box8 {
  grid-area: 5/1/6/2;
}
@media screen and (min-width: 768px) {
  .products-box8 {
    grid-area: 3/3/4/4;
  }
}

.products-box9 {
  grid-area: 5/2/6/3;
}
@media screen and (min-width: 768px) {
  .products-box9 {
    grid-area: 3/4/4/5;
  }
}

.wrapping__container {
  margin-top: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  border: 4px solid #382620;
  background: #FFFFFF;
  padding: 33px 37px 37px 37px;
  position: relative;
}
.wrapping__container::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 1px #382620;
}
@media screen and (min-width: 768px) {
  .wrapping__container {
    margin-top: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    padding: 76px 56px 76px 56px;
  }
}

.wrapping__textarea {
  color: #382620;
  text-align: center;
}

.wrapping__text-head {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 25px;
  background-image: linear-gradient(to right, #382620 3px, transparent 3px);
  background-size: 11px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .wrapping__text-head {
    font-size: 24px;
    line-height: 40px;
    text-align: left;
    padding-bottom: 20px;
  }
}

.wrapping__text-body {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 768px) {
  .wrapping__text-body {
    font-size: 16px;
    line-height: 32px;
    margin-top: 36px;
  }
}

.wrapping__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wrapping__image {
    width: 46.9387755102%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact-page {
  background: url(../img/firstview_contact_sp.png) no-repeat center center/cover;
}

.main-area__contact {
  color: #382620;
  margin-bottom: 160px;
}

.contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    width: 728px;
    margin: 0 auto;
  }
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__head {
  margin-top: 48px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact__head {
    margin-top: 80px;
    gap: 28px;
  }
}

.contact__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px; /* 200% */
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 28px;
  }
}

.contact__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 80px;
  }
  .contact__form .contact__fields .contact__field:not(:first-child) .form-field__head {
    margin-top: 13px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__head p {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field__head p {
    width: 170px;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.form-field__label {
  font-size: 16px;
  font-weight: 700;
}

.form-field__tag {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px 2px 6px;
  border-radius: 2px;
  background: #F07317;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .form-field__item {
    width: 490px;
  }
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 900px) {
  .wpcf7-form-control {
    margin-top: 0;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: 0, 0, 0, 0;
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    margin-top: 0;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  left: 0;
  border: 1px solid #382620;
  background: #FFF;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #F07317;
  left: 6.3px;
  opacity: 0;
}

.form-text,
.form-textarea {
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #382620;
  background: #FFFFFF;
  color: #382620;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 15px 12px 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form-text,
  .form-textarea {
    margin-top: 0;
  }
}
.form-text.is-error,
.form-textarea.is-error {
  outline: none;
  border: 1px solid #F07317;
}
.form-text.is-error + .form-error__message,
.form-textarea.is-error + .form-error__message {
  opacity: 1;
}

.form-error__message {
  color: #F07317;
  opacity: 0;
}

.contact__privacy {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 40px;
    line-height: normal;
  }
}

.contact__button {
  text-align: center;
  margin-top: 38px;
}

.thanks__message {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .thanks__message {
    margin-top: 80px;
  }
}

.thanks-message__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .thanks-message__title {
    font-size: 28px;
    line-height: 40px; /* 142.857% */
  }
}

.thanks-message__body {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .thanks-message__body {
    margin-top: 28px;
    font-size: 16px;
    font-weight: 500;
  }
}

/* チェック前のボタン */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #382620;
  border-radius: 50%; /* ラジオボタンっぽく丸くする */
  content: "";
  width: 24px;
  height: 24px;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #F07317; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 5px #fff;
          box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
}

.fv {
  position: relative;
  width: 100%;
  height: 667px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .fv {
    height: 735px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    width: 100%;
    height: 735px;
  }
}

.swiper-container {
  position: relative;
  height: 667px;
}
@media screen and (min-width: 600px) {
  .swiper-container {
    height: 735px;
  }
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.fv__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 667px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .fv__container {
    height: 735px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__container {
    width: calc(100% - 200px);
    height: 735px;
    left: auto;
    right: 0;
  }
}

/*========= レイアウトのためのCSS ===============*/
.slide-media {
  background-size: cover;
  position: relative;
}
.slide-media img {
  display: block;
  height: 665px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .slide-media img {
    height: 735px;
  }
}
.slide-media source {
  width: 100%;
  height: 735px;
}
.slide-media::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1; /* 画像より手前に配置 */
}
@media screen and (min-width: 900px) {
  .slide-media::before {
    height: 45.9863945578%;
    top: auto;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .slide,
.swiper-slide-duplicate-active .slide,
.swiper-slide-prev .slide {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #FFFFFF;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #D59B71;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  text-align: left;
  bottom: 6px;
  left: 10px;
}
@media screen and (min-width: 600px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 14px;
    left: 10px;
  }
}

.slide-title {
  z-index: 200;
  position: absolute;
  top: 124px;
  left: 20px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px; /* 200% */
  letter-spacing: 2.24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .slide-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.8px;
    gap: 14px;
    top: 600px;
    left: 56px;
  }
}

.fv__news {
  position: absolute;
  padding: 12px;
  bottom: 32px;
  left: 20px;
  width: 335px;
  height: 124px;
  opacity: 0.85;
  background: #FFFFFF;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .fv__news {
    padding: 16px;
    left: auto;
    bottom: 23px;
    right: 20px;
    width: 388px;
    height: 152px;
  }
}
@media (hover: hover) {
  .fv__news:hover {
    opacity: 0.7;
  }
}

.fv-news__tag {
  position: absolute;
  z-index: 999;
  top: 8px;
  left: -10px;
  height: 22px;
  background: url(../img/fv-icon.png) center/cover no-repeat;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px 1px 10px;
}
@media screen and (min-width: 1200px) {
  .fv-news__tag {
    left: -8px;
    height: 24px;
    padding: 3px 15px 4px 15px;
  }
}

.fv-news__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  overflow: hidden;
}
.fv-news__image img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* オプション: 拡大時のアニメーション効果を追加 */
}
@media screen and (min-width: 600px) {
  .fv-news__image {
    width: 120px;
    height: 120px;
  }
}
@media (hover: hover) {
  .fv-news__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.fv-news__textarea {
  font-size: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 11px;
}
@media screen and (min-width: 1200px) {
  .fv-news__textarea {
    margin-top: 0;
  }
}

.fv-news__date {
  font-weight: 500;
}

.fv-news__text {
  font-weight: 700;
  line-height: 18px; /* 150% */
  font-size: 12px;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .fv-news__text {
    font-size: 14px;
    line-height: 24px; /* 171.429% */
  }
}

.fv-news__decoration {
  position: absolute;
  top: -38px;
  right: 0;
  width: 125px;
  height: 75px;
  background: url(../img/fv-fukidashi.png) center/cover no-repeat;
}
@media screen and (min-width: 1200px) {
  .fv-news__decoration {
    top: -70px;
    width: 165px;
    height: 99px;
  }
}

.fv__decoration {
  position: relative;
}
.concept {
  margin-top: 120px;
  padding-bottom: 73px;
  margin-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .concept {
    max-width: 1280px;
    padding: 220px 0 340px 0;
    margin: 0 auto;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.concept::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .concept::before {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    opacity: 1;
    background: #EAE0D5;
    width: 984px;
    height: 60px;
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 200;
  }
}
@media screen and (min-width: 1200px) {
  .concept::before {
    top: 0;
  }
}

.concept-decoration1 {
  position: relative;
}
.concept-decoration1::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -17px;
  width: 145px;
  height: 130px;
  background: url(../img/concept-coffee-beans.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .concept-decoration1::before {
    width: 296px;
    height: 265px;
  }
}
.concept-decoration2 {
  position: absolute;
  z-index: 201;
  bottom: -74px;
  right: -33px;
}
.concept-decoration2 img {
  width: 119px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .concept-decoration2 {
    bottom: -109px;
    right: -34px;
  }
  .concept-decoration2 img {
    width: 201px;
    max-width: 201px;
  }
}

.concept__textbox {
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .concept__textbox {
    padding-inline: 6.25%;
    margin-top: 18px;
    max-width: 680px;
  }
}

.text-box__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.concept__message {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  .concept__message {
    margin-top: 48px;
    font-size: clamp(1.25rem, 0.6786rem + 1.1905vw, 1.75rem);
    line-height: 60px;
  }
}

.concept__textarea {
  margin-top: 31px;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .concept__textarea {
    margin-top: 48px;
    padding-right: 40px;
  }
}

.detail-button {
  margin: 56px auto 0;
}
@media screen and (min-width: 768px) {
  .detail-button {
    margin-left: 0;
  }
}

.concept__img {
  margin-top: 80px;
  text-align: left;
  position: relative;
}
.concept__img img {
  width: 84%;
}
@media screen and (min-width: 768px) {
  .concept__img {
    margin-top: 0;
    width: 46.875%;
    max-width: 600px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .concept__img img {
    width: 100%;
  }
}
.concept__img::before {
  content: "";
  position: absolute;
  bottom: -73px;
  left: 0;
  width: 355px;
  height: 100px;
  background: #EAE0D5;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept__img::before {
    bottom: -100px;
    left: 0;
    left: auto;
    max-width: 1190px;
    height: 300px;
  }
}

.lunch {
  background: #EAE0D5;
  padding-top: 56px;
  padding-bottom: 63px;
}
@media screen and (min-width: 1200px) {
  .lunch {
    padding-top: 81px;
    padding-bottom: 80px;
  }
}

.lunch-heading {
  text-align: center;
}

.lunch-menu__box {
  position: relative;
  margin: 62px auto 0;
  padding-bottom: 20px;
  background: #FFFFFF;
  max-width: 900px;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__box {
    padding-top: 60px;
    padding-bottom: 41px;
    max-width: 1180px;
    width: calc(100% - 100px);
  }
}
.lunch-menu__box::before {
  content: "";
  position: absolute;
  background: url(../img/lunch-ribbon-text.png) no-repeat center center/cover;
  top: -21px;
  left: 50%;
  width: 290px;
  height: 38px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 300;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__box::before {
    width: 352px;
    height: 44px;
    top: -20px;
  }
}
.lunch-menu__box::after {
  content: "";
  position: absolute;
  background: url(../img/lunch-fukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -235px;
  left: calc(50% - 15px);
  width: 50.6666666667%;
  height: 110px;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__box::after {
    top: -70px;
    left: calc(50% + 305px);
    width: 320px;
    height: 160px;
  }
}

.lunch-menu__lists {
  padding: 39px 19px 20px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px 41px 40px;
  }
  .lunch-menu__lists .lunch-menu__list:nth-child(2), .lunch-menu__lists .lunch-menu__list:nth-child(4) {
    -webkit-transform: translateY(41px);
            transform: translateY(41px);
  }
}

.lunch-menu__img img {
  width: 430.5px;
}
.lunch-menu__name {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__name {
    margin-top: 13px;
    gap: 14px;
  }
}

.lunch-menu__number {
  width: 24px;
  height: 24px;
  background: #222222;
  color: #FFFFFF;
  text-align: center;
  font-family: Patua One;
  font-size: 19px;
  letter-spacing: 2.28px;
  padding: 0 5.86px 1px 6.14px;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__number {
    width: 49px;
    height: 49px;
    font-size: 32px;
    letter-spacing: 3.84px;
    padding: 4px 13.29px 6px 14.71px;
  }
}

.lunch-menu__title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__title {
    font-size: 18px;
  }
}

.lunch-menu__set {
  margin: 0 auto;
  padding: 21px 10.17px 20px 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 40px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  background: #F7F6F4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .lunch-menu__set {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 55px;
    margin-top: 60px;
    max-width: 1100px;
    width: calc(100% - 80px);
    padding: 30px 6.3636363636% 20px 7.6363636364%;
  }
}

.set__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  gap: 35px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .set__content {
    gap: 95px;
    padding-inline: 0;
  }
}

.food-box {
  position: relative;
  max-width: 576.6666666667px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1200px) {
  .food-box {
    gap: 15px;
  }
}
.food-box::after {
  content: "";
  position: absolute;
  background: url(../img/icon-plus.png);
  background-size: contain;
  width: 13.359px;
  height: 13.323px;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .food-box::after {
    width: 26px;
    height: 26px;
    right: -45px;
  }
}
.food-box:last-child::after {
  display: none;
}

.food-img img {
  max-width: 100%;
  min-width: 80px;
  height: auto;
}
.food-name img {
  width: 35.064px;
}
@media screen and (min-width: 1200px) {
  .food-name img {
    width: 85px;
  }
}

.set__detail {
  margin-top: 9px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .set__detail {
    margin-top: 0;
  }
}

.set-menu__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .set-menu__title {
    text-align: right;
    font-size: 20px;
    white-space: nowrap;
  }
}

.set-menu__price {
  margin-top: -2px;
  position: relative;
  font-family: Damion;
  font-size: 40px;
}
@media screen and (min-width: 1200px) {
  .set-menu__price {
    font-size: 60px;
  }
}
.set-menu__price::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 148px;
  background: url(../img/lunch-underline.png);
  background-size: contain;
}

.lunch-time {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .lunch-time {
    font-size: 14px;
  }
}

.grand-menu {
  position: relative;
  padding-top: 119px;
  padding-bottom: 186px;
}
@media screen and (min-width: 768px) {
  .grand-menu {
    padding-top: 155px;
    padding-bottom: 240px;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.grand-menu::after {
  content: "";
  position: absolute;
  width: 274px;
  height: 84.9522047487%;
  top: 368px;
  right: 0;
  background: #EAE0D5;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .grand-menu::after {
    width: 80%;
    height: 79.341757273%;
    top: 543px;
  }
}

.grand-menu-heading {
  text-align: center;
}

.grand-menu__decoration1 {
  position: absolute;
  top: -80px;
  left: -43px;
}
.grand-menu__decoration1 img {
  width: 200px;
  left: -98px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .grand-menu__decoration1 {
    top: -140px;
    right: calc(50% + 350px);
  }
  .grand-menu__decoration1 img {
    width: 400px;
    height: 400px;
    max-width: 600px;
  }
}

.grand-menu__decoration2 {
  position: absolute;
  bottom: 26px;
  right: -40px;
}
@media screen and (min-width: 768px) {
  .grand-menu__decoration2 {
    bottom: 48px;
    right: -134px;
  }
}
.grand-menu__decoration2 img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .grand-menu__decoration2 img {
    width: 390px;
    height: 330px;
  }
}

.grand-menu__inner {
  padding-inline: 5.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .grand-menu__inner {
    padding-inline: 90px;
    max-width: 1280px;
  }
}

.grand-menu__boxes {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .grand-menu__boxes {
    margin-top: 40px;
  }
}

.grand-menu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grand-menu-box__title {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding: 5px 10px 6px 10px;
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__title {
    font-size: 24px;
    padding: 8px 21px 7px 21px;
  }
}
.grand-menu-box__title::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  content: "";
  border: 1px solid #222222;
}
.grand-menu-box__title::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  content: "";
  border: 1px solid #222222;
}

.grand-menu-box__container {
  margin-top: 20px;
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 19px;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__container {
    margin-top: 24px;
    margin-bottom: 100px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 34px;
  }
}

.grand-menu-box__img {
  border: 5px solid #FFFFFF;
}
.grand-menu-box__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__img {
    border: 8px solid #FFFFFF;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.grand-menu-box__name-top {
  margin-top: 9px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__name-top {
    font-size: 20px;
    margin-top: 12px;
  }
}

.grand-menu-box__price-top {
  font-family: Damion;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__price-top {
    font-size: 32px;
  }
}

@media screen and (min-width: 900px) {
  .grand-menu-box__drink-container {
    margin-top: 25px;
    gap: 62px;
  }
}
@media screen and (min-width: 1200px) {
  .grand-menu-box__drink-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.grand-menu-box__drink-img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .grand-menu-box__drink-img {
    display: block;
    border: 8px solid #FFFFFF;
    width: 343px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.grand-menu-box__drink-menu {
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .grand-menu-box__drink-menu {
    width: 100%;
    padding-inline: 0;
  }
}

.grand-menu-box__drink-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .grand-menu-box__drink-box {
    gap: 8px;
    margin-top: 12px;
  }
}

.grand-menu-box__drink-category {
  width: 100%;
}
.grand-menu-box__drink-category h2 {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #222222;
  padding-bottom: 12px;
  width: 100%;
}

.grand-menu-box__drink-body {
  margin-top: 16px;
  margin-bottom: 35px;
  gap: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
}
@media screen and (min-width: 900px) {
  .grand-menu-box__drink-body {
    gap: 51px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    margin-top: 0;
  }
}

.grand-menu-box__drink-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grand-menu-box__drink-name {
  font-size: 14px;
  font-weight: 700;
}

.grand-menu-box__drink-price {
  font-family: Damion;
  font-size: 20px;
}

.grand-menu__button {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .grand-menu__button {
    margin-top: 54px;
  }
}

.gallery {
  position: relative;
  background: #EAE0D5;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.gallery-heading {
  text-align: center;
}

.gallery__decoration1 {
  position: absolute;
  top: -50px;
  right: calc(50% + 10px);
  width: 200px;
  height: 100px;
  background: url(../img/gallery-fukidashi.png) center/cover no-repeat;
  z-index: 300;
}
@media screen and (min-width: 1200px) {
  .gallery__decoration1 {
    top: -20px;
    right: calc(50% + 76px);
    width: 260px;
    height: 120px;
  }
}

.gallery__decoration2 {
  position: absolute;
  bottom: -180px;
  right: calc(50% + 35px);
  width: 204.493px;
  height: 185.071px;
  background: url(../img/gallery-salada.png) center/cover no-repeat;
  z-index: 300;
}
@media screen and (min-width: 1200px) {
  .gallery__decoration2 {
    bottom: -186px;
    right: calc(50% + 376px);
    width: 354px;
    height: 320px;
  }
}

#sb_instagram {
  margin: 40px auto 0;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  #sb_instagram {
    padding-inline: 90px;
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  #sb_instagram {
    padding-inline: 0;
    width: 1100px;
    max-width: 1100px;
  }
}

@media screen and (min-width: 1200px) {
  .gallery__img img {
    width: 257px;
  }
}

.gallery__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .gallery__button {
    margin-top: 60px;
  }
}

.news {
  padding-top: 116px;
  padding-bottom: 167px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 122px;
  }
}

.news__container {
  margin-top: 40px;
  padding-inline: 20px;
  display: grid;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .news__container {
    max-width: 1140px;
    margin: 40px auto 0;
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 2fr;
  }
}

.main-post {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}
@media screen and (min-width: 768px) {
  .main-post {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}

.news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-bottom: 22px;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
  position: relative;
}
.news-box.normal-post {
  padding-bottom: 19px;
}

.news-box__img {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (hover: hover) {
  .news-box__img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.news-box__img img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* オプション: 拡大時のアニメーション効果を追加 */
}
.news-box__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
}
.normal-post .news-box__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px; /* 150% */
}
@media screen and (min-width: 768px) {
  .news-box__title {
    font-size: 20px;
    line-height: 32px;
    margin-top: 6px;
  }
  .normal-post .news-box__title {
    font-size: 14px;
    line-height: 24px;
  }
}

.news-box__text {
  font-size: 12px;
  line-height: 18px; /* 150% */
}
@media screen and (min-width: 768px) {
  .news-box__text {
    font-size: 14px;
    line-height: 24px; /* 171.429% */
  }
}

.news-box__date {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news-box__date {
    font-size: 14px;
  }
}

.news__button {
  text-align: center;
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 40px;
  }
}