*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  color: #250f00;
  background: #f7f8f3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

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

:where(#info, #contents, #plan-premium, #plan-shooting, #regions, #flavors, #reservation) {
  scroll-margin-top: 60px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-in {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
}
.sh {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.sh .sh__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.54px;
  color: #a63528;
  line-height: 1.8;
  margin-bottom: -8px;
}
.sh .sh__jp {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 1.2px;
  color: #250f00;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sh .sh__jp {
    font-size: 28px;
  }
}
.sh .sh__div {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.sh .sh__div-line {
  width: 68px;
  height: 1px;
  background: #b67e15;
}
.sh .sh__div-diamond {
  width: 8px;
  height: 8px;
  background: #a63528;
  transform: rotate(45deg);
}

.diamond-div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.diamond-div__line {
  width: 68px;
  height: 1px;
  background: #b67e15;
}
.diamond-div__gem {
  width: 8px;
  height: 8px;
  background: #a63528;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  border: 3px solid currentColor;
  border-radius: 40px;
  background: #f7f3ea;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.72px;
  color: #250f00;
  text-align: center;
}
.plan-badge__gem {
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.plan-badge--red {
  border-color: #a63528;
}
.plan-badge--red .plan-badge__gem {
  background: #a63528;
}
.plan-badge--orange {
  border-color: #c8a02e;
}
.plan-badge--orange .plan-badge__gem {
  background: #c8a02e;
}
@media (max-width: 768px) {
  .plan-badge {
    font-size: 14px;
    padding: 8px 20px;
    border-width: 2px;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 424px;
  padding: 16px 64px;
  background: #7a2e35;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-cta:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .btn-cta {
    min-width: 280px;
    font-size: 18px;
    padding: 14px 32px;
  }
}
.btn-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 8px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-cta__arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
.btn-cta:hover .btn-cta__arrow {
  transform: translateX(6px);
}

.btt {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 800;
  width: 80px;
  height: 80px;
  background: #a8873e;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  text-decoration: none;
}
.btt.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.btt__arrow {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 768px) {
  .btt {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .btt__arrow {
    font-size: 22px;
  }
}

.spot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 480px;
  max-width: 100%;
}
.spot__circle {
  position: relative;
  width: 480px;
  max-width: 100%;
  border-radius: 50%;
  border: 5px solid #a63528;
}
.spot__circle img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.spot__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 73px;
  height: 110px;
  z-index: 2;
}
.spot__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: unset;
}
@media (max-width: 1024px) {
  .spot__badge {
    top: -30px;
    width: 60px;
  }
}
@media (max-width: 450px) {
  .spot__badge {
    top: -20px;
    left: 7px;
    width: 45px;
    height: 70px;
  }
}
.spot__num {
  position: absolute;
  left: 50%;
  top: 31%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  color: #250f00;
  background: #ffffff;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 3px;
  padding-left: 1px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .spot__num {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .spot__num {
    font-size: 16px;
  }
}
.spot__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  color: #250f00;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .spot__name {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .spot {
    width: clamp(160px, 42vw, 340px);
  }
  .spot__circle {
    width: clamp(160px, 42vw, 340px);
  }
  .spot__name {
    font-size: 16px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 120px;
  color: #ffffff;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: url(../img/hero_bg.png) no-repeat;
  background-position-y: 50%;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .hero::after {
    height: 100%;
    background-position-y: 25%;
  }
}
@media (max-width: 1024px) {
  .hero {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 100px;
    justify-content: unset;
    margin-top: -60px;
  }
}
.hero__ellipse {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 832px;
  pointer-events: none;
  z-index: 2;
  clip-path: ellipse(80% 85% at 50% 15%);
}
.hero__ellipse img {
  width: 100%;
  height: 100%;
  max-height: 832px;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 768px) {
  .hero__ellipse {
    height: 100vw;
    clip-path: ellipse(100% 85% at 50% 15%);
  }
}
.hero__inner {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  opacity: 0;
  animation: hero-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 0;
    gap: 10px;
    top: 13%;
  }
}
.hero__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero__h1 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: 1.92px;
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(37, 15, 0, 0.35);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero__h1 {
    white-space: normal;
    font-size: 26px;
    letter-spacing: 1px;
  }
}
.hero__sub {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 32px);
  letter-spacing: 0.96px;
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(37, 15, 0, 0.3);
}
@media (max-width: 768px) {
  .hero__sub {
    font-size: 14px;
  }
}
.hero__en {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 24px);
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero__en {
    font-size: 14px;
  }
}

