/* =========================================================
   エシカルノーマル大阪ひがよど店 公式サイト スタイルシート
   ========================================================= */

:root {
  /* Color tokens */
  --navy: #14304D;
  --navy-deep: #0B2136;
  --ice: #6EC1D6;
  --ice-light: #E7F5F8;
  --coral: #F2966B;
  --coral-deep: #E17B4D;
  --bg: #F7FAFB;
  --white: #FFFFFF;
  --text: #33424E;
  --text-light: #6B7C87;
  --border: #E1EAEE;
  --success: #4CA97A;

  /* Type：ご指定によりメイリオを使用（Webフォント読み込みなし＝表示速度が有利） */
  --font-heading: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  /* Layout */
  --max-width: 1120px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 4px 20px rgba(20, 48, 77, 0.08);
  --shadow-hover: 0 10px 30px rgba(20, 48, 77, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section { position: relative; padding: 92px 0; }
@media (max-width: 640px) { section { padding: 60px 0; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--coral-deep);
  background: #FDEEE6;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-light);
  font-size: 15.5px;
  max-width: 620px;
}

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--ice); outline-offset: 2px; }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 6px 18px rgba(242,150,107,0.4); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-tel { background: var(--navy); color: var(--white); }
.btn-tel:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-line { background: #06C755; color: var(--white); box-shadow: 0 6px 18px rgba(6,199,85,0.35); }
.btn-line:hover { background: #05A648; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { font-family: var(--font-heading); line-height: 1.25; }
.logo-text .main { display: block; font-weight: 700; font-size: 15px; color: var(--navy); }
.logo-text .sub { display: block; font-size: 11px; color: var(--ice); font-weight: 700; letter-spacing: 0.05em; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.tel-quick {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}
.tel-quick small { display: block; font-size: 10px; color: var(--text-light); font-weight: 500; }
.tel-quick strong { font-size: 17px; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); transition: 0.25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.3s ease, visibility 0.3s ease;
  z-index: 99;
  padding: 0 20px;
}
.mobile-nav.open {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  visibility: visible;
  padding: 24px 20px 40px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 20px; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .tel-quick { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 0;
  position: relative;
  background: var(--white);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { min-height: 620px; }
}

.hero-bg-photo { position: absolute; inset: 0; z-index: 0; }
.hero-bg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero-bg-tint { position: absolute; inset: 0; z-index: 1; background: rgba(20,48,77,0.12); }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 24px;
  max-width: 560px;
}
@media (min-width: 900px) {
  .hero-copy { padding: 64px 24px 64px 5vw; }
}

/* スマホ：写真の上にテキストをカードで重ねる */
@media (max-width: 899px) {
  .hero-bg-tint { background: rgba(20,48,77,0.32); }
  .hero-copy {
    max-width: 100%;
    padding: 36px 22px 32px;
    margin: 20px 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  }
}

.hero-mascot-badge {
  width: 56px;
  height: 56px;
  background: var(--ice-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
}
.hero-mascot-badge img { width: 100%; height: 100%; object-fit: contain; }

.hero-badges-top { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--ice-light);
  padding: 6px 16px;
  border-radius: 999px;
}
.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #B8860B;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.hero-rating-pill span { color: var(--navy); }

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 44px);
  color: var(--navy);
  line-height: 1.42;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 16px; }
.btn-hero-main { font-size: 16px; padding: 17px 32px; box-shadow: 0 10px 30px rgba(6,199,85,0.35); }
.btn-tel-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 14.5px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 13px 22px;
  border-radius: 999px;
}
.btn-tel-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.hero-tel-line { font-size: 13.5px; color: var(--text-light); margin-bottom: 28px; }
.hero-tel-line a { color: var(--navy); font-weight: 700; }

.hero-points { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-point { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.hero-point .check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--success); color: var(--white); font-size: 12px; flex-shrink: 0; }

@media (min-width: 640px) {
  .hero-points { flex-direction: row; flex-wrap: wrap; gap: 20px; }
}

/* ===== 代表者・作業風景（安心感） ===== */
#intro-photo { padding-top: 0; }
.intro-photo-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 28px;
}
@media (min-width: 780px) {
  .intro-photo-wrap { grid-template-columns: 200px 1fr; padding: 32px; }
}
.intro-photo-frame {
  aspect-ratio: 1/1;
  max-width: 200px;
  margin: 0 auto;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ice-light), #D9EEF3);
}
.intro-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo-copy p { font-size: 14.5px; color: var(--text-light); margin: 10px 0 14px; }
.link-more-arrow { font-size: 13.5px; font-weight: 700; color: var(--coral-deep); }

