/* カラーや共通値 */
:root {
  --navy: #374592;
  --navy-deep: #212958;
  --yellow: #EBC62F;
  --white: #ffffff;
  --green: #34675C;
  --text: #151515;
  --muted: #cfd2e0;
}

/* 全体のベース設定 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: clamp(1.6rem, 1.7vw, 1.7rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  font-feature-settings: "palt"1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  position: relative;
  overflow-x: hidden;
  min-height: 100svh;
}

.page_wrap {
  max-width: 640px;
  margin: 0 auto;
}

a {
  text-decoration: underline;
}

.center {
  text-align: center;
}


main {
  /* padding: 0 1rem; */
}

/* ==========
ヒーロー
========== */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  margin: 1rem;
  height: 40vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero__logo {
  width: 40%;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.hero__info {
  margin-top: auto;
  margin-left: auto;
  padding-bottom: 2rem;
  padding-right: 4%;
}

.hero__stations {
  margin-bottom: 2rem;
  text-align: right;
}

.hero__stations p {
  font-size: 1.4rem;
}

.hero__price h2 {
  font-size: 1.7rem;
  font-weight: 700;
}

.hero__price p {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
}

.hero__price span {
  font-size: 1.4rem;
  text-align: right;
  display: block;
}

/* セクション共通 */
.section {
  position: relative;
  padding: 6rem 1rem 10rem;
}

.section::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom,
      var(--green) 0 8px,
      transparent 8px 10px,
      var(--yellow) 10px 18px);
  width: 100vw;
  height: 18px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.section__title {
  position: relative;
}

.section__title span {
  font-family: "Anton", sans-serif;
  font-size: 4.8rem;
  letter-spacing: -.1rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 1px 1px 0px #FFF;
}

.section__title::before {
  content: "";
  position: absolute;
  background: var(--yellow);
  width: calc(100vw - 1rem);
  height: 8px;
  top: 56%;
  z-index: -1;
}

.section__top {
  padding-top: 0;
}

.section__footer::before {
  background: none;
}

/* ルーム画像のグリッド */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* 料金セクションのみ横並び */
.section__box--row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.section__box--row .price-block {
  flex: 1;
}

.price-block img {
  width: 100%;
  margin-bottom: .5rem;
}

.price-block h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: -0.5rem;
}

.price-block p {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.price-block p span {
  font-size: 2rem;
  margin-right: .5rem;
}


.price-block ul {
  font-size: 1.4rem;
}

/* 機材テーブル */
.equipment {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(1.3rem, 1.2vw, 1.6rem);
  line-height: 1.7;
}

.equipment th,
.equipment td {
  color: var(--white);
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.equipment th {
  width: 34%;
  font-weight: 600;
  background-color: var(--navy-deep);
}

.equipment td {
  background-color: var(--navy);
}

/* 箇条書きの見た目 */
.bullet__box {
  background-color: var(--navy-deep);
  padding: 3rem 2rem 4rem;
}

.bullet {
  color: var(--white);
  padding-left: 1.2rem;
  line-height: 1.8;
  font-size: 1.5rem;
}

.section__box {
  color: var(--white);
  background-color: var(--navy-deep);
  padding: 3rem 2rem 4rem;
}

.payment__box {
  position: relative;
}

.payment__box .logo {
  position: absolute;
  right: 1rem;
  bottom: -3rem;
  width: 34%;
}

.payment-grid {
  display: grid;
  gap: 16px;
}

.payment-grid h3 {
  color: var(--white);
}

/* Googleマップ */
.map__box {
  margin-top: 2rem;
}

.map iframe {
  width: 100%;
  height: 32vh;
}

.map {
  margin-top: 2rem;
}

/* 予約セクションの横並び */
.booking {
  text-align: center;
}

.booking img {
  width: 50%;
  margin-top: 1rem;
}

.calendar-placeholder {
  text-align: center;
}

.calendar-placeholder iframe {
  width: 100%;
}


.footer {
  padding: 3rem 0 6rem;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom,
      var(--green) 0 8px,
      transparent 8px 10px,
      var(--yellow) 10px 18px);
  width: 100vw;
  height: 18px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.footer img {
  width: 56%;
}

/* スクロール表示アニメーション */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .page {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .section::before {
    width: 100%;
    left: 0;
    transform: none;
  }

  .section__title::before {
    width: 100%;
    left: 0;
  }

  .section {
    padding: 9rem 1.5rem 15rem;
  }
}


.recruit_link {
  text-align: center;
  margin-bottom: 4rem;
}

.recruit_link a {
  display: grid;
  place-items: center;
  height: 72px;
  width: 90%;
  max-width: 400px;
  background-color: var(--navy-deep);
  /* border-radius: 50vmax; */
  margin: 0 auto;
}

.recruit_link a span {
  font-weight: 600;
  color: #FFF;
}
