/* ================================================
   ELAN LOGISTICS Corporate Site — Custom CSS
   ================================================ */

:root {
  --navy: #1a2744;
  --navy-light: #243656;
  --blue: #235da2;
  --blue-light: #3a7bd5;
  --teal: #36bbad;
  --teal-dark: #2a9e92;
  --orange: #f5a623;
  --orange-dark: #e0941a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* -----------------------------------------------
   Webフォント
   ----------------------------------------------- */
.chikushi_std {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.chikushi_bold {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  font-style: normal;
}


/* -----------------------------------------------
   ベース
   ----------------------------------------------- */
body {
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: 400 16px/1.8 "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  overflow-x: hidden;
}

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

a { color: var(--blue); transition: color var(--transition); }
a:hover { color: var(--blue-light); text-decoration: none; }

.text-link {
  color: var(--blue);
  border-bottom: 1px solid var(--blue-light);
  padding-bottom: 1px;
}
.text-link:hover { color: var(--teal); border-color: var(--teal); }


/* -----------------------------------------------
   共通ボタン
   ----------------------------------------------- */
.btn-cta-primary {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-cta-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(54,187,173,0.35);
}

.btn-cta-hero {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}
.btn-cta-hero:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}
.btn-cta-hero i { margin-left: 6px; }

.btn-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-cta-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-cta-secondary i { margin-left: 6px; }


/* -----------------------------------------------
   ヘッダー（PC）
   ----------------------------------------------- */
.upper-head {
  width: 100%;
  padding: 12px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-top-inner {
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  padding: 0 16px;
}
.site-logo-pc,
.footer-logo-pc {
  max-width: 180px;
  width: 100%;
  height: auto;
}
.site-logo-sp {
  max-width: 130px;
  width: 100%;
  height: auto;
}
.header-info-area {
  margin-left: auto;
  margin-right: 20px;
}
.header-tel-block {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.85rem;
}
.header-tel-number {
  font-size: 1.35rem;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.header-tel-number::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f87b";
  color: var(--blue);
  margin-right: 4px;
  font-size: 1rem;
}
.header-tel-sub {
  color: var(--gray-400);
  font-size: 0.8rem;
}
.header-contact-actions {
  justify-content: flex-end;
}


/* -----------------------------------------------
   ナビゲーション（PC）
   ----------------------------------------------- */
.g-nav {
  width: 100%;
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 100;
}
.g-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  justify-content: center;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-item-custom {
  position: relative;
}
.nav-link-custom {
  display: block;
  padding: 16px 36px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-link-custom:hover {
  color: var(--teal);
  text-decoration: none;
}
.nav-link-custom:hover::after {
  width: 60%;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--navy-light);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 1001;
}
.nav-item-custom:hover .nav-dropdown {
  display: block;
}
.nav-dropdown-link {
  display: block;
  padding: 10px 24px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-dropdown-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  padding-left: 28px;
  text-decoration: none;
}


/* -----------------------------------------------
   ナビゲーション（スマホ）
   ----------------------------------------------- */
.bg-elanservice {
  background: var(--white);
  border-top: 4px solid var(--navy);
}
.bg-elanservice .collapse-inner {
  background: var(--navy);
  margin: 0.5rem -1rem -1rem;
  padding: 1rem;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  font-size: 0.95rem;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--teal);
}
.sp-nav-heading {
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}
.sp-nav-sub {
  padding-left: 1rem;
}
.sp-nav-sub .nav-link {
  font-size: 0.9rem;
  padding: 6px 0;
}
.company-linkbox {
  width: 100%;
  display: block;
  padding-left: 1rem;
}


/* -----------------------------------------------
   ヒーローセクション
   ----------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,39,68,0.75) 0%,
    rgba(26,39,68,0.45) 50%,
    rgba(26,39,68,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 6%;
  max-width: 940px;
}
.hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-small {
  font-size: 70%;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  .hero-content {
    padding: 0 6%;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}


/* -----------------------------------------------
   セクション共通
   ----------------------------------------------- */
.section-block {
  padding: 80px 0;
}
.section-alt {
  background: var(--off-white);
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title-white { color: var(--white); }
.section-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue-light));
  margin: 0 auto;
  border-radius: 2px;
}
.section-title-bar-white {
  background: linear-gradient(90deg, var(--teal), rgba(255,255,255,0.6));
}
.section-lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section-block {
    padding: 48px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-heading {
    margin-bottom: 32px;
  }
}


