/* ============================================================
   プラボーくん 公式サイト — style.css
   メインカラー: #01366b（ネイビー）
   アクセント:   #f97316（オレンジ）
   フォント: Noto Sans JP（本文）+ Oswald（見出し英字）
   ============================================================ */

/* ── Local Fonts (Noto Sans JP) ── */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('fonts/NotoSansJP-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('fonts/NotoSansJP-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --navy:   #01366b;
  --orange: #f97316;
  --light:  #f4f7fb;
  --gray:   #6b7280;
  --border: #e5e7eb;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #ea6c0a; transform: scale(1.03); }
.btn-primary:active { transform: scale(.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 4px;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .6rem;
}

.section-sub {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
#header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 48px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.header-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  transition: color .2s;
}
#header.scrolled .header-nav a { color: #374151; }
.header-nav a:hover { color: var(--orange); }

.header-cta {
  padding: .55rem 1.4rem;
  background: var(--orange);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 4px;
  transition: background .2s !important;
}
.header-cta:hover { background: #ea6c0a !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s;
}
#header.scrolled .hamburger span { background: var(--navy); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 1rem 0 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .85rem 1.5rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .mobile-cta {
  margin: 1rem 1.5rem 0;
  display: block;
  text-align: center;
  padding: .85rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  border-radius: 4px;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #011f3f 0%, var(--navy) 60%, #024a96 100%);
}

/* ネイビー背景（画像なし） */
.hero-bg-solid {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #011f3f 0%, var(--navy) 60%, #024a96 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* 2カラムレイアウト */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}

/* 左：テキストエリア */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem 4rem;
}

/* 右：象の画像エリア */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* 足元を下に揃える */
  justify-content: center;
}

.hero-elephant {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像の下部（足元・プラボーくん）を中心に表示 */
  object-position: center bottom;
  display: block;
}

/* 左側にグラデーションで溶け込ませる */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
}
/* 下部にグラデーション */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy), transparent);
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-title span { color: var(--orange); }

.hero-catch {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.5);
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   FEATURES（7つの利点）
   ============================================================ */
#features {
  padding: 5rem 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--light);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  border-left: 4px solid var(--orange);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(1,54,107,.12);
  transform: translateY(-3px);
}

.feature-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .4rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}

.feature-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  padding: 5rem 0;
  background: var(--navy);
}

#products .section-title { color: #fff; }
#products .section-sub   { color: rgba(255,255,255,.65); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  transition: background .2s, transform .2s;
}
.product-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.product-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .2rem .7rem;
  border-radius: 2px;
  margin-bottom: .8rem;
}

/* 製品カード画像枠 */
.product-img-wrap {
  width: 100%;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(255,255,255,.1);
  border: 2px dashed rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
}

.product-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.product-body { padding: 1.8rem; }

.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
}

.product-name-jp {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}
.product-spec::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap .2s;
}
.product-link:hover { gap: .7rem; }

/* ============================================================
   USE CASES（用途から探す）
   ============================================================ */
#use-cases {
  padding: 5rem 0;
  background: var(--light);
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.usecase-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.usecase-card:hover {
  box-shadow: 0 8px 24px rgba(1,54,107,.12);
  transform: translateY(-3px);
}

.usecase-img-wrap {
  width: 100%;
  overflow: hidden;
}

.usecase-img-placeholder {
  width: 100%;
  height: 180px;
  background: #dde6f0;
  border-bottom: 2px dashed #b0c4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: #8aa5c0;
}

.usecase-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.usecase-body {
  padding: 1.2rem 1.4rem 1.5rem;
  border-top: 4px solid var(--navy);
}

.usecase-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}

.usecase-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}

