@charset "UTF-8";
/* =============  fade  ================ */
.js-fadeBottom {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1.2s, visibility 1.2s, transform 1.8s;
}

.js-fadeBottom.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fadeTop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-60px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeTop.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-fadeLeft {
  opacity: 0;
  visibility: hidden;
  transform: translateX(80px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeLeft.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.js-fadeRight {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80px);
  transition: opacity 1s, visibility 1s, transform 1.8s;
}

.js-fadeRight.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/* ============common
=============================================== */
html {
  font-size: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style-type: none;
}

.wrapper {
  margin: 0 auto;
}
.flex {
  display: flex;
}

body {
  margin: 0 auto;
}

@media (max-width: 430px) {
  .br-pc {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 430px) {
  .sp-br {
    display: block;
  }
}

/* フォント */
.noto-sans-jp-100 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-serif-jp-100 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.noto-serif-jp-400 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp-700 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* =========================
   Fixed Contact Button
   サイズ調整：--fc-size を変更するだけ
   ========================= */
:root {
  --fc-size: 140px; /* PCサイズ */
  --fc-offset: 18px; /* 右下余白 */
}

@media (max-width: 768px) {
  :root {
    --fc-size: 110px; /* スマホで少し小さく */
    --fc-offset: 14px;
  }
}
.fixedContact {
  position: fixed;
  right: var(--fc-offset);
  bottom: var(--fc-offset);
  width: var(--fc-size);
  height: var(--fc-size);
  z-index: 9999;
  display: grid;
  place-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* 外周（リング+文字）ここだけ回転 */
.fixedContact__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  will-change: transform;
  transform: rotate(0deg);
}

/* リング本体（切れ目対策：最初と最後の色を同じにして巻き戻しを自然に） */
.fixedContact__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* ★ここが肝：conic-gradientでリングを作る */
  background: conic-gradient(from 215deg, #5fb6ff 0%, #8a6cff 42%, #ff62b5 78%, #5fb6ff 100%);
  /* 中央をくり抜いてリング化 */
  -webkit-mask: radial-gradient(transparent 50%, #000 51%);
  mask: radial-gradient(transparent 50%, #000 51%);
}

/* 外周の文字 */
.fixedContact__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fixedContact__text {
  font-size: 18px; /* 外周文字の大きさ */
  font-weight: 800;
  letter-spacing: 0.18em;
  fill: #ffffff;
  opacity: 0.98;
}

/* 中央（回転しない） */
.fixedContact__center {
  width: calc(var(--fc-size) * 0.62);
  height: calc(var(--fc-size) * 0.62);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.fixedContact__centerText {
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-size: calc(var(--fc-size) * 0.08);
  /* 中央文字もグラデっぽく */
  background: linear-gradient(90deg, #5fb6ff 0%, #8a6cff 55%, #ff62b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* hover */
@media (hover: hover) {
  .fixedContact:hover .fixedContact__center {
    transform: translateY(2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }
}
/* 押下 */
.fixedContact:active .fixedContact__center {
  transform: translateY(0px) scale(0.99);
}

/* =============  header  ================ */
/* ヘッダー */
.section1 {
  /* ====== 調整しやすい変数 ====== */
  /* Wrapper基準幅（完成図の見た目安定用） */
  position: relative;
  overflow: hidden;
  /* 横スクロール防止 */
  background: linear-gradient(180deg, #f6fbff 0%, #f3f6ff 100%);
  padding: 28px 0 0;
  min-height: 750px;
  /* ======================================================
    重要：画面端までの余白（bleed）を自動算出
    例：画面2000pxでも (2000-1080)/2 = 460px となり、
        “左に飛び出す” は「端まで」で止まる（見切れない）
  ====================================================== */
  --wrap: 1080px;
  --bleed: max(0px, calc((115vw - var(--wrap)) / 2));
  --edgePad: 22px;
  /* wrapper左右パディング相当 */
  /* ====== 背景（傾いた画像） ====== */
  /* ====== モデル画像 ====== */
  /* ====== 中身 wrapper（ここを必ず中央基準にする） ====== */
  /* 左上ロゴ（小） */
  /* タイトルロゴ（見切れ防止：最大幅＋右へ逃がす） */
  /* ====== 斜め帯（端まで飛び出し：bleedで制御） ====== */
  /* ====== 下部：ポイント + CTA ====== */
  /* ====== 下帯 ====== */
  /* =========================
     アニメ（左から出る：デザイン重視）
  ========================= */
  /* ribbonsは回転があるので、tabだけ角度合わせ */
}
@media (max-width: 768px) {
  .section1 {
    padding-top: 18px;
    min-height: 750px;
  }
}
@media (max-width: 430px) {
  .section1 {
    min-height: 880px;
  }
}
.section1__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section1__bgImg {
  position: absolute;
  left: 38%;
  top: 130px;
  width: min(980px, 78vw);
  height: auto;
  transform: translateX(-35%);
  /* “右寄り”の見え方に固定 */
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.02);
}
@media (max-width: 1280px) {
  .section1__bgImg {
    top: 150px;
    width: min(920px, 86vw);
    transform: translateX(-42%);
  }
}
@media (max-width: 768px) {
  .section1__bgImg {
    top: 210px;
    width: 118%;
    left: 50%;
    transform: translateX(-52%);
    opacity: 0.9;
  }
}
@media (max-width: 430px) {
  .section1__bgImg {
    top: 220px;
    width: 130%;
    transform: translateX(-56%);
  }
}
.section1__model {
  position: absolute;
  right: clamp(0px, 2vw, 36px);
  bottom: 0;
  width: min(380px, 40vw);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}
@media (max-width: 1280px) {
  .section1__model {
    width: min(360px, 38vw);
  }
}
@media (max-width: 768px) {
  .section1__model {
    width: min(300px, 62vw);
    right: 14px;
  }
}
@media (max-width: 430px) {
  .section1__model {
    width: min(450px, 74vw);
    right: 0;
  }
}
.section1__inner {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 var(--edgePad);
}
@media (max-width: 768px) {
  .section1__inner {
    width: min(740px, 100% - 32px);
    padding: 0 16px;
  }
}
@media (max-width: 430px) {
  .section1__inner {
    width: calc(100% - 24px);
    padding: 0 12px;
  }
}
.section1__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.section1__mark {
  width: 78px;
  height: auto;
}
@media (max-width: 768px) {
  .section1__mark {
    width: 64px;
  }
}
.section1__titleLogo {
  display: block;
  width: min(520px, 62vw);
  height: auto;
  margin: 6px 0 30px;
  transform: rotate(-9deg) translateX(0);
  transform-origin: left top;
  filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
  .section1__titleLogo {
    width: min(520px, 86vw);
    margin: 2px 0 10px;
    transform: rotate(-10deg);
  }
}
.section1__ribbons {
  position: relative;
  width: min(720px, 76vw);
  margin-top: 45px;
  transform: rotate(-9deg);
  transform-origin: left 100px;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .section1__ribbons {
    width: min(700px, 94vw);
    transform: rotate(-9deg);
    margin-top: 30px;
  }
}
.section1__catch, .section1__lead {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin: 0;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  /* ★ここが肝：左へ飛び出す量をbleedで自動調整（端で止まる） */
  width: calc(100% + var(--bleed));
  margin-left: calc(var(--bleed) * -1);
  padding: 14px 18px 14px calc(18px + var(--bleed));
  /* 端に当たる直前の安全マージン */
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
@media (max-width: 768px) {
  .section1__catch, .section1__lead {
    padding: 14px 16px 14px calc(35px + var(--bleed));
  }
}
@media (max-width: 430px) {
  .section1__catch, .section1__lead {
    padding: 12px 14px 12px calc(40px + var(--bleed));
  }
}
.section1__catch {
  font-size: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(90deg, rgba(89, 184, 255, 0.92) 0%, rgba(138, 97, 255, 0.92) 55%, rgba(255, 95, 179, 0.92) 100%);
}
.section1__lead {
  margin-top: 12px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.55;
  background: linear-gradient(90deg, rgba(89, 184, 255, 0.78) 0%, rgba(138, 97, 255, 0.84) 55%, rgba(255, 95, 179, 0.86) 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.section1__actions {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  width: min(760px, 76vw);
}
@media (max-width: 768px) {
  .section1__actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 430px) {
  .section1__actions {
    margin-top: 25px;
    gap: 150px;
    /* モデルと干渉しない完成図の間 */
  }
}
.section1__pointsBox {
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid #c06bff;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  /* ★飛び出しをbleedに統一（端で止まる・見切れない） */
  width: calc(100% + var(--bleed));
  margin-left: calc(var(--bleed) * -1);
  padding: 16px 16px 16px calc(24px + var(--bleed));
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .section1__pointsBox {
    width: min(520px, 65%);
    margin-left: calc(var(--bleed) * -1);
    padding-left: calc(16px + var(--bleed));
  }
}
@media (max-width: 430px) {
  .section1__pointsBox {
    width: 320px;
    padding-left: calc(16px + var(--bleed));
  }
}
.section1__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.section1__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.01em;
  font-size: 18px;
}
@media (max-width: 768px) {
  .section1__point {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  .section1__point {
    font-size: 17px;
  }
}
.section1__check {
  width: 22px;
  height: 22px;
}
.section1__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #22c55e;
  color: #111827;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.section1__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  background: #fff;
}
@media (max-width: 768px) {
  .section1__cta {
    width: 350px;
    height: 60px;
    justify-self: start;
    /* 完成図寄せ */
  }
}
@media (max-width: 430px) {
  .section1__cta {
    padding: 0 12px;
    width: 240px;
    height: 55px;
    justify-self: start;
  }
}
.section1__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  background: linear-gradient(90deg, rgba(55, 193, 197, 0.75) 0%, rgba(42, 174, 192, 0.75) 35%, rgba(58, 160, 200, 0.75) 70%, rgba(79, 143, 203, 0.75) 100%);
  z-index: 4;
  font-size: 28px;
}
@media (max-width: 768px) {
  .section1__bottom {
    height: 70px;
    font-size: 24px;
    padding: 0 10px;
  }
}
@media (max-width: 430px) {
  .section1__bottom {
    font-size: 20px;
  }
}
.section1__ribbons, .section1__pointsBox {
  opacity: 0;
  transform: translateX(-60px) rotate(-9deg);
}
@media (max-width: 768px) {
  .section1__ribbons {
    transform: translateX(-50px) rotate(-10deg);
  }
}
.section1.is-hero-in .section1__ribbons {
  -webkit-animation: s1SlideInRibbon 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 0.08s forwards;
          animation: s1SlideInRibbon 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 0.08s forwards;
}
.section1.is-hero-in .section1__pointsBox {
  -webkit-animation: s1SlideInBox 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 0.22s forwards;
          animation: s1SlideInBox 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) 0.22s forwards;
}
@-webkit-keyframes s1SlideInRibbon {
  to {
    opacity: 1;
    transform: translateX(0) rotate(-9deg);
  }
}
@keyframes s1SlideInRibbon {
  to {
    opacity: 1;
    transform: translateX(0) rotate(-9deg);
  }
}
@-webkit-keyframes s1SlideInBox {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes s1SlideInBox {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section1__ribbons, .section1__pointsBox {
    opacity: 1;
    transform: none;
    -webkit-animation: none !important;
            animation: none !important;
  }
}

/* 念のため：横スクロールの根本封じ（推奨） */
html,
body {
  overflow-x: clip;
}

/* =========================
   section2
========================= */
.section2 {
  /* 完成図寄せカラー */
  padding: 64px 0;
  background: #fff;
  /* 白カード（崩れない縁取り：border-box方式） */
  /* 下の帯（完成図：青→紫→ピンク） */
  /* =========================
     Section2：Tablet付近崩れ対策
     ※768pxより前に1カラム化して文字崩れを防ぐ
  ========================= */
  /* =========================
     Section2：SmallSP(<=440px) はみ出し対策
  ========================= */
}
@media (max-width: 768px) {
  .section2 {
    padding: 46px 0 25px;
  }
}
.section2__inner {
  max-width: 1080px;
  width: 90%;
  margin: 30px auto 60px;
  padding: 0 22px;
}
@media (max-width: 768px) {
  .section2__inner {
    padding: 0 16px;
  }
}
.section2__card {
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #69c9ff 0%, #8a61ff 55%, #ff5fb3 100%) border-box;
  border-radius: 42px;
  padding: 56px 64px 52px;
  box-shadow: -10px -10px 0 rgba(105, 201, 255, 0.9), 10px 10px 0 rgba(255, 95, 179, 0.65);
}
@media (max-width: 768px) {
  .section2__card {
    border-radius: 34px;
    padding: 40px 20px 34px;
  }
}
.section2__headline {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 38px;
  font-size: clamp(26px, 2.6vw, 40px);
  background: linear-gradient(90deg, #5aa8ff 0%, #8a61ff 55%, #ff5fb3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .section2__headline {
    margin-bottom: 26px;
  }
}
.section2__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .section2__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.section2__logoWrap {
  display: grid;
  justify-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .section2__logoWrap {
    justify-items: center;
  }
}
.section2__logo {
  width: 190px;
  height: auto;
}
@media (max-width: 768px) {
  .section2__logo {
    width: 170px;
  }
}
@media (max-width: 430px) {
  .section2__logo {
    width: 165px;
  }
}
.section2__text {
  margin: 0;
  font-weight: 900;
  color: #111;
  line-height: 1.9;
  font-size: 22px;
  overflow-wrap: anywhere;
}
.section2__text strong {
  font-weight: 900;
}
@media (max-width: 768px) {
  .section2__text {
    font-size: 19px;
    line-height: 1.85;
  }
}
@media (max-width: 430px) {
  .section2__text {
    font-size: 17px;
  }
}
.section2__bottom {
  margin-top: 46px;
  padding: 36px 16px;
  text-align: center;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
  background: linear-gradient(90deg, rgba(90, 168, 255, 0.95) 0%, rgba(138, 97, 255, 0.95) 55%, rgba(255, 95, 179, 0.95) 100%);
}
@media (max-width: 768px) {
  .section2__bottom {
    margin-top: 28px;
    padding: 30px 14px;
  }
}
@media (max-width: 1024px) {
  .section2 .section2__content {
    grid-template-columns: 1fr;
    /* ←2カラムをやめる */
    gap: 22px;
    justify-items: center;
  }
  .section2 .section2__logoWrap {
    justify-items: center;
    text-align: center;
  }
  .section2 .section2__text {
    width: 100%;
    max-width: 640px;
    /* ←読みやすい幅に固定 */
    margin: 0 auto;
    text-align: left;
    /* ←文章は左揃えの方が崩れにくい（完成図に近い） */
    word-break: keep-all;
    /* ←変な分割を減らす */
    line-break: strict;
  }
}
@media (max-width: 430px) {
  .section2 {
    /* 左上/右下のカラーシャドウが外側にはみ出して横スクロールになるのを防ぐ */
  }
  .section2 .section2__inner {
    padding: 0 12px;
    width: 94%;
  }
  .section2 .section2__card {
    border-radius: 26px;
    border-width: 6px;
    padding: 26px 16px 22px;
    /* ←左右を詰める（はみ出し防止） */
  }
  .section2 .section2__card {
    box-shadow: -8px -8px 0 rgba(105, 201, 255, 0.9), 8px 8px 0 rgba(255, 95, 179, 0.65);
  }
  .section2 .section2__topLabel {
    font-size: 18px;
    letter-spacing: 0.22em;
  }
  .section2 .section2__headline {
    font-size: 22px;
    /* ←見出しが長いので縮小 */
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .section2 .section2__logo {
    width: 140px;
    /* ←ロゴが溢れないように */
  }
  .section2 .section2__text {
    font-size: 16px;
    /* ←太字長文を詰める */
    line-height: 1.85;
    overflow-wrap: anywhere;
    /* ←(WAVE) などで横はみ出し防止 */
    word-break: normal;
  }
}

/* =========================
   section3
========================= */
.section3 {
  padding: 56px 0;
  background: #fff;
  /* ====== 大きい画面でも崩れない “約1000px wrapper” ====== */
  /* ====== カード ====== */
  /* 背景画像 */
  /* 読みやすさ（完成図のふわっと白） */
  /* 左の縦ロゴ */
  /* 中身 */
  /* 上の文章（完成図：中央寄せ・小さめ） */
  /* ====== PC：写真左／ピル右（完成図の安定構造） ====== */
  /* 写真 */
  /* ピル */
}
@media (max-width: 768px) {
  .section3 {
    padding: 44px 0;
  }
}
.section3__wrap {
  width: min(1000px, 100% - 44px);
  /* 1000px目安＋両サイド余白 */
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section3__wrap {
    width: min(560px, 100% - 32px);
    /* SP/タブは縦長寄せ */
  }
}
@media (max-width: 430px) {
  .section3__wrap {
    width: calc(100% - 24px);
  }
}
.section3__card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  padding: 34px 34px 30px;
}
@media (max-width: 1280px) {
  .section3__card {
    padding: 30px 28px 26px;
  }
}
@media (max-width: 768px) {
  .section3__card {
    border-radius: 28px;
    padding: 22px 18px 18px;
  }
}
@media (max-width: 430px) {
  .section3__card {
    border-radius: 24px;
    padding: 18px 14px 14px;
  }
}
.section3__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  z-index: 0;
}
.section3__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}
.section3__sideLogo {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
  height: 240px;
  width: auto;
  z-index: 3;
  opacity: 0.95;
}
@media (max-width: 1280px) {
  .section3__sideLogo {
    height: 210px;
  }
}
@media (max-width: 768px) {
  .section3__sideLogo {
    height: 270px;
  }
}
@media (max-width: 430px) {
  .section3__sideLogo {
    height: 210px;
  }
}
.section3__inner {
  position: relative;
  z-index: 4;
  padding-left: 82px;
  /* 縦ロゴ分 */
}
@media (max-width: 1280px) {
  .section3__inner {
    padding-left: 58px;
  }
}
@media (max-width: 768px) {
  .section3__inner {
    padding-left: 40px;
  }
}
@media (max-width: 430px) {
  .section3__inner {
    padding-left: 1px;
  }
}
.section3__text {
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.02em;
  line-height: 1.55;
  font-size: 20px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.55);
}
@media (max-width: 1280px) {
  .section3__text {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .section3__text {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.section3__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 22px;
}
@media (max-width: 768px) {
  .section3__grid {
    /* ====== SP：縦積み（完成図） ====== */
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }
}
@media (max-width: 430px) {
  .section3__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }
}
.section3__photoWrap {
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .section3__photoWrap {
    width: min(280px, 100%);
  }
}
.section3__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
@media (max-width: 768px) {
  .section3__photo {
    max-width: 260px;
    border-radius: 14px;
  }
}
.section3__pills {
  display: grid;
  gap: 16px;
  justify-items: end;
}
@media (max-width: 768px) {
  .section3__pills {
    width: 100%;
    max-width: 460px;
    justify-items: center;
    gap: 10px;
  }
}
.section3__pill {
  width: min(540px, 95%);
  text-align: center;
  font-weight: 900;
  color: #0f172a;
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box, linear-gradient(90deg, rgba(90, 168, 255, 0.95) 0%, rgba(138, 97, 255, 0.95) 55%, rgba(255, 95, 179, 0.95) 100%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .section3__pill {
    width: min(560px, 90%);
  }
}
@media (max-width: 768px) {
  .section3__pill {
    font-size: 16px;
    padding: 10px 12px;
    width: 85%;
  }
}
@media (max-width: 430px) {
  .section3__pill {
    font-size: 14px;
    padding: 9px 10px;
  }
}

/* =========================
   section4
========================= */
.section4 {
  padding: 64px 0 70px;
  background: #fff;
  /* ====== 大きい画面でも崩れない：wrapper 約1000px ====== */
  /* ====== 斜めグラデ背景の“土台” ====== */
  /* 斜めの背景（完成図の雰囲気） */
  /* ふわっと白フィルター（読みやすさ） */
  /* 右上のドット装飾 */
  /* ====== タイトル（黒文字＋水色バー） ====== */
  /* ====== 中身：PCは左テキスト / 右画像 ====== */
  /* 画像（角丸＋影） */
}
@media (max-width: 768px) {
  .section4 {
    padding: 48px 0 56px;
  }
}
.section4__wrap {
  width: min(1000px, 100% - 42px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section4__wrap {
    width: min(620px, 100% - 32px);
  }
}
@media (max-width: 430px) {
  .section4__wrap {
    width: calc(100% - 22px);
  }
}
.section4__panel {
  position: relative;
  padding: 26px 24px 30px;
  isolation: isolate;
  /* z-index管理安定 */
}
@media (max-width: 1280px) {
  .section4__panel {
    padding: 24px 22px 28px;
  }
}
@media (max-width: 768px) {
  .section4__panel {
    padding: 18px 14px 20px;
  }
}
.section4__panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 118%;
  height: 460px;
  border-radius: 26px;
  background: linear-gradient(90deg, rgba(205, 245, 255, 0.75) 0%, rgba(235, 248, 255, 0.55) 48%, rgba(255, 220, 242, 0.65) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  z-index: 0;
}
@media (max-width: 1280px) {
  .section4__panel::before {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .section4__panel::before {
    width: 112%;
    height: 520px;
    transform: translate(-50%, -50%) rotate(-2deg);
  }
}
@media (max-width: 430px) {
  .section4__panel::before {
    height: 560px;
  }
}
.section4__panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 118%;
  height: 460px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}
@media (max-width: 1280px) {
  .section4__panel::after {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .section4__panel::after {
    width: 112%;
    height: 520px;
    transform: translate(-50%, -50%) rotate(-2deg);
  }
}
@media (max-width: 430px) {
  .section4__panel::after {
    height: 560px;
  }
}
.section4__bgIcon {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 210px;
  height: auto;
  z-index: 2;
  opacity: 0.95;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1280px) {
  .section4__bgIcon {
    width: 190px;
    right: 12px;
    top: 18px;
  }
}
@media (max-width: 768px) {
  .section4__bgIcon {
    width: 170px;
    right: 9px;
    top: 33%;
  }
}
@media (max-width: 430px) {
  .section4__bgIcon {
    width: 150px;
  }
}
.section4__title {
  position: relative;
  z-index: 3;
  margin: 0 auto 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-size: clamp(19px, 2.4vw, 34px);
  color: #0b0b0b;
}
.section4__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 104%;
  height: 16px;
  background: rgba(84, 197, 206, 0.5);
  z-index: -1;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .section4__title::after {
    height: 14px;
    bottom: -7px;
  }
}
.section4__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1280px) {
  .section4__grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .section4__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }
}
.section4__text {
  max-width: 560px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.section4__text p {
  margin: 0;
}
.section4__text p + p {
  margin-top: 22px;
}
@media (max-width: 1280px) {
  .section4__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .section4__text {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
    max-width: 520px;
  }
  .section4__text p + p {
    margin-top: 16px;
  }
}
@media (max-width: 430px) {
  .section4__text {
    font-size: 15px;
  }
}
.section4__imageWrap {
  margin: 0 auto;
  width: 80%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media (max-width: 1280px) {
  .section4__imageWrap {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .section4__imageWrap {
    max-width: 320px;
    margin-top: 20px;
  }
}
@media (max-width: 430px) {
  .section4__imageWrap {
    max-width: 240px;
  }
}
.section4__image {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1280px) {
  .section4__image {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .section4__image {
    max-width: 320px;
  }
}
@media (max-width: 430px) {
  .section4__image {
    max-width: 240px;
  }
}

.section4 {
  padding: 64px 0 70px;
  background: #fff;
  /* ★これを追加：疑似要素の“はみ出し”で横スクロールが出ないようにする */
  overflow-x: clip;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .section4 {
    padding: 48px 0 56px;
  }
}

/* =========================
  section5（崩れない版）
========================= */
.section5 {
  background: #fff url("../img/sec5-bgi.png") center/cover no-repeat;
  padding: clamp(44px, 4.5vw, 70px) 18px clamp(48px, 5vw, 76px);
  /* 1000px以上は wrapper 固定 */
  /* ====== ここが崩れないポイント：gridで2カラム固定 ====== */
  /* 人物：absolute禁止（中間幅で崩れる原因） */
  /* 右のピル群：右カラム内で収める */
  /* ====== 1280以下（タブレット～小PC）：比率を少し詰める ====== */
  /* ====== 768以下（SP）：完成図の「縦並び」へ ====== */
  /* ====== 440以下（SmallSP）：余白と文字だけ調整 ====== */
}
.section5__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  position: relative;
}
.section5__head {
  text-align: center;
}
.section5__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: #111;
}
.section5__lead {
  margin: 18px auto 0;
  max-width: 560px;
  text-align: left;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-size: clamp(18px, 1.4vw, 20px);
  color: #111;
  text-align: center;
}
.section5__body {
  margin-top: clamp(22px, 3.2vw, 40px);
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: end;
}
.section5__person {
  margin: 0;
  align-self: end;
  width: 100%;
  max-width: 420px;
}
.section5__person img {
  display: block;
  width: 100%;
  height: auto;
}
.section5__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 22px);
  align-self: center;
}
.section5__pill {
  margin: 0;
  width: 100%;
  border-radius: 999px;
  padding: 18px 22px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  font-size: clamp(16px, 1.7vw, 22px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  /* グラデ枠（ズレに強い） */
  border: 3px solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) padding-box, linear-gradient(90deg, #53b9ff 0%, #9c66ff 55%, #ff63bf 100%) border-box;
  /* 長文でもはみ出さない */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 1280px) {
  .section5__body {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }
  .section5__person {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .section5 {
    padding: 44px 14px 58px;
  }
  .section5__lead {
    max-width: 520px;
    margin: 18px auto 30px;
  }
  .section5__body {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .section5__person {
    max-width: 340px;
    margin: 0 auto;
    order: 2;
  }
  .section5__list {
    order: 1;
    width: 100%;
    gap: 16px;
  }
  .section5__pill {
    padding: 18px 16px;
    font-size: 18px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 430px) {
  .section5 {
    padding: 50px 15px 0px;
  }
  .section5__title {
    font-size: 26px;
  }
  .section5__lead {
    font-size: 16px;
    text-align: center;
  }
  .section5__person {
    max-width: 210px;
  }
  .section5__pill {
    padding: 14px 10px;
    font-size: 16px;
    border-width: 3px;
  }
}

/* =========================
  section6
========================= */
.section6 {
  --wrapMax: 1100px;
  --padX: 24px;
  --padY: 70px;
  --titleSize: clamp(25px, 2.8vw, 40px);
  --copySize: clamp(22px, 2.3vw, 34px);
  --textSize: 15px;
  --itemGap: 38px;
  --itemRadius: 18px;
  position: relative;
  padding: var(--padY) 0;
  background: #fff;
}
@media (max-width: 1280px) {
  .section6 {
    --padY: 60px;
  }
}
@media (max-width: 768px) {
  .section6 {
    --padY: 48px;
    --padX: 18px;
  }
}

/* 左の縦ロゴ（innerは中央、ロゴだけ左に固定） */
.section6__sideLogo {
  position: absolute;
  left: -20px;
  top: 100px;
  width: 68px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
}
@media (max-width: 1280px) {
  .section6__sideLogo {
    left: 0;
    top: 85px;
    width: 62px;
  }
}
@media (max-width: 768px) {
  .section6__sideLogo {
    left: -16px;
    top: 270px;
    width: 56px;
  }
}
@media (max-width: 430px) {
  .section6__sideLogo {
    left: -17px;
    top: 35%;
    width: 65px;
  }
}

.section6__wrap {
  position: relative;
  max-width: var(--wrapMax);
  margin: 0 auto;
  padding: 0 var(--padX);
  min-height: 520px;
}
@media (max-width: 768px) {
  .section6__wrap {
    min-height: auto;
  }
}

/* 中央の中身（常に中央寄せ） */
.section6__inner {
  position: relative;
  margin: 0 auto;
  width: min(1000px, 100%);
  text-align: center;
}

/* 上段 */
.section6__top {
  margin: 0 auto 56px;
  width: min(860px, 100%);
}

.section6__title {
  margin: 0 0 18px;
  font-size: var(--titleSize);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #111;
}

.section6__lead {
  margin: 0 auto;
  font-size: var(--textSize);
  line-height: 1.9;
  font-weight: 700;
  color: #111;
  opacity: 0.95;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .section6__lead {
    font-size: 14px;
    line-height: 1.85;
    padding: 0 6px;
  }
}

/* 中段 */
.section6__mid {
  margin: 0 auto 44px;
  width: min(900px, 100%);
}

.section6__copy {
  margin: 0 0 12px;
  font-size: var(--copySize);
  font-weight: 900;
  color: #111;
  letter-spacing: 0.02em;
}

.section6__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #111;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .section6__sub {
    font-size: 15px;
  }
}

/* 背景ドット（右下〜中央にかけて） */
.section6__bgIcon {
  position: absolute;
  right: -36px;
  top: 260px;
  width: min(560px, 52vw);
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1280px) {
  .section6__bgIcon {
    right: -24px;
    top: 250px;
    width: min(520px, 56vw);
  }
}
@media (max-width: 768px) {
  .section6__bgIcon {
    right: -18px;
    top: 360px;
    width: min(520px, 86vw);
    opacity: 0.55;
  }
}

/* items */
.section6__items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--itemGap);
  align-items: start;
  width: min(980px, 100%);
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .section6__items {
    gap: 28px;
    width: min(980px, 100%);
  }
}
@media (max-width: 768px) {
  .section6__items {
    grid-template-columns: 1fr;
    gap: 45px;
    width: min(520px, 80%);
  }
}

.section6__item {
  text-align: center;
}

.section6__thumb {
  margin: 0 auto 16px;
  width: 100%;
  border-radius: var(--itemRadius);
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.section6__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section6__thumb {
    border-radius: 35px;
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.12);
  }
}

.section6__itemTitle {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #111;
}
@media (max-width: 1280px) {
  .section6__itemTitle {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .section6__itemTitle {
    font-size: 22px;
  }
}

.section6__itemText {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #111;
  opacity: 0.9;
}
@media (max-width: 1280px) {
  .section6__itemText {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section6__itemText {
    font-size: 16px;
  }
}

/* =======================
  section7
======================= */
.section7 {
  position: relative;
  padding: clamp(50px, 7vw, 80px) 0;
  overflow: hidden;
  /* 背景画像 */
  background: url("../img/sec7-bgi.png") center/cover no-repeat;
  /* ================= SP ================= */
}
.section7__wrap {
  width: min(1000px, 100% - 48px);
  margin: 0 auto;
}
.section7__title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(28px, 4vw, 40px);
}
.section7__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 3vw, 32px);
}
.section7__item {
  min-width: 0;
}
.section7__label {
  text-align: center;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #3fc1c9, #9c6dff, #ff73c4) border-box;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.section7__box {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: clamp(14px, 2vw, 20px);
  border-radius: 6px;
  border: 1px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.section7__box p {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
}
@media (max-width: 820px) {
  .section7__wrap {
    width: calc(95% - 32px);
  }
  .section7__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section7__title {
    margin-bottom: 45px;
  }
  .section7__label {
    font-size: 17px;
  }
}

/* =========================
   section8（Flow）
========================= */
.section8 {
  padding: 90px 0;
  background: #fff;
  /* ================= GRID：全体レイアウト ================= */
  /* ================= CARD：中身はflex縦並び ================= */
  /* ================= ARROW：画像で制御 ================= */
  /* 最後は矢印なし */
  /* 4列時：1→2→3のみ（2と3はHTML上は置いてあるが最後で消える） */
  /* 何もしなくてOK */
  /* ===== 2列2行（1200px以下）：矢印は「1→2」「3→4」だけ ===== */
  /* ===== SP縦並び：下向き（90度回転） ===== */
}
.section8__wrap {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}
.section8__title {
  text-align: center;
  font-size: clamp(26px, 2vw, 40px);
  font-weight: 900;
  margin-bottom: 60px;
}
.section8__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .section8__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 110px;
  }
}
@media (max-width: 640px) {
  .section8__grid {
    grid-template-columns: 1fr;
    gap: 80px;
    width: min(400px, 100%);
    margin: 0 auto;
  }
}
.section8__item {
  position: relative;
  min-width: 0;
}
.section8__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  height: 100%;
  min-height: 350px;
  padding: 30px 26px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #59b8ff, #8a61ff, #ff5fb3) border-box;
  border: 2px solid transparent;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.section8__step {
  margin: 0;
  color: #7b61ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 20px;
}
.section8__icon {
  width: 125px;
  height: auto;
  flex: 0 0 auto;
}
.section8__head {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
}
.section8__text {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
  font-size: 16px;
  max-width: 22em;
}
.section8__arrow {
  position: absolute;
  width: 36px;
  height: auto;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section8__item:last-child .section8__arrow {
  display: none;
}
@media (max-width: 1200px) {
  .section8 {
    /* 2列時の矢印位置（中央の溝に合わせる） */
  }
  .section8 .section8__arrow {
    display: none;
  }
  .section8 .section8__arrow--1 {
    display: block;
  }
  .section8 .section8__arrow--3 {
    display: block;
  }
  .section8 .section8__arrow--1,
.section8 .section8__arrow--3 {
    right: -72px;
  }
}
@media (max-width: 640px) {
  .section8 .section8__arrow {
    display: block;
    left: 50%;
    right: auto;
    top: auto;
    bottom: -56px;
    transform: translateX(-50%) rotate(90deg);
  }
  .section8 .section8__item:last-child .section8__arrow {
    display: none;
  }
}

/* =======================
  section9 / FAQ
======================= */
.section9 {
  position: relative;
  background: #fff;
  padding: clamp(48px, 6vw, 84px) 0;
  overflow: hidden;
  /* 左の縦ロゴ：外側に置きつつ、wrap中央は崩さない */
  /* wrapper：大きい画面でも崩れない */
  /* 質問バー */
  /* 右端の＋/× */
  /* 回答（閉じた状態） */
  /* OPEN状態 */
  /* ====== Responsive ====== */
}
.section9__wrap {
  width: min(1000px, 92vw);
  margin-inline: auto;
  padding-inline: clamp(10px, 2vw, 24px);
}
.section9__title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 clamp(26px, 3vw, 36px);
  font-size: clamp(34px, 4.4vw, 52px);
}
.section9__list {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
}
.section9__item {
  /* 影や高さは控えめ（完成図のフラット感） */
}
.section9__q {
  width: 100%;
  border: 0;
  background: #f1f1f1;
  border-radius: 0;
  padding: clamp(12px, 1.6vw, 16px) clamp(14px, 2vw, 18px);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  /* ブレ防止 */
  min-height: 68px;
}
.section9__qIcon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #46b7ff 0%, #8a69ff 55%, #ff5db9 100%);
}
.section9__qText {
  flex: 1 1 auto;
  font-weight: 900;
  color: #111;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}
.section9__toggle {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
}
.section9__toggle::before {
  content: "+";
  font-size: 38px;
  line-height: 1;
  color: #111;
  transform: translateY(-1px);
}
.section9__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  will-change: max-height;
}
.section9__a p {
  margin: 10px 0 0;
  padding-left: 58px;
  /* Qアイコン分 + gap */
  font-weight: 800;
  color: #111;
  font-size: clamp(15px, 1.9vw, 19px);
  line-height: 1.65;
}
.section9__item.is-open {
  /* JSが max-height を入れるが、JS無しでも最低限見えるように */
}
.section9__item.is-open .section9__toggle::before {
  content: "×";
  font-size: 34px;
  transform: translateY(-1px);
}
.section9__item.is-open .section9__a {
  max-height: 240px;
}
@media (max-width: 860px) {
  .section9__sideLogo {
    left: 10px;
    opacity: 0.9;
  }
}
@media (max-width: 560px) {
  .section9__sideLogo {
    /* SPで邪魔なら薄く or 非表示に */
    opacity: 0.65;
    width: 36px;
  }
  .section9__q {
    min-height: 64px;
  }
  .section9__a p {
    padding-left: 0;
    margin-left: 58px;
    /* 行頭合わせ（折返し崩れ防止） */
  }
}

/* =======================
  section10
======================= */
.section10 {
  position: relative;
  overflow: hidden;
  background: #fff;
  /* 斜めに見える背景画像（画像自体が斜め） */
  background-image: url("../img/sec10-bgi.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 86px 0 92px;
  /* Wrapper（崩れ防止） */
  /* 中身：センター基準で整える */
  /* タイトル（白帯＋影、"やってみたい"はグラデ文字） */
  /* 本文 */
  /* 強調テキスト */
  /* CTA（白ボタン＋グラデ枠） */
}
@media (max-width: 1280px) {
  .section10 {
    padding: 74px 0 80px;
  }
}
@media (max-width: 768px) {
  .section10 {
    padding: 52px 0 62px;
  }
}
@media (max-width: 430px) {
  .section10 {
    padding: 44px 0 54px;
  }
}
.section10__wrap {
  width: min(1100px, 100% - 44px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section10__wrap {
    width: min(720px, 100% - 32px);
  }
}
@media (max-width: 430px) {
  .section10__wrap {
    width: calc(100% - 24px);
  }
}
.section10__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}
.section10__title {
  margin: 0 0 34px;
  padding: 20px 26px;
  width: min(980px, 100%);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  /* 完成図が角丸に見えないので0（必要なら2px程度に） */
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-size: clamp(22px, 3vw, 44px);
  color: #0b0b0b;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 18px;
  justify-content: center;
}
@media (max-width: 768px) {
  .section10__title {
    margin-bottom: 26px;
    padding: 16px 16px;
    gap: 12px;
    font-size: clamp(18px, 5.2vw, 30px);
  }
}
.section10__titleEm {
  background: linear-gradient(90deg, #59b8ff 0%, #8a61ff 55%, #ff5fb3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  margin: 0 auto;
}
.section10__titleText {
  color: #0b0b0b;
  margin: 0 auto;
}
.section10__text {
  width: min(500px, 100%);
  text-align: left;
  font-size: 20px;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: rgba(10, 10, 10, 0.92);
  font-weight: 700;
}
.section10__text p {
  margin: 0;
}
.section10__text p + p {
  margin-top: 28px;
}
@media (max-width: 1280px) {
  .section10__text {
    font-size: 19px;
  }
  .section10__text p + p {
    margin-top: 22px;
  }
}
@media (max-width: 768px) {
  .section10__text {
    font-size: 17px;
    line-height: 2;
  }
  .section10__text p + p {
    margin-top: 18px;
  }
}
@media (max-width: 430px) {
  .section10__text {
    font-size: 14px;
    width: 86%;
  }
}
.section10__note {
  margin: 34px 0 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0b0b0b;
  font-size: 18px;
}
@media (max-width: 768px) {
  .section10__note {
    margin: 26px 0 14px;
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .section10__note {
    margin: 22px 0 12px;
    font-size: 15px;
  }
}
.section10__cta {
  width: min(720px, 92%);
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  border: 3px solid transparent;
  /* グラデ枠：padding-box / border-box で再現 */
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #59b8ff 0%, #8a61ff 55%, #ff5fb3 100%) border-box;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #0b0b0b;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.section10__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .section10__cta {
    width: min(560px, 92%);
    height: 64px;
    font-size: 16px;
    gap: 14px;
  }
}
@media (max-width: 430px) {
  .section10__cta {
    width: min(420px, 92%);
    height: 58px;
    font-size: 14px;
    gap: 12px;
  }
}
.section10__ctaText {
  line-height: 1;
}
.section10__ctaArrow {
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* =======================
  footer
======================= */
.footer {
  background: #fff;
  padding: 70px 0 48px;
}
.footer__wrap {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer__logo {
  width: 160px;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .footer__logo {
    width: 140px;
  }
}
.footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .footer__copy {
    font-size: 11px;
  }
}
/*# sourceMappingURL=style.css.map */