@charset "UTF-8";
/* ============================================
   Variables
   ============================================
   プロジェクト全体で使用する変数を定義
   ============================================ */
/* --------------------------------------------
   Typography
   -------------------------------------------- */
/* --------------------------------------------
   Spacing
   -------------------------------------------- */
/* --------------------------------------------
   Breakpoints
   -------------------------------------------- */
/* --------------------------------------------
   Container
   -------------------------------------------- */
/* --------------------------------------------
   Z-index
   -------------------------------------------- */
/* --------------------------------------------
   Transitions
   -------------------------------------------- */
/* --------------------------------------------
   Border Radius
   -------------------------------------------- */
/* --------------------------------------------
   Box Shadow
   -------------------------------------------- */
/*
==================================================
Base - Breakpoints & Mixins
ブレイクポイントと基本ミックスイン
==================================================
*/
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "BIZ UDPGothic", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .l-section {
    padding: 100px 0;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #66340f;
}
.c-section-title__en {
  display: block;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-weight: 500;
}
.c-section-title__ja {
  font-size: 32px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: 21px;
  }
}
.c-section-title--white .c-section-title__en, .c-section-title--white .c-section-title__ja {
  color: #fff;
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
==================================================
Contact Form Styling
お問い合わせフォーム
==================================================
*/
.p-contact, .p-reserve {
  padding: 80px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-contact, .p-reserve {
    padding: 60px 0 0 0;
  }
}

.contact-form, .reserve-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
}
@media (max-width: 767px) {
  .contact-form, .reserve-form {
    padding: 30px 20px 0 0;
  }
}

.form-row {
  margin-bottom: 30px;
}
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #66340f;
  font-size: 16px;
}
.form-row label .required {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
}

.form-control {
  width: 95%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: #66340f;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-moz-placeholder {
  color: #999;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-ms-input-placeholder {
  color: #999;
}
.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
}

.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .radio-group {
    gap: 20px;
  }
}
.radio-group .wpcf7-list-item {
  margin: 0;
}
.radio-group .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
}
.radio-group .wpcf7-list-item label input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.short-field {
  width: 5em;
}

.member-number-field {
  margin-top: 15px;
}
.member-number-field label {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.privacy-check {
  text-align: center;
}
.privacy-check .wpcf7-list-item {
  margin: 0;
}
.privacy-check .privacy-checkbox {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.privacy-check a {
  color: #66340f;
  text-decoration: underline;
  margin-left: 10px;
}
.privacy-check a:hover {
  text-decoration: none;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  min-width: 300px;
  padding: 16px 60px;
  background: #66340f;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .submit-btn {
    min-width: 100%;
    padding: 16px 40px;
  }
}
.submit-btn:hover {
  background: rgb(146.4615384615, 74.6666666667, 21.5384615385);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
          box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
}
.submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  border-radius: 4px;
  font-weight: 600;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wpcf7 form.submitting .submit-btn {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/*
==================================================
Contact Thanks Page
お問い合わせ完了ページ
==================================================
*/
.p-contact-thanks, .p-reserve-thanks {
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff4e1));
  background: linear-gradient(180deg, #fff 0%, #fff4e1 100%);
}
@media (max-width: 767px) {
  .p-contact-thanks, .p-reserve-thanks {
    padding: 60px 0;
  }
}

.p-contact-thanks__content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact-thanks__content {
    padding: 40px 20px;
  }
}

.c-icon--check {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: #66340f;
  border-radius: 50%;
  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;
  -webkit-animation: scaleIn 0.5s ease-out;
          animation: scaleIn 0.5s ease-out;
}
.c-icon--check svg {
  width: 50px;
  height: 50px;
  color: #fff;
}

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

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.p-contact-thanks__title {
  font-size: 28px;
  font-weight: 700;
  color: #66340f;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-contact-thanks__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.p-contact-thanks__text {
  margin-bottom: 40px;
  line-height: 1.8;
}
.p-contact-thanks__text p {
  margin-bottom: 12px;
  color: #333;
}
.p-contact-thanks__text p:last-child {
  margin-bottom: 0;
}

.p-contact-thanks__note {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-contact-thanks__note {
    padding: 20px;
  }
}

.p-contact-thanks__note-title {
  font-size: 16px;
  color: #66340f;
  margin-bottom: 15px;
}
.p-contact-thanks__note-title strong {
  font-weight: 700;
}

.p-contact-thanks__note-list {
  list-style: none;
  padding: 0;
}
.p-contact-thanks__note-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #555;
}
.p-contact-thanks__note-list li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #66340f;
  font-weight: 700;
}
.p-contact-thanks__note-list li:last-child {
  margin-bottom: 0;
}
.p-contact-thanks__note-list li strong {
  color: #66340f;
}

.p-contact-thanks__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .p-contact-thanks__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-btn {
    padding: 14px 30px;
  }
}

.c-btn--primary {
  background: #66340f;
  color: #fff;
}
.c-btn--primary:hover {
  background: rgb(146.4615384615, 74.6666666667, 21.5384615385);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
          box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
}