/* -----------------------------------------------
   事業内容セクション
   ----------------------------------------------- */
.service-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  max-height: 380px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list-item {
  padding: 14px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.service-list-item:last-child { border-bottom: none; }
.service-list-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}
.service-list-content {
  min-width: 0;
}
.service-list-label {
  display: block;
}
.service-tree-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}
.service-tree-list li {
  position: relative;
  padding-left: 24px;
}
.service-tree-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.25em;
  width: 11px;
  height: 0.9em;
  border-left: 2px solid var(--gray-200);
  border-bottom: 2px solid var(--gray-200);
}


/* -----------------------------------------------
   主な事業セクション — サービスカード
   ----------------------------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-card-body {
  padding: 24px;
}
.service-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}


/* -----------------------------------------------
   数字セクション
   ----------------------------------------------- */
.section-numbers {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 24px;
}
.number-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.number-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.number-card-icon {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 12px;
}
.number-card-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.1;
  display: inline;
}
.number-card-unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: inline;
  margin-left: 4px;
}
.number-card-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.numbers-note {
  text-align: right;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .number-card {
    padding: 24px 12px;
  }
  .number-card-value {
    font-size: 2rem;
  }
}


/* -----------------------------------------------
   拠点一覧セクション
   ----------------------------------------------- */
.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.location-card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.location-card-body {
  padding: 16px 20px;
  background: var(--white);
}
.location-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
}


/* -----------------------------------------------
   CTAセクション
   ----------------------------------------------- */
.section-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.cta-text {
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 2.2;
  color: rgba(255,255,255,0.9);
}
.cta-tel {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 16px;
}
.cta-hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.section-cta .btn-cta-hero {
  background: var(--white);
  color: var(--teal-dark);
}
.section-cta .btn-cta-hero:hover {
  background: var(--off-white);
  color: var(--teal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
  .cta-title { font-size: 1.5rem; }
  .cta-tel { font-size: 1.25rem; display: block; margin-right: 0; margin-bottom: 8px; }
}


/* -----------------------------------------------
   フッター（PC）
   ----------------------------------------------- */
.site-footer {
  width: 100%;
  z-index: 1;
  background: var(--navy);
  padding-top: 48px;
  color: rgba(255,255,255,0.85);
}
.footer-contents {
  padding: 1.5rem;
}
.footer-nav-wrap {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  justify-content: center;
}
.footer-logo-col {
  flex: 0 0 auto;
}
.footer-nav-col {
  flex: 0 1 auto;
}
.copy {
  padding: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer-nav-section {
  min-width: 180px;
}
.footer-nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-subnav li + li {
  margin-top: 0.35rem;
}
.footer-subnav li {
  font-size: 0.85rem;
}
.footer-nav-contact {
  min-width: 140px;
}
.footer-nav-title a,
.footer-subnav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-nav-title a:hover,
.footer-subnav a:hover {
  color: var(--teal);
}


/* -----------------------------------------------
   フッター（スマホ）
   ----------------------------------------------- */
.sm-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
}
.sm-footer-inner {
  padding: 1.5rem 0;
}
.footer-logo-sm {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.footer-logo-sp {
  max-width: 160px;
  width: 100%;
  height: auto;
}
.footer-menu-sm {
  width: 100%;
  margin-bottom: 1rem;
}
.footer-menu-sm a {
  color: rgba(255,255,255,0.75);
  line-height: 2.5rem;
  font-size: 0.85rem;
}
.footer-menu-sm a:hover { color: var(--teal); }
.footer-btn {
  padding: 0 0.5rem;
  text-align: center;
}
.footer-menu-sm .footer-btn {
  display: block;
}
.sm-footer .copy {
  background: rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.4);
}


/* -----------------------------------------------
   TOPに戻るボタン
   ----------------------------------------------- */
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 16px;
  z-index: 100;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  border-radius: 50%;
  opacity: 0.8;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.pagetop a:hover {
  opacity: 1;
  background: var(--blue);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .pagetop { bottom: 16px; right: 12px; }
  .pagetop a { width: 40px; height: 40px; font-size: 14px; }
}


/* -----------------------------------------------
   Floating CTA（PC右サイド）
   ----------------------------------------------- */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.floating-cta-btn,
.floating-cta-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  writing-mode: horizontal-tb;
  transition: all var(--transition);
}
.floating-cta-btn {
  background: var(--teal);
  border-radius: var(--radius) 0 0 0;
}
.floating-cta-btn:hover {
  background: var(--teal-dark);
  color: var(--white);
  padding-right: 24px;
}
.floating-cta-tel {
  background: var(--navy);
  border-radius: 0 0 0 var(--radius);
  font-size: 0.8rem;
}
.floating-cta-tel:hover {
  background: var(--navy-light);
  color: var(--white);
  padding-right: 24px;
}
.floating-cta i { font-size: 1rem; }