/* ===== 化学物質過敏症・香害への配慮 ===== */
.sensitivity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .sensitivity-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .sensitivity-grid { grid-template-columns: repeat(4, 1fr); } }
.sensitivity-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.sensitivity-icon { font-size: 34px; display: block; margin-bottom: 12px; }
.sensitivity-card h3 { font-family: var(--font-heading); font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.sensitivity-card p { font-size: 13.5px; color: var(--text-light); }

/* ===== Philosophy アイコン行 ===== */
.philosophy-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
@media (min-width: 500px) { .philosophy-icons { grid-template-columns: repeat(4, 1fr); } }
.philosophy-icon-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--ice-light);
  border-radius: var(--radius-m);
  padding: 16px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.philosophy-icon-item .emoji { font-size: 26px; }

/* Wave divider */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ===== Reasons ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }

.reason-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.reason-card .foot-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ice);
  font-size: 13px;
  margin-bottom: 14px;
}
.reason-card .foot-num svg { width: 18px; height: 18px; }
.reason-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.reason-card p { font-size: 14px; color: var(--text-light); }

/* ===== Services ===== */
.services-section { background: var(--navy); }
.services-section .section-tag { background: rgba(255,255,255,0.1); color: var(--ice); }
.services-section .section-title { color: var(--white); }
.services-section .section-lead { color: #B9CBD6; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 76px;
  height: 76px;
  margin: 26px auto 0;
  background: var(--ice-light);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon img { width: 58px; height: 58px; object-fit: contain; }
.service-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ice-light), #CFEBF1); display: flex; align-items: center; justify-content: center; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card .thumb .icon { width: 44px; height: 44px; color: var(--ice); }
.service-card .body { padding: 18px 24px 28px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.service-card .tag-pop {
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  background: #FDEEE6;
  color: var(--coral-deep);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.service-catch {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.service-card h3 { font-family: var(--font-heading); font-size: 17px; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.service-card p { font-size: 14px; line-height: 1.75; color: var(--text-light); flex: 1; }
.service-card .link-more { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--coral-deep); display: inline-flex; align-items: center; gap: 4px; align-self: center; }

.service-card .service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--coral-deep);
  font-size: 27px;
  margin: 4px auto 10px;
  line-height: 1.2;
}
.service-card .service-price .yen { font-size: 13px; font-weight: 700; color: var(--text-light); margin-left: 4px; }
.service-card .service-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ice);
  background: var(--ice-light);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 16px;
}
.service-card .service-time svg { width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 640px) {
  .service-icon { width: 90px; height: 90px; border-radius: 26px; margin-top: 28px; }
  .service-icon img { width: 68px; height: 68px; }
}

.services-note {
  text-align: center;
  color: #B9CBD6;
  font-size: 14px;
  font-weight: 700;
  margin-top: 34px;
}

/* ===== Philosophy（エシカルノーマルの想い）===== */
.philosophy-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .philosophy-wrap { grid-template-columns: 0.8fr 1.2fr; gap: 48px; } }
.philosophy-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ice-light), #D9EEF3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.philosophy-visual img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-copy p { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.philosophy-copy p:last-child { margin-bottom: 0; }

/* ===== Ethical ===== */
.ethical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .ethical-grid { grid-template-columns: 0.9fr 1.1fr; } }
.ethical-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #EAF7F9, #CFEBF1 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.ethical-visual img { width: 100%; height: 100%; object-fit: cover; }
.visual-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--ice);
  padding: 20px;
}
.ethical-points { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.ethical-point { display: flex; gap: 14px; }
.ethical-point .icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--ice-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ice);
}
.ethical-point .icon-wrap svg { width: 22px; height: 22px; }
.ethical-point h3 { font-family: var(--font-heading); font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.ethical-point p { font-size: 14px; color: var(--text-light); }

/* ===== Flow ===== */
.flow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: flow;
  max-width: 720px;
  margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding-bottom: 34px;
  position: relative;
}
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--ice) 0 6px, transparent 6px 12px);
}
.flow-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.flow-num svg { width: 26px; height: 26px; }
.flow-body h3 { font-family: var(--font-heading); font-size: 16.5px; color: var(--navy); margin-bottom: 6px; padding-top: 12px; }
.flow-body p { font-size: 14px; color: var(--text-light); }

/* ===== Voice ===== */
.voice-rating {
  display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 36px;
  flex-wrap: wrap;
}
.voice-rating .stars { color: #F5A623; font-size: 20px; letter-spacing: 2px; }
.voice-rating .meta { font-size: 14px; font-weight: 700; color: var(--navy); }

.voice-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }

.voice-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.voice-card .voice-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--ice); margin-bottom: 12px;
}
.voice-card .voice-tag svg { width: 16px; height: 16px; }
.voice-card p.txt { font-size: 14.5px; color: var(--text); margin-bottom: 14px; }
.voice-card .voice-meta { font-size: 12px; color: var(--text-light); display: flex; justify-content: space-between; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-s); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--navy);
}
.faq-q .q-mark { color: var(--coral); flex-shrink: 0; }
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--navy); border-radius: 2px; }
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.2s ease; }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a-inner { padding: 0 20px 20px 46px; font-size: 14px; color: var(--text-light); }
.faq-item.open .faq-a { max-height: 300px; }

/* ===== Area ===== */
.area-wrap { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .area-wrap { grid-template-columns: 1fr 1fr; } }
.area-map-frame { border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); aspect-ratio: 4/3; }
.area-map-frame iframe { width: 100%; height: 100%; border: 0; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-tag { background: var(--white); border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.area-note { margin-top: 18px; font-size: 13.5px; color: var(--text-light); }

/* ===== Greeting ===== */
.greeting-wrap {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  background: var(--white); border-radius: var(--radius-l); padding: 40px; box-shadow: var(--shadow-card); border: 1px solid var(--border);
}
@media (min-width: 860px) { .greeting-wrap { grid-template-columns: 260px 1fr; padding: 48px; } }
.greeting-photo { aspect-ratio: 1/1; border-radius: var(--radius-m); background: linear-gradient(135deg, var(--ice-light), #D9EEF3); overflow: hidden; }
.greeting-photo img { width: 100%; height: 100%; object-fit: cover; }
.greeting-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-top: 14px; text-align: center; font-size: 15px; }
.greeting-role { text-align: center; font-size: 12px; color: var(--text-light); }
.greeting-text p { margin-bottom: 14px; font-size: 15px; color: var(--text); }
.greeting-text p:last-child { margin-bottom: 0; }

/* ===== Company table ===== */
.company-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:last-child { border-bottom: none; }
.company-table th, .company-table td { text-align: left; padding: 16px 20px; font-size: 14.5px; vertical-align: top; }
.company-table th { width: 34%; color: var(--navy); font-family: var(--font-heading); font-weight: 700; background: #F5FAFB; }
.company-table td { color: var(--text); }
@media (max-width: 560px) {
  .company-table th, .company-table td { display: block; width: 100%; padding: 10px 16px; }
  .company-table th { padding-bottom: 2px; background: none; }
  .company-table tr { display: block; padding: 10px 0; }
}

/* ===== Contact ===== */
.contact-section { background: linear-gradient(180deg, #F1F8FA, var(--bg)); }
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1.15fr 0.85fr; } }

.contact-line-card {
  background: linear-gradient(160deg, #06C755 0%, #04A648 100%);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(6,199,85,0.25);
}
.contact-line-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.contact-line-card h3 { font-family: var(--font-heading); font-size: 22px; margin-bottom: 12px; }
.contact-line-lead { font-size: 14.5px; line-height: 1.8; margin-bottom: 22px; color: rgba(255,255,255,0.95); }
.contact-line-card .btn-line { background: var(--white); color: #06C755; box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.contact-line-card .btn-line:hover { background: #F2FFF7; transform: translateY(-2px); }
.contact-line-card .btn-line svg path { fill: #06C755; }
.contact-line-note { font-size: 12.5px; margin-top: 14px; color: rgba(255,255,255,0.85); text-align: center; }

.contact-side { background: var(--navy); color: var(--white); border-radius: var(--radius-l); padding: 34px; }
.contact-side h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 16px; }
.contact-side .tel-box { background: rgba(255,255,255,0.08); border-radius: var(--radius-m); padding: 20px; margin-bottom: 18px; }
.contact-side .tel-box a { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--white); display: block; margin: 6px 0; }
.contact-side .tel-box small { color: #AFC4D0; font-size: 12.5px; }
.contact-side ul.info { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; font-size: 13.5px; color: #C6D7E0; }
.contact-side ul.info li strong { color: var(--white); display: inline-block; width: 84px; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: #A9BECA; padding: 50px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-logo-mark { width: 44px; height: 44px; margin-bottom: 10px; }
.footer-brand .logo-text .main { color: var(--white); }
.footer-brand p { font-size: 13px; margin-top: 12px; color: #8DA3B0; max-width: 280px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: #A9BECA; }
.footer-col a:hover { color: var(--ice); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; color: #7690A0; text-align: center; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.sticky-cta .tel { background: var(--navy); color: var(--white); }
.sticky-cta .line { background: #06C755; color: var(--white); }
@media (min-width: 960px) { .sticky-cta { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 959px) { body { padding-bottom: 62px; } }

/* Utility */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.icon-check { color: var(--success); width: 18px; height: 18px; flex-shrink: 0; }
