
@charset "UTF-8";

:root {
  --black: #171917;
  --ivory: #F7F4EF;
  --gold: #B89B5E;
  --green: #586458;
  --text: #2C2C2C;
  --muted: #6F6F6F;
  --line: rgba(23,25,23,.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.9;
  letter-spacing: .04em;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 46px;
  background: rgba(23,25,23,.82);
  color: #fff;
  backdrop-filter: blur(10px);
}

.logo {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: .16em;
  line-height: 1.1;
}

.logo span {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--gold);
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
}

.nav a {
  opacity: .9;
}

.nav a:hover {
  color: var(--gold);
}

.nav .reserve-link {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 18px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.62));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.eyebrow {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  letter-spacing: .22em;
  font-size: 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(38px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .12em;
  margin: 22px auto;
  max-width: 1100px;
}

.hero p {
  font-size: clamp(16px, 2vw, 22px);
  margin: 0 0 38px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: .14em;
  background: transparent;
}

.btn.dark {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.section {
  padding: 150px 7vw;
}

.section.dark {
  background: var(--black);
  color: #fff;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 70px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.1;
  margin: 8px 0 22px;
}

.section-head p {
  color: var(--muted);
}

.dark .section-head p,
.dark .lead,
.dark .text p {
  color: rgba(255,255,255,.72);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.photo-frame {
  border: 1px solid rgba(184,155,94,.28);
  padding: 14px;
  background: rgba(255,255,255,.26);
}

.photo-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 24px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.card {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 26px;
}

.card h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  min-height: 62vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--black);
  padding: 160px 7vw 90px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.55));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.page-hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: .08em;
  margin: 12px 0 0;
}

.info-list {
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.info-row dt {
  color: var(--green);
}

.info-row dd {
  margin: 0;
}

.cta {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 130px 7vw;
}

.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  margin: 0 0 18px;
}

.cta p {
  color: rgba(255,255,255,.72);
  margin-bottom: 34px;
}

.footer {
  background: #101110;
  color: rgba(255,255,255,.72);
  padding: 54px 7vw;
  font-size: 13px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 30px;
}

.price {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 26px;
  letter-spacing: .08em;
}

.form-box {
  border: 1px solid var(--line);
  padding: 44px;
  background: rgba(255,255,255,.36);
}

.form-grid {
  display: grid;
  gap: 20px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 18px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 12px;
  }

  .section {
    padding: 90px 6vw;
  }

  .two-col,
  .two-col.reverse,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* final update */
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: .28em;
}

.hero-content {
  transform: translateY(12px);
}

.moments {
  background: #f3efe8;
}

.wide-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 80px;
}

.wide-feature img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card .price {
  margin-top: 10px;
}

.dark .card {
  border-top-color: rgba(255,255,255,.2);
}

.dark .card p {
  color: rgba(255,255,255,.65);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(38px, 12vw, 64px);
    letter-spacing: .08em;
  }

  .wide-feature {
    grid-template-columns: 1fr;
  }
}


/* 2026-06 visual refinement */
.hero h1{
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* 日本語大見出しの改行を減らす */
.section-head h2{
  max-width: 1100px;
  font-size: clamp(36px,4.6vw,64px);
  line-height: 1.25;
  word-break: keep-all;
}


/* Resort Moments heading refined */
.moments .section-head h2{
  line-height: 1.35;
  letter-spacing: .08em;
}

.moments .section-head{
  max-width: 980px;
}


/* 2026-06 final typography refinement
   高級ホテルらしく、見出しの主張を控えめに調整 */

/* TOPメインホテル名 */
.hero h1{
  font-size: clamp(34px, 4.8vw, 66px) !important;
  line-height: 1.16 !important;
  letter-spacing: .13em !important;
  color: rgba(255,255,255,0.78) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}

/* 下層ページの大きな英字タイトル */
.page-hero h1{
  font-size: clamp(42px, 5.2vw, 72px) !important;
  line-height: 1.12 !important;
  letter-spacing: .10em !important;
}

/* セクション見出し全体 */
.section-head h2{
  font-size: clamp(30px, 3.6vw, 50px) !important;
  line-height: 1.35 !important;
  letter-spacing: .07em !important;
  word-break: keep-all;
}

/* TOPの「軽井沢の一日を、ゆっくり味わう。」 */
.moments .section-head h2{
  font-size: clamp(30px, 3.4vw, 46px) !important;
  line-height: 1.55 !important;
  letter-spacing: .08em !important;
}

/* CTAの Reserve Your Escape */
.cta h2{
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1.2 !important;
  letter-spacing: .08em !important;
}

/* 日本語の大きな見出し */
.section-head:not(.center) h2{
  font-size: clamp(30px, 3.8vw, 52px) !important;
  line-height: 1.45 !important;
  letter-spacing: .06em !important;
}

/* スマホ時はさらに控えめに */
@media (max-width: 900px){
  .hero h1{
    font-size: clamp(32px, 9vw, 52px) !important;
  }

  .page-hero h1{
    font-size: clamp(38px, 10vw, 58px) !important;
  }

  .section-head h2,
  .section-head:not(.center) h2,
  .moments .section-head h2{
    font-size: clamp(28px, 8vw, 42px) !important;
  }

  .cta h2{
    font-size: clamp(32px, 9vw, 48px) !important;
  }
}


/* EXTRA downsizing */
.hero h1{font-size:clamp(30px,4vw,56px)!important;}
.page-hero h1{font-size:clamp(34px,4vw,58px)!important;}
.section-head h2{font-size:clamp(24px,2.8vw,40px)!important;}
.moments .section-head h2{font-size:clamp(24px,2.8vw,38px)!important;}
.cta h2{font-size:clamp(28px,3.5vw,48px)!important;}
.card h3{font-size:32px;}
.card p{line-height:1.8;}


/* v5 heading refinement */

/* 森とともに眠る客室。 */
.rooms-intro h2,
.rooms-copy h2,
.room-lead h2{
    font-size: clamp(28px,3vw,44px) !important;
    line-height: 1.45 !important;
}

/* 予定を詰め込まない、豊かな時間。 */
.experience-intro h2,
.experience-copy h2,
.experience-lead h2{
    font-size: clamp(28px,3vw,44px) !important;
    line-height: 1.45 !important;
}

/* 念のため大きな日本語見出し全体 */
h2.jp-large,
.section-title-jp,
.lead-copy h2{
    font-size: clamp(28px,3vw,44px) !important;
    line-height: 1.45 !important;
}
