/* ==========================================
   RESET & BASE
========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #C0392B;
  --red-dark: #a12e23;
  --gold:     #C9A824;
  --gold-btn: #5C4A1E;
  --gold-bar: #C9A824;
  --gold-bar-light: #DEB84A;
  --dark:     #1C1C1C;
  --darker:   #111111;
  --black:    #0D0D0D;
  --white:    #FFFFFF;
  --off-white:#F5F5F0;
  --text:     #222222;
  --muted:    #777777;
  --border:   #DDDDDD;
  --font:     "Source Han Serif", "Noto Serif JP", "游明朝", YuMincho, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================
   NOISE TEXTURE  (dark sections)
========================================== */
.hero__noise,
.diff__noise,
.ctabanner__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 250px 250px;
}

/* ==========================================
   BUTTONS
========================================== */
.cbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  letter-spacing: .03em;
}

.cbtn:hover { opacity: .85; transform: translateY(-2px); }

.cbtn--red {
  background: var(--red);
  color: var(--white);
}

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

.cbtn--lg { font-size: 1.05rem; padding: 16px 36px; }

.cbtn--wide { min-width: 260px; justify-content: center; }

.cbtn__arrow { font-size: 1rem; }
.cbtn__main { font-size: 40px; font-weight: 900; letter-spacing: 2.4px; color: #FFF; }
.cbtn__sub  { font-size: 32px; font-weight: 900; letter-spacing: 1.92px; color: #FFF; }
.cbtn__arrow-svg { flex-shrink: 0; margin-left: 12px; }
.ctabanner__btns .cbtn--red  .cbtn__arrow-svg { filter: drop-shadow(0 2px 0 #600303); }
.ctabanner__btns .cbtn--gold .cbtn__arrow-svg { filter: drop-shadow(0 2px 0 #5A4000); }

/* header logo */
.header__logo-link { display: flex; align-items: center; margin-left: -38px; }
.header__logo { height: 36px; width: auto; display: block; }

/* header buttons */
.hbtn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 3px 6px 0 #969696;
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font);
  transition: opacity .2s;
  cursor: pointer;
}
.hbtn:hover { opacity: .8; }
.hbtn--gold {
  background: linear-gradient(270deg, #D1B95C -8.65%, #887138 100%);
  color: var(--white);
  text-shadow: 0 2px 0 #5A4000;
}
.hbtn--red {
  background: linear-gradient(270deg, #D00000 -9.86%, #9D0000 100%);
  color: var(--white);
  text-shadow: 0 2px 0 #600303;
}

/* ==========================================
   PHOTO PLACEHOLDERS
========================================== */
.photo-placeholder {
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: .9rem;
  text-align: center;
  line-height: 1.6;
}

.photo-placeholder--hero {
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.photo-placeholder--diff {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.photo-placeholder--ceo {
  width: 240px;
  height: 300px;
  background: #e8e8e8;
  color: #aaa;
}

/* ==========================================
   HEADER
========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  height: 64px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--text);
}

.logo__plus {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.logo__name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
}

/* GNAV */
.gnav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.gnav__link {
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}
.gnav__link:hover { color: var(--red); }

/* header CTAs */
.header__btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
========================================== */
.hero {
  position: relative;
  background: url('../images/CTA.png') left center / cover no-repeat;
  overflow: hidden;
  padding-top: 64px;
}
.hero__sp-img {
  display: none;
}
.hero__tagline-break {
  display: inline;
}

.hero__inner {
  position: relative;
  display: flex;
  height: clamp(610px, 42.36vw, 900px);
}

.hero__content {
  width: 65%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 clamp(50px, 5.56vw, 105px);
  position: relative;
  z-index: 2;
}

.hero__catch {
  font-size: clamp(48px, 5.8vw, 90px);
  font-weight: 900;
  color: #000;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  width: min(853px, 100%);
  text-align: center;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.hero__rule {
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #D1B95C 0%, #887138 207%);
  margin: -8px 0 8px;
}

.hero__card {
  background: #FFF;
  width: min(855px, 100%);
  height: 276px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 28px 28px;
  box-sizing: border-box;
  margin: 0 auto;
}

.hero__desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 3px;
  text-align: center;
}

.hero__cta-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2.4px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.hero__block {
  transform: translate(100px, -8px);
}

.hero__btns {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.hero__btn {
  width: 370px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 #969696;
  cursor: pointer;
}

.hero__btn--red {
  background: linear-gradient(270deg, #D00000 -9.86%, #9D0000 100%);
  text-shadow: 0 2px 0 #600303;
}

.hero__btn--gold {
  background: linear-gradient(270deg, #D1B95C -8.65%, #887138 100%);
  text-shadow: 0 2px 0 #5A4000;
}

.hero__btn--red svg { filter: drop-shadow(0 2px 0 #600303); }
.hero__btn--gold svg { filter: drop-shadow(0 2px 0 #5A4000); }

.hero__btn-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2.4px;
  color: #FFF;
}

.hero__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero__photo-img {
  height: clamp(480px, 42.36vw, 900px);
  width: auto;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SECTION SPACING
========================================== */
.about {
  margin-top: 0;
  margin-bottom: 120px;
}

.results,
.diff {
  margin-top: 120px;
  margin-bottom: 120px;
}

.ctabanner {
  margin-top: 120px;
  margin-bottom: 0;
}

.campaign-banner {
  margin-top: 120px;
  margin-bottom: 120px;
}

.campaign-banner__link {
  display: block;
}

.campaign-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  margin-top: 0;
  margin-bottom: 0;
}

/* ==========================================
   ABOUT
========================================== */
.about {
  display: flex;
  width: 100%;
  height: 347px;
  padding: 64px 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: url('../images/back.img.jpeg') lightgray 50% / cover no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

.about__inner {
  display: flex;
  width: 1200px;
  max-width: 100%;
  padding: 32px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 0 auto;
}

.about__main {
  color: #000;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", "游明朝", YuMincho, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  width: 100%;
}


.about__ul {
  display: inline-block;
  position: relative;
  isolation: isolate;
}

.about__ul::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 10px;
  background: linear-gradient(90deg, #D1B95C 0%, #887138 207%);
  z-index: -1;
}

.about__main--pc .about__ul::after {
  height: 16px;
}

.about__large {
  color: #000;
  font-family: "Source Han Serif", "Noto Serif JP", "游明朝", YuMincho, serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
}

.about__sub {
  color: #000;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", "游明朝", YuMincho, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
}

/* ==========================================
   RESULTS
========================================== */
.results {
  background: var(--white);
}

.results__inner {
  display: flex;
  width: 1344px;
  max-width: 100%;
  margin: 0 auto;
  padding: 64px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.results__title {
  color: #000;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
  align-self: stretch;
}

.results__row {
  display: flex;
  align-items: flex-end;
  gap: 90px;
}

/* --- もっと見るトグル --- */
.results__more {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 90px;
  position: relative;
}
.results__toggle {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 20px;
  background: none;
  border: 2px solid #D1B95C;
  border-radius: 4px;
  color: #D1B95C;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.results__toggle:hover {
  background: #D1B95C;
  color: #000;
}
.results__toggle-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform .3s;
}
.results__toggle.is-open .results__toggle-icon {
  transform: rotate(45deg);
}

/* --- カード --- */
.result-card {
  display: flex;
  width: 340px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.result-card__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.result-card__co {
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: normal;
  text-align: center;
  width: 100%;
}

.result-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.result-card__metric {
  color: #000;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.result-card__badge {
  display: flex;
  width: 112px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: linear-gradient(90deg, #D00000 0%, #9D0000 115.62%);
  color: #FFF;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

/* --- バーチャート --- */
.rchart {
  width: 100%;
  padding-top: 64px; /* after-val ラベルのフロート用スペース */
}

.rchart__body {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 200px;
  position: relative;
  overflow: visible;
  width: 100%;
  /* gap は JS で 59.86° に合わせて動的設定 */
}

.rchart__before-col {
  flex: 0 0 110px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.rchart__after-col {
  flex: 0 0 130px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.rchart__before-bar {
  width: 100%;
  height: 0;
  background: #D5D5D5;
  transition: height 1s cubic-bezier(.22,.61,.36,1);
}

.rchart__after-bar {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #D4B95C 0%, #887138 100%);
  transition: height 1.2s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: visible;
}

/* アフター大数字 */
.rchart__after-val {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 900;
  color: #887138;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

/* ビフォー小数字 (JSで bottom を設定) */
.rchart__before-val {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  text-align: center;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  width: max-content;
}

/* 対角SVGライン */
.rchart__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.rchart__base {
  height: 2px;
  background: #CCCCCC;
  width: 100%;
  margin-top: 0;
}

/* ==========================================
   DIFFERENCE
========================================== */
/* 上段: 背景画像エリア */
.diff__hero {
  position: relative;
  background: url('../images/body.img.webp') left top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: max(360px, 25vw);
  padding: 0 318px 0 472px;
}
.diff__sp-img { display: none; }

/* タイトル行: 横一列・中央揃え */
.diff__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  height: 142.73px;
  margin: 50px 0 0 0;
}

.diff__title-reg {
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}

/* ここ！ スライドインアニメーション */
@keyframes kokoSlideIn {
  from { opacity: 0; transform: translateX(160px) rotate(-6deg) translateY(-24px); }
  to   { opacity: 1; transform: translateX(0)     rotate(-6deg) translateY(-24px); }
}

/* ここ！ ブロック: 回転 + グラデーション */
.diff__koko {
  display: inline-block;
  transform: rotate(-6deg) translateY(-24px);
  opacity: 0;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 124px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(162deg, #D00000 38.75%, #9D0000 78.21%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  margin: 0 -12px 0 4px;
}

.diff__koko.koko-in {
  animation: kokoSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 個別カーニング */
.diff__koko-c1 { letter-spacing: -0.15em; }  /* コ→コ: -15% */
.diff__koko-c2 { letter-spacing: -0.38em; }  /* コ→！: -38% */
.diff__koko-c3 { letter-spacing: 0; }

/* 下段: 白背景 + 3カラム */
.diff__points-wrap {
  background: var(--white);
  padding: 60px 0;
}

.diff__points {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  padding: 32px 0;
  margin: 0 auto;
}

.diff__point {
  display: flex;
  flex: none;
  width: 340px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  padding: 0;
}

/* -115.65° 対角線セパレーター (gap 90px の中央) */
.diff__point:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 50%;
  width: 1px;
  height: 140%;
  background: #000;
  transform: translateX(-50%) translateY(-50%) rotate(25.65deg);
}

/* point + Oswald 数字 */
.diff__point-label {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: normal;
  letter-spacing: 0;
}

.diff__point-label strong {
  display: flex;
  width: 60px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: normal;
  letter-spacing: 0;
}

/* タイトル + ハイライトバー (aboutと同方式：テキストに被さる) */
.diff__point-title {
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 900;
  color: #000;
  line-height: normal;
  display: inline-block;
  position: relative;
  isolation: isolate;
  margin: 0;
  padding-bottom: 0;
}

.diff__point-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, #D1B95C 0%, #887138 207%);
  z-index: -1;
}

.diff__point:nth-child(1) .diff__point-title::after { width: 214px; }
.diff__point:nth-child(2) .diff__point-title::after { width: 288px; }
.diff__point:nth-child(3) .diff__point-title::after { width: 340px; }

.diff__point-text {
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: normal;
}

/* ==========================================
   CEO MESSAGE
========================================== */
.ceo {
  background: var(--white);
  padding: 80px 0;
}

.ceo .container {
  max-width: 1260px;
}

.ceo__inner {
  display: inline-flex;
  align-items: center;
  gap: 42px;
}

.ceo__photo {
  flex-shrink: 0;
  width: 430px;
}

.ceo__img {
  width: 100%;
  height: auto;
  display: block;
}

.ceo__body {
  display: flex;
  width: 729px;
  height: 524px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.ceo__title--sp { display: none; }
.about__main--sp { display: none; }

.ceo__title {
  display: flex;
  height: 52px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 900;
  color: #000;
  line-height: normal;
}

.ceo__body-text {
  flex: 1 0 0;
  align-self: stretch;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: normal;
}

.ceo__body-text p + p {
  margin-top: 16px;
}

.ceo__sig {
  flex-shrink: 0;
}

.ceo__sig-co {
  flex-shrink: 0;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 900;
  color: #000;
  line-height: normal;
}

.ceo__sig-name {
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 900;
  color: #000;
  line-height: normal;
}

/* ==========================================
   CTA BANNER
========================================== */
.ctabanner {
  background: radial-gradient(31.94% 100% at 50% 0%, #5D5D5D 0%, #000 100%);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  text-align: center;
}

.ctabanner__title {
  width: 1214px;
  max-width: 90%;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 900;
  color: #FFF;
  line-height: normal;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.ctabanner__slash {
  letter-spacing: 5.12px;
}

.ctabanner__divider {
  width: 1200px;
  max-width: 90%;
  height: 17px;
  display: block;
}

.ctabanner__body {
  width: 1200px;
  max-width: 90%;
  height: 276px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctabanner__content {
  display: flex;
  width: 1132px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ctabanner__cta-label { margin-top: 8px; }
.ctabanner__btns      { margin-top: 32px; }

.ctabanner__sub {
  display: flex;
  height: 59px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: 1.44px;
  line-height: normal;
}

.ctabanner__cta-label {
  display: flex;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  font-family: "Source Han Serif", "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 900;
  color: #000;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: normal;
}

.ctabanner__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ctabanner__btns .cbtn--red {
  background: linear-gradient(270deg, #D00000 -9.86%, #9D0000 100%);
  width: 550px;
  height: 82px;
  padding: 0 24px;
  font-size: 1.1rem;
  align-items: center;
  text-shadow: 0 2px 0 #600303;
  box-shadow: 0 3px 6px 0 #969696;
}

.ctabanner__btns .cbtn--gold {
  background: linear-gradient(270deg, #D1B95C -8.65%, #887138 100%);
  width: 550px;
  height: 82px;
  padding: 0 24px;
  font-size: 1.1rem;
  align-items: center;
  text-shadow: 0 2px 0 #5A4000;
  box-shadow: 0 3px 6px 0 #969696;
}

.cbtn__text-group {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
}
.cbtn__text-group .cbtn__sub { margin-bottom: 5px; }

/* ==========================================
   CONTACT
========================================== */
.contact {
  
  min-height: 700px;
  background: url('../images/CTA.png') left center / cover no-repeat;
}

.contact__inner {
  display: flex;
  min-height: 700px;
  justify-content: center;
  gap: 110px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact__left {
  flex: 0 0 518px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__big--sp { display: none; }
.gnav__sp-btns { display: none; }

.contact__big {
  font-family: 'Oswald', sans-serif;
  font-size: 150px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  font-style: normal;
  display: block;
  width: 518px;
  max-width: 100%;
  white-space: nowrap;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.contact__policy-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #000;
  width: 518px;
  max-width: 100%;
  line-height: normal;
  margin-bottom: 0;
}

.contact__policy-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #000;
  line-height: normal;
  width: 518px;
  max-width: 100%;
  margin-bottom: 32px;
}

.contact__checks {
  width: 519px;
  max-width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 24px 0;
  margin-bottom: 32px;
}

.contact__checks li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  position: static;
  border-bottom: none;
}

.contact__checks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  color: #FFF;
  font-size: 11px;
  font-weight: 900;
}

.contact__tel-block,
.contact__mail-block {
  margin-bottom: 0;
}

.contact__tel-label,
.contact__mail-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}

.contact__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2.52px;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}
.contact__tel-prefix {
  font-size: 24px;
  letter-spacing: 1.44px;
}
.contact__tel:hover { color: var(--gold); }

.contact__mail {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}
.contact__mail:hover { color: var(--gold); }

.contact__tel-hours {
  font-size: 16px;
  color: #000;
  margin-bottom: 32px;
}

.contact__mail-hours {
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
}

.contact__right {
  flex: 0 0 572px;
  height: 830px;
  background: #FFF;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__form-wrap {
  display: flex;
  flex-direction: column;
  width: 476px;
  height: 722px;
}

.contact__form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.contact__form-icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.contact__form-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 4px;
}

.contact__form-note {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

/* FORM */
.cform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.cform__group {
  align-self: stretch;
}

.cform__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cform__req {
  color: var(--red);
  margin-right: 4px;
  font-size: 16px;
}

.cform__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bbb;
  background: #fff;
  font-size: 15px;
  font-family: var(--font);
  color: #333;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  height: 42px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.cform__input:focus {
  border-color: var(--red);
}

.cform__input.is-error {
  border-color: var(--red);
  background: #fff8f8;
}

.cform__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cform__textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
}

.cform__err {
  display: block;
  font-size: .78rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 0;
}

.cform__tabs {
  display: flex;
  margin-bottom: 20px;
}
.cform__tab {
  flex: 1;
  padding: 12px 8px;
  border: none;
  cursor: pointer;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  background: #ddd;
  color: #888;
  transition: background .2s, color .2s;
}
.cform__tab--consultation.cform__tab--active {
  background: linear-gradient(270deg, #D00000 -9.86%, #9D0000 100%);
  color: #fff;
}
.cform__tab--document.cform__tab--active {
  background: linear-gradient(270deg, #D1B95C -8.65%, #887138 100%);
  color: #fff;
}
.cform--document .cform__group--consultation-only {
  display: none;
}

.cform__submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .05em;
  margin-top: 8px;
}

.cform__submit:hover { background: var(--red-dark); }

.cform__success {
  margin-top: 16px;
  padding: 14px;
  background: #d1fae5;
  color: #065f46;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

.cform__error {
  margin-top: 16px;
  padding: 14px;
  background: #fde8e8;
  color: var(--red-dark);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

/* ==========================================
   COMPANY INFO
========================================== */
.company-info {
  background: var(--off-white);
  padding-top: 80px;
  padding-bottom: 120px;
}
.company-info__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.company-info__title {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}
.company-info__table {
  border-top: 1px solid var(--border);
}
.company-info__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.company-info__row dt {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.company-info__row dd {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
}
.company-info__link {
  display: inline-block;
  margin-top: 24px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--red);
}
@media (min-width: 641px) {
  .company-info__row {
    flex-direction: row;
    gap: 24px;
  }
  .company-info__row dt {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .company-info {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--darker);
  padding: 60px 80px 24px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo { height: 40px; width: auto; display: block; }

.footer__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.footer__nav-link {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__nav-link:hover { color: var(--white); }

.footer__copy {
  text-align: center;
  font-size: .78rem;
  margin-top: 48px;
  color: rgba(255,255,255,.3);
}

/* ==========================================
   PAGE TOP
========================================== */
.pagetop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
  z-index: 100;
}
.pagetop.visible { opacity: 1; pointer-events: all; }
.pagetop:hover { transform: translateY(-3px); }

/* ==========================================
   動画モーダル
========================================== */
.hero__video-float {
  position: absolute;
  right: -340px;
  bottom: clamp(-10px, calc(2.78vw - 30px), 20px);
  width: 240px;
  display: flex;
  flex-direction: column;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  z-index: 10;
  transition: transform .22s, box-shadow .22s;
  text-align: left;
}
.hero__video-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 56px rgba(0,0,0,.65);
}
.hero__video-float-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #D00000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .06em;
  z-index: 1;
}
.hero__video-float-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 240px;
  height: 160px;
  flex-shrink: 0;
  background: url('../images/assetsimagestiktok-thumb.jpg.png') center center / cover no-repeat;
}
.hero__video-float-play {
  width: 48px;
  height: 48px;
  border: 2.5px solid rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: rgba(208,0,0,.72);
  box-shadow: 0 0 0 6px rgba(208,0,0,.18);
  position: relative;
  z-index: 1;
  transition: background .2s, box-shadow .2s;
}
.hero__video-float:hover .hero__video-float-play {
  background: #D00000;
  box-shadow: 0 0 0 10px rgba(208,0,0,.22);
}
.hero__video-float-body {
  padding: 12px 14px 14px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #D00000 0%, #7A0000 100%);
}
.hero__video-float-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.hero__video-float-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero__video-float-cta {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  align-self: flex-start;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.video-modal__box {
  position: relative;
  z-index: 1;
  width: min(720px, 92vw);
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .video-modal__box {
    width: min(400px, 92vw);
    aspect-ratio: 9 / 16;
  }
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
}
.video-modal__close:hover { opacity: 1; }
.video-modal__embed {
  width: 100%;
  height: 100%;
}
.video-modal__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================
   SCROLL ANIMATE
========================================== */
.js-fadein {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-fadein.in { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE
========================================== */

/* ---- タブレット ---- */
@media (max-width: 1024px) {
  .results__row { gap: 40px; }
  .result-card { width: 280px; }
  .diff__hero { padding: 0 60px; }
  .diff__koko { font-size: 96px; }
  .diff__title-reg { font-size: 36px; }
  .diff__points { width: 100%; padding: 32px 40px; gap: 48px; }
  .diff__point { width: 100%; }
  .contact__inner { gap: 48px; padding-top: 80px; padding-bottom: 80px; }
  .contact__left { flex: 0 0 420px; }
  .contact__right { flex: 0 0 480px; }
  .contact__form-wrap { width: 100%; }
  .ctabanner__title { font-size: 26px; white-space: normal; }
  .ctabanner__btns .cbtn--red,
  .ctabanner__btns .cbtn--gold { width: 440px; }
}

/* ---- スマホ共通 ---- */
@media (max-width: 768px) {

  /* ヘッダー */
  .header__inner {
    justify-content: space-between;
    padding: 0 16px;
  }
  .header__logo-link {
    margin-left: 0;
  }
  .header__logo {
    height: 24px;
  }
  .gnav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .gnav.open { display: flex; }
  .gnav__link { padding: 14px 24px; border-bottom: 1px solid #f0f0f0; }
  .header__btns { display: none; }
  .hamburger { display: flex; margin-left: 0; }
  .gnav__sp-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
  }
  .gnav__sp-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: .82rem;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  /* ヒーロー */
  .hero {
    background: none;
    overflow: hidden;
    position: relative;
  }
  .hero__sp-img {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero__inner {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px 0;
  }
  .hero__video-float {
    display: flex;
    flex-direction: row;
    position: static;
    transform: none;
    width: 210px;
    height: 80px;
    margin-top: 16px;
  }
  .hero__video-float-thumb {
    width: 112px;
    height: 80px;
    flex-shrink: 0;
  }
  .hero__video-float-body {
    flex: 1;
    padding: 10px 12px;
    justify-content: center;
    align-items: flex-start;
  }
  .hero__video-float-text {
    gap: 6px;
  }
  .hero__video-float-title {
    font-size: 11px;
  }
  .hero__video-float-cta {
    font-size: 10px;
    align-self: flex-start;
  }
  .hero__tagline {
    font-size: clamp(19px, 5.8vw, 24px);
    white-space: normal;
    text-align: left;
    width: 100%;
    line-height: 1;
    position: relative;
    top: 0;
  }
  .hero__tagline-break {
    display: table;
    margin-top: 8px;
  }
  .hero__tagline-break::after {
    content: '';
    display: block;
    height: 10px;
    background: linear-gradient(90deg, #D1B95C 0%, #887138 207%);
    margin-top: -4px;
  }
  .hero__content {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
  }
  .hero__block {
    transform: none;
    width: 100%;
  }
  .hero__rule {
    display: none;
  }
  .hero__card {
    width: 100%;
    height: auto;
    padding: 10px 16px 14px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero__desc {
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: 0;
    margin-bottom: 4px;
  }
  .hero__cta-text {
    font-size: clamp(15px, 4.6vw, 22px);
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .hero__btns {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
  }
  .hero__btn-text {
    font-size: 24px;
  }
  .hero__photo { display: none; }

  /* 会社紹介 */
  .about {
    height: auto;
    padding: 40px 20px;
    margin-bottom: 60px;
  }
  .about__inner {
    width: 100%;
    gap: 16px;
    padding: 0;
  }
  .about__main { font-size: 18px; }
  .about__large { font-size: 24px; }
  .about__sub { font-size: 15px; }

  /* 実績 */
  .results { margin-top: 60px; margin-bottom: 60px; }
  .results__inner { padding: 40px 20px; }
  .results__title { font-size: 32px; }
  .results__row {
    flex-direction: column;
    gap: 56px;
    align-items: center;
    width: 100%;
  }
  .result-card { width: 100%; max-width: 340px; }
  .result-card__co { font-size: 18px; }
  .results__more {
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: 100%;
    max-height: 200px;
  }
  .results__more.is-open {
    max-height: 2000px;
  }
  .results__toggle { display: flex; margin-top: 12px; }
  .results__more {
    max-height: 200px;
    overflow: hidden;
  }
  .results__more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
  }
  .results__more.is-open {
    max-height: 2000px;
    overflow: visible;
  }
  .results__more.is-open::after {
    display: none;
  }

  /* 差別化 */
  .diff { margin-top: 60px; margin-bottom: 60px; }
  .campaign-banner { margin-top: 60px; margin-bottom: 60px; }
  .diff__sp-img {
    display: block;
    width: 100%;
    height: auto;
  }
  .diff__hero {
    background: none;
    padding: 0;
    min-height: auto;
    position: relative;
  }
  .diff__title {
    position: absolute;
    inset: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0;
    flex-wrap: nowrap;
    gap: 0;
    transform: translateX(80px);
  }
  .diff__title-reg { font-size: 36px; }
  @keyframes kokoSlideIn {
    from { opacity: 0; transform: translateX(160px) rotate(-6deg) translateY(-4px); }
    to   { opacity: 1; transform: translateX(0)     rotate(-6deg) translateY(-4px); }
  }
  .diff__koko {
    font-size: 100px;
    transform: rotate(-6deg) translateY(-4px);
  }
  .diff__points-wrap { padding: 32px 0; }
  .diff__points {
    flex-direction: column;
    width: 100%;
    padding: 16px 20px;
    gap: 0;
    align-items: flex-start;
  }
  .diff__point {
    width: 100%;
    flex: none;
    padding: 24px 0;
    border-top: 1px solid #DDD;
  }
  .diff__point:first-child { border-top: none; padding-top: 0; }
  .diff__point:not(:first-child)::before { display: none; }
  .diff__point:nth-child(1) .diff__point-title::after,
  .diff__point:nth-child(2) .diff__point-title::after,
  .diff__point:nth-child(3) .diff__point-title::after { width: 100%; }
  .diff__point-label strong { font-size: 48px; height: 46px; }
  .diff__point-text { font-size: 15px; }

  /* 代表メッセージ */
  .ceo { padding: 48px 0; }
  .ceo__inner { flex-direction: column; gap: 16px; width: 100%; }
  .ceo__photo { width: 100%; }
  .ceo__body { width: 100%; height: auto; gap: 16px; }
  .ceo__title { font-size: 30px; height: auto; }
  .ceo__body-text { font-size: 16px; flex: none; }
  .ceo__title--sp {
    display: block;
    font-family: "Source Han Serif", "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 900;
    color: #000;
    height: auto;
    margin-bottom: 8px;
  }
  .ceo__title--pc { display: none; }
  .about__main--sp { display: block; }
  .about__main--pc { display: none; }
  .ceo__sig-co { font-size: 16px; }
  .ceo__sig-name { font-size: 22px; }

  /* CTAバナー */
  .ctabanner { margin-top: 60px; padding: 40px 20px; }
  .ctabanner__title {
    font-size: 16px;
    white-space: normal;
    letter-spacing: -.02em;
    max-width: 100%;
  }
  .ctabanner__divider { max-width: 100%; }
  .ctabanner__body {
    height: auto;
    padding: 28px 20px 32px;
    width: 100%;
    max-width: 100%;
  }
  .ctabanner__content { width: 100%; }
  .ctabanner__sub { font-size: 16px; height: auto; }
  .ctabanner__cta-label { font-size: 22px; height: auto; letter-spacing: .5px; }
  .cbtn__main { font-size: 24px; letter-spacing: 1px; }
  .cbtn__sub { font-size: 16px; letter-spacing: .5px; }
  .ctabanner__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
  }
  .ctabanner__btns .cbtn--red,
  .ctabanner__btns .cbtn--gold {
    width: 100%;
    height: 64px;
    padding: 0 16px;
  }
  .cbtn__arrow-svg { width: 40px; margin-left: 6px; }

  /* コンタクト */
  .contact__inner {
    flex-direction: column;
    gap: 0;
    padding-top: 48px;
    padding-bottom: 48px;
    min-height: auto;
  }
  .contact__left {
    flex: none;
    width: 100%;
    padding: 0 20px 32px;
  }
  .contact__right {
    flex: none;
    width: 100%;
    height: auto;
    padding: 0 20px 48px;
    margin-top: 0;
    background: transparent;
    align-items: stretch;
    justify-content: flex-start;
  }
  .contact__form-wrap {
    width: 100%;
    height: auto;
  }
  .contact__big--sp {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 96px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    width: 100%;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    order: 0;
  }
  .contact__big--pc { display: none; }
  .contact__right { order: 1; }
  .contact__left  { order: 2; }
  .contact__policy-title,
  .contact__policy-desc { font-size: 16px; width: 100%; letter-spacing: 0; }
  .contact__checks { width: 100%; }
  .contact__tel-label,
  .contact__mail-label { font-size: 16px; letter-spacing: 0; }
  .contact__tel { font-size: 28px; letter-spacing: 1px; }
  .contact__tel-prefix { font-size: 16px; }
  .contact__mail { font-size: 16px; letter-spacing: 0; }

  /* フッター */
  .footer { padding: 40px 20px 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__copy { margin-top: 24px; }
}

/* ---- 小スマホ ---- */
@media (max-width: 390px) {
  .hero__btn-text { font-size: 20px; }
  .diff__koko { font-size: 100px; }
  .diff__title-reg { font-size: 40px; }
  .contact__big { font-size: 64px; }
  .about__main { font-size: 18px; }
  .about__large { font-size: 24px; }
}

/* sp-hide / sp-only helper */
.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: block; }
}
@media (max-width: 600px) {
  .sp-hide { display: none; }
}