.c-btn--secondary {
  background: #fff;
  color: #66340f;
  border: 2px solid #66340f;
}
.c-btn--secondary:hover {
  background: #66340f;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
          box-shadow: 0 4px 12px rgba(102, 52, 15, 0.3);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, padding 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, padding 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, -webkit-box-shadow 0.4s ease;
  padding: 0 0 15px 0;
  /* 左側：ロゴとSNS */
  /* 右側：ナビゲーション */
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .l-header__inner {
    padding: 0 60px;
  }
}
.l-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.l-header__logo {
  padding: 0;
  margin: 0;
}
.l-header__logo img {
  width: 100px;
}
@media (min-width: 1025px) {
  .l-header__logo img {
    width: 200px;
  }
}
.l-header__sns {
  display: none;
}
@media (min-width: 1025px) {
  .l-header__sns {
    padding-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .l-header__sns a {
    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;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: #66340f;
    font-size: 1.6rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__sns a:hover {
    background-color: #333;
    color: #fff;
  }
}
.l-header__nav {
  display: none;
}
@media (min-width: 1025px) {
  .l-header__nav {
    padding-top: 45px;
    display: block;
  }
}
@media (min-width: 1025px) {
  .l-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__item a {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.2;
  color: #66340f;
}
@media (min-width: 1025px) {
  .l-header__item a {
    margin-bottom: 0;
  }
}
.l-header__jp {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 3px;
}
.l-header__en {
  font-size: 0.75rem;
  font-family: sans-serif;
}
.l-header.is-scrolled {
  background-color: #fff4e1;
  background-image: none;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
@media (max-width: 767px) {
  .l-header.is-scrolled {
    padding: 0;
  }
}
.l-header.is-scrolled .l-header__logo img {
  width: 100px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .l-header.is-scrolled .l-header__logo img {
    width: 70px;
    padding: 0;
  }
}

/* ハンバーガーメニュー (SPのみ) */
.c-hamburger {
  margin-top: 28px;
  margin-right: 20px;
  display: block;
  width: 38px;
  height: 25px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.c-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger span:nth-of-type(1) {
  top: 0;
}
.c-hamburger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-hamburger span:nth-of-type(3) {
  bottom: 0;
}
@media (min-width: 1025px) {
  .c-hamburger {
    display: none;
  }
}

/* ドロワーメニュー (SP用) */
.l-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffdcbe;
  z-index: 150;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__drawer.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__drawer-list {
  text-align: center;
}
.l-header__drawer-list li {
  margin-bottom: 20px;
}
.l-header__drawer-list li .l-header__jp {
  font-size: 16px;
}
.l-header__drawer-list li a {
  color: #66340f;
  margin-bottom: 25px;
}
.l-header__drawer-sns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
}
.l-header__drawer-sns a {
  width: 18%;
  height: auto;
}
.l-header__drawer-sns img {
  width: 100%;
  height: auto;
}
.l-header__drawer-online-btn {
  text-align: center;
  margin-top: 30px;
}

.c-hamburger.is-active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.p-page-header__hero {
  position: relative;
  padding: 90px 0 50px;
  background: #d3ae95 url(../../../../../../assets/images/common/page-head-wave.png) no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media (min-width: 1025px) {
  .p-page-header__hero {
    padding: 140px 0 80px;
  }
}
.p-page-header__hero-content {
  text-align: center;
}
.p-page-header__hero-title {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: #66340f;
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .p-page-header__hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.p-page-header__hero-title-en {
  display: block;
  font-size: 18px;
  font-weight: 300;
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .p-page-header__hero-title-en {
    font-size: 24px;
  }
}

/* ============================================
   Footer
   ============================================ */
.l-footer {
  background-color: #5a3a1a;
  color: #fff;
  /* フッター内側コンテナ */
  /* ナビゲーション */
  /* ロゴ */
  /* オンラインショップボタン */
  /* SNSアイコン */
  /* コピーライト */
}
@media (min-width: 768px) {
  .l-footer {
    padding: 0;
    padding: 60px 0 0;
  }
}
.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  direction: rtl;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  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: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .l-footer__nav-list {
    text-align: left;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) {
  .l-footer__nav-item {
    width: 48%;
  }
}
.l-footer__nav-link {
  display: inline-block;
  color: #fff;
  font-size: 1.0769230769rem;
  line-height: 1.6;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-footer__nav-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    padding: 10px;
  }
}
.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin: auto;
  }
}
.l-footer__logo-link {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-footer__logo-link:hover {
  opacity: 0.7;
}
.l-footer__logo-img {
  width: 220px;
  height: auto;
}
.l-footer__link {
  margin: 60px auto 0;
  text-align: center;
}
.l-footer__shop {
  grid-column: 3/4;
  grid-row: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer__shop {
    grid-column: 1/-1;
    grid-row: 3/4;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__shop-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 4px;
}
.l-footer__shop-link i {
  font-size: 0.875rem;
}
.l-footer__shop-link:hover {
  background-color: #D2691E;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__shop-link {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
}
.l-footer__sns {
  margin-top: 2dvb;
}
.l-footer__sns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-footer__sns-link {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-footer__sns-link:hover {
  background-color: #D2691E;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
.l-footer__copyright {
  padding: 20px;
  text-align: center;
}
.l-footer__copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright-text {
    font-size: 0.6875rem;
  }
}

/* ============================================
   Page Top Button
   ============================================ */
.c-pagetop {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 100px;
  height: 100px;
  border: none;
  cursor: pointer;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 300;
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

/* 固定ボタン */
.c-online-shop-button--image {
  position: fixed;
  top: 40%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
}

/* ... */
.p-shop {
  padding: 100px 0 0 0;
  color: #fff;
  position: relative;
  background-color: #5a3a1a;
  /* グリッドレイアウト */
  /* 各カード共通 */
}
@media (min-width: 768px) {
  .p-shop {
    padding: 180px 0;
    background: url("../images/common/store_bg.jpg") no-repeat center center;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .p-shop__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.p-shop__header {
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .p-shop__header {
    margin-top: 200px;
  }
}
.p-shop__subtitle {
  font-size: 0.875rem;
  color: #dcbfa8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.p-shop__container {
  gap: 30px;
}
@media (min-width: 768px) {
  .p-shop__info-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .p-shop__info-card, .p-shop__photo-card, .p-shop__calendar-card, .p-shop__map-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 25px auto;
  }
}
@media (min-width: 768px) {
  .p-shop__info-card {
    padding: 40px;
  }
}
.p-shop__info-content {
  color: #fff;
  padding: 30px;
}
@media (min-width: 768px) {
  .p-shop__info-content {
    color: #66340f;
    padding: 0;
  }
  .p-shop__info-content__photo {
    width: 480px;
  }
}
.p-shop__info-content__name-jp {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.p-shop__info-content__name-en {
  font-size: 0.875rem;
  margin-top: 0;
}
.p-shop__info-content__data .p-shop__add {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .p-shop__info-content__data .p-shop__add span {
    display: block;
    padding-right: 0.5em;
  }
}
.p-shop__info-content__data .p-shop__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.p-shop__info-content__data .p-shop__row dt {
  width: 5em;
}
.p-shop__info-content__data .p-shop__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
.p-shop__info-content__access {
  margin-top: 30px;
}
.p-shop__info-content__access-title i {
  margin-right: 10px;
}
.p-shop__info-content__access-list {
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.p-hero {
  position: relative;
  padding-top: 0;
  width: 100%;
}
.p-hero__inner {
  width: 100%;
  margin: 0;
  padding: 0;
}
.p-hero__img {
  position: relative;
  width: 100%;
}
.p-hero__img > img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .p-hero__img > img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center right;
       object-position: center right;
  }
}
.p-hero__catch {
  color: #66340f;
  position: absolute;
  z-index: 2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  top: 150px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 16px;
}
.p-hero__catch.js-fade {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media (min-width: 768px) {
  .p-hero__catch {
    letter-spacing: 0.1em;
    top: 40%;
    left: 5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   News Section
   ========================================================================== */
.p-news {
  background-color: #ffdcbe;
}
@media (min-width: 768px) {
  .p-news {
    background: #ffdcbe url(../../../../../../assets/images/home/illust01.png) no-repeat;
    background-position: 5% 10%;
  }
}
.p-news__list {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  color: #66340f;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-news__item {
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.p-news__img {
  width: 340px;
  height: 340px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-news__img {
    width: 200px;
    height: 200px;
  }
}
.p-news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news__date {
  margin-bottom: 0;
}

/* ==========================================================================
   Concept & Featured Section (Parallax)
   ========================================================================== */
.p-concept,
.p-featured {
  position: relative;
  width: 100%;
}
.p-concept__visual,
.p-featured__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}
@media (min-width: 1025px) {
  .p-concept__visual,
  .p-featured__visual {
    height: 880px;
    background-attachment: fixed;
  }
}
.p-concept__body,
.p-featured__body {
  position: relative;
  z-index: 2;
  background-color: #d3ae95;
  color: #66340f;
  padding: 60px 0;
  text-align: center;
}
.p-concept__body h3,
.p-featured__body h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .p-concept__body h3,
  .p-featured__body h3 {
    font-size: 21px;
    font-weight: 700;
  }
}
.p-concept__text,
.p-featured__text {
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: 40px;
}
.p-concept__chef,
.p-featured__chef {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}
.p-concept__chef img,
.p-featured__chef img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-concept__chef,
  .p-featured__chef {
    margin-bottom: 40px;
  }
}

.p-concept__body {
  background-color: #d3ae95;
}
@media (min-width: 1025px) {
  .p-concept__body {
    background: #d3ae95 url(../../../../../../assets/images/home/illust02.png) no-repeat;
    background-position: 95% 90%;
  }
}

.p-concept__visual {
  background-image: url("../images/home/top_bg01.jpg");
}

.p-featured__visual {
  background-image: url("../images/home/top_bg02.jpg");
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.p-products {
  background-color: #ffdcbe;
}
@media (min-width: 1025px) {
  .p-products {
    background: #ffdcbe url(../../../../../../assets/images/home/illust04.png) no-repeat;
    background-position: 5% 10%;
  }
}
.p-products__grid {
  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;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-products__grid {
    gap: 40px;
  }
}
.p-products__item {
  max-width: 42%;
  text-align: center;
  margin-bottom: 20px;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-products__item {
    max-width: 30%;
    width: auto;
  }
}
.p-products__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .p-concept__body .l-inner {
    position: relative;
  }
  .p-concept__body .l-inner .p-concept__chef {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.p-calendar {
  background-color: #fff;
  padding: 20px 40px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.p-calendar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
  padding: 0 5px;
}
.p-calendar__title {
  font-size: 21px;
  font-weight: 700;
  color: #66340f;
}
.p-calendar__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  color: #66340f;
  line-height: 1;
}
.p-calendar__year {
  font-size: 24px;
  font-weight: 500;
}
.p-calendar__month {
  font-size: 60px;
  font-weight: 500;
}
.p-calendar__legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-calendar__legend-circle {
  display: block;
  width: 32px;
  height: 32px;
  background-color: #ffdcbe;
  border-radius: 50%;
}
.p-calendar__legend-text {
  font-size: 16px;
  font-weight: bold;
  color: #66340f;
}
.p-calendar__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.p-calendar__table th {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 25px;
  color: #66340f;
  text-align: center;
}
.p-calendar__table th.is-wed {
  color: #e65540;
}
.p-calendar__table td {
  text-align: center;
  padding: 12px 0;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #66340f;
}
.p-calendar__table td.is-empty {
  height: 50px;
}
.p-calendar__table td.is-holiday {
  color: #e65540;
}
.p-calendar__table td.is-holiday::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: #ffdcbe;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-calendar {
    padding: 40px 10px;
  }
  .p-calendar__month {
    font-size: 40px;
  }
  .p-calendar__table th {
    font-size: 12px;
    padding-bottom: 15px;
  }
  .p-calendar__table td {
    font-size: 16px;
  }
  .p-calendar__table td.is-holiday::before {
    width: 34px;
    height: 34px;
  }
}
.p-concept__story {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-concept__story {
    padding: 100px 0;
  }
}
.p-concept__story-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .p-concept__story-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    margin-bottom: 100px;
  }
}
.p-concept__story-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-concept__story-item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-concept__story-image {
  width: 100%;
}
@media (min-width: 768px) {
  .p-concept__story-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
    width: auto;
  }
}
.p-concept__story-image img {
  width: 100%;
  height: auto;
  display: block;
  -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;
}
.p-concept__story-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (min-width: 768px) {
  .p-concept__story-image-top {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 560px;
            flex: 0 0 560px;
    width: auto;
    margin-top: -200px;
  }
}
.p-concept__story-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-concept__story-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  padding-left: 30px;
  min-height: 60px;
}
.p-concept__story-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5d5b8;
  z-index: -1;
}
@media (min-width: 1025px) {
  .p-concept__story-title {
    font-size: 2rem;
    padding-left: 50px;
    min-height: 100px;
  }
  .p-concept__story-title::before {
    width: 100px;
    height: 100px;
  }
}
.p-concept__story-title--origin::before {
  background-color: #f5d5b8;
}
.p-concept__story-title--philosophy::before {
  background-color: #d4b89f;
}
.p-concept__story-title--future::before {
  background-color: #b39a86;
}
.p-concept__story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .p-concept__story-text p {
    font-size: 16px;
    line-height: 1.9;
  }
}
.p-concept__story-text p:last-child {
  margin-bottom: 0;
}
.p-concept__commitment {
  background: #ffdcbe;
  position: relative;
  padding: 120px 20px 100px;
  overflow: hidden;
}
.p-concept__commitment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: #fff url("../images//concept/wave-top.svg") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.p-concept__commitment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: #fff4e1 url("../images//concept/wave-bottom.svg") no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.p-concept__commitment .l-concept__inner {
  position: relative;
  z-index: 1;
}
.p-concept__section-title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin: 40px auto;
  color: #66340f;
}
@media (min-width: 768px) {
  .p-concept__section-title {
    font-size: 32px;
    margin: 120px auto 60px auto;
  }
}
.p-concept__commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-concept__commitment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
}
.p-concept__commitment-item {
  padding: 30px 20px;
  color: #66340f;
}
@media (min-width: 768px) {
  .p-concept__commitment-item {
    padding: 40px;
    width: 400px;
  }
}
.p-concept__commitment-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .p-concept__commitment-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
  }
}
.p-concept__commitment-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-concept__commitment-title {
  font-size: 20px;
  font-weight: 500;
  color: #66340f;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .p-concept__commitment-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.p-concept__commitment-subtitle {
  display: block;
  font-weight: 400;
  color: #66340f;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .p-concept__commitment-subtitle {
    font-size: 21px;
  }
}
.p-concept__commitment-text {
  color: #66340f;
  line-height: 1.8;
}
.p-concept__commitment-cta {
  text-align: center;
}
.p-concept__commitment-button {
  margin-bottom: 120px;
}
.p-concept__achievements {
  padding: 60px 0 0 0;
  background-color: #fff4e1;
}
@media (min-width: 768px) {
  .p-concept__achievements {
    padding: 100px 0 0 0;
  }
}
.p-concept__achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  color: #66340f;
}
@media (min-width: 768px) {
  .p-concept__achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    margin-bottom: 60px;
  }
}
.p-concept__achievement-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  background: #fff4e1 url("../images//concept/achievement-title-bg.png") no-repeat center center;
}
@media (min-width: 768px) {
  .p-concept__achievement-title {
    font-size: 28px;
    margin-bottom: 26px;
  }
}
.p-concept__achievement-title span {
  background-color: #fff4e1;
  padding: 10px 20px;
}
.p-concept__achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-concept__achievement-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
  margin-left: 1em;
}
@media (min-width: 768px) {
  .p-concept__achievement-list li {
    margin-bottom: 12px;
  }
}
.p-concept__achievement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 12px;
  background-color: #66340f;
  border-radius: 50%;
}
.p-concept__achievement-list li:last-child {
  margin-bottom: 0;
}
.p-concept__certificates {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-concept__certificates {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.p-concept__certificate-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .p-concept__certificate-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
.p-concept__certificate-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.p-concept__achievements-cta {
  text-align: center;
}

/* ==========================================================================
   Project: Concept Movie
   ========================================================================== */
.p-concept-movie {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-concept-movie {
    padding: 100px 0;
  }
}
.p-concept-movie__title {
  text-align: center;
  color: #66340f;
  font-size: 18px;
}
.p-concept-movie__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-concept-movie__video {
  width: 100%;
  /* 16:9のアスペクト比を維持 */
  aspect-ratio: 16/9;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.p-concept-movie__video iframe {
  width: 100%;
  height: 100%;
  border: none;
  vertical-align: middle;
}

/* ==========================================================================
   商品紹介ページ（Our Sweets）
   ========================================================================== */
/**
 * このファイルは商品紹介ページのスタイルを定義します
 * - ヒーローセクション
 * - カテゴリーボタン（画像切り替え）
 * - 商品グリッド表示
 * - ページネーション
 * - 商品モーダル
 */
/* --------------------------------------------------------------------------
   Category Navigation (Image Buttons)
   -------------------------------------------------------------------------- */
.p-oursweets__categories {
  padding: 60px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-oursweets__categories {
    padding: 40px 0;
  }
}
@media (min-width: 1025px) {
  .p-oursweets__categories {
    margin-top: -120px;
  }
}

.p-oursweets__category-nav {
  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;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-oursweets__category-nav {
    gap: 15px;
  }
}

.p-oursweets__category-button {
  position: relative;
  display: block;
  width: 280px;
  height: auto;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}
.p-oursweets__category-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.9;
}
@media screen and (max-width: 1024px) {
  .p-oursweets__category-button {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .p-oursweets__category-button {
    width: 45%;
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .p-oursweets__category-button {
    width: 100%;
    max-width: 280px;
  }
}

.p-oursweets__category-button-off {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-oursweets__category-button-on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-oursweets__category-button.is-active .p-oursweets__category-button-off {
  opacity: 0;
}
.p-oursweets__category-button.is-active .p-oursweets__category-button-on {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Products Section
   -------------------------------------------------------------------------- */
.p-oursweets__products {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .p-oursweets__products {
    padding: 40px 0 80px;
  }
}

.p-oursweets__product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .p-oursweets__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}

.p-oursweets__product-item {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.p-oursweets__product-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.p-oursweets__product-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.p-oursweets__product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
.p-oursweets__product-item:hover .p-oursweets__product-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-oursweets__product-content {
  padding: 20px;
}
@media (max-width: 767px) {
  .p-oursweets__product-content {
    padding: 15px;
  }
}

.p-oursweets__product-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 10px;
  text-align: center;
  color: #66340f;
}
@media (max-width: 767px) {
  .p-oursweets__product-title {
    font-size: 15px;
  }
}

.p-oursweets__product-subttl {
  display: block;
}

.p-oursweets__shop-link {
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #5d4037;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.p-oursweets__shop-link i {
  font-size: 1rem;
}
.p-oursweets__shop-link:hover {
  color: #fff;
  background-color: #5d4037;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 8px rgba(93, 64, 55, 0.3);
          box-shadow: 0 2px 8px rgba(93, 64, 55, 0.3);
}
@media (max-width: 767px) {
  .p-oursweets__shop-link {
    font-size: 12px;
    padding: 7px;
  }
  .p-oursweets__shop-link i {
    display: none;
  }
}

.p-oursweets__product-price {
  font-size: 1.8rem;
  color: #d84315;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .p-oursweets__product-price {
    font-size: 1.6rem;
  }
}

.p-oursweets__product-price-tax {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-left: 4px;
}

.p-oursweets__product-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #d84315;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .p-oursweets__product-badge {
    font-size: 1.1rem;
    padding: 5px 10px;
  }
}

.p-oursweets__no-products {
  text-align: center;
  padding: 80px 20px;
}
.p-oursweets__no-products p {
  font-size: 1.6rem;
  color: #666;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.p-oursweets__pagination {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-oursweets__pagination {
    margin-top: 40px;
  }
}

.p-oursweets__pagination-list {
  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;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-oursweets__pagination-item a,
.p-oursweets__pagination-item span {
  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;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #5d4037;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .p-oursweets__pagination-item a,
  .p-oursweets__pagination-item span {
    min-width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
.p-oursweets__pagination-item a:hover {
  background-color: #5d4037;
  color: #fff;
  border-color: #5d4037;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-oursweets__pagination-item span.current {
  background-color: #5d4037;
  color: #fff;
  border-color: #5d4037;
}
.p-oursweets__pagination-item .prev i,
.p-oursweets__pagination-item .next i {
  font-size: 1.2rem;
}
.p-oursweets__pagination-item span.dots {
  border: none;
  background: transparent;
  color: #999;
  cursor: default;
}
.p-oursweets__pagination-item span.dots:hover {
  -webkit-transform: none;
          transform: none;
}

/* --------------------------------------------------------------------------
   Modal (Product Detail)
   -------------------------------------------------------------------------- */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.c-modal.is-active {
  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;
}

.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.c-modal__container {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .c-modal__container {
    width: 95%;
    max-height: 95vh;
  }
}

.c-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  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;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10001;
}
.c-modal__close:hover {
  background-color: #5d4037;
  color: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-modal__close i {
  font-size: 2rem;
}

.c-modal__content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}
@media (max-width: 767px) {
  .c-modal__content {
    padding: 30px 20px;
  }
}

.c-modal__loading {
  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;
  min-height: 300px;
}

.c-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #5d4037;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-oursweets__product-item {
  -webkit-animation: fadeIn 0.6s ease forwards;
          animation: fadeIn 0.6s ease forwards;
}
.p-oursweets__product-item:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.p-oursweets__product-item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.p-oursweets__product-item:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.p-oursweets__product-item:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-oursweets__product-item:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.p-oursweets__product-item:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.p-oursweets__product-item:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.p-oursweets__product-item:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-oursweets__product-item:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.p-oursweets__product-item:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-oursweets__product-item:nth-child(11) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.p-oursweets__product-item:nth-child(12) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-oursweets__product-item:nth-child(13) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.p-oursweets__product-item:nth-child(14) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-oursweets__product-item:nth-child(15) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.p-news-list {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-news-list {
    padding: 60px 0;
  }
}
.p-news-list__empty {
  text-align: center;
  padding: 60px 20px;
}
.p-news-list__empty p {
  font-size: 1.6rem;
  color: #66340f;
}

.c-news-item {
  border-bottom: 1px solid #66340f;
}
.c-news-item:last-child {
  border-bottom: none;
}
.c-news-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .c-news-item__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
}
.c-news-item__link:hover {
  background-color: rgba(102, 52, 15, 0.02);
}
.c-news-item__date {
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #66340f;
  min-width: 100px;
}
@media (max-width: 767px) {
  .c-news-item__date {
    font-size: 14px;
  }
}
.c-news-item__title {
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .c-news-item__title {
    font-size: 14px;
  }
}
.c-news-item__link:hover .c-news-item__title {
  color: #66340f;
}

.c-pagination {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-pagination {
    margin-top: 40px;
  }
}
.c-pagination__list {
  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;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-pagination__item a,
.c-pagination__item span {
  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;
  width: 40px;
  height: 40px;
  padding: 5px;
  font-size: 1.4rem;
  text-decoration: none;
  border: 1px solid #66340f;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .c-pagination__item a,
  .c-pagination__item span {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}
.c-pagination__item .next,
.c-pagination__item .prev {
  border: none;
  color: #66340f;
}
.c-pagination__item .next span,
.c-pagination__item .prev span {
  border: none;
}
.c-pagination__item a {
  color: #66340f;
  background-color: #fff;
}
.c-pagination__item a:hover {
  background-color: #66340f;
  color: #fff;
  border-color: #66340f;
}
.c-pagination__item span.current {
  background-color: #66340f;
  color: #fff;
  border-color: #66340f;
  font-weight: 500;
}
.c-pagination__item span.dots {
  border: none;
  background: none;
}

.p-news-single {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-news-single {
    padding: 60px 0;
  }
}
.p-news-single__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-news-single__header {
    margin-bottom: 30px;
  }
}
.p-news-single__date {
  display: block;
  font-size: 16px;
  color: #66340f;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .p-news-single__date {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.p-news-single__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #66340f;
  margin: 0;
  border-bottom: 1px solid #66340f;
}
@media (max-width: 767px) {
  .p-news-single__title {
    font-size: 21px;
  }
}
.p-news-single__content {
  margin-bottom: 40px;
  color: #66340f;
}
@media (max-width: 767px) {
  .p-news-single__content {
    padding: 24px 15px;
    margin-bottom: 30px;
  }
}
.p-news-single__content p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-news-single__content p {
    font-size: 15px;
  }
}
.p-news-single__content p:last-child {
  margin-bottom: 0;
}
.p-news-single__content h2, .p-news-single__content h3, .p-news-single__content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.p-news-single__content h2:first-child, .p-news-single__content h3:first-child, .p-news-single__content h4:first-child {
  margin-top: 0;
}
.p-news-single__content h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #66340f;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .p-news-single__content h2 {
    font-size: 2rem;
  }
}
.p-news-single__content h3 {
  font-size: 2rem;
  border-left: 4px solid #66340f;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .p-news-single__content h3 {
    font-size: 1.8rem;
  }
}
.p-news-single__content h4 {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-news-single__content h4 {
    font-size: 1.6rem;
  }
}
.p-news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 4px;
}
.p-news-single__content ul, .p-news-single__content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.p-news-single__content ul li, .p-news-single__content ol li {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .p-news-single__content ul li, .p-news-single__content ol li {
    font-size: 1.5rem;
  }
}
.p-news-single__thumbnail {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-news-single__thumbnail {
    margin-bottom: 30px;
  }
}
.p-news-single__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.p-news-single__back {
  text-align: center;
  margin-top: 60px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .p-news-single__back {
    margin-top: 40px;
  }
}