.concept {
  padding: 0;
}
.concept__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  z-index: 1;
  padding: 0 20px 100px;
  margin-top: 83px;
}
@media (max-width: 768px) {
  .concept__inner {
    margin-top: 40px;
  }
}
.concept__inner .decor {
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
.concept__inner .decor img,
.concept__inner .decor svg {
  width: 100%;
  height: auto;
  display: block;
}
.concept__inner .decor--1 {
  width: clamp(220px, 80%, 900px);
  top: -115px;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 1024px) {
  .concept__inner .decor--1 {
    top: -90px;
  }
}
@media (max-width: 768px) {
  .concept__inner .decor--1 {
    top: -41px;
  }
}
.concept__inner .decor--2 {
  width: clamp(220px, 80%, 900px);
  top: -76px;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 1024px) {
  .concept__inner .decor--2 {
    top: -70px;
  }
}
@media (max-width: 768px) {
  .concept__inner .decor--2 {
    top: -26px;
  }
}
.concept__inner .decor--3 {
  width: clamp(60px, 8%, 130px);
  left: 62px;
  bottom: 0;
}
@media (max-width: 1024px) {
  .concept__inner .decor--3 {
    width: 70px;
    left: 20px;
  }
}
.concept__inner .decor--4 {
  width: clamp(70px, 10%, 160px);
  left: 190px;
  bottom: -120px;
}
@media (max-width: 1024px) {
  .concept__inner .decor--4 {
    width: 90px;
    left: auto;
    right: 20px;
    bottom: 0;
  }
}
.concept__h2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.96px;
  line-height: 1.8;
  color: #250f00;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .concept__h2 {
    font-size: 24px;
  }
}
.concept__body {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  color: #250f00;
}
@media (max-width: 768px) {
  .concept__body {
    font-size: 16px;
  }
}
.concept__body {
  text-align: center;
}
.concept__body p + p {
  margin-top: 0;
}
@media (max-width: 768px) {
  .concept__body {
    font-size: 15px;
  }
}

