:root {
  --green: #1f3a2e;
  --green-2: #335747;
  --gold: #e3c88b;
  --gold-dark: #a6823c;
  --wine: #6e1f2a;
  --cream: #f5f1e8;
  --paper: #f0e3c6;
  --white: #ffffff;
  --ink: #3b3730;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  background: #ffffff;
  color: var(--green);
}
.skip-link:focus {
  top: 12px;
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.texture {
  position: relative;
  isolation: isolate;
}
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: center/1083px auto repeat;
  opacity: 0.025;
  pointer-events: none;
}
.texture--dark {
  background: var(--green);
}
.texture--green {
  background: var(--green-2);
}
.texture--green::before {
  background-image: url("../img/figma-dark-pattern.webp");
}
.texture--paper {
  background: var(--paper);
}
.texture--paper::before {
  background-image: url("../img/figma-paper-pattern.webp");
  opacity: 0.12;
}

.texture--dark::before,
.texture--green::before {
  background-image: url("../img/figma-dark-pattern.webp");
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 38px;
  font-weight: 700;
  letter-spacing: 0.09em;
  transition: filter 0.2s;
}
.button:hover {
  filter: brightness(1.07);
}
.button.is-animated:hover {
  transform: translateY(-2px);
  transition: transform 0.2s, filter 0.2s;
}
.button--light {
  min-height: 75px;
  padding-inline: 58px;
  background: #fbf7ee;
  color: var(--green);
  font-size: 20px;
}
.button--wine {
  background: var(--wine);
  color: #ffffff;
  font-size: 18px;
}

.section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.16em;
}
.section-title--left {
  text-align: left;
}
.section-title--left::before {
  margin-left: 0;
}
.section-title--gold {
  color: var(--gold);
}
.section-title--green {
  color: var(--green);
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-button {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  background: transparent;
  color: var(--gold);
  font-size: 29px;
  cursor: pointer;
}
.slider-button:hover {
  background-color: rgba(227, 200, 139, 0.12);
}

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

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  flex-shrink: 0;
}

.swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0 !important;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.swiper-pagination-bullet {
  width: 56px;
  height: 6px;
  border-radius: 0;
  background: #ffffff;
  opacity: 1;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.btn-link {
  color: #7F5B16;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn-link:hover {
  color: #6e1f2a;
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
  }
  .button {
    min-height: 56px;
  }
  .button--light {
    width: 280px;
    min-height: 56px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .button--wine {
    width: 100%;
    min-height: 56px;
    padding: 12px 14px;
    font-size: 13px;
  }
  .section-title {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 2px;
  }
  .section-title::before {
    display: none;
  }
  .slider-button {
    width: 48px;
    height: 48px;
    border-width: 1.34px;
    border-radius: 8px;
    background-color: transparent;
    background-image: url("../img/figma-sp-arrow.svg");
    background-position: center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    color: transparent;
    font-size: 0;
  }
  .slider-button:nth-child(2) {
    transform: rotate(180deg);
  }
  .swiper-pagination {
    gap: 6px;
  }
  .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
  }
}
.topbar {
  height: 113px;
  background: rgba(255, 252, 244, 0.55);
  border-bottom: 1px solid rgba(31, 58, 46, 0.14);
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__event {
  width: 201px;
  height: 70px;
  object-fit: contain;
}
.topbar__seibu {
  width: 157px;
  height: 52px;
  object-fit: contain;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 80px;
  display: flex;
  justify-content: center;
  background: rgba(31, 58, 46, 0.96);
  border-bottom: 1px solid var(--gold-dark);
  backdrop-filter: blur(6px);
}
.nav__toggle {
  display: none;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}
.nav__list a {
  flex: none;
  padding: 20px 24px;
  color: #efe9dc;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav__list a:hover {
  color: var(--gold);
}
.nav__list i {
  flex: none;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .nav__list a {
    padding-inline: 14px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .topbar {
    height: 56px;
    background: #fbf7ee;
  }
  .topbar__inner {
    width: 100%;
    padding: 8px 56px 8px 16px;
  }
  .topbar__event {
    width: 128px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
  }
  .topbar__seibu {
    display: none;
  }
  .nav {
    position: static;
    min-height: 0;
    height: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .nav__toggle {
    position: absolute;
    z-index: 50;
    top: 19px;
    right: 16px;
    display: block;
    width: 24px;
    height: 18px;
    padding: 0;
    border: 0;
    background: linear-gradient(var(--green), var(--green)) top/24px 2px no-repeat, linear-gradient(var(--green), var(--green)) center/24px 2px no-repeat, linear-gradient(var(--green), var(--green)) bottom/24px 2px no-repeat;
    color: transparent;
    font-size: 0;
  }
  .nav__list {
    position: absolute;
    z-index: 45;
    top: 56px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: rgba(31, 58, 46, 0.98);
  }
  .nav__list.is-open {
    display: flex;
  }
  .nav__list a {
    padding: 9px 0;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
  }
  .nav__list i {
    display: none;
  }
}
.hero {
  position: relative;
  height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
}
.hero__bg, .hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg {
  object-fit: cover;
  object-position: center 42%;
}
.hero__shade {
  background: rgba(0, 0, 0, 0.45);
}
.hero__ribbon {
  position: absolute;
  top: 0;
  left: max(3%, 50% - 688px);
  z-index: 3;
  display: block;
  width: 350px;
  height: 440px;
}
.hero__ribbon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__emblem {
  position: absolute;
  top: 42px;
  left: max(2%, 50% - 700px);
  z-index: 2;
  width: 350px;
  height: 350px;
  object-fit: contain;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 28px;
}
.hero__present {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.21em;
}
.hero__present span {
  width: 70px;
  height: 1px;
  background: #ffffff;
}
.hero h1 {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1.3;
  letter-spacing: 0.075em;
}
.hero__place {
  margin: 30px 0 25px;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.17em;
}
.hero__date {
  width: max-content;
  margin: 0 auto 50px;
  padding: 10px 46px;
  border-block: 1px solid rgba(227, 200, 139, 0.6);
  font-family: "Zen Old Mincho", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.intro {
  min-height: 910px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green);
  color: rgba(255, 255, 255, 0.85);
}
.intro__photo {
  overflow: hidden;
}
.intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__copy {
  display: flex;
  align-items: center;
  padding: 80px clamp(40px, 6vw, 110px);
}
.intro__copy .section-title {
  margin-bottom: 1.5rem;
}
.intro__copy > div {
  width: min(540px, 100%);
}
.intro__copy p {
  margin: 0 0 20px;
}
.intro__copy .button {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  margin: 5px 0 0;
  justify-content: center904;
}

.companies {
  padding: 128px 0;
  overflow: hidden;
}

.companies-swiper {
  overflow: visible;
  padding-bottom: 72px;
}

.company-card {
  height: 408px;
  overflow: hidden;
}
.company-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-card--logo {
  display: grid;
  place-items: center;
  background: #ffffff;
}
.company-card--logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.guest {
  position: relative;
  padding: 128px 0;
  color: rgba(255, 255, 255, 0.86);
  background: url("../img/guest-bg.webp") center/cover no-repeat;
  isolation: isolate;
}
.guest__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
}
.guest__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: start;
  margin-top: 70px;
}
.guest__profile .eyebrow,
.guest__profile h4 {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.guest__profile h3 {
  margin: 5px 0 32px;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  letter-spacing: 0.12em;
}
.guest__profile p {
  margin: 0 0 22px;
}
.guest__profile h4 {
  margin-top: 32px;
  font-size: 20px;
}

.photo-placeholder {
  height: 642px;
  overflow: hidden;
  color: var(--green);
  font-weight: 700;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.results {
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid rgba(227, 200, 139, 0.3);
  list-style: none;
}
.results li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(227, 200, 139, 0.2);
}

.program {
  padding: 128px 0;
  overflow-x: clip;
  color: #ffffff;
}

.schedule {
  display: grid;
  grid-template-columns: max(24px, (100% - 1200px) / 2) minmax(0, 600px) 60px minmax(0, 1fr);
  margin: 64px 0 120px;
  align-items: stretch;
}
.schedule__copy {
  grid-column: 2;
  min-width: 0;
}
.schedule h3 {
  margin: 10px 0 15px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.16em;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}
.schedule p {
  margin: 0 0 1.5em;
  line-height: 1.8;
}
.schedule__note {
  margin: 28px 0 0;
}
.schedule__media {
  grid-column: 4;
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.schedule__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-label {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 75px;
  padding: 16px 28px;
  background: var(--wine);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 10px;
}

.golf-logo {
  color: #231815;
  display: block;
  width: 185px;
  height: 34px;
}

.timeline {
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.timeline > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.timeline dt {
  color: var(--gold);
  font-weight: 700;
}
.timeline dd {
  margin: 0;
  font-weight: 700;
}

.points-title {
  margin-bottom: 64px;
}

.points {
  width: min(1010px, 100%);
  margin: auto;
  display: grid;
  gap: 32px;
}

.point-card {
  padding: 36px 40px 40px;
  border-radius: 10px;
  background: #fdfffe;
  color: #4b4b4b;
  scroll-margin-top: 100px;
}
.point-card header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #4b4b4b;
}
.point-card header span {
  flex: none;
  padding: 1px 20px;
  border-radius: 100px;
  background: var(--wine);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.point-card h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.14em;
}
.point-card__body {
  display: grid;
  grid-template-columns: 465px 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 32px;
}
.point-card__body > img,
.point-card__body .photo-placeholder--small {
  width: 465px;
  height: 269px;
  object-fit: cover;
  background-color: #ccc;
}
.point-card__body h4 {
  margin: 0 0 10px;
  color: #e3c88b;
  font-size: 20px;
}
.point-card__body p {
  margin: 0;
}
.point-card__body p.small-title {
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.4;
}

.overview {
  padding: 80px 0;
  color: var(--green);
}
@media (max-width: 767px) {
  .overview {
    padding: 30px 0;
  }
}

.overview-list {
  margin: 50px 0 0;
  border-top: 1px solid rgba(35, 63, 49, 0.55);
}
@media (max-width: 767px) {
  .overview-list {
    border-top: none;
  }
}
.overview-list > div {
  display: grid;
  grid-template-columns: 218px 1fr;
  border-bottom: 1px solid rgba(35, 63, 49, 0.55);
}
.overview-list dt {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(35, 63, 49, 0.55);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.overview-list dd {
  margin: 0;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overview-list p {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .overview-list p {
    line-height: 1.5;
  }
}

.price {
  display: grid;
  grid-template-columns: minmax(300px, 440px) auto 1fr;
  align-items: baseline;
  gap: 10px;
  margin: 7px 0;
}
.price strong {
  color: var(--gold-dark);
  font-size: 30px;
}

.entry {
  padding: 80px 0 40px;
}
.entry > a > img {
  width: 264px;
  height: 109px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.entry > small {
  display: block;
  margin-top: 25px;
}
.entry__box {
  display: grid;
  grid-template-columns: 218px 1fr;
  border-radius: 10px;
  background: #fffbf4;
  overflow: hidden;
}
.entry__box h3 {
  display: grid;
  place-items: center;
  margin: 0 16px;
  border-right: 1px solid rgba(31, 58, 46, 0.4);
  font-size: 21px;
  letter-spacing: 0.3em;
}
.entry__box > div {
  padding: 8px 40px;
}
.entry__box p {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 22px 0;
}
.entry__box p + p {
  border-top: 1px solid rgba(31, 58, 46, 0.25);
}
.entry__box strong {
  font-size: 20px;
}
.entry__box b {
  padding: 6px 16px;
  background: var(--green);
  color: #ffffff;
  white-space: nowrap;
}

.contact {
  text-align: center;
}
.contact h2 {
  padding-bottom: 36px;
  margin: 0 0 36px;
  font-size: 32px;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(31, 58, 46, 0.5);
}
.contact p {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.contact small {
  display: block;
  margin: 5px 0 10px;
  font-size: 16px;
}
.contact a {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.contact__note {
  margin: 20px auto 0;
}

.hotels {
  padding: 128px 0;
  color: #ffffff;
}
.hotels__lead {
  margin: 20px 0 0;
  text-align: center;
}

.hotels-count {
  margin: 0;
  color: var(--gold);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hotels-swiper {
  border-radius: 10px;
  padding-bottom: 72px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #ffffff;
  color: var(--ink);
  overflow: hidden;
  border-radius: 10px;
}
.hotel-card > a {
  display: block;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.hotel-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hotel-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 60px;
}
.hotel-card > div > span {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hotel-card h3 {
  margin: 6px 0 22px;
  color: var(--green);
  font-size: 32px;
}
.hotel-card p {
  margin: 0 0 28px;
}

@media (max-width: 1024px) {
  .hero__ribbon {
    left: 0;
    width: 245px;
  }
  .hero__emblem {
    left: -10px;
    width: 265px;
  }
  .intro {
    grid-template-columns: 42% 58%;
  }
  .intro__copy {
    padding: 60px 35px;
  }
  .schedule {
    grid-template-columns: 24px minmax(0, 1fr) 32px minmax(0, 1fr);
  }
  .point-card__body {
    grid-template-columns: 48% 1fr;
    gap: 36px;
  }
  .point-card__body > img,
  .photo-placeholder--small {
    width: 100%;
  }
  .entry__box p {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 390px;
    padding: 58px 20px 48px;
    background: #141f14;
  }
  .hero__bg, .hero__shade, .hero__emblem {
    display: none;
  }
  .hero__ribbon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 83px;
    height: auto;
  }
  .hero__ribbon img {
    height: auto;
    object-fit: contain;
  }
  .hero__content {
    width: 100%;
    margin: 0;
  }
  .hero__present {
    gap: 8px;
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .hero__present span {
    width: 12px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .hero__place {
    margin: 20px 0;
    font-size: 16px;
    letter-spacing: 0;
  }
  .hero__date {
    margin: 0 auto 20px;
    padding: 8px 24px;
    font-size: 17px;
    letter-spacing: 0;
  }
  .intro {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 48px 20px;
    background: var(--green);
  }
  .intro__photo {
    width: 100%;
    height: 318px;
  }
  .intro__photo img {
    width: 100%;
    height: 318px;
    content: url("../img/figma-sp-intro.webp");
    object-fit: cover;
  }
  .intro__copy {
    display: block;
    padding: 0;
    background: transparent;
  }
  .intro__copy::before {
    display: none;
  }
  .intro__copy > div {
    width: 100%;
  }
  .intro__copy .section-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .intro__copy p {
    margin: 0 0 18px;
    font-size: 13px;
  }
  .intro__copy .button {
    max-width: 100%;
    margin-top: 2px;
  }
  .companies {
    padding: 48px 0;
  }
  .companies .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .companies .section-title {
    order: 1;
    font-size: 18px;
  }
  .companies .slider-head {
    order: 3;
    justify-content: center;
    margin: 0;
  }
  .companies-swiper {
    order: 2;
    width: 100%;
    padding-bottom: 36px;
    overflow: hidden;
  }
  .company-card {
    height: 214px;
  }
  .company-card:first-child img {
    content: url("../img/figma-sp-company.webp");
  }
  .guest {
    padding: 48px 0;
    background-color: #0f1a12;
    background-position: center;
  }
  .guest__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .guest__profile .eyebrow {
    font-size: 13px;
  }
  .guest__profile h3 {
    margin: 2px 0 20px;
    font-size: 24px;
    letter-spacing: 0;
  }
  .guest__profile p {
    margin: 0 0 18px;
    font-size: 13px;
  }
  .guest__profile h4 {
    margin-top: 20px;
    font-size: 15px;
  }
  .photo-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    max-height: 360px;
  }
  .results {
    margin-top: 14px;
  }
  .results li {
    padding: 14px 0;
    font-size: 13px;
  }
  .program {
    padding: 48px 0;
  }
  .schedule {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin: 20px auto 48px;
    gap: 20px;
  }
  .schedule__copy {
    grid-column: auto;
    order: 1;
  }
  .schedule__media {
    grid-column: auto;
    order: 2;
    height: 240px;
    min-height: 240px;
  }
  .schedule__image {
    height: 100%;
  }
  .schedule h3 {
    margin: 20px 0 14px;
    font-size: 18px;
    letter-spacing: 0;
  }
  .schedule p {
    margin: 0 0 18px;
    font-size: 13px;
  }
  .schedule__note {
    margin-top: 20px;
  }
  .date-label {
    height: 43px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0;
  }
  .timeline {
    margin-top: 20px;
  }
  .timeline > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }
  .timeline dt {
    font-size: 13px;
  }
  .timeline dd {
    font-size: 15px;
  }
  .points-title {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .points {
    gap: 24px;
  }
  .point-card {
    padding: 24px 20px;
    border-radius: 8px;
  }
  .point-card header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
  }
  .point-card header span {
    margin: 0;
    padding: 4px 14px;
    font-size: 13px;
  }
  .point-card h3 {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .point-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
  }
  .point-card__body > img,
  .point-card__body .photo-placeholder--small {
    width: 100%;
    height: 180px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .point-card__body h4 {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  .point-card__body p {
    font-size: 13px;
  }
  .overview {
    padding: 48px 0;
  }
  .overview .section-title {
    font-size: 20px;
  }
  .overview-list {
    margin-top: 20px;
  }
  .overview-list > div {
    display: block;
    padding: 10px 0;
    border-bottom: 0;
    border-top: 1px solid rgba(35, 63, 49, 0.55);
  }
  .overview-list > div:last-child {
    border-bottom: 1px solid rgba(35, 63, 49, 0.55);
  }
  .overview-list dt {
    display: block;
    padding: 0;
    border: 0;
    font-size: 15px;
    letter-spacing: 2px;
  }
  .overview-list dd {
    padding: 8px 0 0;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .overview-list dd > small {
    font-size: 12px;
    line-height: 1.7;
  }
  .overview-list p {
    margin-bottom: 10px;
  }
  .price {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 6px;
    margin: 10px 0;
  }
  .price span {
    flex-basis: 100%;
    font-size: 13px;
  }
  .price strong {
    font-size: 22px;
    line-height: 1.4;
  }
  .price small {
    align-self: center;
  }
  .entry {
    display: block;
    padding: 40px 0 0px;
  }
  .entry > a {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
  }
  .entry > a > img {
    width: 180px;
    height: auto;
    margin: 0;
  }
  .entry > p {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
  .entry__box {
    grid-template-columns: 1fr;
  }
  .entry__box h3 {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 58, 46, 0.4);
    font-size: 15px;
    letter-spacing: 0.2em;
  }
  .entry__box > div {
    padding: 4px 16px 8px;
  }
  .entry__box p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
    font-size: 13px;
    line-height: 1.6;
  }
  .entry__box strong {
    font-size: 15px;
  }
  .entry__box b {
    padding: 4px 12px;
    font-size: 12px;
  }
  .contact h2 {
    font-size: 26px;
    margin: 50px 0 20px;
    padding-bottom: 20px;
  }
  .contact p {
    font-size: 26px;
  }
  .contact__note {
    margin-top: 0;
    padding: 30px 0 30px;
  }
  .hotels {
    padding: 48px 0;
  }
  .hotels .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .hotels .section-title {
    order: 1;
    font-size: 20px;
  }
  .hotels .slider-head {
    order: 4;
    justify-content: center;
    margin: 0;
  }
  .hotels .slider-button {
    background-image: url("../img/figma-sp-arrow-hotel.svg");
    background-position: center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
  .hotels__lead {
    order: 2;
    margin: -12px 0 0;
    font-size: 13px;
  }
  .hotels-count {
    display: none;
  }
  .hotels-swiper {
    order: 3;
    width: 100%;
    padding-bottom: 36px;
    border-radius: 8px;
  }
  .hotel-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 8px;
    align-content: baseline;
  }
  .hotel-card > a {
    height: 260px;
  }
  .hotel-card > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .hotel-card > div {
    min-height: 0;
    padding: 24px 20px;
  }
  .hotel-card > div > span {
    font-size: 13px;
  }
  .hotel-card h3 {
    margin: 6px 0 10px;
    font-size: 20px;
  }
  .hotel-card p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.7;
  }
  .hotel-card .button {
    min-height: 48px;
  }
}
.footer {
  padding: 72px 0 28px;
  background: #fbf7ee;
  color: var(--green);
  text-align: center;
}
.footer p {
  margin: 0;
}
.footer nav {
  display: flex;
  justify-content: center;
  margin: 50px 0 38px;
}
.footer nav a {
  padding: 0 18px;
  border-left: 1px solid var(--green);
  line-height: 20px;
}
.footer nav a:last-child {
  border-right: 1px solid var(--green);
}
.footer__copy {
  padding-top: 28px;
  border-top: 1px solid rgba(31, 58, 46, 0.15);
}

.backtop {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1030;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  background: var(--wine);
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, filter 0.2s;
}
.backtop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.backtop:hover {
  filter: brightness(1.08);
}
.backtop:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.backtop__icon {
  display: block;
}

@media (max-width: 767px) {
  .footer {
    padding: 36px 0;
    font-size: 12px;
  }
  .footer .container {
    width: calc(100% - 40px);
  }
  .footer nav {
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
  }
  .footer nav a,
  .footer nav a:last-child {
    padding: 0;
    border: 0;
  }
  .footer__copy {
    padding-top: 0;
    border: 0;
    color: #4d4d4d;
    font-size: 11px;
    line-height: 1.5;
  }
  .backtop {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
  .backtop__icon {
    width: 18px;
    height: 15px;
  }
}

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