.p-reserve__intro,
.p-contact__intro {
  text-align: center;
  color: #66340f;
}
.p-reserve__tel,
.p-contact__tel {
  margin-top: 20px;
  text-align: center;
  color: #66340f;
}
.p-reserve__tel-link,
.p-contact__tel-link {
  font-size: 26px;
  background-color: #d3ae95;
  color: #fff;
  font-weight: 700;
  padding: 20px;
  max-width: 400px;
  display: block;
  margin: 1em auto;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .p-reserve__tel-link,
  .p-contact__tel-link {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .p-reserve__tel-link,
  .p-contact__tel-link {
    pointer-events: none;
  }
}
.p-reserve__content,
.p-contact__content {
  color: #66340f;
}
.p-reserve__content p,
.p-contact__content p {
  margin-bottom: 1.5em;
  font-weight: 400;
}

.c-wave {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
  font-size: 0;
  pointer-events: none;
  /* ------------------------------------
     Hero & Section Start (上部に配置)
     ------------------------------------ */
  /* ------------------------------------
     Section End (下部に配置)
     ------------------------------------ */
}
.c-wave img {
  width: 100.5%;
  height: auto;
  display: block;
  vertical-align: bottom;
  margin-top: -1px;
  margin-bottom: -1px;
}
.c-wave--hero {
  bottom: 0;
  top: auto;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.c-wave--concept-start, .c-wave--featured-start, .c-wave--shop-start {
  top: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.c-wave--concept-end, .c-wave--featured-end {
  left: 0;
  z-index: 5;
  top: 300px;
  -webkit-transform: translateY(calc(-100% + 1px));
          transform: translateY(calc(-100% + 1px));
}
@media (min-width: 1025px) {
  .c-wave--concept-end, .c-wave--featured-end {
    top: 880px;
  }
}

.c-wave--hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/home/dot01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-wave--hero::before {
    top: -80px;
  }
}
@media (min-width: 768px) {
  .c-wave--hero::before {
    max-width: 800px;
    height: 340px;
  }
}

.c-wave--brown-start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/home/dot02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-wave--brown-start::before {
    top: -80px;
  }
}
@media (min-width: 768px) {
  .c-wave--brown-start::before {
    top: -250px;
    max-width: 800px;
    height: 340px;
  }
}

.c-wave--featured-start::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/home/dot03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .c-wave--featured-start::before {
    max-width: 800px;
    height: 340px;
  }
}