/* -----------------------------------------------
   スクロールアニメーション
   ----------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -----------------------------------------------
   会社概要ページ（既存互換）
   ----------------------------------------------- */
.company-header {
  position: relative;
  width: 100%;
}
.header-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: var(--blue);
}
.header-txt_rep {
  padding: 5rem 0 1rem 0;
  border-bottom: 6px dashed #9fc4ff;
  color: var(--blue);
  max-width: 1140px;
  margin: 0 auto;
}
.contact-page-header .header-txt_rep {
  border-bottom: 1px solid #d8e3ef;
}
.contact-page-header .header-txt_rep h1 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.thanks-page-section {
  padding-top: 2.5rem;
}
.sitemap-page-section {
  padding-top: 2.5rem;
}
.caution-page-section {
  padding-top: 2.5rem;
}
.privacy-page-section {
  padding-top: 2.5rem;
}
.thanks-return-btn {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}
.mftp-box {
  width: 100%;
  background: #efefef;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 2px 2px 5px #333;
  color: #6f5701;
}
.company-table-block {
  padding: 1rem 1.5rem;
}
.company-table-block .th {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  text-align: center;
  padding: .5rem 0;
  font-weight: bold;
}
.company-table-block .td {
  border-bottom: 2px solid #e6e6e6;
  padding: .5rem 0 .5rem 2rem;
}
.hub_box {
  display: block;
  width: 100%;
  margin: 2rem 0;
}
.hub_box:last-child { margin-bottom: 0; }

@media screen and (max-width: 420px) {
  body { margin-top: 66px; }
  .header-txt_rep { padding: 1rem 0; }
  .header-txt h1 { font-size: 1.5rem; }
  .company-table-block .th {
    display: inline-block;
    text-align: left;
  }
  .company-table-block .td { padding: .5rem; }
}


/* -----------------------------------------------
   会社情報ページ（リニューアル）
   ----------------------------------------------- */

/* ご挨拶カード */
#greeting .container {
  max-width: 1140px;
}
.greeting-card {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: auto;
}
.greeting-body {
  padding: 48px 48px 42px;
  line-height: 2.05;
  font-size: 0.95rem;
  color: var(--text);
}
.greeting-profile {
  float: right;
  width: min(38%, 420px);
  margin: 0 0 18px 44px;
  padding-top: 124px;
  shape-outside: inset(124px 0 0 0);
  text-align: right;
}
.greeting-profile-photo {
  display: block;
  width: 70%;
  margin-left: auto;
  height: auto;
}
.greeting-body p {
  margin-bottom: 1em;
}
.greeting-body p:last-child {
  margin-bottom: 0;
}
.greeting-sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 14px 0 0;
  gap: 2px;
}
.greeting-sign-company {
  font-size: 0.85rem;
  color: var(--text-light);
}
.greeting-sign-title {
  font-size: 0.85rem;
  color: var(--text-light);
}
.greeting-sign-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 4px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .greeting-profile {
    width: min(40%, 330px);
    margin-left: 36px;
    padding-top: 220px;
    shape-outside: inset(220px 0 0 0);
  }
}

