@charset "UTF-8";

/* =============================================
   location02.css
   施設情報ページ共通スタイル
   対象: AWAJI KAI / OCEAN CLUB
   スコープ: クラスプレフィックス l02-
   ============================================= */

/* ===== Variables ===== */
:root {
 --l02-ink: #1c2024;
 --l02-sea: #13343b;
 --l02-twi: #27486b;
 --l02-sand: #efe9df;
 --l02-paper: #f7f4ee;
 --l02-gold: #c69a5b;
 --l02-muted: #46504f;
 --l02-sub: #5b6463;
 --l02-line: rgba(28, 32, 36, 0.12);
 --l02-serif: "Noto Serif JP", serif;
 --l02-en: "Cormorant", serif;
 --l02-sans: "Zen Kaku Gothic New", sans-serif;
}

/* ===== Base ===== */
#home02 .l02-wrap {
 width: min(1200px, 92%);
 margin-inline: auto;
}

/* ===== Section EN label ===== */
#home02 .l02-sec-en {
 font-family: var(--l02-en);
 letter-spacing: 0.34em;
 font-size: 12px;
 color: var(--l02-gold);
 text-transform: uppercase;
 margin-bottom: 14px;
 margin-top: 14px;
 text-align: center;
}

/* ===== Breadcrumb ===== */
#home02 .l02-bc {
 padding: 16px 0;
 border-bottom: 1px solid rgba(28, 32, 36, 0.1);
 background: var(--l02-paper);
}

#home02 .l02-bc ul {
 display: flex;
 gap: 6px;
 align-items: center;
 font-family: var(--l02-en);
 font-size: 12px;
 letter-spacing: 0.16em;
 color: #888;
 text-transform: uppercase;
}

#home02 .l02-bc li + li::before {
 content: "›";
 margin-right: 6px;
}

#home02 .l02-bc a {
 color: var(--l02-gold);
}

#home02 .l02-bc a:hover {
 opacity: 0.75;
}

/* ===== Hero ===== */
#home02 .l02-hero {
 position: relative;
 height: 750px;
 min-height: 420px;
 display: flex;
 align-items: flex-end;
 overflow: hidden;
 color: #fff;
}

#home02 .l02-hero__bg {
 position: absolute;
 inset: 0;
 background: var(--l02-sea);
}

#home02 .l02-hero__bg img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

#home02 .l02-hero__veil {
 position: absolute;
 inset: 0;
 background: linear-gradient(
  180deg,
  rgba(10, 20, 28, 0.08) 0%,
  rgba(10, 20, 28, 0.62) 100%
 );
}

#home02 .l02-hero__inner {
 position: relative;
 z-index: 2;
 padding: 0 clamp(20px, 5vw, 60px) clamp(44px, 7vh, 80px);
}

#home02 .l02-hero__kicker {
 font-family: var(--l02-en);
 letter-spacing: 0.38em;
 font-size: 12px;
 color: var(--l02-gold);
 text-transform: uppercase;
 margin-bottom: 16px;
}

#home02 .l02-hero h1 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.6rem, 3.8vw, 2.8rem);
 color: #fff;
 line-height: 1.55;
 margin: 0 0 18px;
}

#home02 .l02-hero h1 strong {
 font-weight: 600;
 color: var(--l02-gold);
}

#home02 .l02-hero__sub {
 color: rgba(255, 255, 255, 0.88);
 font-size: 0.93rem;
 font-weight: 300;
 line-height: 2;
 max-width: 540px;
}

/* ===== Concept ===== */
#home02 .l02-concept {
 padding: clamp(60px, 10vh, 110px) 0;
 text-align: center;
 border-bottom: 1px solid var(--l02-line);
}

#home02 .l02-concept h2 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.3rem, 2.8vw, 2rem);
 line-height: 1.75;
 margin-bottom: 24px;
 color: var(--l02-ink);
 text-align: center;
}

#home02 .l02-concept p {
 max-width: 720px;
 margin-inline: auto;
 font-weight: 300;
 color: var(--l02-muted);
 line-height: 2;
 font-size: 0.93rem;
}

