:root {
  --color-brown: #c7b698;
  --color-brown-deep: #a18863;
  --color-brown-text: #9c835f;
  --color-brown-soft: #baa788;
  --color-green: #79a06c;
  --color-green-soft: #8ca286;
  --color-white: #ffffff;
  --color-ivory: #f4f0e7;
  --color-base: #ececec;
  --color-section: #ffffff;
  --color-intro-btn: rgba(191, 173, 145, 0.95);

  --font-mincho: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-round: "Zen Maru Gothic", sans-serif;

  --content-width: min(100%, calc(100% - 32px));
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 999px;
  --shadow-soft: 0 10px 24px rgba(161, 142, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--color-brown-text);
  font-family: var(--font-mincho);
  min-width: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.lp {
  overflow: hidden;
  background: var(--color-base);
}

/* 共通 */
.container {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 10px 0 25px;
  background: var(--color-section);
}

#rooms,
#food,
#activity {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#rooms {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/セクション背景.png");
}

#food {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/セクション背景.png");
}

#activity {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/セクション背景.png");
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: #e7dece;
  color: #b1946b;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.section-title {
  margin: 0;
  color: var(--color-brown-soft);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.section-subtitle {
  margin: 16px 0 8px;
  color: var(--color-brown-soft);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.feature-card__text {
  margin: 8px 0 0;
  color: #000000;
  font-family:Zen Old Mincho, serif;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
}

.accent {
  color: var(--color-brown-deep);
}

/* hero */
.hero {
  background: #f1f0eb;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  background: var(--color-brown);
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.gnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 44px;
  align-items: center;
  text-align: center;
  background: var(--color-ivory);
  border-bottom: 1px solid rgba(199, 182, 152, 0.28);
  color: #9c8869;
  font-size: 20px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.hero-panel {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  min-height: 190px;
  padding: 28px 16px 24px;
  outline: 2px solid rgba(214, 201, 180, 0.62);
  outline-offset: -8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title-top {
  margin: 0 0 12px;
  color: var(--color-brown-deep);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-title-main {
  margin: 0;
  color: var(--color-brown-deep);
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--color-brown-deep);
}

.hero-logo {
  width: 40px;
  height: 40px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-text {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.cta-wrap {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 10px 20px;
  background-color: #FFF8EC;
  border: 2px solid #AC946F;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 100;
}

.cta-subcopy {
  color: #446E35;
  font-family: var(--font-round);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.cta-button {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #446E35;
  font-family: var(--font-round);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cta-main::after {
  content: "▶";
  font-size: 18px;
}

/* intro */
.intro {
  position: relative;
  overflow: hidden;
  padding: 28px 0 110px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("../images/トップ②.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-links {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.intro-link {
  position: relative;
  min-height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-intro-btn);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.intro-link::after {
  content: "<";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #b49b74;
  font-size: 11px;
  transform: rotate(-90deg);
}

.intro-copy {
  width: var(--content-width);
  margin: 28px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro-copy .lead {
  margin: 0 0 8px;
  color: #679159;
  font-size: 20px;
  font-weight: 600;
  font-family: Zen Old Mincho, serif;
  line-height: 1.0;
  letter-spacing: 0.06em;
}

.intro-copy .desc {
  margin: 0;
  color:#679159;
  font-size: 19px;
  font-weight: 600;
  font-family: Zen Old Mincho, serif;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.intro-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
}

.intro-wave svg {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
}

.intro-wave-white {
  bottom: 0;
  height: 46px;
}

.intro-wave-white path {
  fill: #fff;
}

/* splide */
.room-splide {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.room-splide .splide__track {
  overflow: hidden;
}

.room-splide .splide__list {
  align-items: center;
  margin: 0;
  padding: 0;
}

.room-splide .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.room-splide .splide__slide img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: auto 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

.room-splide .splide__slide:not(.is-active) img {
  transform: scale(0.92);
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.9);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2rem;
  height: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(70, 43, 24, 0.28));
}

.splide__arrow--prev {
  left: unset;
}

.splide__arrow--next {
  right: 0;
}
/* access */
.section--access {
  position: relative;
  padding-top: 0;
  padding-bottom: 120px;
  background-color: #f6f1e8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("../images/フッター.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.access-wave {
  margin: 100px 0 0;
  position: absolute;
  left: 0;
  top: -140px;
  width: 100%;
  height: 46px;
}
.access-wave svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.access-wave-blue path {
  fill: #A8D6FF;
}

.section--access .container {
  /*position: relative;*/
  z-index: 1;
}

.access-heading {
  margin: 0;
  color: #93aebb;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.access-subtitle {
  margin:0;
  color: #938062;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.access-gallery {
  width: 100%;
  margin: 24px auto 20px;
}

.box {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.box img {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.box .img_01 {
  width: 58%;
  aspect-ratio: auto 1;
  top: 0;
  left: 0;
  z-index: 1;
}

.box .img_02 {
  width: 62%;
  aspect-ratio: auto 1;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.access-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 20px 16px 24px;
  box-shadow: var(--shadow-soft);
}

.access-copy{
  margin: 0;
  text-align: center;
  font-family: Zen Old Mincho, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: #404040;
}

.access-note {
  margin: 0;
  text-align: center;
  font-family: Zen Old Mincho, serif;
  font-size: 16px;
  line-height: 1.9;
  color: #906E16 ;
}

.access-note-logo {
  width: 50px;
  height: 50px;
  margin: 12px auto 0;
}

.access-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 18px;
  text-align: center;
  font-family: Zen Old Mincho, serif;
  font-size: 18px;
  line-height: 1.9;
  color: #6AADB9;
}

.map {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
}

.map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* 余裕があればタブレット向け */
@media screen and (min-width: 769px) {
  .container {
    width: min(720px, calc(100% - 48px));
  }

  .hero-visual {
    height: 700px;
  }

  .hero-panel {
    width: min(640px, calc(100% - 64px));
    min-height: 300px;
  }

  .hero-title-top {
    font-size: 42px;
  }

  .hero-title-main {
    font-size: 62px;
  }


  .hero-text {
    font-size: 18px;
  }

  .intro-links {
    grid-template-columns: 1fr;
  }

  .intro-copy .lead {
    font-size: 28px;
  }

  .intro-copy .desc {
    font-size: 24px;
  }

  .room-splide .splide__slide img {
    aspect-ratio: auto 1;
  }

  .access-heading {
    font-size: 30px;
  }

  .feature-card__text {
    font-size: 16px;
  }

  /*.box {
    padding-top: 56.25%;
  }

  .box .img_01 {
    width: 46%;
  }

  .box .img_02 {
    width: 68%;
  }*/

  .access-card {
    padding: 32px 28px 36px;
  }
}
