/* =========================
  Base
========================= */

:root {
  --white: #fff;
  --black: #000;
  --red: #fe0100;
  --ctaRed: #e60013;
  --gold: #d1b049;
  --fz16: clamp(0.813rem, 0.746rem + 0.28vw, 1rem);
  --fz17: clamp(0.844rem, 0.791rem + 0.23vw, 1.063rem);
  --fz18: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  --fz20: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  --fz22: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
  --fz25: clamp(1.063rem, 0.941rem + 0.52vw, 1.563rem);
  --fz30: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
  --fz32: clamp(1.313rem, 1.146rem + 0.71vw, 2rem);
  --fz40: clamp(1.375rem, 1.223rem + 0.65vw, 2rem);
  --fz50: clamp(1.375rem, 0.95rem + 1.81vw, 3.125rem);
  --fz64: clamp(2rem, 1.515rem + 2.07vw, 4rem);
  --fz70: clamp(3.125rem, 2.822rem + 1.29vw, 4.375rem);
  --fz80: clamp(2.5rem, 1.893rem + 2.59vw, 5rem);
}

html {
  scroll-behavior: smooth;
  @media only screen and (max-width: 1024px) {
    scroll-padding-top: 72px;
  }
}

body {
  font-size: var(--fz16);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.66;
  letter-spacing: 0.02em;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
}

li {
  list-style: none;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
  @media only screen and (max-width: 499px) {
    padding: 0 16px;
  }
  @media only screen and (max-width: 349px) {
    padding: 0 10px;
  }
}
.page-container {
  margin-left: 200px;
  min-height: 100vh;
  @media only screen and (max-width: 1024px) {
    margin-left: 0;
    padding-top: 72px;
  }
}

.pc-only {
  display: block;
  @media only screen and (max-width: 899px) {
    display: none;
  }
}

.sp-only {
  display: none;
  @media only screen and (max-width: 899px) {
    display: block;
  }
}

/* ボタン */
.common__cta {
  display: grid;
  place-items: center;
  margin-top: 77px;
}

.common__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 210px;
  height: 60px;
  border-radius: 10px;
  background: var(--ctaRed);
  color: #fff;
  font-size: var(--fz25);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.common__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.common__btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.common__btn:hover .common__btn-arrow {
  transform: translateX(4px);
}

.common__btn-arrow img {
  display: block;
}

@media only screen and (max-width: 499px) {
  .common__cta {
    margin-top: 50px;
  }
  .common__btn {
    min-width: 200px;
    height: 45px;
    border-radius: 8px;
  }
}

/* Section Arrow */
.section-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}

.section-arrow img {
  display: block;
  width: 180px;
  height: auto;
}

@media (max-width: 768px) {
  .section-arrow {
    padding: 32px 0;
  }

  .section-arrow img {
    width: 110px;
  }
}
@media only screen and (max-width: 499px) {
  .section-arrow img {
    width: 90px;
  }
}
/* Section Title */
.common__head {
  text-align: center;
}
.common__lead {
  font-size: var(--fz22);
  margin-bottom: 25px;
}
.common__lead-accent {
  font-size: var(--fz40);
  color: var(--red);
}
.common__headline {
  opacity: 0;
  transform: translateY(16px);
}
.common__title {
  position: relative;
  font-size: var(--fz80);
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-bottom: 18px;
}