.info {
  position: relative;
  padding: 120px 20px 120px;
}
@media (max-width: 1024px) {
  .info {
    padding: 64px 20px;
  }
}
.info {
  background: #f7f8f3;
  padding-top: 0;
  padding-bottom: 0;
}
.info__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.info__table {
  width: 100%;
  max-width: 640px;
}
.info__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid #DBE0C6;
}
@media (max-width: 450px) {
  .info__row {
    gap: 20px;
  }
}
.info__row:first-child {
  border-top: 1px solid #DBE0C6;
}
.info__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info__label {
  flex: 0 0 auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 24px);
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #250f00;
  white-space: nowrap;
  min-width: 198px;
  width: 30%;
  text-align: right;
}
@media (max-width: 450px) {
  .info__label {
    min-width: 120px;
  }
}
.info__value {
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #250f00;
  width: 70%;
}
@media (max-width: 768px) {
  .info__value {
    font-size: 16px;
  }
}
.info__value-main {
  font-size: clamp(14px, 2.5vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.info__value-note {
  font-size: 18px;
  letter-spacing: 0.54px;
}
@media (max-width: 768px) {
  .info__value-note {
    font-size: 13px;
  }
}
.info__price-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info__price-course {
  font-size: clamp(14px, 2.5vw, 24px);
  line-height: 1.8;
}
.info__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0;
}
@media (max-width: 768px) {
  .info__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.info__price-row span {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #250f00;
  line-height: 1.8;
}
.info__price-row .name {
  font-size: clamp(16px, 2.5vw, 18px);
  letter-spacing: 0.54px;
}
@media (max-width: 768px) {
  .info__price-row .name {
    font-size: 16px;
  }
}
.info__price-row .price {
  font-size: clamp(20px, 2.5vw, 24px);
  letter-spacing: 0.72px;
}
@media (max-width: 768px) {
  .info__price-row .price {
    margin-left: 8px;
  }
}
.info__price-row .sep {
  font-size: 18px;
  letter-spacing: 0.54px;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .info__price-row .sep {
    font-size: 14px;
    display: none;
  }
}
.info__divider {
  border: 1px dotted #DBE0C6;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .info__divider {
    margin: 12px 0;
  }
}
.info__cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contents {
  padding: 120px 20px 120px;
}
@media (max-width: 1024px) {
  .contents {
    padding: 64px 20px;
  }
}
.contents {
  background: #f7f8f3;
  padding-top: 0;
}
.contents__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.contents__heading {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contents__heading {
    margin-bottom: 0;
  }
}
.contents__sub {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #250f00;
  text-align: center;
}
@media (max-width: 768px) {
  .contents__sub {
    font-size: 16px;
  }
}
.contents__grid {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.ccard {
  width: 260px;
  height: 274px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ccard:hover {
  transform: translateY(-4px);
}
.ccard__img {
  position: relative;
  inset: 0;
  z-index: 0;
}
.ccard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ccard__label {
  margin-top: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-radius: 0 0 16px 16px;
  margin: 0;
}
.ccard__label--red {
  background: #8c2a1f;
}
.ccard__label--terracotta {
  background: #9a3e0c;
}
.ccard__label--gold {
  background: #b67e15;
}
.ccard__label--olive {
  background: #7d6b11;
}
.ccard__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.66px;
  line-height: 1.8;
  color: #f7f3ea;
  text-align: center;
}
.ccard__arrow {
  width: 11px;
  height: 8px;
  transform: rotate(180deg);
}
.ccard__arrow img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .ccard {
    width: 49%;
    height: auto;
  }
  .ccard__label {
    padding: 8px 0;
    gap: 4px;
  }
  .ccard__img {
    max-height: 125px;
  }
  .ccard__name {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .ccard {
    width: 100%;
  }
}

.plan {
  position: relative;
  padding: 40px 20px 80px;
}
@media (max-width: 1024px) {
  .plan {
    padding: 64px 20px;
  }
}
.plan {
  background: #f7f8f3;
}
@media (max-width: 768px) {
  .plan {
    padding-top: 0;
  }
}
.plan--bottom {
  padding-top: 120px;
}
.plan--bottom .decor--8 {
  left: 0;
  top: 200px;
}
@media (max-width: 1439px) {
  .plan--bottom .decor--8 {
    top: 0;
  }
}
@media (max-width: 768px) {
  .plan--bottom .decor--8 {
    max-width: 150px;
  }
}
@media (max-width: 450px) {
  .plan--bottom .decor--8 {
    max-width: 120px;
  }
}
.plan--bottom .decor--9 {
  left: calc(4vw + 3% - 121px);
  top: 0;
  z-index: 1;
}
@media (min-width: 1680px) {
  .plan--bottom .decor--9 {
    left: calc(13vw + 8% - 200px);
  }
}
@media (max-width: 1439px) {
  .plan--bottom .decor--9 {
    left: 0;
  }
}
@media (max-width: 768px) {
  .plan--bottom .decor--9 {
    max-width: 150px;
    left: -20px;
    top: 100px;
  }
}
@media (max-width: 450px) {
  .plan--bottom .decor--9 {
    max-width: 120px;
  }
}
.plan__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.plan__header {
  width: 100%;
  border-radius: 16px 16px 0 0;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.plan__header--premium {
  background: linear-gradient(to right, #8c2a1f, #a63528);
}
.plan__header--shooting {
  background: linear-gradient(to right, #955101, #c8a02e);
}
@media (max-width: 1024px) {
  .plan__header {
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .plan__header {
    justify-content: center;
  }
}
.plan__header-inner {
  display: flex;
  align-items: center;
  gap: 200px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .plan__header-inner {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }
}
.plan__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #f7f3ea;
}
@media (max-width: 768px) {
  .plan__title-block {
    width: 100%;
  }
}
.plan__plan-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.96px;
  line-height: 1.5;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .plan__plan-name {
    font-size: 22px;
  }
}
.plan__plan-tag {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 1.8;
}
.plan__duration {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #f7f3ea;
}
.plan__duration-icon {
  width: 40px;
  height: 40px;
}
.plan__duration-icon img {
  width: 100%;
  height: 100%;
}
.plan__duration-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.96px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .plan__duration-text {
    font-size: 24px;
  }
}
.plan__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.plan__line {
  width: 643px;
  max-width: 100%;
  border: 1px solid #DBE0C6;
}
.plan__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  color: #250f00;
}
@media (max-width: 768px) {
  .plan__desc {
    font-size: 16px;
  }
}
.plan__desc {
  text-align: center;
  max-width: 1080px;
  letter-spacing: -0.08px;
}
.plan__price-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .plan__price-row {
    gap: 16px;
    flex-direction: column;
    justify-content: center;
  }
}
.plan__price-label {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #250f00;
  text-align: center;
}
.plan__prices {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .plan__prices {
    flex-direction: column;
    gap: 0;
  }
}
.plan__price-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.plan__price-pair .guests {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.54px;
  color: #250f00;
  line-height: 1.8;
}
.plan__price-pair .amount {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  color: #250f00;
  line-height: 1.8;
}
.plan__price-sep {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  color: #250f00;
}
@media (max-width: 768px) {
  .plan__price-sep {
    display: none;
  }
}
.plan .decor {
  position: absolute;
}
.plan .decor--6 {
  right: 0;
  top: -60px;
  width: 100%;
  max-width: 460px;
}
@media (max-width: 768px) {
  .plan .decor--6 {
    max-width: 300px;
  }
}
@media (max-width: 450px) {
  .plan .decor--6 {
    max-width: 150px;
  }
}
.plan .decor--7 {
  right: calc(7vw + 6% - 170px);
  top: 180px;
  width: 100%;
  max-width: 260px;
  z-index: 1;
}
@media (min-width: 1680px) {
  .plan .decor--7 {
    right: calc(13vw + 8% - 200px);
  }
}
@media (max-width: 1439px) {
  .plan .decor--7 {
    right: 0;
    max-width: 180px;
    top: 315px;
  }
}
@media (max-width: 768px) {
  .plan .decor--7 {
    max-width: 180px;
    right: 0;
    top: 300px;
  }
}
@media (max-width: 450px) {
  .plan .decor--7 {
    max-width: 110px;
  }
}

.route {
  background: #f7f8f3;
  padding: 0 20px 0;
}
.route--bottom .spot__circle {
  border-color: #c8a02e;
}
.route__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}
.route__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.route__row {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 540px;
  align-items: flex-start;
  margin-top: -150px;
}
.route__row:first-child {
  margin-top: 0;
}
.route__row--left {
  justify-content: flex-start;
}
.route__row--right {
  justify-content: flex-end;
}
.route__connector {
  display: none;
}
.route__svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.route__decos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.route__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.route__deco img {
  display: block;
}
.route__deco--tree-sm img {
  position: absolute;
}
.route__deco--tree-sm img:nth-child(1) {
  top: 0;
  left: 0;
  width: 71.83%;
  height: 88.58%;
}
.route__deco--tree-sm img:nth-child(2) {
  top: 35.75%;
  left: 45.6%;
  width: 54.4%;
  height: 64.26%;
}
.route__deco--tree-lg img {
  position: absolute;
}
.route__deco--tree-lg img:nth-child(1) {
  top: 0.01%;
  left: 0;
  width: 29.31%;
  height: 41.9%;
}
.route__deco--tree-lg img:nth-child(2) {
  top: 41.3%;
  left: 63.85%;
  width: 22.91%;
  height: 39.84%;
}
.route__deco--tree-lg img:nth-child(3) {
  top: 66.68%;
  left: 84.08%;
  width: 15.92%;
  height: 33.33%;
}
.route__track .route__row:nth-child(1) .route__decos .route__deco:nth-child(1) {
  left: 49.07%;
  top: 48.15%;
  width: 9.26%;
  height: 24.07%;
}
.route__track .route__row:nth-child(1) .route__decos .route__deco:nth-child(2) {
  left: 64.81%;
  top: 37.04%;
  width: 21.67%;
  height: 35.56%;
}
.route__track .route__row:nth-child(2) .route__decos .route__deco:nth-child(1) {
  left: 41.85%;
  top: 65.19%;
  width: 5%;
  height: 14.26%;
}
.route__track .route__row:nth-child(2) .route__decos .route__deco:nth-child(2) {
  left: 53.52%;
  top: 74.07%;
  width: 4.91%;
  height: 11.48%;
}
.route__track .route__row:nth-child(3) .route__decos .route__deco:nth-child(1) {
  left: 46.3%;
  top: 73.67%;
  width: 5%;
  height: 15.56%;
}
.route__track .route__row:nth-child(4) .route__decos .route__deco:nth-child(1) {
  left: 51.39%;
  top: 58.7%;
  width: 3.61%;
  height: 10.37%;
}
.route__track .route__row:nth-child(4) .route__decos .route__deco:nth-child(2) {
  left: 45.65%;
  top: 81.48%;
  width: 5.37%;
  height: 15%;
}
@media (max-width: 1024px) {
  .route {
    padding: 0 12px 0;
  }
  .route__row {
    min-height: clamp(160px, 42vw, 340px);
    margin-top: -50px;
  }
}

