@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;
}
@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 ------------------------------------------------------------ */

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

  .propose-plan-section .propose-plan-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
  }
  .propose-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;
  }
  .propose-plan-section .plan-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .propose-plan-section .plan-card .plan-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .propose-plan-section .plan-card .plan-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .propose-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;
  }
  .propose-plan-section .plan-card .plan-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .propose-plan-section .plan-card .plan-card-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: #B68B5E;
  }
  .propose-plan-section .plan-card .plan-card-tax {
    font-size: 1.0rem;
    color: #5f5f5f;
    margin-left: 0.5em;
  }
  .propose-plan-section .plan-card .plan-card-name {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5em;
    font-weight: bold;
  }
  .propose-plan-section .plan-card .plan-card-name small {
    font-size: 1.0rem;
    color: #000000;
    font-weight: bold;
  }
  .propose-plan-section .plan-card .plan-card-name strong{
    font-weight: bolder;
  }
  .propose-plan-section .plan-card .plan-card-list {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2em;
    padding-left: 1.2em;
  }
  .propose-plan-section .plan-card .plan-card-list li {
    margin-bottom: 0.3em;
    /* list-style: disc; */
  }
  .propose-plan-section .plan-card .plan-card-point {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.2em;
  }
  .propose-plan-section .plan-card .plan-card-point ul {
    padding-left: 1.2em;
    margin-bottom: 0;
  }
  .propose-plan-section .plan-card .plan-card-point ul li {
    list-style: circle;
    margin-bottom: 0.2em;
  }


  /* RING ------------------------------------------------------------ */
  .propose-ring-section {
    background: #FAFAFA;
  }
  .propose-ring-section .ring-list-section {
    background: #FAFAFA;
    padding: 0;
  }
  .propose-ring-section .ring-list-section .ring-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;
  }
  .propose-ring-section .ring-list-section .ring-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-img img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-img .ring-card-badge {
    display: block;
    width: 56px;
    height: auto;
    top: 16px;
    right: 16px;
    position: absolute;
    z-index: 2;
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-title {
    color: #222;
    margin-bottom: 0.5em;
  }
  .propose-ring-section .ring-list-section .ring-card .ring-card-title strong{
    font-weight: bold !important;
  }

  .propose-ring-section .ring-list-section .ring-card .btn-ring-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;
  }
  .propose-ring-section .ring-list-section .ring-card .btn-ring-detail:hover {
    background: #c8a973;
    color: #fff;
  }


  /* DINNER ------------------------------------------------------------ */
  .propose-dinner-section {
    background: #F5F3ED;
  }
  .propose-dinner-section .dinner-list-section {
    /* background: #fff; */
    padding: 0;
  }
  .propose-dinner-section .dinner-list-section .dinner-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;
  }
  .propose-dinner-section .dinner-list-section .dinner-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-img .dinner-card-badge {
    display: block;
    width: 56px;
    height: auto;
    top: 16px;
    right: 16px;
    position: absolute;
    z-index: 2;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-title {
    color: #222;
    margin-bottom: 0.5em;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .dinner-card-title strong {
    font-weight: bold !important;
  }
  .propose-dinner-section .dinner-list-section .dinner-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;
  }
  .propose-dinner-section .dinner-list-section .dinner-card .btn-dinner-detail:hover {
    background: #c8a973;
    color: #fff;
  }


  /* Dinner Modal ------------------------------------------------------------ */

  /* モーダル背景を半透明に */
.modal.custom-modal .modal-dialog {
  margin: 0 auto;
  position: relative;
}
.modal.custom-modal .modal-content {
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  background: #fff;
}
.modal-backdrop.show {
  background: rgba(0,0,0,0.7);
}

/* 閉じるボタンを右上に丸く */
.custom-modal-close {
  position: fixed;
  top: 4px;
  right: 4px;
  z-index: 10;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  opacity: 1;
  font-size: 2rem;
  line-height: 1;
  border: none;
  color: #ffffff;
  /* transition: background 0.2s; */
  background-color: #D4BB91 !important;

  @media (min-width: 768px) {
    position: absolute;
    top: -12px;
    right: -12px;
  }
}
.custom-modal-close:hover {
  background: #ebcd98;
  color: #fff;
}

/* 画像上部の余白調整 */
.modal-img-top img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: none;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}


/* MOdal Innner Content */

.carousel-inner {
  border-radius: 16px;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}
.carousel-indicators li {
  background-color: #EDEDED;
  opacity: 1 !important;
}

.carousel-indicators li.active {
  background-color: #FFCD73;
  opacity: 1 !important;
}

.carousel-indicators{
  bottom: -32px;
}

/* 前へボタンを左に20px外側へ */
.carousel-control-prev {
  left: -12px;
}

/* 次へボタンを右に20px外側へ */
.carousel-control-next {
  right: -12px;
}

@media (min-width: 768px) {
  .carousel-control-prev {
    left: -32px;
  }
  .carousel-control-next {
    right: -32px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* background-size: 1.5rem 1.5rem; */
  background-repeat: no-repeat;
  background-position: center;
  opacity: .5;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><polyline points='15 18 9 12 15 6'/></svg>");
  width: 4rem;
  height: 4rem;
  background-size: 4rem 4rem;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;utf8,<svg width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><polyline points='9 6 15 12 9 18'/></svg>");
  width: 4rem;
  height: 4rem;
  background-size: 4rem 4rem;
}

.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus{
  opacity: .8;
}

/* Ring Case ------------------------------------------------------------ */

.propose-ring-case-section {
  background: #FAFAFA;
}

.propose-ring-case-section .ring-case-list-section {
  padding: 0;
}

  .propose-ring-case-section .ring-case-list-section .ring-case-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;
  }
  .propose-ring-case-section .ring-case-list-section .ring-case-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .propose-ring-case-section .ring-case-list-section .ring-case-card .ring-case-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .propose-ring-case-section .ring-case-list-section .ring-case-card .ring-case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
  }
  .propose-ring-case-section .ring-case-list-section .ring-case-card .ring-case-card-img .ring-case-card-badge {
    display: block;
    width: 56px;
    height: auto;
    top: 16px;
    right: 16px;
    position: absolute;
    z-index: 2;
  }


/* Rose ------------------------------------------------------------ */

.propose-rose-section {
  background: #F9F6F2;
}

.propose-rose-section .rose-list-section {
  padding: 0;
}

  .propose-rose-section .rose-list-section .rose-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;
  }
  .propose-rose-section .rose-list-section .rose-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  }
  .propose-rose-section .rose-list-section .rose-card .rose-card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
  }
  .propose-rose-section .rose-list-section .rose-card .rose-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
  }
  .propose-rose-section .rose-list-section .rose-card .rose-card-img .rose-card-badge {
    display: block;
    width: 56px;
    height: auto;
    top: 16px;
    right: 16px;
    position: absolute;
    z-index: 2;
  }


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

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

  .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;
  }
}