@charset "utf-8";

/* ==============================================
ACCESS ページ専用CSS
(ヘッダー/フッター/共通ナビ/共通ボタンは css/style.css を参照)

ターゲット(20〜30代男女 + シニア世代の団体客)への配慮:
- 本文15px以上、ラベル・タブ・ボタンは16px以上
- タブ・ボタンのタップ領域は48px以上を確保
- 情報は見出し+本文で区切り、長文を詰め込みすぎない
============================================== */

:root{
  --a-sub: #4a4460;
}

/* ================= HERO ================= */
.access-page-hero{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h) - var(--nav-h, 64px));
  min-height: 420px;
  overflow: hidden;
}
.access-page-hero img{ width: 100%; height: 100%; object-fit: cover; }

/* 写真の明暗にかかわらず文字を読みやすくするための暗幕 */
.access-page-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(45,0,77,0.55) 0%, rgba(45,0,77,0.22) 38%, rgba(45,0,77,0.38) 100%);
  pointer-events: none;
}

.hero-badge{
  position: absolute;
  z-index: 2;
  left: 5%;
  top: 12%;
  width: 220px;
  height: 220px;
  background: rgba(204,204,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple);
}

.hero-copy{
  position: absolute;
  z-index: 2;
  right: 6%;
  top: 12%;
  text-align: right;
  max-width: 620px;
}

.hero-copy .script{
  font-family: 'La Belle Aurore', cursive;
  font-size: clamp(28px, 4.4vw, 50px);
  color: var(--paper);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
}

.hero-copy .sub{
  margin-top: 10px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--lavender);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 800px){
  .hero-badge{ width: 150px; height: 150px; font-size: 19px; left: 6%; top: 8%; }
  .hero-copy{ left: 6%; right: 6%; text-align: left; top: auto; bottom: 8%; }
}

/* ================= 共通見出し ================= */
.en-title{
  font-family: 'Castoro', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--yellow);
  margin-bottom: 18px;
  text-align: center;
}

.divider{
  width: 100%;
  max-width: 500px;
  height: 0;
  border-top: 3px solid var(--lavender);
  margin: 0 auto 24px;
}

/* ================= MAP + 所在地 ================= */
.map-section{ background: var(--paper); }

.map-embed{
  width: 100%;
  aspect-ratio: 16/7;
  min-height: 320px;
  background: var(--lavender);
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; display: block; }

.address-block{
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 6%;
  text-align: center;
}

.address-label{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 14px;
}

.address-text{
  font-size: 17px;
  line-height: 1.9;
  color: var(--purple);
}

@media (max-width: 700px){
  .map-embed{ aspect-ratio: 4/3; }
}

/* ================= 交通手段(タブ) ================= */
.transit-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 6% 100px;
}

.transit-tabs{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.transit-tab{
  min-height: 52px;
  padding: 0 28px;
  background: var(--paper);
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--r-sub, var(--a-sub));
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.transit-tab.active{
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--purple);
}

.transit-panel{ display: none; }
.transit-panel.active{ display: block; }

.transit-block{
  max-width: 780px;
  margin: 0 auto 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray);
}
.transit-block:last-child{ border-bottom: none; margin-bottom: 0; }

.transit-block h3{
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 14px;
}

.transit-block p{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: var(--a-sub);
}

.transit-block .note{
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #8a8398;
  line-height: 1.9;
}

@media (max-width: 700px){
  .transit-tabs{ flex-direction: column; align-items: stretch; }
  .transit-tab{ width: 100%; }
}

/* ================= CONTACT US(ホテルページのトンマナ) ================= */
.contact-section{ padding: 96px 0 120px; }
.contact-section .wrap{ max-width: 920px; margin: 0 auto; padding: 0 28px; }

.contact-section .section-header{
  text-align: center;
  margin-bottom: 48px;
}

.contact-section .lead{
  font-size: 16px;
  line-height: 2;
  color: var(--a-sub);
}

.contact-form .field{ margin-bottom: 24px; }
.contact-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.contact-form label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--purple);
}

.contact-form label .req{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  background: var(--lavender);
  color: var(--purple);
  padding: 3px 10px;
  border-radius: 999px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea{
  width: 100%;
  min-height: 52px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background: var(--paper);
  color: var(--purple);
}

.contact-form textarea{ min-height: 160px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--yellow);
  background: #fff;
}

.contact-note{
  font-size: 12px;
  line-height: 1.9;
  color: #8a8398;
  margin: 24px 0;
}

.agree{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto 32px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--a-sub);
  text-align: left;
}
.agree input{ margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }

.submit-wrap{ text-align: center; }

.btn-submit{
  min-height: 60px;
  min-width: 220px;
  padding: 0 60px;
  background: var(--yellow);
  border: none;
  border-radius: 999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(204,204,0,0.7);
}

@media (max-width: 700px){
  .contact-form .form-row{ grid-template-columns: 1fr; gap: 20px; }
}