.plan-intro {
  padding: 100px 20px 0;
}
@media (max-width: 1024px) {
  .plan-intro {
    padding: 64px 20px;
  }
}
.plan-intro {
  background: #f7f8f3;
  padding-top: 0;
}
.plan-intro__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 12px auto 24px;
}
@media (max-width: 1024px) {
  .plan-intro {
    padding-bottom: 0;
  }
}

.regions {
  padding: 120px 20px 120px;
}
@media (max-width: 1024px) {
  .regions {
    padding: 64px 20px;
  }
}
.regions {
  background: #f7f8f3;
}
.regions__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.regions__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  color: #250f00;
}
@media (max-width: 768px) {
  .regions__desc {
    font-size: 16px;
  }
}
.regions__desc {
  text-align: center;
  max-width: 540px;
}
@media (max-width: 768px) {
  .regions__desc {
    max-width: 100%;
    letter-spacing: -0.1px;
  }
}
.regions__grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 30px 38px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .regions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }
}
@media (max-width: 768px) {
  .regions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
}
.regions__row-center {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  gap: 38px;
}
.regions__row-center .rcell {
  flex: 0 0 320px;
}
@media (max-width: 1024px) {
  .regions__row-center {
    gap: 16px;
  }
  .regions__row-center .rcell {
    flex: 0 0 calc((100% - 16px) / 3);
  }
}
@media (max-width: 768px) {
  .regions__row-center {
    gap: 12px;
  }
  .regions__row-center .rcell {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

.rcell {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rcell a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rcell a:hover {
  opacity: 0.85;
}
.rcell__circle {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  overflow: hidden;
}
.rcell__circle img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.rcell__circle--deco {
  overflow: visible;
}
.rcell__circle .rcell__leaf {
  position: absolute;
  left: 2%;
  bottom: 4%;
  width: 17%;
  z-index: 1;
  pointer-events: none;
}
.rcell__circle .rcell__leaf img {
  width: 100%;
  height: auto;
  display: block;
}
.rcell__circle .rcell__leaf--right {
  left: auto;
  right: 2%;
}
.rcell__circle .rcell__leaf--top {
  bottom: auto;
  top: 7%;
}
.rcell__circle--red {
  border: 5px solid #a63528;
}
.rcell__circle--orange {
  border: 5px solid #C2571E;
}
.rcell__circle--yellow {
  border: 5px solid #c8a02e;
}
@media (max-width: 768px) {
  .rcell__circle {
    width: 100%;
  }
}
.rcell__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 1.8;
  color: #250f00;
  text-align: center;
}
@media (max-width: 768px) {
  .rcell__name {
    font-size: 13px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .rcell:last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: calc(50% - 6px);
    margin-inline: auto;
  }
}

.flavors {
  padding: 120px 20px 120px;
}
@media (max-width: 1024px) {
  .flavors {
    padding: 64px 20px;
  }
}
.flavors {
  background: #f7f8f3;
  padding-top: 20px;
}
.flavors__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.flavors__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  color: #250f00;
}
@media (max-width: 768px) {
  .flavors__desc {
    font-size: 16px;
  }
}
.flavors__desc {
  text-align: center;
}
.flavors__grid {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .flavors__grid {
    flex-direction: column;
    align-items: center;
  }
}

.rcard {
  display: flex;
  flex-direction: column;
  width: 343px;
  max-width: 100%;
}
.rcard a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rcard a:hover {
  opacity: 0.85;
}
.rcard__img {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
}
.rcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcard__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.34px;
  line-height: 2;
  color: #250f00;
  text-align: center;
}
@media (max-width: 768px) {
  .rcard {
    width: calc(80% - 13px);
  }
}
@media (max-width: 450px) {
  .rcard {
    width: 100%;
  }
}

