@charset "UTF-8";
/* ============================================================
   Phone Doctor — iPhone修理専門店
   jp-web-design(信頼型) + jp-base.css 準拠
   カラー: ネイビー×ブルー基調 / CTAアクセント=オレンジ
   ============================================================ */

:root {
  --navy:   #0b2b5c;
  --navy-d: #071e42;
  --blue:   #1667d6;
  --blue-l: #eaf2ff;
  --blue-t: #f2f7fe;
  --accent: #ff7a2f;
  --accent-d: #f2691c;
  --gray-bg:#f5f7fa;
  --line:   #e3e8ef;
  --txt:    #333;
  --txt-h:  #12213b;
  --txt-sub:#5a6472;
  --white:  #fff;
  --wrap: 1120px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-hd: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

/* ---- body(日本語基準) ---- */
body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--txt);
  background: var(--white);
  line-break: strict;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

/* ---- 見出し基準(palt) ---- */
h1, h2, h3, h4 {
  font-family: var(--font-hd);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  font-weight: 700;
  color: var(--txt-h);
}

.num, .en-text { font-family: var(--font-en); font-feature-settings: normal; }
.en-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.caption { font-size: 12px; line-height: 1.7; letter-spacing: 0.04em; color: var(--txt-sub); }

/* ---- responsive util ---- */
@media only screen and (max-width: 767px) { .sp_none { display: none !important; } }
@media only screen and (min-width: 768px) { .pc_none { display: none !important; } }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.container_narrow { max-width: 840px; }
.section { padding: 112px 0; }
.section:nth-of-type(even) { background: var(--gray-bg); }

/* ---- 共通見出しブロック ---- */
.heading { text-align: center; margin-bottom: 56px; }
.heading_ttl { font-size: 34px; line-height: 1.4; margin-bottom: 20px; }
.heading_lead {
  font-size: 16px; line-height: 2.0; color: var(--txt-sub);
  max-width: 720px; margin: 0 auto; letter-spacing: 0.06em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 4px; flex-direction: column;
  font-family: var(--font-jp); font-weight: 700; letter-spacing: 0.06em;
  border-radius: 8px; padding: 15px 30px; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  cursor: pointer; border: none; text-align: center; line-height: 1.5;
}
.btn:hover { transform: translateY(-2px); }
.btn_lg { padding: 20px 38px; font-size: 17px; min-width: 260px; }
.btn_accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 20px rgba(255,122,47,.32);
}
.btn_accent:hover { background: var(--accent-d); box-shadow: 0 12px 26px rgba(255,122,47,.4); }
.btn_line {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55);
}
.btn_line:hover { background: rgba(255,255,255,.12); }
.btn_white { background: #fff; color: var(--navy); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.btn_white:hover { background: #f4f8ff; }
.btn_tel_small { font-size: 11px; letter-spacing: 0.08em; opacity: .85; font-weight: 500; }
.btn_tel_big { font-family: var(--font-en); font-size: 21px; letter-spacing: 0.04em; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.is-scroll { box-shadow: 0 4px 20px rgba(11,43,92,.08); }
.header_inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  height: 78px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo_mark { display: inline-flex; }
.logo_text { display: flex; flex-direction: column; line-height: 1.25; }
.logo_name { font-family: var(--font-en); font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: .02em; }
.logo_sub { font-size: 11px; color: var(--txt-sub); letter-spacing: .12em; }

.gnav_list { display: flex; gap: 26px; }
.gnav_list a {
  font-size: 14px; font-weight: 500; color: var(--txt-h); letter-spacing: .04em;
  position: relative; padding: 6px 0; transition: color .2s;
}
.gnav_list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--blue); transition: width .25s ease;
}
.gnav_list a:hover { color: var(--blue); }
.gnav_list a:hover::after { width: 100%; }

.header_side { display: flex; align-items: center; gap: 18px; }
.header_tel { display: flex; flex-direction: column; line-height: 1.3; text-align: right; }
.header_tel_label { font-size: 10px; color: var(--txt-sub); letter-spacing: .1em; }
.header_tel_num { font-family: var(--font-en); font-weight: 700; font-size: 22px; color: var(--navy); letter-spacing: .02em; }
.header_tel_time { font-size: 10px; color: var(--txt-sub); letter-spacing: .06em; }
.header .btn_accent { padding: 12px 24px; font-size: 14px; }