#home02 .l02-badge {
 text-align: center;
}
#home02 .l02-badge p {
 display: inline-block;
 font-family: var(--l02-en);
 letter-spacing: 0.24em;
 font-size: 11px;
 color: var(--l02-gold);
 border: 1px solid var(--l02-gold);
 padding: 4px 14px;
 margin-bottom: 24px;
 text-transform: uppercase;
}
/* ===== Rooms ===== */
#home02 .l02-rooms {
 padding-bottom: clamp(60px, 10vh, 100px);
}

#home02 .l02-rooms__head {
 text-align: center;
 padding: clamp(50px, 8vh, 90px) 0 clamp(36px, 5vh, 60px);
}

#home02 .l02-rooms__head h2 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.3rem, 2.6vw, 1.9rem);
 color: var(--l02-ink);
 margin: 0;
 text-align: center;
}

/* Room card */
#home02 .l02-room {
 display: grid;
 grid-template-columns: 1.1fr 0.9fr;
 min-height: 420px;
 border-top: 1px solid var(--l02-line);
}

#home02 .l02-room--reverse .l02-room__img {
 order: 2;
}

#home02 .l02-room__img {
 position: relative;
 overflow: hidden;
 min-height: 320px;
 background: var(--l02-sea);
}

#home02 .l02-room__img img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s ease;
}

#home02 .l02-room:hover .l02-room__img img {
 transform: scale(1.04);
}

#home02 .l02-room__body {
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding: clamp(28px, 4vw, 64px);
}

#home02 .l02-room__no {
 font-family: var(--l02-en);
 font-size: 12px;
 letter-spacing: 0.3em;
 color: var(--l02-gold);
 text-transform: uppercase;
 margin-bottom: 10px;
}

#home02 .l02-room__name {
 font-family: var(--l02-en);
 font-size: clamp(1.6rem, 3.2vw, 2.6rem);
 font-weight: 500;
 letter-spacing: 0.06em;
 color: var(--l02-ink);
 margin-bottom: 6px;
}

#home02 .l02-room__jp {
 font-family: var(--l02-serif);
 font-size: 0.88rem;
 color: var(--l02-sub);
 margin-bottom: 20px;
}

#home02 .l02-room__catch {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(0.95rem, 1.6vw, 1.15rem);
 line-height: 1.85;
 margin-bottom: 16px;
 color: var(--l02-ink);
}

#home02 .l02-room__meta {
 font-size: 0.82rem;
 color: var(--l02-sub);
 margin-bottom: 28px;
 line-height: 1.9;
}

#home02 .l02-room__cta {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 font-family: var(--l02-en);
 letter-spacing: 0.16em;
 font-size: 13px;
 text-transform: uppercase;
 border-bottom: 1px solid var(--l02-ink);
 padding-bottom: 5px;
 color: var(--l02-ink);
 align-self: flex-start;
 transition: 0.3s;
}

#home02 .l02-room__cta i {
 font-style: normal;
 transition: 0.3s;
}

#home02 .l02-room__cta:hover {
 color: var(--l02-gold);
 border-color: var(--l02-gold);
 gap: 16px;
}

/* ===== Price ===== */
#home02 .l02-price {
 background: var(--l02-sea);
 color: #fff;
 padding: clamp(60px, 10vh, 110px) 0;
}

#home02 .l02-price .l02-sec-en {
 color: var(--l02-gold);
}

#home02 .l02-price h2 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.1rem, 2.2vw, 1.6rem);
 color: #fff;
 margin-bottom: 36px;
}

#home02 .l02-price-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1px;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.1);
}

#home02 .l02-price-cell {
 background: var(--l02-sea);
 padding: 32px 28px;
}

#home02 .l02-price-cell__room {
 font-family: var(--l02-en);
 letter-spacing: 0.22em;
 font-size: 12px;
 color: var(--l02-gold);
 text-transform: uppercase;
 margin-bottom: 12px;
}

#home02 .l02-price-cell__price {
 font-family: var(--l02-en);
 font-size: clamp(1.6rem, 2.8vw, 2.2rem);
 font-weight: 500;
 color: #fff;
 line-height: 1.2;
 margin-bottom: 8px;
}

#home02 .l02-price-cell__note {
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.5);
 line-height: 1.75;
}

