@charset "utf-8";

@import url(./global/_variable.css);
@import url(./layout/_reset.css);


/* ============================================
   BASE
============================================ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: var(--color_bg);
  color: var(--color_text);
  font-family: var(--font_sans);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  @media (width < 896px) {
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s ease-out;
  &:hover {
    @media (hover: hover) {
      opacity: .7;
    }
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
}


/* ============================================
   UTILITY
============================================ */
.w_inner {
  max-width: 1340px;
  width: calc(100% - 40px);
  margin: 0 auto;
  container-type: inline-size;
}

.pconly {
  @media (width < 896px) { display: none; }
}
.sponly {
  display: none;
  @media (width < 896px) { display: block; }
}

/* scroll animation */
.ef_up {
  transform: translateY(60px);
  opacity: 0;
  transition: transform .6s ease-out, opacity .6s ease-out;
}
.ef_up.is_visible {
  transform: translateY(0);
  opacity: 1;
}


/* ============================================
   PAGE TOP BUTTON
============================================ */
.pagetop_arrow {
  position: fixed;
  right: 70px;
  bottom: -100px;
  z-index: 1500;
  transition: bottom 300ms ease, opacity 300ms ease;
  opacity: 0;
  a {
    display: block;
    outline: none;
    img {
      width: 60px;
      height: auto;
    }
  }
  @media (max-width: 1025px) { right: 10px; }
  @media (max-width: 896px) {
    a img { width: 40px; }
  }
}
.fade_in .pagetop_arrow {
  opacity: 1;
  bottom: 100px;
}


/* ============================================
   HERO SECTION
============================================ */
.area_hero {
  position: relative;
  aspect-ratio: 16 / 9;
  background-image: url(../images/hero_bg.webp);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 130px 80px;
  overflow: hidden;
  @media (width < 896px) {
    aspect-ratio: inherit;
    padding-block: 18vw 50px;
  }
}


.hero_flower {
  position: absolute;
  top: 0;
  right: 0;
  width: 71%;
  pointer-events: none;
  z-index: 0;
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  @media (width < 896px) {
    width: 85%;
  }
}

.hero_content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1340px;
  padding-inline: 20px;
}

.hero_cap_img {
  img { 
    height: auto;
    width: 9vw;
    min-width: 130px; 
  }
}

