/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors */
  --color-primary: #003F74;
  --color-primary-dark: #070841;
  --color-primary-light: #028BB9;
  --color-accent: #e8640a;
  --color-accent-hover: #d05508;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-border: #e0e4ea;
  --color-blue-mid: #1e4d8c;

  /* Typography */
  --font-family: 'Barlow', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 26px;
  --font-size-4xl: 36px;
  --font-size-title: 68px;
  --font-size-sub-title: 20px;

  @media screen and (max-width: 768px) {
    --font-size-title: 42px;
    --font-size-sub-title: 18px;
  }

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 40px;
  --container-pad-sp: 20px;
  --header-height: 100px;
  --header-height-sp: 60px;

  @media screen and (max-width: 1024px) {
    --header-height: 60px;
  }

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-navy: 0 0 10px var(--color-primary);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: auto-phrase;
  transition: 0.4s all;
}

p {
  line-height: 1.5;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

.spbr {
  display: none;
}

/* ============================================
   Utilities
   ============================================ */
section {
  overflow: hidden;
}

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

.section {
  padding: var(--space-5xl) 0;
}

.section--gray {
  /* background-color: var(--color-bg-gray); */
}

.section--navy {
  background-color: var(--color-navy-bg);
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 28px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.4s all;
  text-decoration: none;
  white-space: nowrap;
  min-width: 260px;
  position: relative;
  width: fit-content;
  margin-left: auto;
}

.btn--primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transition: 0.4s all;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

#news .btn--nav {
  gap: 3rem;
}

.btn--nav {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 12px 12px 12px 24px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  transition: 0.4s all;
}

.btn--nav:hover {
  opacity: 1;
  background: var(--color-primary-dark);
}

