@charset "UTF-8";

/* =========================================
   沖縄民泊マネジメント HP
   style.css
========================================= */

/* ---------- カラー・変数 ---------- */
:root {
  --navy: #1A2A4A;          /* メインネイビー */
  --navy-deep: #0C1E39;     /* フッター等の深いネイビー */
  --navy-hero: #011A2C;     /* ヒーローのオーバーレイ用 */
  --gold: #C5A872;          /* ゴールド */
  --gold-light: #E2C896;    /* 明るいゴールド */
  --cream: #FBF9F7;         /* オフホワイト（基本背景） */
  --beige: #FAF5EB;         /* ベージュ（強みセクション等） */
  --text: #2C2C2C;          /* 本文テキスト */
  --text-light: #4B4B4B;    /* サブテキスト（視認性UP） */
  --white: #FFFFFF;

  --max-width: 1366px;      /* コンテンツ最大幅 */
  --content-pad: 8%;        /* 左右の標準余白 */

  --font-serif: "Shippori Mincho", "Yu Mincho", "游明朝", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- 共通パーツ ---------- */

/* セクション共通の内側余白 */
.section {
  padding: 100px var(--content-pad);
}

/* 中央寄せコンテナ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
}

/* 英語の小ラベル（OUR STRENGTH 等） */
.label-en {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: #A87E2E;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3em;
  margin-bottom: 1.9em;
}
/* ネイビー背景上のラベルは明るい金で視認性を確保 */
.cta__label { color: var(--gold-light); }
/* ラベル両側のゴールドライン */
.label-en::before,
.label-en::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

/* セクション見出し（明朝・中央） */
.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--navy);
  margin-bottom: 2.5em;
}

/* ゴールドの細い区切り装飾（◇付き） */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.6em auto 1.6em;
}
.divider::before,
.divider::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.divider span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* CTAボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1em 2.4em;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s, background 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  opacity: 0.85;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   ヘッダー
========================================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ヘッダー下の細いゴールドライン */
.header::after {
  content: "";
  position: absolute;
  left: var(--content-pad);
  right: var(--content-pad);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 114, 0.65) 12%, rgba(197, 168, 114, 0.65) 88%, transparent);
}

.header__logo img {
  height: 52px;
  width: auto;
}
/* ロゴ仮表示（画像が来るまで） */
.header__logo-text {
  color: var(--white);
  font-family: var(--font-serif);
  letter-spacing: 0.15em;
  line-height: 1.3;
}
.header__logo-text strong {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}
.header__logo-text small {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 2.4em;
}
.header__nav a {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  position: relative;
  padding-bottom: 4px;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.header__nav a:hover::after {
  width: 100%;
}
/* ナビ項目の間にゴールドの短い区切り線 */
.header__nav ul > li { position: relative; }
.header__nav ul > li:nth-child(-n+3)::after {
  content: "";
  position: absolute;
  right: -1.2em;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(197, 168, 114, 0.6);
  transform: translateY(-50%);
}
.header__nav .sns {
  display: inline-flex;
  align-items: center;
  padding-left: 1.7em;
  margin-left: 0.3em;
  border-left: 1px solid rgba(197, 168, 114, 0.45);
}

/* ハンバーガー（スマホ用・初期は隠す） */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.header__burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* =========================================
   ヒーロー
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 暗いオーバーレイ（左を濃く） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(1, 26, 44, 0.85) 0%,
    rgba(1, 26, 44, 0.55) 45%,
    rgba(1, 26, 44, 0.25) 100%
  );
}