.common__title::after {
  content: "";
  position: absolute;
  width: 33%;
  margin: 0 auto;
  left: -4px;
  right: -4px;
  bottom: -20px;
  height: 10px;
  background: var(--red);
  z-index: -1;
}
.common__title-s {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  color: var(--red);
}
.common__catch {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: var(--fz30);
  position: relative;
  margin-top: 70px;
  opacity: 0;
  transform: translateY(12px);
}
.common__catch-line {
  display: block;
  width: min(800px, 75%);
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.common__catch-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.common___catch-strong {
  font-size: var(--fz50);
}
.common___catch-strong-red {
  display: inline-block;
  color: var(--red);
  margin-bottom: 0.1em;
}
.common__desc {
  font-size: var(--fz18);
  font-weight: 500;
  line-height: 1.83;
  max-width: 900px;
  margin: 25px auto 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .common__heading {
    margin-bottom: 34px;
  }
}

@media only screen and (max-width: 499px) {
  .common__lead {
    font-size: var(--fz22);
    margin-bottom: 15px;
  }
  .common__title::after {
    bottom: -18px;
    height: 7px;
  }
  .common__catch-strong {
    font-size: 20px;
  }
  .common__catch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    padding-bottom: 8px;
    margin-top: 35px;
  }
  .common__catch-line {
    width: 100%;
  }
  .common__desc {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 399px) {
  .common__catch-strong {
    font-size: 18px;
  }
  .common__catch {
    font-size: 16px;
  }
}
@media only screen and (max-width: 349px) {
  .common__catch-strong {
    font-size: 16px;
  }
  .common__catch {
    font-size: 14px;
  }
  .common__desc {
    font-size: 12px;
  }
}
/* =========================
 左斜クリップパス背景
========================= */
.lower-left__path {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 20rem;
  background: transparent;
  overflow: visible;
}

.lower-left__path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  z-index: 0;

  clip-path: polygon(0 15%, 100% 0, 100% 90%, 0 100%);
  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 75%, 0 100%);
}

.lower-left__path > * {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 899px) {
  .lower-left__path {
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 499px) {
  .lower-left__path {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
/* =========================
 右斜クリップパス背景
========================= */
.lower-right__path {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 8rem;
  background: transparent;
  overflow: visible;
}

.lower-right__path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  z-index: 0;
  clip-path: polygon(100% 15%, 0 0, 0 90%, 100% 100%);
  -webkit-clip-path: polygon(100% 20%, 0 0, 0 75%, 100% 100%);
}

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

/* =========================
       Loading
========================= */

.loading--stamp {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.loading__stage {
  width: min(520px, 88vw);
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

/* リップル（円） */
.loading__ring {
  position: absolute;
  width: min(520px, 88vw);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(230, 0, 19, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.75);
  z-index: 0;
}
.loading__ring--2 {
  border-color: rgba(209, 176, 73, 0.2);
}

/* ロゴ */
.loading__logoWrap {
  position: relative;
  width: min(260px, 56vw);
  z-index: 2;
  transform-origin: 50% 65%;
}
.loading__logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(22px) scale(1.05);
}

/* スタンプ影（床影） */
.loading__shadow {
  position: absolute;
  left: 50%;
  top: 105%;
  width: 72%;
  height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  opacity: 0;
  filter: blur(2px);
}

/* Loading文字（小さく上品） */
.loading__hint {
  margin-top: 18px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
}

/* ローディング中スクロール抑止 */
body.is-loading {
  overflow: hidden;
}
/* =========================
  Fade In（共通）
========================= */
/* fadein：初期状態 */
.fadein {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

/* すでに表示済み（JSで付与） */
.fadein.is-inview {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
/* =========================
  Sidebar Header（固定）
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  background: var(--white);
  z-index: 100;
}

.site-header__inner {
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ロゴ */
.site-header__logo {
  margin: 0 0 20px;
}

.site-header__logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  max-width: 90px;
  height: auto;
}

/* ナビ */
.site-header__nav {
  margin-top: 6px;
}

.site-header__nav-list {
  display: grid;
  gap: 30px;
  text-align: center;
}

.site-header__nav-item {
  margin: 0;
}

.site-header__nav-link {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-header__nav-link:hover {
  color: var(--red);
  transform: translateX(4px);
}

.site-header__nav-link:hover::after {
  transform: scaleX(1);
}

.site-header__nav-link.is-current {
  color: var(--red);
}

.site-header__nav-link.is-current::after {
  transform: scaleX(1);
}

/* CTA */
.site-header__cta {
  margin-top: 40px;
}

.site-header__cta-btn {
  background: linear-gradient(90deg, rgba(230, 0, 19, 0.9) 0%, rgba(254, 1, 0, 1) 100%);
  min-width: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz16);
  gap: 12px;
  border: 1px solid #a00e13;
  border-radius: 8px;
  color: var(--white);
  padding: 12px 20px 12px 14px;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.site-header__cta-btn:hover {
  transform: translateY(-2px);
}

.site-header__cta-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url("../images/top/icon-mail_white.png") center / contain no-repeat;
}

/* フッターInstagram */
.site-header__footer {
  padding-top: 24px;
}

.site-header__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-header__ig:hover {
  color: var(--red);
  transform: translateX(4px);
}

.site-header__ig-icon {
  display: block;
  transition: transform 0.25s ease;
}

.site-header__ig:hover .site-header__ig-icon {
  transform: rotate(-6deg);
}

.main-visual {
  min-height: 100vh;
}

.main-visual__pc {
  position: relative;
  height: 100vh;
}

.main-visual__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.main-visual__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  z-index: 2;
  pointer-events: none;
}

.main-visual__scroll {
  position: absolute;
  inset: 0;
  background: url("../images/top/nanaTOP.jpg?v=1.0.3") repeat-x;
  background-size: auto 100%;
  animation: mainScroll 35s linear infinite;
  will-change: background-position;
  z-index: 1;
}

@keyframes mainScroll {
  100% {
    background-position: -100% 0;
  }
}

body.is-loading .main-visual__copy {
  visibility: hidden;
  opacity: 0;
}
.main-visual__copy--svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 900px);
  z-index: 3;
  pointer-events: none;
}

.main-visual__copy--svg svg {
  width: 100%;
  height: auto;
  display: block;
}
/* 赤帯 */
.main-visual__ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  padding: clamp(140px, 22vw, 225px) clamp(16px, 4vw, 40px) clamp(16px, 3vw, 30px);
  background: var(--red);
  color: #fff;
  z-index: 6;
  clip-path: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
  text-align: center;
}