.c-wave--featured-end::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/home/dot04.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.8;
  pointer-events: none;
}
@media (min-width: 768px) {
  .c-wave--featured-end::before {
    max-width: 1600px;
    height: 1000px;
  }
}

.c-wave--shop-start::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/home/dot05.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.8;
  pointer-events: none;
}
@media (min-width: 768px) {
  .c-wave--shop-start::before {
    max-width: 800px;
    height: 340px;
  }
}

/* ==========================================================================
   Button Component
   ========================================================================== */
/**
 * 基本ボタンスタイル
 * .c-btn - 標準ボタン（円形背景なし）
 */
.c-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #d3ae95;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.c-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.c-btn--white {
  background-color: #fff;
  color: #66340f;
}
.c-btn--outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.c-btn--outline:hover {
  background-color: #d3ae95;
  color: #fff;
}

/**
 * 円形背景ボタン
 * .c-btn-circle - 背景に円形を持つボタン
 */
.c-btn-circle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 50px 20px 30px;
  color: #66340f;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  z-index: 1;
}
.c-btn-circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(220, 215, 205, 0.5);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn-circle:hover::before {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
  opacity: 0.9;
}
.c-btn-circle--gray::before {
  background-color: rgba(220, 220, 220, 0.6);
}
.c-btn-circle--beige::before {
  background-color: rgba(235, 225, 210, 0.8);
}
.c-btn-circle--white::before {
  background-color: rgba(255, 255, 255, 0.9);
}
.c-btn-circle--brown {
  color: #fff;
}
.c-btn-circle--brown::before {
  background-color: rgba(101, 67, 33, 0.8);
}
.c-btn-circle--small {
  padding: 15px 40px 15px 25px;
  font-size: 16px;
}
.c-btn-circle--small::before {
  width: 160px;
  height: 160px;
}
.c-btn-circle--large {
  padding: 25px 60px 25px 35px;
  font-size: 21px;
}
.c-btn-circle--large::before {
  width: 240px;
  height: 240px;
}
@media (min-width: 768px) {
  .c-btn-circle {
    padding: 22px 55px 22px 32px;
    font-size: 20px;
  }
  .c-btn-circle--small {
    padding: 18px 45px 18px 28px;
    font-size: 18px;
  }
  .c-btn-circle--small::before {
    width: 180px;
    height: 180px;
  }
  .c-btn-circle--large {
    padding: 28px 65px 28px 38px;
    font-size: 21px;
  }
  .c-btn-circle--large::before {
    width: 260px;
    height: 260px;
  }
}