@media (max-width: 767px) {
  .greeting-body {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 28px;
  }
  .greeting-text { order: 1; }
  .greeting-profile {
    float: none;
    order: 2;
    width: 100%;
    max-width: 320px;
    margin: 22px auto 0;
    padding-top: 0;
    shape-outside: none;
    text-align: right;
  }
  .greeting-profile-photo {
    width: 100%;
  }
  .greeting-sign { padding: 12px 0 0; }
}

/* 会社情報テーブル */
.company-info-table {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-info-row {
  display: flex;
  border-bottom: 1px solid var(--gray-100);
}
.company-info-row:last-child {
  border-bottom: none;
}
.company-info-th {
  flex: 0 0 180px;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.company-info-td {
  flex: 1;
  padding: 16px 24px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .company-info-row {
    flex-direction: column;
  }
  .company-info-th {
    flex: none;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .company-info-td {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* 拠点テーブル（本社詳細内） */
.location-info-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.location-info-table .company-info-th {
  flex: 0 0 100px;
  font-size: 0.85rem;
}

/* 拠点詳細写真 */
.location-detail-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}

/* アクセス情報 */
.location-access {
  padding: 0 4px;
}
.location-access-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.location-access-title i {
  color: var(--teal);
  margin-right: 6px;
}
.location-access-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-access-list li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.location-access-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* 拠点一覧カード */
.locations-list {
  max-width: 960px;
  margin: 0 auto;
}
.location-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.location-detail-card:last-child {
  margin-bottom: 0;
}
.location-detail-card:hover {
  box-shadow: var(--shadow-md);
}
.location-detail-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}
.location-detail-card .location-info-table {
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

@media (max-width: 767px) {
  .location-detail-card {
    padding: 20px 16px;
  }
  .location-detail-name { font-size: 1.05rem; }
}

/* グループ企業グリッド */
.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.group-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.group-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
}
.group-card-icon {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.group-card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .group-card { padding: 20px 12px; }
  .group-card-name { font-size: 0.85rem; }
}

/* company ページのセクションID margin-top リセット */
.section-block#greeting,
.section-block#prof,
.section-block#base,
.section-block#base-list,
.section-block#group {
  margin-top: 0;
}


/* -----------------------------------------------
   サービスページ（既存互換）
   ----------------------------------------------- */
.md-h100 { height: 100%; }
.photo-box {
  border-radius: var(--radius);
  box-shadow: 2px 2px 5px #333;
}


/* -----------------------------------------------
   ページヒーロー（下層ページ共通）
   ----------------------------------------------- */
.page-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.78) 0%, rgba(26,39,68,0.5) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 767px) {
  .page-hero { height: 220px; }
  .page-hero-title { font-size: 1.7rem; }
  .page-hero-sub { font-size: 0.9rem; }
}


/* -----------------------------------------------
   セクションナビ（ページ内リンク帯）
   ----------------------------------------------- */
.section-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 99;
}
.g-nav.is-fixed ~ .section-nav,
.section-nav.has-fixed-nav {
  top: 52px;
}
.section-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0;
}
.section-nav-link {
  display: block;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: all var(--transition);
}
.section-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.section-nav-link:hover {
  color: var(--teal);
  text-decoration: none;
}
.section-nav-link:hover::after {
  width: 70%;
}

@media (max-width: 767px) {
  .section-nav-list {
    flex-wrap: wrap;
  }
  .section-nav-link {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}


/* -----------------------------------------------
   サービス詳細（各事業セクション）
   ----------------------------------------------- */
.service-detail {
  max-width: 1000px;
  margin: 0 auto;
}
.service-detail-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  max-height: 360px;
}
.service-detail-body {
  padding: 0 8px;
}
.service-detail-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.service-detail-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-detail-features {
  margin-bottom: 28px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.service-feature:last-child {
  border-bottom: none;
}
.service-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--blue-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .service-detail-body {
    padding: 16px 0 0 0;
  }
  .service-detail-lead { font-size: 1.05rem; }
}


/* -----------------------------------------------
   特徴・特色ページ（既存互換）
   ----------------------------------------------- */