.btn--nav .btn__arrow {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn--nav .btn__arrow svg {
  transition: 0.4s all;
}

.btn--nav:hover .btn__arrow svg {
  transform: translateX(3px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  transition: 0.4s all;
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

.btn--navy {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--font-size-xs);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

.btn--full {
  width: 100%;
}

.btn--about {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-full);
  padding: 12px 12px 12px 24px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn--about .btn__arrow {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
}

.arrow-icon::after {
  content: '›';
  font-size: 1.2em;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header__logo .custom-logo {
  height: 40px;
  width: auto;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--container-pad);
  max-width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 36px;
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: 5px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
  transition: 0.4s all;
}

.header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: 0.4s transform var(--transition-base);
}

.header__nav-item a:hover::after {
  transform: scaleX(1);
}

.header__nav-item a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__recruit {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  background: linear-gradient(to left, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 18px;
  font-weight: 700;
  margin-right: 3vw;
}

.header__contact {
  transition: 0.4s all;
}

.header__contact:hover {
  opacity: 0.85;
}

.header__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.header__contact-icon img {
  width: 100%;
  height: auto;
}

.header__tel-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__tel-badge {
  font-size: 10px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header__tel-number {
  font-size: var(--font-size-3xl);
  font-weight: 300;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header__tel-number .tel_wrap {
  display: flex;
  align-items: center;
}

.header__tel-number .tel_wrap img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 5px;
}

.header__tel-hours {
  font-size: 14px;
  color: var(--color-text);
}

.header__contact {
  display: inline-flex;
  align-items: end;
  gap: 10px;
  background: linear-gradient(to bottom right, #f5a623, #e85000);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 28px;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  transition: opacity 0.4s;
  white-space: nowrap;
  height: 80px;
  align-self: flex-start;
}

.header__contact:hover {
  opacity: 0.85;
}

.header__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.header__contact-icon img {
  width: 100%;
  height: auto;
}

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  width: 55px;
  height: 100%;
  background: linear-gradient(to left, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 1340px) {

  .header__recruit,
  .header__nav-item a {
    font-size: 0.8vw;
  }

  .header__inner {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 0 0 var(--container-pad);
    justify-content: end;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__contact {
    height: 100%;
    align-items: center;
    border-radius: 0;
  }

  .header__contact-icon {
    display: none;
  }
}

/* ============================================
   SP Drawer Menu
   ============================================ */
.sp-drawer {
  display: none;
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.sp-drawer.is-open {
  transform: translateX(0);
}

.sp-drawer__nav {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.sp-drawer__nav-item {
  border-bottom: 1px solid var(--color-border);
}

.sp-drawer__nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.sp-drawer__nav-item a::after {
  content: '›';
  color: var(--color-text-muted);
}

.sp-drawer__actions {
  padding: var(--space-xl);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.btn__recruit {
  background: linear-gradient(to left, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
}

.btn__contact {
  font-size: 18px;
  padding: 18px inherit !important;
  border-radius: 8px;
  background: linear-gradient(to bottom right, #f5a623, #e85000);
  color: var(--color-white);
  justify-content: center;
  gap: 5px;
}

.sp-drawer__tel-section {
  text-align: center;
  padding: var(--space-md) var(--space-xl);
}

.sp-drawer__tel-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.sp-drawer__tel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 300;
}

.sp-drawer__tel-link .tel_wrap {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sp-drawer__tel-link .tel_wrap img {
  width: 23px;
  height: 23px;
}

.sp-drawer__tel-link p {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 300;
}

.btn__contact img {
  width: 23px;
  height: 23px;
}

/* ============================================
   Hero Section — Mosaic Grid Layout
   ============================================ */
.hero {
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.page-hero__overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #028BB9 30%, #070841 100%);
  position: absolute;
  opacity: 0.8;
}

.page-hero__overlay {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.hero__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  grid-template-rows: 30vh 30vh 30vh 30vh 30vh 30vh;
  width: 120%;
  transform: translate(-10%, 0);
  gap: 8px;
  padding: 8px;
  min-height: calc(142vh - var(--header-height));
  position: relative;
  z-index: 2;
}

.hero__mosaic,
.hero__mosaic * {
  pointer-events: none;
}

.hero__block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero__block--img1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--color-black);
}

.hero__block--img2 {
  grid-column: 3 / 3;
  grid-row: 1 / 1;
  background: var(--color-bg-gray);
}

.hero__block--img3 {
  grid-column: 4 / 5;
  grid-row: 1 / 1;
  background: var(--color-bg-gray);
}

.hero__block--img4 {
  grid-column: 1;
  grid-row: 3;
  background: var(--color-primary-dark);
}

.hero__block--text {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.hero__block--img5 {
  grid-column: 3 / 5;
  grid-row: 3;
  background: var(--color-bg-gray);
}

.hero__block--card {
  grid-column: 2;
  grid-row: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
}

.hero__block--card>p {
  color: var(--color-white);
  font-size: 22px;
}

.hero__block--img6 {
  grid-column: 5;
  grid-row: 2 / 4;
  background: var(--color-bg-gray);
}

.hero__block--img7 {
  grid-column: 3;
  grid-row: 4;
  background: var(--color-primary);
}

.hero__block--img8 {
  grid-row: 4 / 6;
  grid-column: 4 / 6;
  background: var(--color-bg-gray);
}

.hero__block--img9 {
  grid-column: 4 / 6;
  grid-row: 6 / 8;
  background: var(--color-black);
}

.hero__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__block-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.4);
}

.hero__block--img1 .hero__block-placeholder,
.hero__block--img9 .hero__block-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.hero__block--img2 .hero__block-placeholder,
.hero__block--img3 .hero__block-placeholder,
.hero__block--img5 .hero__block-placeholder,
.hero__block--img6 .hero__block-placeholder,
.hero__block--img8 .hero__block-placeholder,
.hero__block--img10 .hero__block-placeholder {
  color: var(--color-text-muted);
  font-size: 11px;
}

.hero__catch {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 2%;
}

.hero__sub {
  font-size: 20px;
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero__card-title {
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.hero__card-text {
  font-size: 22px;
  color: var(--color-white);
}

.hero__free-badge {
  position: fixed;
  top: calc(var(--header-height) + 8px);
  right: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-navy);
  text-align: center;
  z-index: 100;
  width: 238px;
  border: 2px solid var(--color-blue-mid);
}

.hero__free-badge-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
  padding: 0;
  background: var(--color-blue-mid);
  border-radius: 0 5px 0 8px;
}

.hero__free-badge-close:hover {
  background: var(--color-bg);
  color: var(--color-blue-mid);
}

.hero__free-badge-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.hero__free-badge-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero__free-badge-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
  font-weight: 300;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  border-radius: var(--radius-sm);
  padding: 6px;
}

.hero__free-badge-tel img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.hero__free-badge-hours {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.hero__free-badge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  background: linear-gradient(to left, var(--color-accent) 30%, #FF8C00 100%);
  color: var(--color-white);
  font-size: 18px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-slow);
}

.hero__free-badge-btn:hover {
  opacity: 0.8;
}

.hero__free-badge-btn img {
  width: 25px;
  height: 25px;
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: linear-gradient(225deg, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
  padding: var(--space-5xl) 0;
  position: absolute;
  bottom: 2rem;
  z-index: 1;
  width: 98%;
  right: 0;
  padding-bottom: 5rem;
  padding-top: 135vh;
  border-bottom-left-radius: 100px;
  overflow: hidden;
}

section#about::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
  z-index: 0;
  background-repeat: no-repeat;
}

.about .container {
  margin-left: 5%;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.-x-about {
  position: relative;
  padding-left: 1rem;
  margin-bottom: var(--space-lg);
}

.-x-about::before {
  content: "";
  background: #fff;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 700px;
}

.about__label.-x-ttl {
  font-size: var(--font-size-title);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
  padding-left: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.about__label {
  font-size: var(--font-size-sub-title);
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0.8em;
}

.about__text {
  display: flex;
  flex-direction: column;
}

.about__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.6;
}

.about__lead {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.about__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.btn--about {
  background: var(--color-white);
  color: var(--color-text);
  justify-content: space-between;
  gap: 2.5rem;
}

.btn--about:hover {
  opacity: 0.9;
}

.btn--about:hover .btn__arrow svg {
  transform: translateX(3px);
}

.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.btn__arrow svg {
  width: 25px;
  height: 10px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.4s all;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: var(--space-5xl) 0;
  position: relative;
}

.features::before {
  content: "";
  width: 100%;
  height: 200vh;
  bottom: 45%;
  right: 2%;
  background-color: #E6F3F8;
  position: absolute;
  z-index: -2;
  border-bottom-right-radius: 5rem;
}

.features .container {
  position: relative;
}

.features .container::before {
  content: "";
  max-width: 300px;
  max-height: 300px;
  width: 30%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: -1;
}

.features__heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features__heading-text {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-primary);
  text-align: left;
}

.features .container::after {
  /* content: "";
  position: absolute;
  width: 370px;
  height: 220px;
  background-color: rgba(0, 0, 0, 0.1);
  right: -25%;
  top: 20%;
  z-index: -1;
  border-top-left-radius: 50px; */
}

.features__heading::before {
  /* content: "";
  position: absolute;
  width: 370px;
  height: 220px;
  background-color: rgba(0, 0, 0, 0.1);
  left: -25%;
  top: 13%;
  z-index: -1;
  border-radius: 50px 50px 0 0; */
}

.features__heading::after {
  /* content: ""; */
}

.features__heading-text em {
  font-style: normal;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.57px solid var(--color-primary);
  transition: box-shadow var(--transition-base);
}

.feature-card__image {
  aspect-ratio: 16/9;
  background: var(--color-bg-gray);
  overflow: hidden;
  position: relative;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.feature-card__icon {
  position: absolute;
  width: 70px;
  height: 70px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #A6D8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.feature-card__body {
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  position: relative;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.feature-card__title span {
  font-size: 18px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--color-text-light);
}

/* ============================================
   Support Section
   ============================================ */
.support {
  padding: var(--space-5xl) 0 19vw;
  padding-top: 0;
  background: var(--color-white);
}

@media screen and (max-width: 1400px) {
  .support {
    padding-bottom: var(--space-5xl);
  }
}

.support__top {
  margin-bottom: var(--space-3xl);
}

.support__tagline {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.support__tagline em {
  color: var(--color-accent);
  font-style: normal;
}

.support__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.-x-common-ttl {
  position: relative;
}

.price .-x-common-ttl::before {
  height: 70%;
}

.-x-common-ttl::before {
  position: absolute;
  width: 3px;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: var(--color-accent);
}

.-x-common-ttl .section-label,
.-x-common-ttl .section-title {
  padding-left: 1rem;
}

.-x-common-ttl .section-label {
  color: var(--color-primary);
  font-size: var(--font-size-title);
}

.-x-common-ttl .section-title {
  color: var(--color-black);
  font-size: 20px;
  margin-top: 0.8em;
}

.support__grid {
  width: 100%;
  display: flex;
}

.support__wrap {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.support-card {
  background: linear-gradient(225deg, rgba(2, 139, 185, 0.1) 30%, rgba(7, 8, 65, 0.1) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: box-shadow var(--transition-base);
}

.support-card__icon {
  width: 40%;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card:first-of-type .support-card__icon img {
  margin-left: 10px;
}

.support-card__icon img {
  width: 50%;
  height: auto;
  aspect-ratio: 1 / 1;
  fill: var(--color-white);
}

.support__img_wrap {
  width: 50%;
  position: absolute;
  right: 0;
}

.support__img_wrap img {
  height: 100%;
  max-height: 850px;
  margin-left: auto;
  border-bottom-left-radius: 200px;
}

.support-card__title {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.support-card__list {
  list-style: none;
}

.support-card__list li {
  font-size: 24px;
  padding: 2px 0;
  padding-left: 1em;
  position: relative;
}

.support-card__list li::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
}

/* ============================================
   Price Section
   ============================================ */
.price {
  padding: var(--space-5xl) 0 0;
}

.price .container {
  position: relative;
  z-index: 1;
}

.price__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 90px 200px;
}

.price__note {
  grid-column: 1;
  grid-row: 2;
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.price__plans {
  grid-column: 2;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.price__footnote {
  grid-column: 2;
  grid-row: 3;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-top: var(--space-md);
}

.price__left div:has(.btn) {
  grid-column: 1;
  grid-row: 3;
}

.price-plan {
  background: linear-gradient(to left, var(--color-primary-light) 30%, #305599 100%);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-border);
}

.price-plan__label {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.price-plan__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-align: right;
}

.price-plan__prefix {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.price-plan__num {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.price-plan__unit {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.price__right {
  aspect-ratio: 16/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  overflow: hidden;
}

.price__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 80px;
  border-bottom-left-radius: 200px;
}

.-x-common-ttl {
  margin-bottom: var(--space-xl);
}

section#price {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

section#price::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 40px;
  z-index: 0;
}

section#price::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 40px;
  z-index: 0;
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
}

.price__top {
  margin-bottom: 4rem;
}

.price_btn_wrap p {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.price__tagline {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.price .-x-common-ttl {
  margin-bottom: 0;
}

@media screen and (max-width: 1280px) {

  .price__right img,
  section#price::before,
  section#price::after {
    margin-left: 0;
  }
}

/* ============================================
   News Section
   ============================================ */
.news {
  padding: var(--space-5xl) 0;
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .news {
    padding-bottom: 0;
  }
}

.news__inner {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: var(--space-4xl);
  align-items: flex-start;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news__item+.news__item {
  border-top: 1px solid var(--color-border);
}

.news__item a {
  display: grid;
  grid-template-columns: 100px 80px 1fr 10px;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  color: var(--color-text);
  transition: 0.4s all;
  position: relative;
}

.news__item a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

.news__item a:hover {
  color: var(--color-accent) !important;
  opacity: 0.8;
}

.news__item-date {
  font-size: var(--font-size-sm);
  color: #96A3B0;
  white-space: nowrap;
}

.news__item-tag {
  font-size: 15px;
  color: var(--color-white);
  background-color: #96A3B0;
  padding: 7px 15px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
}

.news__item-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
}

.news__item-arrow {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

/* ============================================
   CTA / Contact Section
   ============================================ */
body:not(:has(.home)) .cta {
  margin-bottom: 140px;
}

body.home .cta {
  margin-bottom: 3rem;
}

.cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, #f57c20 100%);
  padding: var(--space-2xl) 0;
  width: 90%;
  margin: 3rem auto;
  border-radius: 20px;
  max-width: 1200px;
}

.cta__inner {
  text-align: center;
}

.cta__label {
  width: 150px;
  margin: 0 auto;
  font-size: var(--font-size-sm);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-family: serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta__title {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta__subtitle {
  display: none;
}

.cta__title span {
  font-size: 20px;
  margin-top: 20px;
  display: block;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta__tel-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.cta__tel-link {
  width: 260px;
  height: 60px;
  font-size: 24px;
  font-weight: 300;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-full);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cta__tel-link img {
  width: 25px;
  aspect-ratio: 1/1;
}

.cta__tel-hours {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.cta__block-label {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-align: center;
  flex-direction: column-reverse;
}

.btn--navy {
  font-size: 24px;
  width: 260px;
  height: 60px;
  background: var(--color-primary);
  border: 1px solid var(--color-white);
  color: var(--color-white);
  border-radius: var(--radius-full);
  justify-content: center;
  gap: 5px;
}

.btn--navy img {
  width: 25px;
  aspect-ratio: 1/1;
}

/* ============================================
   Banner Section
   ============================================ */
.banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
}

.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--container-pad);
}

.banner__catch {
  font-size: 56px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 30px #333;
}

.banner__catch em {
  color: var(--color-highlight);
  font-style: normal;
}

.banner__sub {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-2xl);
  text-shadow: 0 0 30px #333;
}

.banner__scroll {
  display: flex;
  justify-content: center;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ============================================
   CTA背景セクション
   ============================================ */
.cta_bg_wrap {
  position: relative;
}

.cta_bg_wrap>* {
  position: relative;
  z-index: 1;
}

.cta_bg_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.cta_bg_wrap::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, black 40%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, black 40%);
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .cta_bg_wrap::before {
    height: 50%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 6%, black 60%);
    mask-image: linear-gradient(to bottom, transparent 6%, black 60%);
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(to left, var(--color-primary-light) 10%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -39.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 102px;
  height: 40px;
  background-color: #26628f;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@media screen and (max-width: 768px) {
  .footer::before {
    background: linear-gradient(to left, #0f7ba0 13%, #2b2c6c 121%);
  }
}

.footer::after {
  content: "";
  display: block;
  position: absolute;
  top: -1%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

.footer__inner {
  display: grid;
  text-align: center;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}

.footer__logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.footer__address {
  font-size: 16px;
  color: var(--color-white);
}

.footer__nav-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer__nav-col {
  order: -1;
}

.footer__nav-col .menu {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.footer__nav-list a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer__nav-list a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__bottom {
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: var(--space-md);
  position: relative;
  z-index: 3;
}

.footer__brand a {
  display: block;
  margin: 40px auto 20px;
  width: 13%;
}

.footer__brand a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__copy {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit {
  font-size: var(--font-size-xs);
  color: var(--color-white);
}

.footer .container {
  padding: var(--space-2xl) 2rem var(--space-xl);
  position: relative;
  width: 100%;
  max-width: 100%;
}

.footer .container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
}

.to_top_link {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
}

/* ============================================
   下層ページ MV
   ============================================ */
.hero-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #1a4a8a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: 70px;
  border-bottom-left-radius: 200px;
}

@media screen and (max-width: 1024px) {
  .hero-wrap {
    margin-top: 30px;
    border-bottom-left-radius: 150px;
  }
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 50, 120, 0.92) 0%,
      rgba(20, 80, 160, 0.75) 50%,
      rgba(30, 100, 180, 0.55) 100%);
  z-index: 1;
}

.page-hero__content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .page-hero__content {
    left: 30px;
  }
}

.page-hero__title-block {
  border-left: 3px solid #fff;
  padding-left: 16px;
}

.page-hero__title-en {
  font-size: 76px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

@media screen and (max-width: 768px) {
  .page-hero__title-en {
    font-size: 50px;
  }
}

.page-hero__title-ja {
  font-size: 20px;
  margin-top: 0.8em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .page-hero__title-ja {
    font-size: 18px;
  }
}

/* ============================================
   SP固定フッターバー
   ============================================ */
.sp-fixed-bar {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  .sp-fixed-bar__title {
    color: var(--color-primary);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
  }

  .sp-fixed-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .sp-fixed-bar__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 3px;
    background: #fff;
    text-decoration: none;
    border: 2px solid var(--color-accent);
  }

  .telnum_wrap {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .sp-fixed-bar__tel img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .sp-fixed-bar__tel-num {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
  }

  .sp-fixed-bar__tel-hours {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    margin-top: 2px;
  }

  .sp-fixed-bar__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 3px;
    background: linear-gradient(to left, var(--color-accent) 30%, #FF8C00 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s all;
  }

  .sp-fixed-bar__contact img {
    width: 22px;
    height: 22px;
  }

  body {
    padding-bottom: 123px;
  }
}

@media screen and (max-width: 435px) {

  .sp-fixed-bar__contact,
  .sp-fixed-bar__tel-num {
    font-size: 5vw;
  }

  .sp-fixed-bar__tel-hours {
    font-size: 3vw;
  }
}

.page-hero__breadcrumb {
  display: flex;
  justify-content: right;
  margin-right: 20px;
  padding: 18px 40px 18px 0;
  gap: 5px;
}

.page-hero__breadcrumb span {
  font-size: 14px;
}

.page-hero__breadcrumb span>a {
  padding-bottom: 3px;
  text-decoration: underline 1px solid var(--color-text);
}

@media screen and (max-width: 768px) {
  .page-hero__breadcrumb {
    display: none;
  }
}

@media screen and (max-width: 1450px) {
  .header__nav {
    gap: 1vw;
  }

  .header__recruit {
    margin-right: 1vw;
  }
}

/* ============================================
   Responsive — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: 24px;
  }

  section#about::after {
    background: none !important;
  }

  .features {
    z-index: 2;
    top: 5rem;
    z-index: 0;
  }

  .features::before {
    right: 0;
  }

  .features .container {
    margin-top: 3rem;
  }

  .hero {
    background: linear-gradient(to left, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
    border-bottom-left-radius: 100px;
    top: 5rem;
    padding-top: 0 !important;
    overflow: visible;
  }

  .hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: multiply;
    z-index: 0;
    background-repeat: no-repeat;
    top: 5rem;
  }

  .header__nav-list,
  .header__recruit,
  .header__tel-block {
    display: none;
  }

  .header__contact {
    display: flex;
  }

  .header__menu-btn {
    display: flex;
  }

  .sp-drawer {
    display: block;
  }

  .hero__mosaic {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 0.2fr;
    grid-template-rows: 110px 110px 300px 110px 110px 200px 250px 100px;
    width: 100%;
    transform: none;
    min-height: auto;
    gap: 6px;
    padding: 6px;
    margin-top: 0rem;
    top: -1rem;
  }

  .hero__block--text {
    grid-column: 1 / 5;
    grid-row: 3;
    padding: 20px 40px;
  }

  .hero__block--img1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    order: 1;
  }

  .hero__block--card {
    grid-column: 1 / 5;
    grid-row: 6;
  }

  .hero__block--card>p {
    color: var(--color-white);
    font-size: 22px;
  }

  .hero__block--img2 {
    grid-column: 3 / 5;
    grid-row: 1;
    order: 2;
  }

  .hero__block--img3 {
    grid-column: 3 / 5;
    grid-row: 2;
    order: 3;
  }

  .hero__block--img4 {
    grid-column: 2 / 3;
    grid-row: 5;
  }

  .hero__block--img5 {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    order: 4;
  }

  .hero__block--img6 {
    grid-column: 3 / 5;
    grid-row: 4 / 6;
    order: 5;
  }

  .hero__block--img7 {
    grid-column: 1 / 1;
    grid-row: 5;
  }

  .hero__block--img8 {
    grid-column: 1 / 4;
    grid-row: 7;
  }

  .hero__block--img9 {
    grid-column: 2 / 4;
    grid-row: 8;
  }

  .hero__catch {
    font-size: 32px;
  }

  .hero__sub {
    font-size: 14px;
  }

  .support {
    padding-top: 5rem;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price__inner {
    display: flex;
    flex-direction: column;
  }

  .price__left {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .price__right {
    width: 100%;
  }

  .news__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
  }

  .support-card__list li {
    font-size: 2vw;
  }

  /* .features .container::after,
  .features__heading::before,
  .features__heading::after {
    content: inherit;
  } */

  .about {
    width: 100%;
    position: inherit;
    padding-bottom: inherit;
    padding-top: 3rem;
    margin-left: auto;
    background: none;
    border-radius: 0;
    padding-bottom: 3rem;
  }

  .about::after {
    background: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

/* ============================================
   Responsive — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-pad: var(--container-pad-sp);
    --space-5xl: 64px;
    --space-4xl: 48px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px !important;
  }

  .btn__arrow {
    position: absolute;
    right: 16px;
  }

  .btn--about,
  .btn--nav {
    width: 100%;
  }

  .btn--nav {
    order: 4;
    margin: 2rem auto;
  }

  .header {
    height: var(--header-height-sp);
  }

  .hero {
    padding-top: var(--header-height-sp);
    width: 100%;
  }

  .hero__block--text {
    grid-column: 1 / 5;
  }

  .hero__block--card {
    grid-column: 1 / 5;
  }

  .hero__block--img9 {
    grid-column: 2 / 4;
  }

  .hero__catch {
    font-size: 32px;
  }

  .hero__free-badge {
    display: none;
  }

  .-x-common-ttl {
    padding-left: 0;
  }

  .-x-common-ttl .section-title {
    margin-top: 0;
  }

  .features .container::before {
    width: 250px;
    right: 48%;
    transform: translateX(50%);
    top: 2%;
  }

  .features::before {
    bottom: 10%;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  #support .container,
  .support-card {
    display: flex;
    flex-direction: column;
  }

  .support-card__body,
  .support-card__icon {
    margin: 0 auto;
  }

  .support-card__title {
    text-align: center;
    font-size: 26px;
  }

  .support__grid,
  .support__header {
    display: contents;
  }

  .support__top {
    order: 1;
  }

  #support .-x-common-ttl {
    order: 2;
  }

  .support__wrap {
    order: 3;
    width: 100%;
  }

  .support__img_wrap {
    order: 5;
    position: relative;
    height: auto;
    aspect-ratio: 1 / 1;
    width: 120%;
    margin-left: -20px;
  }

  .support__img_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 150px;
  }

  .support-card__list li {
    font-size: 20px;
  }

  .support__tagline {
    font-size: 24px;
  }

  .price__tagline {
    font-size: 24px;
  }

  .price-plan {
    flex-direction: column;
  }

  .price-plan__label {
    font-size: 23px;
  }

  .price-plan__num {
    font-size: 38px;
  }

  .price-plan__unit {
    font-size: 14px;
  }

  .price .-x-common-ttl {
    margin-bottom: 1.5rem;
  }

  .price .-x-common-ttl::before {
    height: 100%;
  }

  .price__right img {
    border-bottom-left-radius: 150px;
    /* margin-left: 10px; */
  }

  section#price::after {
    margin-left: 0;
  }

  section:has(.price__right),
  section#price {
    margin-left: 10px;
  }

  .news__item a {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
  }

  .news__item-title {
    width: 100%;
  }

  .news__left {
    display: contents;
  }

  .cta__tel-block {
    flex-direction: column-reverse;
  }

  .cta__title {
    font-size: 44px;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__tel-link {
    width: 100%;
    order: 3;
  }

  .cta__block-label {
    order: 1;
    margin-bottom: 0;
  }

  .cta__tel-hours {
    order: 2;
    margin-bottom: var(--space-sm);
  }

  .banner {
    min-height: inherit;
  }

  .banner__catch {
    font-size: var(--font-size-2xl);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav-col .menu {
    flex-direction: column;
    gap: 0;
  }

  .footer__nav-col .menu li {
    padding: 1rem 0;
  }

  .menu-item+.menu-item {
    border-top: 1px solid var(--color-white);
  }

  .footer__brand a {
    width: 40%;
  }

  .spbr {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .about__inner {
    margin-right: 480px;
  }
}

/* ============================================
   アニメーション
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}


/* ============================================
   Section Header 共通
   ============================================ */
/* ===== Section Header 共通 ===== */
.section-header {
  margin-bottom: 48px;
}

.section-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.section-header__title {
  display: flex;
  height: 100%;
  width: 95%;
  gap: 10px;
  margin: 0;
  padding: 0 33px;
  align-items: center;
  border-radius: 35px;
  background: linear-gradient(225deg, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
}

.section-header__title-ja {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.section-header__title-en {
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

.section-header__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .section-header {
    margin: auto 40px 40px;
  }

  .section-header__title {
    justify-content: center;
  }

  .section-header__title-ja {
    font-size: 26px;
  }

  .section-header__title-en {
    display: none;
  }

  .section-header__circle {
    display: none;
  }

  .section-header__inner {
    justify-content: center;
  }

}

@media screen and (min-width: 459px) and (max-width: 1024px) {
  .section-header__title-ja {
    font-size: 3vw;
  }
}

@media screen and (max-width: 458px) {
  .section-header__title-ja {
    font-size: 5vw;
    font-size: clamp(18px, 5vw, 999px);
  }

  .section-header__title-en {
    display: none;
  }
}