/**
 * ボタンコンテナ（中央寄せなど）
 */
.c-btn-wrapper {
  text-align: center;
}
.c-btn-wrapper--left {
  text-align: left;
}
.c-btn-wrapper--right {
  text-align: right;
}

/* --------------------------------------------------------------------------
   Button Styles (c-button)
   -------------------------------------------------------------------------- */
.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-button i {
  font-size: 15px;
}
.c-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .c-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ==========================================================================
   商品モーダルコンテンツ（c-product-modal）
   ========================================================================== */
/**
 * このファイルはモーダル内の商品詳細表示スタイルを定義します
 * - 商品画像と情報の2カラムレイアウト
 * - 価格・カロリー・予約日数のバッジ
 * - アレルギーアイコン表示
 * - CTAボタン
 */
/* --------------------------------------------------------------------------
   Product Modal Container
   -------------------------------------------------------------------------- */
.c-product-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .c-product-modal {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.c-product-modal__left {
  position: relative;
}
@media (min-width: 1025px) {
  .c-product-modal__left {
    width: 400px;
  }
}

/* --------------------------------------------------------------------------
   Product Image
   -------------------------------------------------------------------------- */
.c-product-modal__image {
  width: 400px;
  height: 400px;
  overflow: hidden;
}
.c-product-modal__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-product-modal__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* --------------------------------------------------------------------------
   Product Info
   -------------------------------------------------------------------------- */
.c-product-modal__info {
  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;
}

.c-product-modal__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 50px 0 0 0;
  color: #66340f;
}
@media (max-width: 767px) {
  .c-product-modal__title {
    font-size: 21px;
    margin: 0;
  }
}