.worries-note {
  background-size: 100% 1.75em;
  line-height: 1.75em;
  padding: 1.5em 1em;
  font-size: 1.5rem;
}
.feature-section {
  background: url(../imgs/feature/section01-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 1.5rem;
}
.performance-txt {
  color: var(--blue);
  font-size: 1.5rem;
}

@media screen and (max-width: 420px) {
  .worries-note {
    background-size: 100% 1.5em;
    line-height: 1.5em;
    padding: 1.4em 1em;
  }
}


/* -----------------------------------------------
   問合せ(inquiry)ページ（リニューアル）
   ----------------------------------------------- */
.page-hero-compact {
  height: 220px;
  min-height: 180px;
}
.page-hero-compact .page-hero-title {
  font-size: 2rem;
}
.page-hero-overlay-teal {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  opacity: 0.92;
}

@media (max-width: 767px) {
  .page-hero-compact { height: 160px; min-height: 140px; }
  .page-hero-compact .page-hero-title { font-size: 1.5rem; }
}

.inquiry-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 40px;
}

.inquiry-cards {
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.inquiry-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.inquiry-info-body {
  flex: 1;
}
.inquiry-info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.inquiry-info-address {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.inquiry-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.inquiry-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.inquiry-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--off-white);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.inquiry-contact-body {
  display: flex;
  flex-direction: column;
}
.inquiry-contact-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.inquiry-contact-value {
  font-size: 1.05rem;
  color: var(--navy);
}

.inquiry-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.inquiry-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--transition);
}
.inquiry-action-web {
  background: var(--teal);
  color: var(--white);
}
.inquiry-action-web:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54,187,173,0.35);
  text-decoration: none;
}
.inquiry-action-call {
  background: var(--navy);
  color: var(--white);
}
.inquiry-action-call:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,39,68,0.3);
  text-decoration: none;
}
.inquiry-action-arrow {
  margin-left: auto;
  opacity: 0.7;
}
.inquiry-action-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--navy);
}
.inquiry-action-tel-number {
  font-size: 1.3rem;
  color: var(--navy);
}
.inquiry-action-tel-hours {
  font-size: 0.8rem;
  color: var(--gray-400);
}

@media (max-width: 767px) {
  .inquiry-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }
  .inquiry-contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .inquiry-action-btn {
    padding: 16px 24px;
    font-size: 0.95rem;
  }
  .inquiry-action-tel {
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }
}


/* -----------------------------------------------
   問合せ(inquiry)ページ（既存互換）
   ----------------------------------------------- */
.inquiry-txt {
  width: 100%;
  display: block;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}
.inquiry-box {
  width: 100%;
  display: block;
  background: var(--teal);
  color: #fff;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.inquiry-box h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
#inquiry .card-header {
  background: inherit;
  border-bottom: none;
  text-align: center;
  color: var(--teal);
  font-weight: bold;
  font-size: 1.5rem;
}
#inquiry .card {
  border: 2px solid var(--teal);
  color: var(--teal);
  margin-bottom: 2rem;
}
.question-row {
  margin-bottom: 5px;
}
.question-row:before {
  content: url(../imgs/icons/ques.png);
  margin-right: 1rem;
}
.answer-row:before {
  content: url(../imgs/icons/ans.png);
  margin-right: 1rem;
}
.inquiry-section-card {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}
.inquiry-section-card .btn-area { padding: 0; }
.card-caution {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: bold;
}
.inquiry-btnbox { margin: 1.5rem 0; }
.inquiry-tel {
  font-weight: 400;
  color: var(--teal);
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--teal);
  padding: 25px;
  font-size: 1rem;
  border-radius: .25rem;
}
.inquiry-tel .telno {
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 420px) {
  .inquiry-section-card { padding: 0; }
  .inquiry-tel .telno { font-size: 1.15rem; }
  .inquiry-txt { font-size: 1.25rem; }
  #inquiry .card-header { font-size: 1.25rem; }
  .card-caution { font-size: 1.15rem; }
}


/* -----------------------------------------------
   問合せ(contact)フォーム（既存互換）
   ----------------------------------------------- */