.usecase-product-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: .8rem;
}
.usecase-product-tag {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  border: 1px solid;
  white-space: nowrap;
}
.usecase-product-tag.psk    { color: #e60013; border-color: #e60013; background: #fff5f5; }
.usecase-product-tag.psk-jr { color: #e60013; border-color: #e60013; background: #fff5f5; }
.usecase-product-tag.psy    { color: #f97316; border-color: #f97316; background: #fff8f0; }
.usecase-product-tag.psy-jr { color: #f97316; border-color: #f97316; background: #fff8f0; }
.usecase-product-tag.psl    { color: #22c55e; border-color: #22c55e; background: #f0fdf4; }
.usecase-product-tag.psl-jr { color: #22c55e; border-color: #22c55e; background: #f0fdf4; }

/* ============================================================
   COMPARISON（比較表）
   ============================================================ */
#comparison {
  padding: 5rem 0;
  background: #fff;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.comparison-table thead th:first-child {
  text-align: left;
  background: #012d5a;
}
.comparison-table thead th.highlight {
  background: var(--orange);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: var(--light); }

.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  background: #fff !important;
}

.comparison-table td.highlight {
  background: rgba(249,115,22,.08) !important;
  font-weight: 700;
  color: var(--navy);
}

.check  { color: #16a34a; font-size: 1.1rem; }
.cross  { color: #dc2626; font-size: 1.1rem; }
.tri    { color: #d97706; font-size: 1rem; }
.circle { color: #2563eb; font-size: 1.1rem; }

/* ============================================================
   CASES（利用実績）
   ============================================================ */
#cases {
  padding: 5rem 0;
  background: var(--light);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.case-card:hover {
  box-shadow: 0 8px 24px rgba(1,54,107,.12);
  transform: translateY(-3px);
}

.case-img-wrap {
  width: 100%;
  overflow: hidden;
}

.case-img-placeholder {
  width: 100%;
  height: 180px;
  background: #dde6f0;
  border-bottom: 2px dashed #b0c4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: #8aa5c0;
}

.case-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.case-body {
  padding: 1.2rem 1.4rem 1.5rem;
}

.case-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 2px;
  margin-bottom: .8rem;
}

.case-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}

.case-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}

.case-product-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: .6rem;
}
.case-product-tag {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  border: 1px solid;
  white-space: nowrap;
}
.case-product-tag.psk    { color: #e60013; border-color: #e60013; background: #fff5f5; }
.case-product-tag.psk-jr { color: #e60013; border-color: #e60013; background: #fff5f5; }
.case-product-tag.psy    { color: #f97316; border-color: #f97316; background: #fff8f0; }
.case-product-tag.psl    { color: #22c55e; border-color: #22c55e; background: #f0fdf4; }

.cases-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.btn-more:hover { background: var(--navy); color: #fff; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta {
  padding: 5rem 0;
  background: var(--navy);
  text-align: center;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .8rem;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.2rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #011f3f;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
}

.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-text {
    padding: 7rem 2rem 3rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* モバイル：象を全画面背景に戻す */
  #hero {
    min-height: 100vh;
    align-items: flex-end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
  }

  /* 画像を背景として全画面に敷く */
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }

  .hero-elephant {
    object-position: center 55%;
  }

  /* 画像の上にグラデーションオーバーレイ */
  .hero-image-wrap::before {
    width: 100%;
    background: linear-gradient(to right, rgba(1,54,107,.6) 0%, rgba(1,54,107,.2) 100%);
  }
  .hero-image-wrap::after {
    height: 60%;
    background: linear-gradient(to top, var(--navy) 0%, rgba(1,54,107,.4) 50%, transparent 100%);
  }

  /* テキストを前面に */
  .hero-text {
    position: relative;
    z-index: 2;
    padding: 7rem 1.5rem 4rem;
    justify-content: flex-end;
  }

  .hero-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  /* 用途・利用実績：2カラム */
  .usecases-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* 用途・利用実績：1カラム */
  .usecases-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TRANSFER BANNER（事業移管バナー）
   ============================================================ */
.transfer-banner {
  display: inline-flex;
  flex-direction: column;
  gap: .6rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.transfer-text {
  font-size: .9rem;
  color: #fff;
  line-height: 1.7;
}

.transfer-text strong {
  color: #fff;
}

.transfer-btn {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.transfer-btn:hover { opacity: .75; }

/* ============================================================
   CONTACT METHODS（電話・メール・FAX）
   ============================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.contact-method {
  background: #fff;
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 4px solid var(--navy);
}

.contact-method-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.contact-method-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .6rem;
}

.contact-method-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: .8rem;
}

.contact-method-note {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: .5rem;
  font-weight: 700;
}

.contact-method-value {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.contact-label {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: .2rem .7rem;
  border-radius: 3px;
  white-space: nowrap;
}

.contact-tel {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
}
.contact-tel:hover { color: var(--orange); }

.contact-mail {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.contact-mail:hover { color: var(--orange); text-decoration: underline; }

.contact-fax {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   FOOTER POLICY LINKS
   ============================================================ */
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: .5rem;
}

.footer-policy a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-policy a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE — CONTACT METHODS & TRANSFER BANNER
   ============================================================ */
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .transfer-banner {
    max-width: 100%;
  }
}

/* ============================================================
   MOBILE FIXED CTA（スマホ画面下部固定バー：お問い合わせ＋電話/FAX/メール）
   ============================================================ */
.mobile-fixed-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .mobile-fixed-cta-bar {
    display: flex;
    align-items: stretch;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .15);
  }

  .mobile-fixed-cta-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .01em;
    text-align: center;
    text-decoration: none;
    padding: 10px 6px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-fixed-cta-main:hover {
    background: var(--orange);
    opacity: .9;
  }

  .mobile-fixed-cta-icon {
    flex: 0 0 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-fixed-cta-icon svg {
    width: 20px;
    height: 20px;
  }

  .mobile-fixed-cta-icon:hover {
    background: var(--orange);
  }
}