.main-visual__ribbon-text {
  position: relative;
}

.main-visual__ribbon-text p {
  display: inline-block;
  font-size: var(--fz30);
  text-align: center;
  white-space: nowrap;
  margin-left: 13em;
  text-indent: 1em;
}

.site-header__toggle,
.sp-menu {
  display: none;
}
@media (max-width: 1500px) {
  .main-visual__ribbon {
    width: 80%;
  }
  .main-visual__ribbon-text p {
    margin-left: 12em;
  }
}
@media (max-width: 1024px) {
  .site-header {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 16px;
  }

  .site-header__inner {
    height: auto;
    width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* PC用ナビ・CTA・Instagramは一旦非表示（SPメニューへ） */
  .site-header__nav,
  .site-header__cta,
  .site-header__footer {
    display: none;
  }

  /* ロゴ */
  .site-header__logo {
    margin: 0;
  }

  .site-header__logo img {
    max-width: 56px;
    margin-top: 10px;
  }

  /* ハンバーガー表示 */
  .site-header__toggle {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
  }

  .site-header__toggle-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
  }

  .site-header__toggle-line + .site-header__toggle-line {
    margin-top: 6px;
  }
  /* ===== OPEN時（×に変形） ===== */
  .site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle[aria-expanded="true"] .site-header__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-visual__pc {
    height: calc(100vh - 72px);
  }
  .main-visual__ribbon {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .sp-menu {
    display: block;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    z-index: 120;
    overflow: auto;
  }

  .sp-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sp-menu__nav {
    padding: 8px 18px 40px;
  }

  .sp-menu__list {
    display: grid;
    text-align: center;
  }

  .sp-menu__link {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .sp-menu__link.is-current {
    color: var(--red);
  }

  .sp-menu__cta {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    padding: 0 6px;
  }

  .sp-menu__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    padding: 14px 12px;
    font-weight: 700;
  }

  .sp-menu__cta-btn--contact {
    border: 2px solid var(--red);
    color: var(--red);
    background: var(--white);
  }

  .sp-menu__cta-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("../images/top/icon-mail.png") center / contain no-repeat;
  }

  .sp-menu__cta-btn--free {
    background: var(--gold);
    color: var(--white);
  }

  .sp-menu__footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
  }

  .sp-menu__ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .sp-menu__ig-icon {
    display: block;
  }
}
@media only screen and (max-width: 899px) {
  .main-visual__ribbon {
    width: 85%;
  }
  .main-visual__ribbon-text p {
    margin-left: 9.5em;
  }
}

@media (max-width: 768px) {
  .main-visual {
    min-height: auto;
    height: 100%;
  }
  .main-visual__copy-img {
    width: 100%;
  }

  .main-visual__ribbon {
    padding: clamp(130px, 18vw, 160px) clamp(14px, 4vw, 24px) clamp(14px, 3vw, 22px);
  }

  .main-visual__ribbon {
    width: 90%;
  }
  .main-visual__ribbon-text p {
    margin-left: 12em;
  }
}