.hero__inner {
  padding: 0 var(--content-pad);
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.hero__tagline {
  font-family: var(--font-serif);
  color: var(--gold-light);
  letter-spacing: 0.2em;
  font-size: 1.05rem;
  margin-bottom: 1em;
}

.hero__title {
  /* ABOUT見出しと同じ明朝（Shippori Mincho）に統一 */
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  margin-bottom: 0.6em;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 2.4em;
}

.hero__buttons {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
}

/* ヒーローの装飾ライン（両側ライン＋中央◇） */
.hero__deco {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2em;
}
.hero__deco::before,
.hero__deco::after {
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__deco span {
  flex: none;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* =========================================
   ABOUT
========================================= */
.about {
  background: var(--cream);
  position: relative;
  padding-top: 56px;
}
/* 背景の葉装飾（仮：擬似要素で薄く） */
.about__inner {
  display: flex;
  align-items: center;
  gap: 6%;
  max-width: var(--max-width);
  margin-inline: auto;
}
.about__body {
  flex: 1;
}
.about__heading {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.4em;
}
.about__text {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--text);
  font-weight: 400;
}
.about__text p + p {
  margin-top: 1.4em;
}
.about__image {
  flex: 1;
  position: relative;
}
.about__image img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
/* 写真を囲むゴールドのオフセット枠 */
.about__image::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  z-index: 0;
  pointer-events: none;
}

/* =========================================
   OUR STRENGTH
========================================= */
.strength {
  background: var(--beige);
}
.strength__grid {
  display: flex;
  max-width: 1100px;
  margin-inline: auto;
}
.strength__item {
  flex: 1;
  text-align: center;
  padding: 0 2.4em;
  position: relative;
}
/* カラム間の縦区切り線 */
.strength__item + .strength__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.strength__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
/* 番号下の ──◇── */
.num-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0.2em 0 1.3em;
}
.num-deco::before,
.num-deco::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.num-deco span {
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.strength__icon {
  height: 110px;
  margin: 0 auto 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength__icon svg {
  height: 100%;
  width: auto;
}
/* 横幅基準で3つの見た目サイズを揃える */
.strength__icon img {
  width: 116px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}
.strength__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.7em;
}
/* タイトル下の◇ */
.strength__title::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 0.7em auto 0;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.strength__desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 400;
}

/* =========================================
   OUR SERVICE
========================================= */
.service {
  background: var(--cream);
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
  max-width: 1200px;
  margin-inline: auto;
}
.service__card {
  background: var(--white);
  border: 1px solid rgba(197, 168, 114, 0.35);
  padding: 2em 1.8em;
  display: flex;
  gap: 1em;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service__card:hover {
  box-shadow: 0 8px 24px rgba(26, 42, 74, 0.08);
  transform: translateY(-3px);
}
.service__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.service__icon svg,
.service__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__body {
  flex: 1;
}
.service__num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0.2em 0 0.6em;
  line-height: 1.5;
}
.service__desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 400;
}

/* =========================================
   FOR YOU
========================================= */
.foryou {
  background: var(--cream);
}
.foryou__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
  max-width: 1200px;
  margin-inline: auto;
}
.foryou__card {
  position: relative;
  min-height: 500px;
  padding: 3.4em 2em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);  /* 写真が読めない時のフォールバック */
}
.foryou__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 上は写真が見え、下は濃くなるグラデーション（LP準拠） */
.foryou__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 22, 42, 0.30) 0%,
    rgba(8, 22, 42, 0.52) 45%,
    rgba(8, 22, 42, 0.88) 100%
  );
}
.foryou__card > * { position: relative; z-index: 2; }
/* アイコン（円リング込みの画像をそのまま表示・中央上） */
.foryou__icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3em;
}
.foryou__icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.32) saturate(1.05); }
.foryou__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 0;
}
/* タイトル下の装飾 ──◇── */
.foryou__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 1.1em 0 1.4em;
}
.foryou__deco::before,
.foryou__deco::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.85;
}
.foryou__deco span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}
.foryou__list {
  align-self: center;
  text-align: left;
  display: inline-block;
}
.foryou__list li {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.7em;
  position: relative;
  margin-bottom: 0.7em;
}
.foryou__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