/* hamburger */
.hamburger {
  width: 44px; height: 44px; background: var(--navy); border-radius: 8px;
  position: relative; cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  position: absolute; left: 12px; width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 78px 0 0; overflow: hidden; background: var(--navy); }
.hero_bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(22,103,214,.55), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(22,103,214,.35), transparent 46%),
    linear-gradient(160deg, #0b2b5c 0%, #0e356e 55%, #082044 100%);
  background-color: var(--navy);
}
.hero_bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero_inner {
  position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto;
  padding: 84px 32px 96px; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 56px; align-items: center;
}
.hero_body { color: #fff; }
.hero_badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #dbe8ff; font-size: 13px; letter-spacing: .06em; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero_badge_icon { color: #6fe3a8; font-weight: 700; }
.hero_title {
  color: #fff; font-size: 56px; line-height: 1.32; letter-spacing: .04em;
  margin-bottom: 24px; font-weight: 700;
}
.hero_title_accent {
  color: #fff; position: relative; display: inline-block;
  background: linear-gradient(transparent 62%, rgba(255,122,47,.85) 62%);
  padding: 0 .08em;
}
.hero_lead { font-size: 17px; line-height: 2.0; color: #d7e2f4; margin-bottom: 30px; letter-spacing: .05em; }
.hero_lead b { color: #fff; font-weight: 700; }

.hero_points { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.hero_points li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 10px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #eaf1fc;
}
.hero_points_ic { font-size: 16px; }

.hero_cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.hero_note { font-size: 12px; color: #a9bbd8; letter-spacing: .04em; }

/* hero visual card */
.hero_visual { display: flex; justify-content: center; }
.hero_card {
  width: 100%; max-width: 340px; background: #fff; border-radius: 18px;
  padding: 28px 28px 24px; box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.hero_card_head { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--txt-sub); font-weight: 500; letter-spacing: .06em; }
.hero_card_dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); animation: pulse 1.8s infinite; }
.hero_card_dot.is-closed { background: #9aa4b2; box-shadow: 0 0 0 4px rgba(154,164,178,.18); animation: none; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero_card_status { font-family: var(--font-hd); font-size: 26px; font-weight: 700; color: var(--navy); margin: 6px 0 18px; letter-spacing: .02em; }
.hero_card_list { border-top: 1px solid var(--line); }
.hero_card_list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--txt-h);
}
.hero_card_list b { font-family: var(--font-en); font-size: 17px; color: var(--blue); }
.hero_card_ok {
  font-family: var(--font-jp) !important; font-size: 13px !important; font-weight: 700;
  color: #1f9d55; background: #eafaf0; border-radius: 999px; padding: 3px 12px; letter-spacing: .04em;
}
.hero_card_ok.is-off { color: #8b95a3; background: #eef1f5; }
.hero_card_list span { letter-spacing: .04em; }
.hero_card_foot { margin-top: 16px; font-size: 12px; color: var(--txt-sub); line-height: 1.7; letter-spacing: .03em; }

/* ============================================================
   Stats
   ============================================================ */
.stats { background: var(--navy-d); }
.stats_inner {
  max-width: var(--wrap); margin: 0 auto; padding: 40px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stats_item { text-align: center; color: #fff; position: relative; }
.stats_item:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 52px; background: rgba(255,255,255,.14);
}
.stats_num { font-family: var(--font-en); font-weight: 700; font-size: 44px; line-height: 1.1; color: #fff; }
.stats_unit { font-family: var(--font-jp); font-size: 17px; font-weight: 500; margin-left: 4px; }
.stats_label { font-size: 13px; color: #9fb4d6; letter-spacing: .08em; margin-top: 6px; }

/* ============================================================
   News（お知らせ）
   ============================================================ */
.news { padding: 60px 0; background: var(--gray-bg); }
.news_wrap {
  max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 190px 1fr; gap: 36px;
  align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 38px 44px; box-shadow: 0 6px 24px rgba(11,43,92,.05);
}
.news_head .en-label { margin-bottom: 6px; }
.news_ttl { font-size: 22px; color: var(--txt-h); }
.news_meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news_date { font-family: var(--font-en); font-size: 14px; color: var(--txt-sub); letter-spacing: .04em; }
.news_cat { font-size: 12px; font-weight: 700; color: #fff; background: var(--blue); padding: 4px 13px; border-radius: 5px; letter-spacing: .04em; }
.news_item_ttl { font-size: 19px; color: var(--txt-h); margin-bottom: 10px; line-height: 1.5; }
.news_item_txt { font-size: 14.5px; line-height: 1.9; color: var(--txt-sub); letter-spacing: .03em; white-space: pre-wrap; }

/* ============================================================
   Reason
   ============================================================ */
.reason_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason_card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 38px 30px 34px; position: relative; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.reason_card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,43,92,.1); border-color: var(--blue-l); }
.reason_num {
  position: absolute; top: 24px; right: 26px; font-size: 30px; font-weight: 700;
  color: var(--blue-l); font-family: var(--font-en);
}
.reason_ic {
  width: 60px; height: 60px; border-radius: 14px; background: var(--blue-t);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px;
}
.reason_ttl { font-size: 20px; margin-bottom: 12px; color: var(--txt-h); }
.reason_txt { font-size: 14.5px; line-height: 1.95; color: var(--txt-sub); letter-spacing: .04em; }

/* ============================================================
   Price
   ============================================================ */
.price_tabs { text-align: center; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.price_badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-hd); font-size: 14px; font-weight: 700; color: #fff;
  background: var(--accent); padding: 8px 20px; border-radius: 999px; letter-spacing: .06em;
  box-shadow: 0 6px 16px rgba(255,122,47,.28);
}
.price_badge::before { content: "💰"; }
.price_tabs_note { display: inline-block; font-size: 13px; color: var(--txt-sub); background: #fff; border: 1px solid var(--line); padding: 6px 18px; border-radius: 999px; letter-spacing: .04em; }
.price_table_wrap { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 30px rgba(11,43,92,.06); border: 1px solid var(--line); }
.price_table th, .price_table td { padding: 20px 24px; text-align: left; vertical-align: middle; }
.price_table thead th { background: var(--navy); color: #fff; font-family: var(--font-hd); font-size: 15px; font-weight: 700; letter-spacing: .06em; }
.price_table thead th:nth-child(2) { text-align: right; }
.price_table thead th:nth-child(3), .price_table thead th:nth-child(4) { text-align: center; width: 130px; }
.price_table tbody tr { border-bottom: 1px solid var(--line); }
.price_table tbody tr:last-child { border-bottom: none; }
.price_table tbody tr:nth-child(even) { background: #fafbfd; }
.price_menu { display: block; font-size: 16px; font-weight: 700; color: var(--txt-h); font-family: var(--font-hd); }
.price_menu_sub { display: block; font-size: 12.5px; color: var(--txt-sub); margin-top: 3px; letter-spacing: .03em; }
.price_table td:nth-child(2) { text-align: right; }
.price_val { display: inline-flex; align-items: baseline; gap: 2px; color: var(--navy); }
.price_val .num { font-size: 28px; font-weight: 700; }
.price_yen { font-family: var(--font-jp); font-size: 14px; font-weight: 700; }
.price_val_ask { font-family: var(--font-hd); font-size: 16px; font-weight: 700; color: var(--blue); }
.price_table td:nth-child(3), .price_table td:nth-child(4) { text-align: center; font-family: var(--font-en); font-size: 14px; color: var(--txt-sub); }
.price_foot { font-size: 13px; color: var(--txt-sub); margin-top: 24px; line-height: 1.9; }
.price_foot b { color: var(--accent-d); font-weight: 700; }

/* 機種セレクター */
.price_select { margin-bottom: 28px; }
.price_select_label { text-align: center; font-family: var(--font-hd); font-size: 16px; font-weight: 700; color: var(--txt-h); margin-bottom: 20px; }
.price_select_groups { display: flex; flex-direction: column; gap: 14px; max-width: 900px; margin: 0 auto; }
.price_group { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 16px; }
.price_group_label { font-family: var(--font-en); font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.price_group_btns { display: flex; flex-wrap: wrap; gap: 8px; }
.price_btn {
  font-family: var(--font-en); font-size: 14px; font-weight: 600; color: var(--txt-h);
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 9px 16px;
  cursor: pointer; transition: all .18s ease; letter-spacing: .02em;
}
.price_btn:hover { border-color: var(--blue); color: var(--blue); }
.price_btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 6px 16px rgba(11,43,92,.22); }

/* 料金パネル */
.price_panel { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 30px rgba(11,43,92,.06); border: 1px solid var(--line); }
.price_panel_head { display: flex; align-items: center; justify-content: space-between; background: var(--navy); color: #fff; padding: 18px 26px; }
.price_panel_ttl { color: #fff; font-family: var(--font-en); font-size: 22px; font-weight: 700; letter-spacing: .02em; }
.price_panel_tax { font-size: 12px; color: #b7c9e6; letter-spacing: .04em; }
.price_table_model td { padding: 16px 26px; }
.price_table_model .price_menu { font-size: 15px; }
.price_cell { text-align: right; font-family: var(--font-en); font-size: 24px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.price_cell_ask { font-family: var(--font-hd); font-size: 15px; color: var(--blue); }

/* 共通料金・凡例 */
.price_extra { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.price_sub_ttl { font-family: var(--font-hd); font-size: 16px; font-weight: 700; color: var(--txt-h); margin-bottom: 14px; padding-left: 12px; border-left: 4px solid var(--blue); }
.price_common, .price_legend { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; }
.price_common_list li { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--txt-h); }
.price_common_list li:last-child { border-bottom: none; }
.price_common_list b { font-family: var(--font-en); font-size: 18px; color: var(--navy); }
.price_legend_txt { font-size: 13.5px; line-height: 1.95; color: var(--txt-sub); letter-spacing: .03em; }
.price_legend_txt b { color: var(--navy); font-weight: 700; }

/* ============================================================
   Flow
   ============================================================ */
.flow_list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flow_item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 26px; text-align: center; position: relative;
}
.flow_item::after {
  content: "›"; position: absolute; top: 50%; right: -18px; transform: translateY(-50%);
  font-size: 28px; color: var(--blue); font-family: var(--font-en); font-weight: 700; z-index: 2;
}
.flow_list .flow_item:last-child::after { display: none; }
.flow_step { display: block; font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .1em; margin-bottom: 14px; }
.flow_ic {
  width: 66px; height: 66px; border-radius: 50%; background: var(--blue-t); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.flow_ttl { font-size: 18px; margin-bottom: 10px; color: var(--txt-h); }
.flow_txt { font-size: 13.5px; line-height: 1.9; color: var(--txt-sub); letter-spacing: .03em; }

/* ============================================================
   Models
   ============================================================ */
.models_grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.models_tag {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 24px; font-size: 14.5px; font-weight: 500; color: var(--txt-h);
  letter-spacing: .03em; transition: border-color .2s, color .2s, background-color .2s;
}
.models_tag:hover { border-color: var(--blue); color: var(--blue); }
.models_tag_more { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }
.models_tag_more:hover { background: var(--navy-d); color: #fff; }

/* ============================================================
   Voice
   ============================================================ */
.voice_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.voice_card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 30px; box-shadow: 0 8px 26px rgba(11,43,92,.05);
}
.voice_stars { color: #ffb020; font-size: 18px; letter-spacing: .1em; margin-bottom: 14px; }
.voice_txt { font-size: 14.5px; line-height: 1.95; color: var(--txt); letter-spacing: .04em; }
.voice_meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--txt-sub); letter-spacing: .04em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq_list { display: flex; flex-direction: column; gap: 14px; }
.faq_item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq_q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 22px 26px; font-family: var(--font-hd); font-size: 16px; font-weight: 700; color: var(--txt-h);
  line-height: 1.6; letter-spacing: .03em;
}
.faq_q_txt { position: relative; padding-left: 34px; }
.faq_q_txt::before {
  content: "Q"; position: absolute; left: 0; top: -2px; font-family: var(--font-en);
  color: var(--blue); font-size: 19px; font-weight: 700;
}
.faq_icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq_icon::before, .faq_icon::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .3s ease;
}
.faq_icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq_icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq_q[aria-expanded="true"] .faq_icon::after { transform: rotate(90deg); opacity: 0; }
.faq_a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq_a p {
  padding: 0 26px 24px 60px; font-size: 14.5px; line-height: 1.95; color: var(--txt-sub); letter-spacing: .04em;
}

/* ============================================================
   Shop
   ============================================================ */
.shop_wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.shop_dl { border-top: 1px solid var(--line); }
.shop_row { display: flex; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.shop_row dt { flex: 0 0 110px; font-weight: 700; color: var(--navy); font-family: var(--font-hd); font-size: 15px; letter-spacing: .04em; }
.shop_row dd { flex: 1; font-size: 15px; line-height: 1.8; color: var(--txt); }
.shop_tel { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.shop_map {
  border-radius: 14px; overflow: hidden; min-height: 340px;
  border: 1px solid var(--line); background: var(--gray-bg);
}
.shop_map_iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: linear-gradient(135deg, #0e356e, #0b2b5c); padding: 96px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,122,47,.22), transparent 42%);
}
.cta_inner { position: relative; text-align: center; color: #fff; }
.cta_lead { font-size: 16px; color: #b7c9e6; letter-spacing: .1em; margin-bottom: 12px; }
.cta_ttl { color: #fff; font-size: 38px; line-height: 1.4; margin-bottom: 18px; }
.cta_txt { font-size: 16px; color: #d7e2f4; line-height: 2.0; margin-bottom: 36px; letter-spacing: .05em; }
.cta_btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta_note { font-size: 13px; color: #a9bbd8; letter-spacing: .06em; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-d); color: #c6d4ea; padding: 72px 0 28px; position: relative; overflow: hidden; }
.footer_top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; }
.footer_logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer_logo_name { font-family: var(--font-en); font-weight: 700; font-size: 22px; color: #fff; }
.footer_desc { font-size: 13.5px; line-height: 1.9; color: #a9bbd8; letter-spacing: .03em; margin-bottom: 16px; }
.footer_reg { display: inline-block; font-size: 12px; color: #dbe8ff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 6px 14px; border-radius: 6px; letter-spacing: .04em; }
.footer_nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer_col_ttl { font-family: var(--font-hd); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .06em; }
.footer_col ul li { margin-bottom: 11px; font-size: 13.5px; }
.footer_col ul li a { color: #a9bbd8; transition: color .2s; }
.footer_col ul li a:hover { color: #fff; }
.footer_bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; position: relative; z-index: 2; }
.footer_policy { display: flex; flex-wrap: wrap; gap: 22px; }
.footer_policy a { font-size: 12.5px; color: #a9bbd8; transition: color .2s; }
.footer_policy a:hover { color: #fff; }
.footer_copy { font-size: 12px; color: #8296b8; letter-spacing: .04em; }
.footer_watermark {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-en); font-weight: 700; font-size: 150px; color: rgba(255,255,255,.03);
  z-index: 1; letter-spacing: .02em; pointer-events: none;
}

/* ============================================================
   SP固定CTAバー
   ============================================================ */
.fixedbar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 90; display: flex; box-shadow: 0 -4px 20px rgba(0,0,0,.18); }
.fixedbar a { flex: 1; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; padding: 14px 12px; font-size: 15px; font-weight: 700; letter-spacing: .03em; }
.fixedbar_ic { font-size: 18px; }
.fixedbar_tel { background: var(--accent); color: #fff; }
.fixedbar_txt .num { font-size: 15px; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .reason_card:hover { transform: none; }
}

/* ============================================================
   Responsive — SP (max-width: 767px)
   ============================================================ */
@media only screen and (max-width: 900px) {
  .hero_inner { grid-template-columns: 1fr; }
  .hero_visual { justify-content: flex-start; }
  .footer_top { grid-template-columns: 1fr; gap: 32px; }
}

@media only screen and (max-width: 767px) {
  body { font-size: 14px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* header */
  .header_inner { height: 64px; padding: 0 18px; }
  .logo_name { font-size: 17px; }
  .logo_sub { font-size: 10px; }
  .gnav {
    position: fixed; top: 64px; left: 0; width: 100%; height: calc(100vh - 64px);
    background: #fff; transform: translateX(100%); transition: transform .35s ease;
    padding: 30px 24px 40px; overflow-y: auto; flex-direction: column;
  }
  .gnav.is-open { transform: translateX(0); }
  .gnav_list { flex-direction: column; gap: 0; }
  .gnav_list li { border-bottom: 1px solid var(--line); }
  .gnav_list a { display: block; padding: 18px 4px; font-size: 16px; }
  .gnav_list a::after { display: none; }
  .gnav_cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .gnav_cta .btn { width: 100%; }
  .btn_tel_sp { background: var(--navy); color: #fff; }

  /* heading */
  .heading { margin-bottom: 40px; }
  .heading_ttl { font-size: 26px; }
  .heading_lead { font-size: 14.5px; text-align: left; }

  /* hero */
  .hero_inner { padding: 48px 20px 60px; gap: 36px; }
  .hero_title { font-size: 38px; line-height: 1.34; }
  .hero_lead { font-size: 15px; }
  .hero_lead br { display: none; }
  .hero_points { gap: 8px; }
  .hero_points li { font-size: 12.5px; padding: 8px 13px; }
  .hero_cta { flex-direction: column; }
  .hero_cta .btn { width: 100%; }
  .hero_card { max-width: 100%; }

  /* stats */
  .stats_inner { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; padding: 34px 20px; }
  .stats_item:nth-child(2)::after { display: none; }
  .stats_num { font-size: 36px; }

  /* reason / voice */
  .reason_grid, .voice_grid { grid-template-columns: 1fr; gap: 16px; }
  .reason_card { padding: 30px 24px; }

  /* news */
  .news { padding: 44px 0; }
  .news_wrap { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .news_ttl { font-size: 19px; }
  .news_item_ttl { font-size: 17px; }

  /* price */
  .price_table th, .price_table td { padding: 16px 16px; }
  .price_menu { font-size: 14.5px; }
  .price_val .num { font-size: 22px; }
  .price_group { grid-template-columns: 1fr; gap: 8px; }
  .price_group_label { font-size: 13px; }
  .price_btn { font-size: 13px; padding: 8px 13px; }
  .price_table_model td { padding: 14px 18px; }
  .price_table_model .price_menu { font-size: 13.5px; }
  .price_cell { font-size: 20px; }
  .price_panel_ttl { font-size: 18px; }
  .price_extra { grid-template-columns: 1fr; gap: 16px; }
  .price_common, .price_legend { padding: 22px 20px; }

  /* flow */
  .flow_list { grid-template-columns: 1fr; gap: 16px; }
  .flow_item { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; text-align: left; align-items: center; padding: 24px; }
  .flow_item::after { content: "↓"; top: auto; bottom: -14px; right: 50%; transform: translateX(50%); }
  .flow_step { grid-column: 2; margin-bottom: 2px; }
  .flow_ic { grid-row: 1 / 3; grid-column: 1; margin: 0; width: 56px; height: 56px; font-size: 26px; }
  .flow_ttl { grid-column: 2; }
  .flow_txt { grid-column: 1 / 3; margin-top: 6px; }

  /* shop */
  .shop_wrap { grid-template-columns: 1fr; gap: 24px; }
  .shop_map { min-height: 220px; }
  .shop_row { gap: 12px; padding: 16px 4px; }
  .shop_row dt { flex: 0 0 84px; font-size: 14px; }

  /* faq */
  .faq_q { font-size: 15px; padding: 18px 20px; }
  .faq_q_txt { padding-left: 28px; }
  .faq_a p { padding: 0 20px 20px 48px; }

  /* cta */
  .cta { padding: 64px 0 84px; }
  .cta_ttl { font-size: 28px; }
  .cta_btns { flex-direction: column; }
  .cta_btns .btn { width: 100%; }

  /* footer */
  .footer { padding: 56px 0 84px; }
  .footer_nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer_bottom { flex-direction: column; align-items: flex-start; }
  .footer_watermark { font-size: 78px; bottom: 44px; }

  main { padding-bottom: 0; }
}