@media only screen and (max-width: 499px) {
  .main-visual__pc {
    height: calc(90vh - 72px);
  }

  .site-header__logo img {
    max-width: 50px;
  }
  .main-visual__ribbon {
    width: 100%;
    padding: 180px 0 30px;
  }

  .main-visual__ribbon-text p {
    font-size: 14px;
    margin-left: 8.5em;
  }
}

@media only screen and (max-width: 399px) {
  .main-visual__ribbon {
    padding: 120px 0 10px;
  }
  .main-visual__ribbon-text p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 349px) {
  .main-visual__ribbon-text p {
    font-size: 12px;
  }
}
/* =========================
  Issues Section
========================= */
.issues {
  padding-block: 100px;
}

.issues__heading {
  text-align: center;
}

.issues__title {
  font-size: var(--fz30);
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.issues__title-em {
  font-size: var(--fz50);
  color: var(--red);
  padding: 0 7px;
}

.issues__title::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 10px;
  height: 10px;
  background: var(--gold);
  opacity: 0.85;
  z-index: -1;
}

.issues__lead {
  max-width: 950px;
  margin: 0 auto;
  font-size: var(--fz18);
  font-weight: 500;
  line-height: 1.83;
  text-align: left;
}

.issues__lead-em {
  color: var(--red);
}
/* 3カラム */
.issues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

/* カード */
.issues__card {
  display: flex;
  flex-direction: column;
}

.issues__card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 5px;
}

