@charset "utf-8";


/* フォント ------------------------------------------------------------ */
@font-face {
  font-family: 'yumin';
  src: url('../fonts/yumin.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* js ------------------------------------------------------------ */
/* 基本のフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延クラス */
.fade-in.delay-1s { transition-delay: 0.1s; }
.fade-in.delay-2s { transition-delay: 0.2s; }
.fade-in.delay-3s { transition-delay: 0.3s; }
.fade-in.delay-4s { transition-delay: 0.4s; }
.fade-in.delay-5s { transition-delay: 0.5s; }

/* 親子連動パターン */
.fade-group {
  /* 親要素は非表示のまま */
}

.fade-group.is-triggered .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* 子要素の遅延は維持 */
.fade-group.is-triggered .fade-in.delay-1s { transition-delay: 0.1s; }
.fade-group.is-triggered .fade-in.delay-2s { transition-delay: 0.2s; }
.fade-group.is-triggered .fade-in.delay-3s { transition-delay: 0.3s; }


/* BASIC ------------------------------------------------------------ */
.or-color-yellow {
  color: #F6A717 !important;
}

.or-color-gold{
    color: #C2AB9D !important;
}

.or-color-gold2{
  color: #CEB175 !important;
}

.or-color-orange{
  color: #CA8E7C !important;
}

.or-color-pink{
  color: #B87884 !important;
}


.or-bg-gold{
  background: #CAAA69 !important;
}

.or-bg-orange{
  background: #C58470 !important;
}

.or-bg-pink{
  background: #B26C79 !important;
}

.border-gray-100{
    border: 1px solid #ECECEC !important;
}
.border-bottom-gray-100{
    border-bottom: 1px solid #ECECEC !important;
}

.list-unstyled,
.list-unstyled li{
    list-style: none !important;
}   

.list-disc,
.list-disc li{
    list-style-type: disc !important;
    list-style-position: outside !important;
    margin-left: 0.4rem;
}

.btn-plan-gold {
    background: #CAAA69;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 2em;
    padding: 0.7em 0;
    transition: background 0.2s, color 0.2s;
    &:hover {
      background: #d6b574;
      color: #fff;
    }
  }

  .btn-plan-orange {
    background: #C58470;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 2em;
    padding: 0.7em 0;
    transition: background 0.2s, color 0.2s;
    &:hover {
      background: #cf8872;
      color: #fff;
    }
  }

  .btn-plan-pink {
    background: #B26C79;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 2em;
    padding: 0.7em 0;
    transition: background 0.2s, color 0.2s;
    &:hover {
      background: #c97b8a;
      color: #fff;
    }
  }

  .btn-plan-gray {
    background: #949494;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 2em;
    padding: 0.7em 0;
    transition: background 0.2s, color 0.2s;
    &:hover {
      background: #b5b5b5;
      color: #fff;
    }
  }

  .btn-block.btn-w-limited{
    max-width: 280px !important;
  }

  .fontQuattrocento.or-fw-bold{
    font-weight: 600 !important;
  }

  .or-lh-16{
    line-height: 1.6 !important;
  }

  .or-lh-18{
    line-height: 1.8 !important;
  }

  .bg-text-yellow{
    position: relative;
    z-index: 1;
  }

  .bg-text-yellow::after{
    content: "";
    position: absolute;
    bottom: -0.2em;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ffe957;
    z-index: -1;
  }


/* CONTENT ------------------------------------------------------------ */
.hero-image {
  /* aspect-ratio: 16 / 7.5; */
  aspect-ratio: 16 / 6.5;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-image.pst-top img{
  object-position: top !important;
}

.hero-image.pst-bottom img{
  object-position: bottom !important;
}

@media (min-width: 768px) {
  .hero-image {
    aspect-ratio: 3 / 4;
  }
}

.hero-image {
  aspect-ratio: 16 / 7.5;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 768px) {
  .hero-image {
    aspect-ratio: 3 / 4;
  }
}

.content-hero-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 576px) {
  .content-hero-image {
    aspect-ratio: 144 / 65;
  }
}
@media (min-width: 768px) {
  .content-hero-image {
    aspect-ratio: 144 / 65;
  }
}
.content-hero-image__no-aspect {
  aspect-ratio: auto !important;
}
.content-hero-image__no-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.content-hero-image__thin {
  aspect-ratio: 4 / 3;
}
.content-hero-image__thin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 576px) {
  .content-hero-image__thin {
    aspect-ratio: 16 / 9; 
  }
}
@media (min-width: 992px) {
  .content-hero-image__thin {
    aspect-ratio: 144 / 44;
  }
}

.hero-svg {
  width: clamp(280px, 30vw, 500px);
  height: auto;
  position: absolute;
  right: 5vw;
  top: 50%;
  opacity: 1;
  /* transform: translateY(-50%); */

  @media (min-width: 768px) {
    width: clamp(300px, 30vw, 500px);
    right: 10vw;
    top: 50%;
  }
}

.hero-svg-2 {
  width: clamp(280px, 30vw, 800px);
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  padding-top: 60px;
  transform: translate(-50%, -50%);
  opacity: .9;
  /* transform: translateY(-50%); */

  @media (min-width: 768px) {
    width: clamp(300px, 30vw, 800px);
    padding-top: 25vw;
    top: 50%;
  }
}

.propose-lead-section {
  background: #fff;
  /* padding: 60px 0; */
}

.propose-title {
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  font-weight: bold;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.propose-lead-text {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  color: #000;
  /* line-height: 2; */
}

.propose-text {
  font-size: 1.3rem;
  color: #000;
  line-height: 2;
}

.propose-small-text {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #000;
}

.propose-lead-store-info{
    width: 100%;
    max-width: 480px;
    margin: 0 auto; 
}


/* SWIPER ------------------------------------------------------------ */
.scroll-img {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: #fff;
  }
  .scroll-swiper {
    width: 100%;
  }
    .scroll-swiper .swiper-slide {
        width: 50vw; /* 画像サイズに合わせて調整 */
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    @media (min-width: 576px) {
        .scroll-swiper .swiper-slide{
            width: 28vw;
        }
    }
  .scroll-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
  }

  .scroll-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }

  /* PLAN ------------------------------------------------------------ */

  .plan-section {
    background: #fff;
    padding: 60px 0;
  }

  .plan-section .propose-plan-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
  }
  .plan-section .plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s;
  }
  .plan-section .plan-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .plan-section .plan-card .plan-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .plan-section .plan-card .plan-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .plan-section .plan-card .plan-card-img .plan-card-badge {
    top: 12px;
    right: 12px;
    background: #F6A717;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.3em 1em;
    border-radius: 1em;
    position: absolute;
    z-index: 2;
  }
  .plan-section .plan-card .plan-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .plan-section .plan-card .plan-card-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: #B68B5E;
  }
  .plan-section .plan-card .plan-card-tax {
    font-size: 1.0rem;
    color: #5f5f5f;
    margin-left: 0.5em;
  }
  .plan-section .plan-card .plan-card-name {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5em;
    font-weight: bold;
  }
  .plan-section .plan-card .plan-card-name small {
    font-size: 1.0rem;
    color: #000000;
    font-weight: bold;
  }
  .plan-section .plan-card .plan-card-name strong{
    font-weight: bolder;
  }
  .plan-section .plan-card .plan-card-list {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2em;
    padding-left: 1.2em;
  }
  .plan-section .plan-card .plan-card-list li {
    margin-bottom: 0.3em;
    /* list-style: disc; */
  }
  .plan-section .plan-card .plan-card-point {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.2em;
  }
  .plan-section .plan-card .plan-card-point ul {
    padding-left: 1.2em;
    margin-bottom: 0;
  }
  .plan-section .plan-card .plan-card-point ul li {
    list-style: circle;
    margin-bottom: 0.2em;
  }


  /* DINNER ------------------------------------------------------------ */
   .plan-section {
    /* background: #fff; */
    padding: 0;
  }
  .plan-section .plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s;
  }
  .plan-section .plan-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .plan-section .plan-card .dinner-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .plan-section .plan-card .dinner-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
  }
  .plan-section .plan-card .dinner-card-img .dinner-card-badge {
    display: block;
    width: 56px;
    height: auto;
    top: 16px;
    right: 16px;
    position: absolute;
    z-index: 2;
  }
  .plan-section .plan-card .dinner-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  .plan-section .plan-card .dinner-card-title {
    color: #222;
    margin-bottom: 0.5em;
  }
  .plan-section .plan-card .dinner-card-title strong {
    font-weight: bold !important;
  }
  .plan-section .plan-card .btn-dinner-detail {
    background: #D4BB91;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    border-radius: 2em;
    padding: 0.7em 2.5em;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
  }
  .plan-section .plan-card .btn-dinner-detail:hover {
    background: #c8a973;
    color: #fff;
  }



  /* Store ------------------------------------------------------------ */

  .propose-store-section {
    background: #ffffff;
  }

  .googlemap-iframe{
        width: 100%;
        height: 100%;
        min-height: 480px;
}

  .faq-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .faq-card .card-body{
    padding: 1.5rem 2rem;
    font-size: 1.3rem !important;
    color: #222;
    line-height: 1.8;
  }


  

  .faq-card .card-header{
    border-bottom: none;
  }

  .faq-card .card-header .btn-link:hover{
    text-decoration: none;
    color: #222;
  }

  .faq-card .btn:focus, .faq-card .btn.focus{
    box-shadow: none;
    outline: none;
  }

  .faq-toggle {
    background: #fff;
    color: #222;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 3.2rem 4.8rem 2.6rem 2rem;
    /* border-radius: 20px; */
    box-shadow: none;
    outline: none;
    position: relative;
    transition: background 0.2s;

    @media (min-width: 768px) {
      padding: 3.2rem 4.8rem 2.6rem 2rem;
    }
  }
  .faq-toggle:focus {
    background: #f8f8f8;
    outline: none;
  }

  .faq-toggle-body{
    padding: 3.2rem 4.8rem 2.6rem 2rem !important;
  }

.wrap-faq-arrow{
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);

  @media (min-width: 768px) {
    right: 2.4rem;
  }
}

  .faq-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
    transition: transform 0.3s;
  }
  .faq-toggle[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
  }
  .card-body {
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 1rem;
    color: #222;
    padding: 1.5rem 2rem;
  }


/* モバイルナビゲーションのスクロール問題修正 */

/* ナビゲーション内のスクロール強制有効化 */
#gnav.active {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
}

/* モバイルナビ開閉時のbody制御 - 元々の実装に合わせてgnav-openクラスを使用 */
@media (max-width: 991px) {
  body.gnav-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }
  
  body.gnav-open #gnav.active {
    overflow-y: auto !important;
    height: 100vh !important;
    position: fixed !important;
    top: 40px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
  }
}

/* Unit Cal ------------------------------------------------------------ */
.unit-cal {
  border-top: 7px solid #B26C79;
}