.hero_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero_title {
  font-family: var(--font_serif);
  font-weight: 400;
  font-size: clamp(3rem, 4.6vw, 8.8rem);
  line-height: 1.2em;
  color: var(--color_text);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.hero_title_line {
  display: block;
  white-space: nowrap;
}

.hero_title_accent {
  color: var(--color_pink);
}

.hero_badge {
  padding-top: 2cqw;
  img {
    height: clamp(40px, 5vw, 69px);
    width: auto;
    margin: auto;
  }
}

.hero_desc {
  padding-top: 2cqw;
  font-family: var(--font_serif);
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  line-height: 2;
  text-align: center;
  max-width: 914px;
  @media (width < 896px) {
    text-align: justify;
  }
}


/* ============================================
   DEMOISELLE SECTION
============================================ */
.sec_demoiselle {
  background: var(--color_bg);
  padding-block: 100px;
  @media (width < 896px) {
    padding-block: 60px;
  }
}

/* Date header */
.date_block {
  text-align: center;
  font-family: var(--font_serif);
  font-size: clamp(1.6rem, 1.35vw, 2.6rem);
  letter-spacing: .1em;
  font-feature-settings: 'palt' 1;
  margin-block-end: 80px;
  word-break: keep-all;
  @media (width < 896px) {
    margin-block-end: 48px;
    letter-spacing: .05em;
  }
}

.date_line1 {
  padding-block-end: 8px;
}

.date_line2 {
  border-top: 1px dotted var(--color_green_dk);
  padding-block-start: 8px;
  white-space: nowrap;
  @media (width < 896px) {
    white-space: normal;
  }
}

/* Product layout */
.product {
  display: grid;
  grid-template-columns: 458px 1fr;
  gap: 60px;
  align-items: center;
  margin-block-end: 80px;
  @media (width < 1100px) {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  @media (width < 896px) {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-block-end: 56px;
    .product_txt { order: -1; }
    .product_img { order: 0; }
  }
}


.product--rev {
  grid-template-columns: 1fr 458px;
  .product_txt { order: -1; }
  .product_img { order: 0; }
  @media (width < 1100px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (width < 896px) {
    grid-template-columns: 1fr;
    .product_txt { order: 0; }
    .product_img { order: 0; }
  }
}

.product_img {
  overflow: hidden;
  @media (width < 896px) {
  }
  img {
    width: 100%;
    height: auto;
  }
}

.product_txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product_cap {
  img {
    height: 26px;
    width: auto;
  }
}

.product_name_bar {
  background: var(--color_gold);
  padding: 16px 10px;
}

.product_name {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: clamp(2rem, 1.56vw, 3rem);
  color: var(--color_white);
  line-height: 1.3em;
  word-break: keep-all;
  @media (width < 896px) {
    font-size: 2rem;
  }
}

.product_body {
  font-family: var(--font_serif);
  font-size: clamp(1.4rem, .83vw, 1.6rem);
  line-height: 2.2;
}

.product_grape {
  border-top: 1px dotted #666;
  padding-block-start: 20px;
  font-size: 1.6rem;
  line-height: 2.2;
}

.grape_dot {
  color: var(--color_green_dk);
}

/* Price image */
.price_block {
  margin-block-start: 20px;
  overflow: hidden;
  @media (width < 896px) {
    margin-block-start: 0;
  }
}

.price_pc {
  display: block;
  width: 100%;
  height: auto;
  @media (width < 896px) {
    display: none;
  }
}

.price_sp {
  display: none;
  @media (width < 896px) {
    display: block;
    width: 100%;
    height: auto;
  }
}


/* ============================================
   RESTAURANT / PICKUP SECTION
============================================ */
.sec_restaurant {
  background-image: url(../images/hero_bg.webp);
  padding-block: 120px;
  @media (width < 896px) {
    padding-block: 60px;
  }
}

.restaurant_card {
  background: var(--color_white);
  padding-block-end: 60px;
}

/* Gold stripe + pickup tab */
.pickup_header {
  position: relative;
}

.gold_bar {
  height: 6px;
  background: var(--color_gold);
  width: 100%;
}

.pickup_tab {
  display: grid;
  place-content: center;
  img {
    width: 20cqw;
    min-width: 200px;
  }
}

.pickup_tab_txt {
  font-family: var(--font_sans);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color_white);
  white-space: nowrap;
  padding-block-end: 8px;
  letter-spacing: .05em;
}

/* Pickup lead text */
.pickup_lead {
  padding-block: 30px 0;
  padding-inline: 20px;
  margin: auto;
  text-align: center;
  font-family: var(--font_serif);
  font-size: clamp(1.6rem, 1.35vw, 2.6rem);
  letter-spacing: .1em;
  font-feature-settings: 'palt' 1;
  word-break: keep-all;
  @media (width < 896px) {
    padding-block: 24px 0;
    letter-spacing: .05em;
  }
  p {
    display: inline-block;
  }
}

.pickup_lead_sub {
  border-top: 1px dotted var(--color_green_dk);
  margin-block-start: 12px;
  padding-block-start: 8px;
  white-space: nowrap;
  @media (width < 896px) {
    white-space: normal;
    border-top: none;
  }
}

/* Course list */
.course_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 60px 0;
  @media (width < 896px) {
    padding: 40px 20px 0;
    gap: 48px;
  }
}

.course_row {
  display: grid;
  grid-template-columns: 1fr 590px;
  gap: 40px;
  align-items: center;
  @media (width < 1100px) {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (width < 896px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.course_row--rev {
  grid-template-columns: 590px 1fr;
  .course_txt { order: 0; }
  .course_img_wrap { order: -1; }
  @media (width < 1100px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (width < 896px) {
    grid-template-columns: 1fr;
    .course_txt { order: -1; }
    .course_img_wrap { order: 0; }
  }
}

.course_txt {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.course_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.course_location {
  font-family: var(--font_serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.course_location_en {
  font-size: 1.3rem;
}

.course_num {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  img {
    height: 18px;
    width: auto;
    display: block;
  }
}

.course_name_bar {
  background: var(--color_gold);
  padding: 8px 16px;
  border-radius: 2px;
}

.course_name {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.04vw, 2rem);
  color: var(--color_white);
  line-height: 1.4;
  word-break: keep-all;
}

.course_restaurant {
  font-family: var(--font_serif);
  font-size: clamp(1.4rem, 1.04vw, 2rem);
  line-height: 1.4em;
  color: var(--color_text);
  padding-inline-start: 1em;
  text-indent: -1em;
}

.course_mark {
  color: var(--color_gold_alt);
}

.course_price {
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
}

.course_body_wrap {
  border-top: 1px dotted var(--color_green);
  padding-block-start: 10px;
}

.course_body {
  font-family: var(--font_serif);
  font-size: clamp(1.3rem, .83vw, 1.6rem);
  line-height: 1.8;
}

.course_img_wrap {
  height: 393px;
  overflow: hidden;
  @media (width < 896px) {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.splide {
  position: relative;
}
/* Splide overrides for course images */
.course_img_wrap .splide {
  height: 100%;
}
.course_img_wrap .splide__track {
  height: 100%;
}
.course_img_wrap .splide__list {
  height: 100%;
}
.course_img_wrap .splide__slide {
  height: 100%;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* Splide arrows */
.course_img_wrap .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(20px, 2vw, 30px);
  height: clamp(20px, 2vw, 30px);
  background: rgba(255, 255, 255, .7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s ease;
  &:hover {
    @media (hover: hover) {
      background: rgba(255, 255, 255, .95);
    }
  }
  &:disabled {
    opacity: .3;
    cursor: default;
  }
  svg {
    width: 40%;
    height: 40%;
    fill: var(--color_text);
  }
}

.course_img_wrap .splide__arrow--prev {
  left: 10px;
  transform: rotate(180deg);
  transform-origin: 50% 25%; 
}

.course_img_wrap .splide__arrow--next {
  right: 10px;
}

.splide__pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 500;
  li {
    button {
      width: 12px;
      height: 12px;
      margin-inline: 5px;
      background-color: var(--color_gold_alt);
      border-radius: 50px;
      opacity: 0.7;
      &.is-active {
        background-color: var(--color_bg);
      }
    }
  }
}

/* CTA button */
.course_cta {
  padding-block-start: 4px;
}

.cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color_green);
  color: var(--color_white);
  font-family: var(--font_sans);
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0 32px;
  height: 44px;
  border-radius: 38px;
  white-space: nowrap;
  transition: opacity .3s;
  &:hover {
    @media (hover: hover) {
      opacity: .7;
    }
  }
}


/* ============================================
   FACILITIES SECTION
============================================ */
.sec_facilities {
  background: var(--color_bg);
  padding-block: 120px;
  @media (width < 896px) {
    padding-block: 60px;
  }
}

.fac_header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-block-end: 60px;
  @media (width < 896px) {
    margin-block-end: 32px;
  }
}

.fac_bar {
  width: 4px;
  height: 40px;
  background: var(--color_green);
  flex-shrink: 0;
}

.fac_title {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.67vw, 3.2rem);
  color: var(--color_text);
  white-space: nowrap;
  @media (width < 896px) {
    white-space: normal;
    font-size: 2rem;
  }
}

.fac_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px 10px;
  @media (width < 1100px) {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (width < 896px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
  @media (width < 480px) {
    grid-template-columns: 1fr;
  }
}

.fac_col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  @media (width < 1100px) {
    gap: 8px;
  }
}

.fac_item {
  font-family: var(--font_sans);
  font-size:clamp(14px, 0.13vw + 13.51px, 16px);
  line-height: 1.5;
  color: var(--color_text_dk);
  padding-inline-start: 1em;
  text-indent: -1em;
}

.fac_dot {
  color: var(--color_green_dk);
}