.issues__case {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.issues__case-label {
  font-size: var(--fz16);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}

.issues__case-num {
  font-size: var(--fz32);
  color: #a00e13;
}

.issues__card-title {
  font-size: var(--fz30);
}

.issues__list {
  display: grid;
  gap: 8px;
}

.issues__item {
  position: relative;
  font-size: var(--fz20);
  padding-left: 30px;
}

.issues__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.issues__figure {
  margin-top: 20px;
}

@media only screen and (max-width: 1440px) {
  .issues {
    padding-block: 70px;
  }
}
@media only screen and (max-width: 899px) {
  .issues {
    padding-block: 50px;
  }
  .issues__grid {
    gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .issues__item {
    padding-left: 25px;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media (max-width: 499px) {
  .issues__card-head {
    gap: 14px;
  }
  .issues__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
  }

  .issues__title {
    margin-bottom: 20px;
  }
  .issues__lead {
    text-align: left;
  }
  .issues__title::after {
    bottom: 2px;
    height: 8px;
  }
}
/* =========================
  SUPPORT
========================= */

.support {
  padding: 70px 0 120px;
}

.support__row {
  position: relative;
  margin-top: 90px;
}

.support__media {
  position: absolute;
  top: -36px;
  width: 50%;
  z-index: 2;
}

.support__row--top .support__media {
  left: 0;
}

.support__row--bottom .support__media {
  right: 0;
  left: auto;
}

.support__box {
  position: relative;
  background: #fff;
  border: 1px solid var(--black);
  padding: 20px 36px 40px;
  width: 45%;
  z-index: 1;
}

.support__row--top .support__box {
  margin-left: auto;
  padding-left: 54px;
}

.support__row--bottom .support__box {
  margin-right: auto;
  padding-right: 54px;
}

.support__label {
  font-size: var(--fz18);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 4px;
}

.support__box-title {
  font-size: var(--fz25);
  margin-bottom: 4px;
}

.support__box-title-accent {
  font-size: var(--fz30);
  color: var(--red);
}

.support__box-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #6d6d6d;
  margin-bottom: 1rem;
}

.support__box-sub {
  font-size: var(--fz22);
  margin-bottom: 12px;
}

.support__box-text {
  font-size: var(--fz18);
  font-weight: 500;
  line-height: 1.83;
}
.support__row--bottom {
  margin-top: 70px;
}
.support__row--bottom .support__media {
  top: 40px;
}
.support .common__cta {
  position: relative;
  margin-top: -80px;
  z-index: 50;
}

@media (max-width: 899px) {
  .support__media {
    width: 54%;
    top: -28px;
  }

  .support__box {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .support {
    padding: 35px 0 96px;
  }

  .support__row {
    display: grid;
    gap: 0;
    margin-top: 40px;
  }

  .support__media {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
  }
  .support__row--top .support__box {
    padding: 1.5rem;
  }
  .support__row--bottom .support__box {
    margin-right: auto;
    padding: 1.5rem;
    order: 2;
    margin-top: 40px;
  }
  .support__box {
    width: auto;
    margin: 0 auto;
  }
  .support__row--bottom {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 499px) {
  .support__row {
    gap: 0;
    margin-top: 20px;
  }
  .support__row--top .support__box {
    padding: 1rem;
  }
  .support__row--bottom .support__box {
    padding: 1rem;
  }
  .support__title::after {
    width: 50%;
    bottom: -15px;
    height: 7px;
  }

  .support .common__cta {
    margin-top: -30px;
  }
}
@media (max-width: 399px) {
  .support__box-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 349px) {
  .support__row--top .support__box {
    padding: 0.5rem;
  }
  .support__row--bottom .support__box {
    padding: 0.5rem;
  }
}
/* =========================
  TRUST
========================= */

.trust {
  padding: 30px 0 0;
}

.trust__inner {
  text-align: center;
}
.trust__catch {
  gap: 0;
}
.trust__kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.trust__kicker-logo {
  width: 200px;
  height: auto;
  display: block;
}

.trust__kicker-text {
  font-size: var(--fz22);
}

.trust__cards-bg {
  margin-top: 40px;
  background: #f5f5f5;
  padding-block: 70px;
}

/* ---- グリッド：PCで上3 / 下2 を固定 ---- */
.trust__cards {
  display: grid;
  gap: 40px;
}

/* カード */
.trust-card {
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
}

.trust-card__icon {
  height: auto;
  display: grid;
  place-items: center;
}

.trust-card__icon img {
  max-width: 100%;
  max-height: 180px;
  height: auto;
  width: auto;
  display: block;
}

.trust-card__text {
  font-size: var(--fz22);
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  margin-bottom: 8px;
}

.trust-card__value {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.trust-card__num {
  font-size: var(--fz70);
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: var(--red);
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.trust-card__unit {
  font-size: var(--fz32);
}

@media (min-width: 900px) {
  .trust__cards {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
      "a a b b c c"
      ". d d e e .";
  }
  .trust-card--a {
    grid-area: a;
  }
  .trust-card--b {
    grid-area: b;
  }
  .trust-card--c {
    grid-area: c;
  }
  .trust-card--d {
    grid-area: d;
  }
  .trust-card--e {
    grid-area: e;
  }
}

/* タブレット以下：2列 */
@media (max-width: 899px) {
  .trust__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-card {
    padding: 1.5rem 0.5rem;
  }
}

/* スマホ：1列 */
@media (max-width: 499px) {
  .trust__kicker {
    gap: 2px;
  }
  .trust__kicker-logo {
    width: 120px;
  }
  .trust__cards {
    grid-template-columns: 1fr;
  }
  .trust-card__icon img {
    max-height: 120px;
  }
  .trust__cards-bg {
    margin-top: 20px;
    padding-block: 35px;
  }
  .trust__cards.inner {
    padding: 0 25px;
  }
  .trust-card {
    padding: 1rem 0.5rem;
  }
  .trust-card__text {
    min-height: auto;
    margin-bottom: 16px;
  }
  .trust__catch {
    display: block;
  }
}
/* =========================
  ABOUT
========================= */

.about {
  padding: 90px 0 120px;
}

.about__inner {
  text-align: center;
}
.about__rows {
  margin-top: 120px;
}
/* ========== row 共通 ========== */
.about-row {
  position: relative; /* ★ absoluteの基準 */
  min-height: 520px; /* ★カードを重ねるので高さを確保（後で調整OK） */
}
.about-row.about-row--top {
  margin-bottom: 60px;
}
/* 画像ブロック */
.about-row__media {
  width: min(560px, 52%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

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

.about-row__media--wide {
  width: min(760px, 62%);
  aspect-ratio: 3 / 2;
}

.about-row__media--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== カード共通 ========== */
.about-card {
  background: #fff;
  border: 1px solid var(--black);
  padding: 1.5rem 3rem;
  width: min(500px, 66vw);
  z-index: 3;
  text-align: left;
}

.about-card__en {
  font-size: var(--fz18);
  font-family: "Oswald", sans-serif;
  margin-bottom: 4px;
}

.about-card__name {
  font-size: var(--fz20);
}
.about-card__name-main {
  font-size: var(--fz30);
}
.about-card__name-sub {
  font-size: var(--fz20);
}

.about-card__role {
  font-size: var(--fz20);
  margin-bottom: 14px;
}

.about-card__body {
  font-size: var(--fz18);
  font-weight: 500;
  line-height: 1.83;
}
.about-card__btn-wrap {
  text-align: right;
}
/* ボタン */
.about-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 175px;
  height: 40px;
  background: var(--black);
  color: #fff;
  border-radius: 5px;
  margin-top: 12px;
  margin-left: auto;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.about-card__btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.about-card__btn-text {
  font-size: var(--fz18);
  font-family: "Oswald", sans-serif;
}

.about-card__btn-ico {
  font-size: var(--fz18);
  line-height: 1;
}

/* business card用 */
.about-card__tag {
  font-size: var(--fz18);
  font-family: "Oswald", sans-serif;
  color: var(--red);
  margin-bottom: 4px;
}

.about-card__h {
  font-size: var(--fz25);
  margin-bottom: 8px;
}

.about-card__line {
  display: block;
  width: 100%;
  height: 1px;
  background: #6d6d6d;
  margin-bottom: 14px;
}

.about-row--top .about-row__media {
  position: relative;
  left: 0;
  top: 0;
}

.about-row--top .about-card--profile {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-row--bottom .about-row__media--wide {
  position: absolute;
  right: 0;
  top: 0;
}

.about-row--bottom .about-card--business {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.about-row--bottom {
  padding-top: 150px;
}
.about__cta {
  margin-top: -100px;
}
@media only screen and (max-width: 899px) {
  .about-row.about-row--top {
    margin-bottom: 30px;
  }
  .about-card {
    width: min(350px, 66vw);
    padding: 1.3rem 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .about__rows {
    margin-top: 90px;
  }

  .about-row {
    min-height: auto;
  }

  .about-row__media,
  .about-row__media--wide {
    width: 100%;
    margin: 0 auto;
    max-height: 450px;
  }
  .about-row__media img {
    object-position: center 30%;
  }
  .about-row--bottom .about-row__media--wide {
    position: static;
  }

  .about-card {
    width: 100%;
    margin: 0 auto;
  }

  .about-row--top .about-card--profile,
  .about-row--bottom .about-card--business {
    position: static;
    width: auto;
    transform: none;
  }
  .about-card__btn {
    margin-top: 24px;
  }
  .about-row--bottom {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 50px;
  }
}

@media only screen and (max-width: 499px) {
  .about__head {
    margin-bottom: 40px;
  }
  .about__rows {
    margin-top: 30px;
  }
  .about__title::after {
    width: 180px;
    height: 6px;
  }

  .about-card {
    padding: 1rem 0.5rem;
  }

  .about-card__btn {
    width: 150px;
  }
  .about-row__media,
  .about-row__media--wide {
    max-height: 300px;
  }
  .about__cta {
    margin-top: -85px;
  }
  .about-row--bottom {
    padding-top: 20px;
  }
}
/* =========================
  MESSAGE
========================= */

.message {
  padding-top: 100px;
}

.message__inner {
  text-align: center;
  padding-bottom: 34px;
}

.message__lead {
  font-size: var(--fz40);
  margin-bottom: 8px;
}

.message__catch {
  font-size: var(--fz32);
}

.message__catch-strong {
  font-size: var(--fz50);
  color: var(--red);
  margin-right: 0.1em;
}

.message__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

@media only screen and (max-width: 768px) {
  .message {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 499px) {
  .message {
    padding-top: 20px;
  }
  .message__inner {
    padding: 0 10px 25px;
  }
  .message__lead {
    font-size: 20px;
    margin-bottom: 0;
  }
  .message__catch-strong {
    font-size: 25px;
    margin-right: 0;
  }
  .message__catch {
    font-size: 20px;
  }
}
@media only screen and (max-width: 399px) {
  .message__lead {
    font-size: 18px;
  }
  .message__catch-strong {
    font-size: 22px;
  }
  .message__catch {
    font-size: 18px;
  }
}
/* =========================
  Footer Contact (white)
========================= */

.footer-contact {
  padding: 90px 0 70px;
}

.footer-contact__inner {
  text-align: center;
}

.footer-contact__logo {
  max-width: 120px;
  margin: 0 auto 30px;
}

.footer-contact__company {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: var(--fz25);
  font-weight: 500;
}

.footer-contact__list {
  margin-bottom: 80px;
}

.footer-contact__row {
  display: flex;
  justify-content: center;
  font-size: var(--fz22);
  font-weight: normal;
  margin-bottom: 4px;
}

.footer-contact__term {
  width: 12%;
  white-space: nowrap;
  text-align: left;
}

.footer-contact__desc {
  width: 30%;
  margin: 0;
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}

.footer-contact__cta {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
}
.footer-contact__btn {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--fz22);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 30px;
  transition: transform 0.25s ease;
}

.footer-contact__btn:hover {
  transform: translateY(-2px);
}

.footer-contact__btn-text {
  line-height: 1;
  white-space: nowrap;
}

.footer-contact__btn-icon {
  width: 39px;
  height: 39px;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact__btn--consult {
  background: linear-gradient(90deg, rgba(230, 0, 19, 0.9) 0%, rgba(254, 1, 0, 1) 100%);
  border: 1px solid #a00e13;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
}

.footer-contact__btn-icon--mail {
  background: url("../images/top/icon-mail_white.png") center / contain no-repeat;
}
.footer-contact__btn--contact {
  background: #d6b845;
  border: 1px solid #000;
}

.footer-contact__btn-icon--arrow {
  width: 20px;
  height: 25px;
  background: url("../images/top/arrow-right.png") center / contain no-repeat;
}

/* =========================
  Site Footer (red grad)
========================= */

.site-footer {
  background: linear-gradient(90deg, #a00e13 19%, #fa3e45 51%, #a00e13 79%);
  padding: 70px 0 70px;
  color: #fff;
}

.site-footer__nav {
  margin-bottom: 64px;
}

.site-footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.site-footer__nav-item {
  display: flex;
  align-items: center;
}

.site-footer__nav-item + .site-footer__nav-item::before {
  content: "|";
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 18px;
  font-weight: 700;
}

.site-footer__nav-link {
  font-size: var(--fz20);
  font-weight: 500;
  color: #fff;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-footer__nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__copy {
  font-size: var(--fz20);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-contact {
    padding: 50px 0 50px;
  }
  .footer-contact__logo {
    max-width: 100px;
    margin: 0 auto 20px;
  }
  .footer-contact__company {
    margin-bottom: 20px;
  }

  .footer-contact__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    margin-bottom: 1rem;
  }

  .footer-contact__desc {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .footer-contact__list {
    margin-bottom: 50px;
  }
  .footer-contact__btn {
    max-width: 250px;
    gap: 8px;
    padding: 12px 24px;
  }
  .site-footer {
    padding: 40px 0 40px;
  }

  .site-footer__nav {
    margin-bottom: 40px;
  }

  .site-footer__nav-item + .site-footer__nav-item::before {
    margin: 0 12px;
  }
}

@media (max-width: 499px) {
  .footer-contact__logo {
    max-width: 75px;
  }
  .footer-contact__term {
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }
  .footer-contact__desc {
    font-size: 16px;
  }
  .footer-contact__cta {
    gap: 12px;
    margin-bottom: 2rem;
  }
  .footer-contact__btn {
    padding: 6px 12px;
  }
  .footer-contact__btn-icon {
    width: 26px;
    height: 26px;
  }
  .footer-contact__btn-icon--arrow {
    width: 15px;
    height: 20px;
  }

  .site-footer__nav-list {
    row-gap: 8px;
  }
  .site-footer__copy {
    font-size: 14px;
  }
}
/* =========================
TOPへ戻るボタン
========================= */

#page-top a {
  display: block;
  width: 72px;
  height: 72px;
  background: url("../images/common/top-btn.png") no-repeat center;
  background-size: contain;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*上に上がる動き*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*下に下がる動き*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

#page-top.is-stop {
  position: absolute;
  bottom: auto;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media only screen and (max-width: 768px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
  #page-top a {
    width: 42px;
    height: 42px;
  }
}