/* --------------------------------------------------------------------------
   Price & Tax
   -------------------------------------------------------------------------- */
.c-product-modal__price {
  border-bottom: 2px solid #66340f;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.c-modal__product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-product-modal__price {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #66340f;
}
@media (max-width: 767px) {
  .c-product-modal__price {
    font-size: 21px;
  }
}
.c-product-modal__tax {
  font-size: 21px;
  margin-left: 6px;
}
.c-product-modal__calories, .c-product-modal__reservation {
  color: #b06b46;
  font-weight: 700;
  padding-right: 1em;
}
.c-product-modal__calories-label, .c-product-modal__reservation-label {
  color: #fff;
  background-color: #b06b46;
  border-radius: 20px;
  margin-right: 12px;
  padding: 6px 12px;
}
@media (max-width: 767px) {
  .c-product-modal__calories, .c-product-modal__reservation {
    font-size: 18px;
    padding: 5px 0;
    width: 100%;
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Description
   -------------------------------------------------------------------------- */
.c-product-modal__description {
  line-height: 1.8;
  color: #66340f;
  font-size: 14px;
  font-weight: 500;
}
.c-product-modal__description p {
  margin: 0 0 16px;
}

/* --------------------------------------------------------------------------
   allergens
   -------------------------------------------------------------------------- */
.c-modal__allergen-icons {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.c-modal__product-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #b06b46;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.c-modal__product-section-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 2px dotted currentColor;
  margin-bottom: 0.2em;
}

/* --------------------------------------------------------------------------
   Actions (CTA Buttons)
   -------------------------------------------------------------------------- */
.c-product-modal__actions {
  gap: 12px;
  margin-top: 20px;
}

.c-modal__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  font-weight: bold;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
.c-modal__button:hover {
  opacity: 0.8;
}
.c-modal__button--primary {
  background-color: #5a3a1a;
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 18px;
  width: 100%;
  max-width: 400px;
}
.c-modal__button--primary i {
  margin-right: 12px;
  font-size: 1.4em;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- *//*# sourceMappingURL=style.css.map */