.es_form .col-form-label {
  border-bottom: 1px solid #efefef;
  text-align: left;
}
.es_form .col-form-label > .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 105%;
  gap: 0.75rem;
}
.es_form .badge {
  font-size: 90%;
  padding: .35em .4em;
  margin-left: auto;
  flex: 0 0 auto;
}
.form-title { font-weight: bold; }
.privacy {
  overflow-y: scroll;
  width: 100%;
  height: 200px;
  border: 1px solid #efefef;
  border-radius: var(--radius);
}
.privacy-inner {
  padding: 5px 10px;
  font-size: 90%;
  color: #828282;
}
.privacy-notice { font-size: .9rem; }
.privacy-notice li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f111";
  margin-right: 5px;
  color: var(--teal);
  font-size: .5em;
  vertical-align: middle;
}
.captcha-box { padding: 10px 0; }
.contact-from-btn {
  margin: 0 auto 3rem auto;
  width: max-content;
}
.contact-from-btn .btn-pcont {
  padding: 0.5rem 1.5rem;
}

@media screen and (max-width: 420px) {
  .es_form .col-form-label { border-bottom: none; }
  .form-control { font-size: 16px; }
}


/* -----------------------------------------------
   FAQページ（既存互換）
   ----------------------------------------------- */
.search-select { overflow: hidden; }
.qa-box {
  width: 100%;
  display: block;
  padding: 1rem .5rem;
  border-top: 1px solid #efefef;
}
.qa-box:last-child { border-bottom: 1px solid #efefef; }
.over-flow { overflow: hidden; }
.over-flow dt { float: left; width: 26%; }
.over-flow dd { float: right; margin: 0; }
.font-red { color: red; font-weight: bold; }
.font-b { font-weight: bold; }


/* -----------------------------------------------
   PrivacyPolicyページ（既存互換）
   ----------------------------------------------- */
.privacy-headline {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 3rem;
}
.privacy-infobox { margin-bottom: 6.5rem; }
.privacy-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #363636;
}
.privacy-txt {
  width: 100%;
  display: block;
  color: #363636;
}
.privacy-table th {
  background: var(--teal);
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.privacy-table td { vertical-align: middle; }
.num-list { list-style: auto; }

@media screen and (max-width: 420px) {
  .privacy-headline {
    font-size: 1.25rem;
    text-align: center;
  }
}


/* -----------------------------------------------
   督促案内ページ（既存互換）
   ----------------------------------------------- */
.demand-message-area {
  margin-left: 10%;
  margin-right: 10%;
  overflow-wrap: break-word;
}
.demand-color-blue { color: #0000FF; }
.demand-color-red { color: #FF0000; }
.demand-logo-area { float: right; text-align: center; }
.demand-es-logo { max-width: 200px; }
.electronic-demand-line-blue { border: 1px solid #0000ff; }
.electronic-demand-line-red { border: 1px solid #ff0000; }


/* -----------------------------------------------
   LinguaLink用ページ（既存互換）
   ----------------------------------------------- */
#lingualink {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.lingualink h3 { font-size: 1.5rem; }
.lingualink .text {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 50px;
}
#lingualink .mb5 { margin-bottom: 50px; }
#lingualink .mb1 { margin-bottom: 10px; }
.l-linkbox ol.no-dot {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-linkbox ol.no-dot>li {
  padding-left: 1.3em;
  text-indent: -1.3em;
  line-height: 1.6;
  margin-bottom: 0.8em;
}
.l-linkbox .note {
  margin-top: 1.5em;
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
}
strong {
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 1em;
}
.contract-clause p { margin: 0 0 1em; }


/* -----------------------------------------------
   ページ内リンク補正
   ----------------------------------------------- */
#about,#billing,#callcenter,#support,#greeting,#prof,#base,#history,#corp-form,#indivi-form,#corp-faq,#indivi-faq,#corp-demand,#transport,#base-list,#group {
  padding-top: 80px;
  margin-top: -80px;
}
.section-block#billing,
.section-block#callcenter,
.section-block#support,
.section-block#transport {
  margin-top: 0;
}


/* -----------------------------------------------
   ユーティリティ
   ----------------------------------------------- */
.wdt50 { width: 50%; }
.info-cov {
  border: 5px solid #ffd6a8;
  margin: 10px;
  padding: 5px;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
}
.info-cov a { color: #ed7d31 !important; }

.posts-news .post:not(:last-child) {
  border-bottom: 1px solid #e0e5ec;
  padding-bottom: 16px;
}
.post h2 { font-size: 1rem; }
.posts-news .post--date { margin-right: 8px; }
.posts-news p { margin: 0; }
.post--date { color: #777; }
.s_eirList_item_new {
  display: inline-block;
  background-color: #F90;
  vertical-align: middle;
  padding: 0px 10px;
  line-height: 15px;
  color: #FFF;
  font: 0.6rem 'メイリオ', Meiryo, sans-serif;
}

span.aks { display: inline-block; }

.btn-area { padding: 0 15px; }
.btn-area .btn-success {
  background: var(--teal);
  border: var(--teal);
  padding: 25px;
}
.btn-area .btn-success:hover {
  background: var(--teal-dark);
  border: var(--teal-dark);
}
.btn-area .btn-success.mail-icon:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 5px;
}
.btn-area .btn-success.faq-icon:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f059";
  margin-right: 5px;
}

.headline-area {
  font-size: 2rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 3rem;
}
.headline-area-v2 {
  font-size: 2rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 2rem;
}
.headline-area:before {
  content:'';
  background: url(../imgs/icons/dot-l.png);
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
}
.headline-area:after {
  content:'';
  background: url(../imgs/icons/dot-r.png);
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
}

.worry-text {
  font-size: 110%;
  padding: 0.5rem 0 0 2rem;
  background: url(../imgs/icons/icon05.png) no-repeat 0 0.5rem;
}
.about-section {
  background: url(../imgs/contents/section01-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 1.5rem;
}
.about-section-nobg { padding: 1.5rem; }
.about-txt-box {
  background: rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media screen and (max-width: 420px) {
  .headline-area { font-size: 1.25rem; }
  .headline-area:before,.headline-area:after {
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
  }
  .about-txt-box { padding: 1.5rem 0; }
  .worry-text {
    font-size: 100%;
    background: url(../imgs/icons/icon05-sp.png) no-repeat 0 0.7rem;
  }
  .headline-area.inquiry-headline:before,
  .headline-area.inquiry-headline:after { display: none; }
  .inquiry-headline { margin-bottom: 0; }
}


/* -----------------------------------------------
   旧レイアウト互換 — メリット背景など
   ----------------------------------------------- */
.merit-bg {
  background: url(../imgs/contents/merit-bg.jpg);
  background-repeat: no-repeat;
}
.note {
  margin: 2em 0;
  font-weight: bold;
  padding: 0.3em 1em 0em 1em;
}
.note-inner {
  background-image: linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 98%, #646464 100%);
  background-size: 100% 2em;
  line-height: 2em;
  padding: 2em 1em 0.2em 1em;
  font-size: 1.75rem;
}
.note-txt:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  margin-right: 5px;
}
.card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
}

@media screen and (max-width: 420px) {
  .note-inner { font-size: 1.25rem; }
}

.paralax-bg { position: relative; width: 100%; }
.paralax-bg img { z-index: -999; }
.paralax-inner {
  position: absolute;
  width: 100%;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.paralax-inner .headline-area { color: #fff; }
.paralax-inner .headline-area:before {
  background: url(../imgs/icons/dot-l-w.png);
  background-size: 45px 45px;
}
.paralax-inner .headline-area:after {
  background: url(../imgs/icons/dot-r-w.png);
  background-size: 45px 45px;
}

.bg-gray { background: #efefef; }
.txt-block,.card-block {
  width: 100%;
  display: block;
  padding: 15px;
}
.section-btn-area { padding-top: 2rem; }
.val-text { position: relative; }
.pos-mid { position: absolute; top: 25%; }
.under-line {
  box-shadow: 0 0 0.2rem 0.2rem #bedfff;
  width: 50%;
  margin: 0 auto;
}

.list-unstyled li.vw { font-size: 1.5vw; }
@media screen and (max-width: 420px) {
  .list-unstyled li.vw { font-size: 3.5vw; }
}