.reservation {
  position: relative;
  padding: 120px 20px 120px;
}
@media (max-width: 1024px) {
  .reservation {
    padding: 64px 20px;
  }
}
.reservation {
  background: #f7f8f3;
  overflow: hidden;
  padding-top: 0;
}
@media (max-width: 768px) {
  .reservation {
    padding-top: 0;
  }
}
.reservation__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.reservation__cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation__notes {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 1.8;
  color: #250f00;
  text-align: left;
  margin-top: 40px;
  padding-bottom: 80px;
}
.reservation__notes p + p {
  margin-top: 0;
}
.reservation .decor {
  position: absolute;
}
.reservation .decor img,
.reservation .decor svg {
  width: 100%;
  height: auto;
  display: block;
}
.reservation .decor--10 {
  width: 100%;
  max-width: 1200px;
  right: 0;
  bottom: -375px;
}
@media (max-width: 1024px) {
  .reservation .decor--10 {
    max-width: 700px;
    bottom: -210px;
  }
}
@media (max-width: 768px) {
  .reservation .decor--10 {
    bottom: -100px;
    max-width: 450px;
  }
}
.reservation .decor--11 {
  bottom: 40px;
  width: 100%;
  max-width: 250px;
  left: 0;
}
@media (max-width: 1024px) {
  .reservation .decor--11 {
    max-width: 175px;
  }
}
@media (max-width: 768px) {
  .reservation .decor--11 {
    max-width: 100px;
    bottom: 30px;
  }
}
.reservation .decor--12 {
  bottom: 0;
  width: 100%;
  max-width: 176px;
  left: 180px;
}
@media (max-width: 1024px) {
  .reservation .decor--12 {
    max-width: 135px;
    left: 125px;
  }
}
@media (max-width: 768px) {
  .reservation .decor--12 {
    max-width: 80px;
    left: 75px;
  }
}

.footer {
  background: #723006;
  padding: 64px 20px 0;
  color: #ffffff;
}
.footer__inner {
  max-width: 608px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.footer__logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__mark {
  width: auto;
  height: auto;
}
.footer__mark img {
  width: 100%;
}
.footer__divider {
  width: 300px;
  height: 3px;
  background: #ffffff;
  opacity: 0.5;
  margin: 4px 0;
}
.footer__names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
}
@media (max-width: 768px) {
  .footer__names {
    flex-direction: column;
  }
}
.footer__name-sep {
  width: 1px;
  height: 21px;
  background: #ffffff;
  opacity: 0.7;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer__name-sep {
    display: none;
  }
}
.footer__name-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 1.8;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer__name-text {
    font-size: 14px;
  }
}
.footer__copy-bar {
  width: 100vw;
  margin-inline: calc(-50vw + 50%);
  margin-top: 40px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
}
.footer__copy {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #4a3b2e;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 12px;
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*# sourceMappingURL=style.css.map */