/* =========================================
   COMPANY
========================================= */
.company {
  background: var(--cream);
}
.company__inner {
  display: flex;
  gap: 4%;
  max-width: 1100px;
  margin-inline: auto;
  align-items: stretch;
}
.company__table {
  flex: 1.1;
  border: 1px solid rgba(197, 168, 114, 0.5);
  border-radius: 8px;
  padding: 2em 2.2em;
}
.company__table dl > div {
  display: grid;
  grid-template-columns: 28% 72%;
  align-items: start;
  border-bottom: 1px solid rgba(197, 168, 114, 0.25);
}
.company__table dl > div:last-child {
  border-bottom: none;
}
.company__table dt,
.company__table dd {
  padding: 0.9em 0;
  font-size: 0.86rem;
}
.company__table dt {
  color: var(--navy);
  font-weight: 500;
}
.company__table dd {
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
}
.company__photo {
  flex: 0.9;
  position: relative;
}
.company__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
/* 写真を囲むゴールドのオフセット枠 */
.company__photo::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}
/* 資格バッジ */
/* 葉っぱの装飾（控えめ・テキスト背面） */
.about, .company, .strength, .service, .foryou, .cta, .footer {
  position: relative;
  overflow: hidden;
}
.deco-leaf {
  position: absolute;
  width: 120px;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.deco-leaf.is-beige { opacity: 0.55; }
.deco-leaf.is-white { opacity: 0.34; }
/* ゴールドの葉：とても薄く（背景に合わせて2段階） */
.deco-leaf.is-gold { opacity: 0.18; }
.cta .deco-leaf.is-gold { opacity: 0.2; }
/* ABOUTの右葉は小さく・上に・写真に被らないよう */
.about .deco-leaf--right { top: -34px; right: -26px; width: 116px; }
/* ABOUTラベルと下のコンテンツの余白を広げる */
.about .label-en { margin-bottom: 3.4em; }
/* 左右の端から「画面外から出てくる」構図：外側を画面外へ／茎は見切れる */
.deco-leaf--left  { top: 34px; left: -84px;  width: 158px; transform: rotate(20deg); }
.deco-leaf--right { top: 34px; right: -84px; width: 158px; transform: scaleX(-1) rotate(20deg); }
/* CONTACTは中央あたりに下げる */
.cta .deco-leaf--left  { top: 50%; transform: translateY(-50%) rotate(20deg); }
.cta .deco-leaf--right { top: 50%; transform: translateY(-50%) scaleX(-1) rotate(20deg); }
/* ABOUT専用：左は縦長で外向きに傾け、文字に重ねない */
.deco-leaf--about-left { top: 2px; left: -38px; width: 150px; opacity: 0.16; transform: rotate(4deg); }
.deco-leaf--about-right { top: -46px; right: 10px; width: 90px; transform: scaleX(-1) rotate(-8deg); }
.about > *:not(.deco-leaf),
.company > *:not(.deco-leaf),
.strength > *:not(.deco-leaf),
.service > *:not(.deco-leaf),
.foryou > *:not(.deco-leaf),
.cta > *:not(.deco-leaf),
.footer > *:not(.deco-leaf) { position: relative; z-index: 1; }

.company__badges {
  display: flex;
  gap: 1.6em;
  justify-content: center;
  max-width: 800px;
  margin: 2.4em auto 0;
}
.company__badge {
  position: relative;
  flex: 1;
  padding: 1.6em 1.9em;
  display: flex;
  align-items: center;
  gap: 1.2em;
}
/* ゴールドの品あるフレーム（切り欠き角） */
.company__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(197, 168, 114, 0.7);
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  z-index: 0;
}
.company__badge::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--cream);
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  z-index: 0;
}
.company__badge > .company__badge-icon,
.company__badge > .company__badge-text { position: relative; z-index: 1; }
/* 上下中央の◇ */
.badge-gem {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--cream);
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
}
.badge-gem--t { top: 0; }
.badge-gem--b { top: 100%; }
/* CTAボタン上の◇は背景ネイビーに合わせる */
.cta__btn .badge-gem { background: var(--navy); z-index: 3; }
/* アイコン（円リング込みの画像をそのまま表示） */
.company__badge-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.company__badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.company__badge-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* =========================================
   CONTACT CTA
========================================= */
.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__label {
  color: var(--gold);
}
.cta__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}
.cta__sub {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 2.6em;
  opacity: 0.9;
}
.cta__buttons {
  display: flex;
  gap: 1.6em;
  justify-content: center;
  margin-bottom: 1.8em;
  flex-wrap: wrap;
}
.cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3em;
  padding: 1.5em 2.6em;
  min-width: 380px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