#home02 .l02-price__note {
 margin-top: 22px;
 font-size: 0.82rem;
 color: rgba(255, 255, 255, 0.5);
 line-height: 1.9;
}

/* ===== Access ===== */
#home02 .l02-access {
 padding: clamp(60px, 10vh, 110px) 0;
 border-top: 1px solid var(--l02-line);
}

#home02 .l02-access-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 52px;
 align-items: start;
}

#home02 .l02-access h2 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.1rem, 2.2vw, 1.6rem);
 color: var(--l02-ink);
 margin-bottom: 28px;
}

#home02 .l02-access-map {
 position: relative;
 height: 320px;
 background: #d4e8e0;
 border-radius: 3px;
 overflow: hidden;
}

#home02 .l02-access-map iframe {
 width: 100%;
 height: 100%;
 border: none;
 display: block;
}

#home02 .l02-access-map__placeholder {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: var(--l02-en);
 letter-spacing: 0.2em;
 font-size: 12px;
 color: #5b7b72;
}

#home02 .l02-access-info dt {
 font-family: var(--l02-en);
 letter-spacing: 0.2em;
 font-size: 11px;
 color: var(--l02-gold);
 text-transform: uppercase;
 margin-bottom: 6px;
 margin-top: 22px;
}

#home02 .l02-access-info dt:first-child {
 margin-top: 0;
}

#home02 .l02-access-info dd {
 font-size: 0.88rem;
 color: var(--l02-muted);
 line-height: 1.85;
 font-weight: 300;
}

/* ===== CTA ===== */
#home02 .l02-cta {
 background: linear-gradient(135deg, var(--l02-sea), var(--l02-twi));
 color: #fff;
 text-align: center;
 padding: clamp(60px, 10vh, 110px) 20px;
}

#home02 .l02-cta .l02-sec-en {
 color: var(--l02-gold);
 opacity: 0.9;
}

#home02 .l02-cta h2 {
 font-family: var(--l02-serif);
 font-weight: 300;
 font-size: clamp(1.3rem, 2.8vw, 2rem);
 color: #fff;
 margin-bottom: 14px;
 text-align: center;
}

#home02 .l02-cta p {
 opacity: 0.85;
 font-weight: 300;
 margin-bottom: 34px;
 font-size: 0.93rem;
 line-height: 1.9;
 text-align: center;
}

#home02 .l02-cta-btns {
 display: flex;
 gap: 12px;
 justify-content: center;
 flex-wrap: wrap;
}

#home02 .l02-btn {
 font-family: var(--l02-en);
 letter-spacing: 0.16em;
 font-size: 13px;
 padding: 14px 28px;
 border: 1px solid #fff;
 border-radius: 999px;
 color: #fff;
 transition: 0.3s;
 text-transform: uppercase;
 display: inline-block;
}

#home02 .l02-btn:hover {
 background: #fff;
 color: var(--l02-sea);
}

#home02 .l02-btn--g {
 background: var(--l02-gold);
 border-color: var(--l02-gold);
 color: var(--l02-ink);
}

#home02 .l02-btn--g:hover {
 background: transparent;
 color: #fff;
 border-color: #fff;
}

/* ===== Responsive ===== */
@media screen and (max-width: 860px) {
 #home02 .l02-room {
  grid-template-columns: 1fr;
 }

 #home02 .l02-room--reverse .l02-room__img {
  order: 0;
 }

 #home02 .l02-room__img {
  min-height: 240px;
 }

 #home02 .l02-access-grid {
  grid-template-columns: 1fr;
 }

 #home02 .l02-access-map {
  height: 240px;
 }
}

@media screen and (max-width: 560px) {
 #home02 .l02-cta-btns {
  flex-direction: column;
  align-items: center;
 }

 #home02 .l02-btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
 }
}
/* ===== Room tags ===== */
#home02 .l02-room-tags {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
 margin-bottom: 28px;
}

#home02 .l02-room-tag {
 font-family: var(--l02-en);
 letter-spacing: 0.18em;
 font-size: 11px;
 color: var(--l02-gold);
 border: 1px solid rgba(198, 154, 91, 0.4);
 padding: 3px 10px;
 text-transform: uppercase;
}