/* 豪華なゴールド枠（切り欠き角＋◇） */
.cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  z-index: 0;
}
.cta__btn::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--navy);
  clip-path: polygon(17px 0, calc(100% - 17px) 0, 100% 17px, 100% calc(100% - 17px), calc(100% - 17px) 100%, 17px 100%, 0 calc(100% - 17px), 0 17px);
  z-index: 0;
  transition: background 0.3s;
}
.cta__btn:hover::after {
  background: #20335a;
}
/* 内側のゴールド枠（二重フレーム） */
.cta__btn-ring {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 1;
  pointer-events: none;
  background: var(--gold);
  clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
}
.cta__btn-ring::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--navy);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  transition: background 0.3s;
}
.cta__btn:hover .cta__btn-ring::before { background: #20335a; }
.cta__btn-icon,
.cta__btn-div,
.cta__btn-text { position: relative; z-index: 2; }
.cta__btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.cta__btn-div {
  width: 1px;
  height: 34px;
  background: rgba(197, 168, 114, 0.55);
  flex-shrink: 0;
}
.cta__btn--tel .cta__btn-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.cta__hours {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* =========================================
   フッター
========================================= */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 50px var(--content-pad) 30px;
}
.footer__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: var(--max-width);
  margin-inline: auto;
}
/* ロゴは左に固定し、ナビは中央に */
.footer__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* ゴールドの装飾ライン（中央に菱形飾り） ──◈── */
.footer__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__deco::before,
.footer__deco::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(197, 168, 114, 0.55);
}
.footer__deco svg {
  flex: none;
  display: block;
  width: 26px;
  height: 26px;
}
.footer__deco--top { margin-bottom: 2.6em; }
.footer__deco--bottom { margin-top: 2.6em; }
.footer__logo img { height: 44px; width: auto; }
/* フッター各コンテンツ間の縦ゴールド区切り */
.footer__vdiv {
  flex: none;
  width: 1px;
  height: 48px;
  background: rgba(197, 168, 114, 0.5);
}
.footer__nav ul {
  display: flex;
  gap: 2.2em;
  align-items: center;
}
.footer__nav li { position: relative; }
.footer__nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
/* ナビ項目の間にゴールドの区切り線（ヘッダーと同じ） */
.footer__nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.1em;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(197, 168, 114, 0.6);
  transform: translateY(-50%);
}
.footer__sns { display: inline-flex; }
.footer__sns-li { display: inline-flex; align-items: center; padding-left: 0.3em; }
/* Instagramアイコン（ゴールド） */
.ig-icon {
  width: 32px;
  height: 32px;
  display: block;
  transition: opacity 0.25s;
}
.header__nav .sns a, .footer__sns { color: var(--gold-light); line-height: 0; }
.header__nav .sns a:hover .ig-icon,
.footer__sns:hover .ig-icon { opacity: 0.7; }
.footer__legal {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-top: 1.8em;
}
.footer__legal a { margin: 0 0.8em; }
.footer__copy {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.55;
  margin-top: 1.4em;
}

/* PageTopボタン（円＋矢印＋ラベル） */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 90;
}
.pagetop__circle {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 30, 57, 0.55);
  transition: background 0.3s, color 0.3s;
}
.pagetop__label {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover .pagetop__circle { background: var(--gold); color: var(--navy-deep); }

/* =========================================
   レスポンシブ（スマホ）
========================================= */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__logo img {
    height: 44px;
  }

  .hero__title {
    font-size: 2.2rem;
  }
  .hero__tagline {
    font-size: 0.85rem;
  }
  .hero__sub {
    font-size: 0.9rem;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 6%;
  }
  .section-title {
    font-size: 1.7rem;
  }

  /* ABOUT */
  .about__inner {
    flex-direction: column;
    gap: 2.4em;
  }
  .about__heading {
    font-size: 1.6rem;
  }

  /* STRENGTH */
  .strength__grid {
    flex-direction: column;
    gap: 3em;
  }
  .strength__item {
    padding: 0;
  }
  .strength__item + .strength__item::before {
    display: none;
  }

  /* SERVICE */
  .service__grid {
    grid-template-columns: 1fr;
  }

  /* FOR YOU */
  .foryou__grid {
    grid-template-columns: 1fr;
  }

  /* COMPANY */
  .company__inner {
    flex-direction: column;
    gap: 2em;
  }
  .company__table dl > div {
    grid-template-columns: 34% 66%;
  }
  .company__badges {
    flex-direction: column;
  }

  /* CTA */
  .cta__title {
    font-size: 1.6rem;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__btn {
    justify-content: center;
  }

  /* フッター */
  .footer__top {
    flex-direction: column;
    text-align: center;
  }
  .footer__logo {
    position: static;
    transform: none;
  }
  .footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagetop {
    right: 16px;
    bottom: 16px;
  }
  .pagetop__circle {
    width: 48px;
    height: 48px;
  }
  .pagetop__label { font-size: 0.7rem; }
}

/* =========================================
   下層ページ（プライバシーポリシー等）
========================================= */
.header--solid {
  position: relative;
  background: var(--navy-deep);
}
.header--solid::after { opacity: 0.5; }
.lpage {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px var(--content-pad) 96px;
}
.lpage__head {
  text-align: center;
  margin-bottom: 3em;
}
.lpage__title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-deep);
  margin-top: 0.5em;
}
.lpage__lead {
  font-size: 0.96rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 2.4em;
}
.lpage__body h2 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.2em 0 0.7em;
  padding-left: 0.7em;
  border-left: 3px solid var(--gold);
}
.lpage__body p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 0.6em;
}
.lpage__body ul.dotted {
  margin: 0.6em 0 0.6em 1.6em;
  list-style: disc;
}
.lpage__body ul.dotted li {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0.3em;
}
.lpage__contact {
  margin-top: 1em;
  padding: 1.4em 1.6em;
  background: var(--beige);
  border: 1px solid rgba(197, 168, 114, 0.4);
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.lpage__meta {
  margin-top: 3em;
  text-align: right;
  font-size: 0.88rem;
  color: var(--text-light);
}
