@charset "UTF-8";
/* -----------------------------
   RESET
------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.5rem;
  color: #000;
}

.wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 3rem 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.fwb {
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   HEADER NAV（追加）
------------------------------- */
.site_nav {
  width: 100%;
  background: transparent;
  /* PCナビ */
}
.site_nav .nav_wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.site_nav .header_logo img {
  width: 50%;
  height: auto;
}
.site_nav .sns_icons {
  display: flex;
  gap: 1rem;
}
.site_nav .sns_icons img {
  width: 28px;
}
.site_nav .header_nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site_nav .header_nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

/* SPメニュー（右からスライドイン） */
.nav_sp {
  position: fixed;
  top: 0;
  right: -100%; /* ← 最初は画面の外 */
  width: 80%; /* ← 好きに変えてOK（例：75〜90%） */
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 2rem;
  transition: right 0.5s ease;
  z-index: 999;
  /* ✖ 閉じるボタン */
}
.nav_sp .nav_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.nav_sp ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem; /* ×ボタン分の余白 */
}
.nav_sp ul li {
  list-style: none; /* ← 追加済み */
}
.nav_sp ul li a {
  color: #fff;
  font-size: 1.3rem;
}
.nav_sp .btn_header_sp {
  background: #ffea00;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 1rem;
  display: inline-block;
}

/* 開いた状態（右からスライド） */
.nav_sp.active {
  right: 0;
}

/* PCではハンバーガー非表示 */
@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }
}
/* -----------------------------
   HERO SECTION
------------------------------- */
.section_hero {
  background: #ffff00;
  padding: 1rem 0 5rem;
  position: relative;
  overflow: visible;
  /* --- main content --- */
  /* --- illustrations --- */
  /* 左右の見た目調整（高さ揃え） */
}
.section_hero .hero_content {
  position: relative;
  z-index: 5;
}
.section_hero .hero_content .hero_headline {
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}
.section_hero .hero_content .hero_headline img {
  width: 50%;
  margin: 0 auto;
}
.section_hero .hero_content h3 {
  background: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 2.2vw;
  font-weight: bold;
  margin-bottom: 1rem;
}
.section_hero .hero_content .desc {
  font-size: 1.5vw;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.section_hero .hero_content .btn_yellow {
  display: inline-block;
  animation: scaleLoop 1.2s infinite ease-in-out;
  transform-origin: center;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  transition: 0.3s;
  border: 4px solid #000;
  font-size: 1.5vw;
}
.section_hero .hero_content .btn_yellow:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
@keyframes scaleLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* ← 拡大度合い調整可 */
  }
  100% {
    transform: scale(1);
  }
}
.section_hero .hero_illust_left,
.section_hero .hero_illust_right {
  position: absolute;
  bottom: 0;
  width: 20%;
  pointer-events: none;
  transform-origin: bottom center; /* ← 下端を基準にスケール */
}
.section_hero .hero_illust_left img,
.section_hero .hero_illust_right img {
  width: 99%;
  height: auto;
  display: block;
}
.section_hero .hero_illust_left {
  left: 2%;
  transform: scale(1);
}
.section_hero .hero_illust_right {
  right: 4%;
  transform: scale(1.3);
}
@media (max-width: 1024px) {
  .section_hero {
    padding-bottom: 8rem;
  }
  .section_hero .hero_illust_left,
  .section_hero .hero_illust_right {
    width: 26%;
  }
  .section_hero .hero_illust_left {
    transform: scale(1.1);
  }
  .section_hero .hero_illust_right {
    transform: scale(1);
  }
  .section_hero .hero_content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .section_hero {
    padding: 1.5rem 0 6rem;
  }
  .section_hero .hero_content h3 {
    font-size: 3.5vw;
  }
  .section_hero .hero_content .desc {
    font-size: 3.2vw;
  }
  .section_hero .hero_illust_left,
  .section_hero .hero_illust_right {
    width: 34%;
    opacity: 0.9;
  }
  .section_hero .hero_illust_left {
    transform: scale(1.1);
  }
  .section_hero .hero_illust_right {
    transform: scale(0.95);
  }
}

/* -----------------------------
   BLACK MESSAGE SECTION
------------------------------- */
.section_black_copy {
  background: #000;
  color: #fff;
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 5;
}
.section_black_copy .wrap {
  padding: 2.5rem 0;
}
.section_black_copy .wrap p {
  font-size: 150%;
  line-height: 1.5;
  font-weight: bold;
}
.section_black_copy .wrap p .big_yellow {
  font-size: 130%;
  color: #ffff00;
}
.section_black_copy .wrap p .red {
  color: #ff0000;
}
.section_black_copy .wrap span {
  color: #ffe500;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section_black_copy .wrap {
    padding: 1.6rem 1rem;
  }
  .section_black_copy .wrap p {
    font-size: 3.6vw;
  }
}

/* =========================================================
   EVENT SECTION
========================================================= */
.section_event {
  background: #ffff00;
  position: relative;
  overflow: hidden;
  /* 下端の波（深め＋細かめ） */
}
.section_event::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* ← 深く */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,40 C75,100 150,0 225,40 C300,80 375,0 450,40 C525,80 600,0 675,40 C750,80 825,0 900,40 C975,80 1050,0 1125,40 C1200,80 1200,80 1200,120 L0,120 Z' fill='%23ffffff'/></svg>") no-repeat bottom center;
  background-size: cover;
}
.section_event .wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 7rem;
}
.section_event .event_grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.section_event .event_img {
  width: 40%;
}
.section_event .event_img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .section_event .event_img {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .section_event {
    padding: 2.5rem 0 3rem;
  }
  .section_event .event_img {
    width: 100%;
  }
  .section_event::after {
    height: 90px; /* モバイルでも自然に見えるように */
  }
}

/* =========================================================
   共通：波型ボトム
========================================================= */
.wave-bottom-white,
.wave-bottom-yellow {
  position: relative;
  overflow: hidden;
}
.wave-bottom-white::after,
.wave-bottom-yellow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
@media (max-width: 768px) {
  .wave-bottom-white::after,
  .wave-bottom-yellow::after {
    height: 80px;
  }
}

/* ▼ 黄色背景用（白い波・山多めVer.） */
.wave-bottom-white::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,70 C25,55 75,55 100,70 C125,85 175,85 200,70 C225,55 275,55 300,70 C325,85 375,85 400,70 C425,55 475,55 500,70 C525,85 575,85 600,70 C625,55 675,55 700,70 C725,85 775,85 800,70 C825,55 875,55 900,70 C925,85 975,85 1000,70 C1025,55 1075,55 1100,70 C1125,85 1175,85 1200,70 L1200,120 L0,120 Z' fill='%23ffffff'/></svg>");
}

/* ▼ 白背景用（黄色い波・山多めVer.） */
.wave-bottom-yellow::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,70 C25,55 75,55 100,70 C125,85 175,85 200,70 C225,55 275,55 300,70 C325,85 375,85 400,70 C425,55 475,55 500,70 C525,85 575,85 600,70 C625,55 675,55 700,70 C725,85 775,85 800,70 C825,55 875,55 900,70 C925,85 975,85 1000,70 C1025,55 1075,55 1100,70 C1125,85 1175,85 1200,70 L1200,120 L0,120 Z' fill='%23ffff00'/></svg>");
}

/* =========================================================
   WHY SECTION
========================================================= */
.section_why {
  padding-bottom: 2rem;
  background: #fff;
}
.section_why h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_why p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.section_why .why_list {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: space-between;
  align-items: center;
}
.section_why .why_list ul {
  flex: 0 0 75%;
  box-sizing: border-box;
  text-align: left;
}
.section_why .why_list ul li:last-of-type {
  margin-bottom: 0rem;
}
.section_why .why_list ul li {
  background-color: rgba(255, 255, 0, 0.1803921569);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  position: relative;
  padding-left: 3.5rem;
  line-height: 1.6;
  list-style: none;
}
.section_why .why_list ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  background: url(../img/check.png) no-repeat center center;
  background-size: contain;
}
.section_why .why_list figure {
  flex: 1;
  box-sizing: border-box;
}
.section_why h3 {
  border: #ffff00 solid 5px;
  padding: 1rem;
  font-size: 90%;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.section_why h3 .blue_big {
  font-size: 120%;
  color: #0099d4;
}
.section_why h3 .fs_change {
  font-size: 130%;
}

/* =========================================================
   WANT SECTION
========================================================= */
.section_want {
  background-color: #ffff00;
}
.section_want .wrap {
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.section_want .wrap h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_want .wrap p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.section_want .wrap .want_deco::before {
  content: "";
  position: absolute;
  left: 13rem;
  top: 11rem;
  width: 14%;
  height: 27%;
  background: url(../img/want_person_1.png) no-repeat center center;
  background-size: contain;
}
.section_want .wrap .want_deco::after {
  content: "";
  position: absolute;
  right: 13rem;
  top: 11rem;
  width: 14%;
  height: 27%;
  background: url(../img/want_person_2.png) no-repeat center center;
  background-size: contain;
}
.section_want .wrap .fs_change {
  font-size: 130%;
  font-weight: bold;
}
.section_want .wrap h3 {
  border: #000 solid 5px;
  background-color: #fff;
  padding: 1rem;
  font-size: 120%;
  color: #0099d4;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

/* =========================================================
   BUY SECTION
========================================================= */
.section_buy h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_buy p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* =========================================================
   PACKAGE SECTION
========================================================= */
.section_package {
  border-top: #000 5px solid;
  border-bottom: #000 5px solid;
  background-color: #f4f4f4;
  /* =========================================================
     ★ wrap の外に出したフル幅バー
     （背景だけ 100% 幅、中身は wrap 幅）
  ========================================================== */
}
.section_package > .wrap:first-of-type {
  padding-bottom: 0;
}
.section_package > .wrap:last-of-type {
  padding-top: 0;
}
.section_package .wrap {
  /* --- 上の人物エリア（元のまま） --- */
  /* --- 下の under 部分（元のまま） --- */
}
.section_package .wrap h2 img {
  width: 50%;
  margin: 0 auto 2rem;
}
.section_package .wrap p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.section_package .wrap .package_person {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}
.section_package .wrap .package_person img {
  width: 20%;
  margin: 0 auto 1rem;
  display: block;
}
.section_package .wrap .package_person::before {
  content: "";
  display: block;
  width: 28%;
  height: 83%;
  top: 14%;
  left: 61%;
  position: absolute;
  background: url(../img/buy_img_1.png) no-repeat center center;
  background-size: contain;
}
.section_package .wrap .package_person::after {
  content: "";
  display: block;
  width: 28%;
  height: 28%;
  top: 96.5%;
  left: 36%;
  position: absolute;
  background: url(../img/buy_arrow_1.png) no-repeat center center;
  background-size: contain;
  z-index: -1;
}
.section_package .wrap .package_under figure {
  margin-bottom: 0.5rem;
}
.section_package .wrap .package_under figure img {
  width: 25%;
  margin: 0 auto;
  display: block;
}
.section_package .wrap .package_under .package_under_scroll img {
  width: 95%;
  margin: 0 auto;
  display: block;
}
.section_package .package_bar {
  background-color: #efef03; /* 画面いっぱい黄色 */
}
.section_package .package_bar .wrap {
  /* ここで中身を今まで通り中央寄せ */
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_package .package_bar figure {
  position: relative;
  width: 40%;
  margin: 0 auto;
}
.section_package .package_bar figure::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 104%; /* ← 元のまま */
  width: 36%;
  height: 87%;
  background: url(../img/buy_img_3.png) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

/* =========================================================
   CTA SECTION
========================================================= */
.section_cta {
  border-bottom: #000 5px solid;
  background-color: #ffff00;
  position: relative;
}
.section_cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 4%;
  left: 75%;
  width: 17.5%;
  height: 96.5%;
  background: url(../img/cta_person.png) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
.section_cta .wrap {
  padding: 2rem 0;
}
.section_cta .wrap .cta_pc {
  width: 90%;
  margin: 0 auto;
}
.section_cta .wrap .btn_black {
  display: inline-block;
  animation: scaleLoop 1.2s infinite ease-in-out;
  transform-origin: center;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  transition: 0.3s;
  border: 4px solid #000;
  font-size: 1.5vw;
}
.section_cta .wrap .btn_black:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
@keyframes scaleLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* ← 拡大度合い調整可 */
  }
  100% {
    transform: scale(1);
  }
}

/* -------------------------------------------------
   ヘッダー付近のストライプ
------------------------------------------------- */
.section_hero_wrap {
  overflow: hidden;
  position: relative;
  /* 黄色背景 */
  /* ストライプ */
  /* コンテンツ層 */
}
.section_hero_wrap .section_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section_hero_wrap .section_hero_stripe {
  position: absolute;
  top: -149vh;
  left: -61vw;
  width: 270vw;
  height: 30vh;
  background: #b7b7b7;
  opacity: 0.15;
  transform: rotate(48deg);
  transform-origin: left top;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .section_hero_wrap .section_hero_stripe {
    display: none;
  }
}
@media (max-width: 768px) {
  .section_hero_wrap .section_hero_stripe {
    display: none;
  }
}
.section_hero_wrap header,
.section_hero_wrap main {
  position: relative;
  background: #ffff00;
}

@media (max-width: 768px) {
  .section_hero_wrap {
    overflow: visible;
    background: #ffff00;
  }
}
/* -------------------------------------------------
   コンサルタント＋ストラクチャー（合同）＋他セクションのストライプ
------------------------------------------------- */
.section_consultant_wrap,
.section_voice,
.section_info,
.section_faq {
  position: relative;
  overflow: hidden;
  /* 📱 768px以下では非表示 */
}
.section_consultant_wrap::before,
.section_voice::before,
.section_info::before,
.section_faq::before {
  content: "";
  position: absolute;
  top: -149vh;
  left: -61vw;
  width: 270vw;
  height: 30vh;
  background: #b7b7b7;
  opacity: 0.15;
  transform: rotate(48deg);
  transform-origin: left top;
  z-index: 0;
  pointer-events: none;
}
.section_consultant_wrap > *,
.section_voice > *,
.section_info > *,
.section_faq > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section_consultant_wrap::before,
  .section_voice::before,
  .section_info::before,
  .section_faq::before {
    display: none;
  }
}

/* =========================================================
   CONSULTANT SECTION
========================================================= */
.section_consultant {
  border-bottom: #000 5px solid;
  background: transparent; /* ← 重要：背景を透かす */
}
.section_consultant .wrap {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.section_consultant .wrap h2 img {
  width: 50%;
  margin: 0 auto 4rem;
}
.section_consultant .wrap p {
  margin-bottom: 0.5rem;
}
.section_consultant .wrap h3 {
  font-size: 160%;
  margin-bottom: 3rem;
}
.section_consultant .wrap .consultant_box {
  display: flex;
  gap: 2rem;
}

/* =========================================================
   structure SECTION
========================================================= */
.section_structure {
  background: transparent;
}
.section_structure .wrap {
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.section_structure .wrap h2 {
  font-size: 160%;
  margin-bottom: 1rem;
  color: #0099d4;
}
.section_structure .wrap .structure_text {
  margin-bottom: 3rem;
}
.section_structure .wrap h3 {
  font-size: 110%;
  margin-bottom: 2rem;
}
.section_structure .wrap .structure_box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.section_structure .wrap .structure_box > div {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease;
}
.section_structure .wrap .structure_box > div figure {
  height: clamp(140px, 16vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.section_structure .wrap .structure_box > div figure img {
  width: 70%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.section_structure .wrap .structure_box > div h4 {
  font-size: 120%;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.section_structure .wrap .structure_box > div p {
  font-size: 70%;
  line-height: 1.6;
  text-align: left;
}
.section_structure .wrap .structure_box > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .section_structure .wrap .structure_box {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* =========================================================
   proposal SECTION
========================================================= */
.section_proposal {
  background-color: #ffff00;
}
.section_proposal .wrap {
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.section_proposal .wrap h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_proposal .wrap h3 {
  font-size: 140%;
  margin-bottom: 0.5rem;
}
.section_proposal .wrap p {
  margin-bottom: 2rem;
}
.section_proposal .wrap .proposal_perpson_1 {
  position: relative;
  margin-right: 3rem;
}
.section_proposal .wrap .proposal_perpson_1::after {
  content: "";
  display: block;
  width: 27%;
  height: 75%;
  top: 7%;
  left: 60%;
  position: absolute;
  background: url(../img/proposal_img_2.png) no-repeat center center;
  background-size: contain;
}
.section_proposal .wrap .proposal_perpson_1 img {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.section_proposal .wrap .proposal_box {
  position: relative;
}
.section_proposal .wrap .proposal_box::after {
  content: "";
  display: block;
  width: 28%;
  height: 28%;
  top: 96.5%;
  left: 36%;
  position: absolute;
  background: url(../img/proposal_img_4.png) no-repeat center center;
  background-size: contain;
}
.section_proposal .wrap .proposal_perspon_2 {
  margin-top: 6rem;
  position: relative;
}
.section_proposal .wrap .proposal_perspon_2::after {
  content: "";
  display: block;
  width: 27%;
  height: 75%;
  top: 7%;
  left: 61%;
  position: absolute;
  background: url(../img/proposal_img_6.png) no-repeat center center;
  background-size: contain;
}
.section_proposal .wrap .proposal_perspon_2 img {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

/* =========================================================
   youtube SECTION
========================================================= */
.section_youtube {
  border-bottom: #000 5px solid;
}
.section_youtube .wrap {
  max-width: 70vw;
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.section_youtube .wrap .youtube_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.section_youtube .wrap .youtube_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   step SECTION
========================================================= */
.section_step .wrap {
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.section_step .wrap h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_step .wrap h3 {
  font-size: 140%;
  margin-bottom: 4rem;
}
.section_step .wrap .step_benefits {
  /* 1024px以下で2列 */
  /* 768px以下で1列 */
}
.section_step .wrap .step_benefits .step_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 0 2rem;
  column-gap: 2rem;
  row-gap: 3.5rem;
}
.section_step .wrap .step_benefits .benefit_box {
  background: #ffff00;
  border-radius: 0.8rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  padding: 2rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_step .wrap .step_benefits .benefit_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.section_step .wrap .step_benefits .benefit_box figure {
  position: absolute;
  top: -2.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
}
.section_step .wrap .step_benefits .benefit_box figure img {
  width: 100%;
  height: auto;
  display: block;
}
.section_step .wrap .step_benefits .benefit_box h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 1rem 0;
  min-height: 8rem;
}
.section_step .wrap .step_benefits .benefit_box p {
  background: #fff;
  border-radius: 0.6rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.section_step .wrap .step_benefits .benefit_box .fs_change_2 {
  font-size: 130%;
}
.section_step .wrap .step_benefits .benefit_box .fs_change_3 {
  font-size: 80%;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .section_step .wrap .step_benefits .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .section_step .wrap .step_benefits .benefit_box h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .section_step .wrap .step_benefits .wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .section_step .wrap .step_benefits .benefit_box {
    padding: 2rem 1.2rem;
  }
  .section_step .wrap .step_benefits .benefit_box figure {
    width: 50px;
    top: -1.5rem;
  }
  .section_step .wrap .step_benefits .benefit_box h3 {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
  .section_step .wrap .step_benefits .benefit_box p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   fight SECTION
========================================================= */
.section_fight {
  background-color: #ffff00;
  border-bottom: #000 5px solid;
  /* ★ wrapの外へ出した100%幅領域 */
  /* ★ 中の配置は従来通り */
  /* 従来の下の3つの画像 */
}
.section_fight .wrap h2 img {
  width: 50%;
  margin: 0 auto 2rem;
  display: block;
}
.section_fight .wrap h3 {
  font-size: 140%;
  text-align: center;
}
.section_fight .wrap p {
  margin-bottom: 0.5rem;
}
.section_fight .fight_image_1_out {
  width: 100%;
}
.section_fight .fight_image_1 {
  display: flex;
  justify-content: center;
}
.section_fight .fight_image_1 figure img {
  display: block;
  width: 100%;
  height: auto;
}
.section_fight .fight_image_2 {
  display: flex;
  gap: 2rem;
}
.section_fight .fight_image_2 figure {
  margin-bottom: 1rem;
}
.section_fight .fight_image_2 p {
  font-size: 1.1rem;
  font-weight: bold;
}

/* =========================================================
   VOICE SECTION
========================================================= */
.section_voice {
  /* 各吹き出しカード */
  /* 顔アイコン（背景なし、サイズUP） */
  /* 吹き出し（黒枠＋左しっぽ） */
}
.section_voice .wrap {
  padding-bottom: 12rem;
  margin-top: 4rem;
}
.section_voice .wrap h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.section_voice .voices__inner {
  display: grid;
  row-gap: clamp(32px, 5vw, 30rem);
}
.section_voice .voice {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
}
@media (min-width: 768px) {
  .section_voice .voice {
    grid-template-columns: 160px 1fr;
    gap: 3rem;
  }
}
.section_voice .voice.is-right {
  grid-template-columns: 1fr 120px;
}
@media (min-width: 768px) {
  .section_voice .voice.is-right {
    grid-template-columns: 1fr 160px;
  }
}
.section_voice .voice.is-right .voice__avatar {
  order: 2;
}
.section_voice .voice.is-right .voice__bubble {
  order: 1;
  text-align: left;
  /* しっぽ（右） */
}
.section_voice .voice.is-right .voice__bubble::before {
  left: auto;
  right: -30px;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent #000;
}
.section_voice .voice.is-right .voice__bubble::after {
  left: auto;
  right: -24px;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent #fff;
}
.section_voice .voice__avatar {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .section_voice .voice__avatar {
    width: 100%;
    height: auto;
  }
}
.section_voice .voice__avatar img {
  width: 100%;
  height: auto;
  display: block;
}
.section_voice .voice__bubble {
  position: relative;
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: clamp(16px, 3vw, 24px);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.9;
  text-align: left;
  /* 左しっぽ */
  /* 黒の外枠（縁） */
  /* 白い中身 */
}
.section_voice .voice__bubble::before, .section_voice .voice__bubble::after {
  content: "";
  position: absolute;
  top: 40%;
  width: 0;
  height: 0;
}
.section_voice .voice__bubble::before {
  left: -30px;
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #000 transparent transparent;
}
.section_voice .voice__bubble::after {
  left: -24px;
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #fff transparent transparent;
}
.section_voice .voice__bubble p {
  margin: 0;
}

/* =========================================================
   contact SECTION
========================================================= */
.section_contact {
  background-color: #ffff00;
}
.section_contact .wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section_contact .wrap h2 img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_contact .wrap h3 {
  font-size: 140%;
  margin-bottom: 2rem;
}
.section_contact .wrap p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.section_contact .wrap .calendar iframe {
  border: none;
  height: 80rem;
  width: 100%;
}

/* =========================================================
   info SECTION
========================================================= */
.section_info {
  position: relative;
}
.section_info .wrap {
  padding-top: 4rem;
  padding-bottom: 7rem;
}
.section_info .wrap .info_block {
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.section_info .wrap .info_block:first-of-type {
  border-top: none;
}
.section_info .wrap .info_block h3 {
  flex: 2;
  box-sizing: border-box;
}
.section_info .wrap .info_block h3 img {
  margin-right: 0.6rem;
}
.section_info .wrap .info_block .price_box {
  flex: 8;
  box-sizing: border-box;
  text-align: left;
}
.section_info .wrap .info_block .price_box .price_main {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.section_info .wrap .info_block .price_box .price_main .child {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}
.section_info .wrap .info_block .price_box .price_main .child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40%; /* ← ここで自由に上げ下げできる！ */
  height: 6px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  pointer-events: none;
}
.section_info .wrap .info_block .price_box .price_main_2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.section_info .wrap .info_block .price_box .price_main_2 span {
  font-weight: normal;
  font-size: 1rem;
  display: block;
  line-height: 1.3;
}
.section_info .wrap .info_block .price_box .price_main_3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.section_info .wrap .info_block .price_box .price_main_4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.section_info .wrap .info_block .price_box .price_sub span {
  background: #ffff00;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.section_info .wrap .info_block .price_box .price_sub .border_r {
  border-radius: 50px;
}
.section_info .wrap .info_block .lead {
  font-weight: bold;
  margin-bottom: 1rem;
}
.section_info .wrap .info_block .present_list {
  margin-bottom: 1rem;
}
.section_info .wrap .info_block .present_list li {
  margin-bottom: 0.3rem;
  list-style: none;
}
.section_info .wrap .info_block .present_list li mark {
  background: #fff100;
  font-weight: 700;
}
.section_info .wrap .info_block .note {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.section_info .wrap .info_block_contact {
  text-align: left;
}
.section_info .wrap .info_block_contact .content_box {
  display: flex;
  margin-bottom: 3rem;
  gap: 3rem;
  align-items: end;
}
.section_info .wrap .info_block_contact .content_box .content_box_text {
  flex: 6;
  box-sizing: border-box;
}
.section_info .wrap .info_block_contact .content_box .illustration {
  flex: 4;
  box-sizing: border-box;
}
.section_info .wrap .info_block_contact .content_box .illustration img {
  width: 70%;
}
.section_info .wrap .info_block_contact h3 img {
  width: 35%;
  margin-bottom: 2rem;
}
.section_info .wrap .info_block_contact .price_main_2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.section_info .wrap .info_block_contact .price_main_3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.section_info .wrap .info_block_contact .seminar_points li {
  margin-bottom: 0.5rem;
  list-style: none;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.section_info .wrap .content_under {
  margin-bottom: 1.5rem;
}
.section_info .wrap .content_under .blue_big {
  font-size: 120%;
  color: #0099d4;
}
.section_info .wrap .content_under p {
  font-size: 1.3rem;
  font-weight: bold;
}
.section_info .wrap .content_cancel {
  border: #ffff00 solid 5px;
  padding: 1rem;
  font-size: 1.2rem;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.section_info .wrap .content_cancel .price_main_3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

/* =========================================================
   vs SECTION
========================================================= */
.section_vs {
  background-color: #ffff00;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 0 93%);
}
.section_vs .wrap {
  padding-top: 4rem;
  padding-bottom: 12rem;
}
.section_vs .wrap h2 img {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section_vs .wrap p {
  margin-bottom: 2rem;
}
.section_vs .wrap .vs_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* =========================================================
   results SECTION
========================================================= */
.section_results {
  border-bottom: #000 5px solid;
}
.section_results .wrap {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.section_results .wrap h2 {
  font-size: 160%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section_results .wrap .results_box {
  display: flex;
  gap: 2rem;
  border-bottom: #efefef 5px solid;
  padding: 2rem 0;
}
.section_results .wrap .results_box:last-of-type {
  border-bottom: none;
}
.section_results .wrap .results_box .results_contents_1 {
  flex: 2;
  box-sizing: border-box;
}
.section_results .wrap .results_box .results_contents_1 figure {
  margin-bottom: 1rem;
}
.section_results .wrap .results_box .results_contents_1 .results_contents_text {
  background-color: #cc0000;
  padding: 1rem;
  color: #fff;
  font-size: 1.1rem;
}
.section_results .wrap .results_box .results_contents_2 {
  flex: 7;
  box-sizing: border-box;
  text-align: left;
}
.section_results .wrap .results_box .results_contents_2 span:first-of-type {
  font-size: 1.2rem;
  color: #adadad;
  font-weight: bold;
}
.section_results .wrap .results_box .results_contents_2 h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.section_results .wrap .results_box .results_contents_2 h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.section_results .wrap .results_box .results_contents_2 p {
  font-size: 1.2rem;
}
.section_results .wrap .results_box .results_contents_2 p .blue_bold {
  color: #0099d4;
  font-weight: bold;
}

/* =========================================================
   faq SECTION
========================================================= */
.section_faq {
  border-bottom: #000 5px solid;
}
.section_faq .wrap {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.section_faq .wrap h2 img {
  width: 40%;
  margin: 0 auto 2rem;
}
.section_faq .wrap .faq_content {
  margin-top: 6rem;
}
.section_faq .wrap .faq_item {
  margin-bottom: 7rem;
}
.section_faq .wrap .faq_item figure {
  width: 100%;
  margin-bottom: 1rem;
}
.section_faq .wrap .faq_item figure img {
  margin: 0 auto;
  width: 85%;
  height: auto;
  display: block;
}
.section_faq .wrap .faq_item .faq_text {
  position: relative;
}
.section_faq .wrap .faq_item .faq_text h4 {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  margin-left: 15rem;
}
.section_faq .wrap .faq_item .faq_text p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: left;
  margin-left: 15rem;
  margin-top: 1rem;
}
.section_faq .wrap .faq_item .faq_text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
}
.section_faq .wrap .faq_item:nth-of-type(1) .faq_text::after {
  background-image: url(../img/faq_img_1.png);
}
.section_faq .wrap .faq_item:nth-of-type(2) .faq_text::after {
  background-image: url(../img/faq_img_2.png);
}
.section_faq .wrap .faq_item:nth-of-type(3) .faq_text::after {
  background-image: url(../img/faq_img_3.png);
}
.section_faq .wrap .faq_item:nth-of-type(4) .faq_text::after {
  background-image: url(../img/faq_img_4.png);
}
.section_faq .wrap .faq_item:nth-of-type(5) .faq_text::after {
  background-image: url(../img/faq_img_5.png);
}

/* =========================================================
   intro SECTION
========================================================= */
.section_intro .wrap {
  padding-top: 4rem;
  padding-bottom: 10rem;
}
.section_intro .wrap h2 {
  font-size: 160%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section_intro .wrap h2 span {
  font-size: 90%;
  color: #0099d4;
}
.section_intro .wrap figure {
  margin-bottom: 3rem;
}
.section_intro .wrap figure img {
  width: 50%;
  margin: 0 auto;
  transform: translateX(22%);
}
.section_intro .wrap p {
  margin-bottom: 0.5rem;
}
.section_intro .wrap h3 {
  margin-bottom: 1rem;
}
.section_intro .wrap .intro_box {
  border: #ffff00 solid 5px;
  padding: 3rem;
}
.section_intro .wrap .intro_box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.section_intro .wrap .intro_box p:last-of-type {
  margin-bottom: 0rem;
}
.section_intro .wrap .intro_box h4 {
  margin-bottom: 1rem;
}
.section_intro .wrap .intro_box_under {
  border: #ffff00 solid 5px;
  background-color: #ffff00;
  padding: 2rem 3rem;
}
.section_intro .wrap .intro_box_under ul {
  margin-bottom: 2cqmax;
}
.section_intro .wrap .intro_box_under ul .li_flex {
  display: flex;
  gap: 1rem;
}
.section_intro .wrap .intro_box_under ul li {
  list-style: none;
  background-color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 0.5rem 1rem;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1rem;
  padding-right: 12.5rem;
}
.section_intro .wrap .intro_box_under ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  background: url(../img/check.png) no-repeat center center;
  background-size: contain;
}
.section_intro .wrap .intro_box_under p {
  font-weight: bold;
  color: #0099d4;
}

/* =========================================================
   company SECTION
========================================================= */
.section_company {
  background-color: #ffff00;
}
.section_company .wrap {
  padding-top: 4rem;
  padding-bottom: 5rem;
  /* ---------- 1024px以下 ---------- */
  /* ---------- 768px以下 ---------- */
}
.section_company .wrap h2 {
  font-size: 160%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section_company .wrap .company_info {
  text-align: left;
  margin-bottom: 3rem;
}
.section_company .wrap .company_info .row {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #fff;
  padding: 1rem 0;
}
.section_company .wrap .company_info .row dt {
  width: 20%;
  font-size: 1.2rem;
}
.section_company .wrap .company_info .row dd {
  width: 80%;
  font-size: 1.2rem;
  line-height: 1.6;
}
.section_company .wrap .company_info .row .contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section_company .wrap .company_info .row .contact img {
  width: 1.2rem;
  height: auto;
}
.section_company .wrap .company_info .row .contact span {
  font-size: 1rem;
  font-weight: 700;
}
.section_company .wrap .company_bunner {
  display: flex;
  gap: 3rem;
  align-items: first baseline;
}
.section_company .wrap .company_bunner figure {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1024px) {
  .section_company .wrap .company_info .row dt {
    width: 25%;
    font-size: 0.95rem;
  }
  .section_company .wrap .company_info .row dd {
    width: 75%;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .section_company .wrap .company_info .row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
  .section_company .wrap .company_info .row dt {
    width: 100%;
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }
  .section_company .wrap .company_info .row dd {
    width: 100%;
    font-size: 0.95rem;
  }
  .section_company .wrap .company_info .row .contact img {
    width: 1rem;
  }
  .section_company .wrap .company_info .row .contact span {
    font-size: 0.95rem;
  }
}

/* =========================================================
   footer
========================================================= */
footer .wrap {
  max-width: 40vw;
}
footer .wrap nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
footer .wrap nav ul li {
  font-size: 1.2rem;
  display: block;
  margin: 0 auto;
}
footer small {
  font-size: 0.9rem;
}

/* -----------------------------
   レスポンシブ対応（基本）
------------------------------- */
/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 3.5vw;
  }
  .br_pc {
    display: none;
  }
  .wrap {
    max-width: 90vw;
    padding: 1rem 0;
  }
  .section_hero {
    padding-bottom: 2rem;
  }
  .section_hero .site_nav .nav_wrap h1 {
    width: 340px;
  }
  .section_hero .hero_content .hero_headline img {
    width: 100%;
  }
  .section_hero .hero_content {
    max-width: 90vw;
    margin: 0 auto;
  }
  .section_hero .hero_content h3 {
    font-size: 1.5rem;
    margin: 0rem;
    margin-bottom: 1rem;
  }
  .section_hero .hero_content .desc {
    font-size: 3.5vw;
  }
  .section_hero .hero_content .btn_yellow {
    font-size: 3.5vw;
    border-radius: 65px;
  }
  .section_hero .hero_illust_left {
    width: 35%;
    margin-left: 1rem;
    display: none;
  }
  .section_hero .hero_illust_right {
    width: 36%;
    margin-right: 1rem;
    display: none;
  }
  .section_hero .hero_illust_right {
    transform: scale(1.4);
  }
  .section_black_copy .wrap p {
    font-size: 73%;
  }
  .section_black_copy .wrap {
    padding: 1.5rem 0;
  }
  .section_event .event_grid {
    gap: 1rem;
    justify-content: space-between;
  }
  .section_event .wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .section_why h2 img {
    width: 75%;
  }
  .section_why p {
    font-size: 1rem;
  }
  .section_why .why_list {
    display: block;
    margin-bottom: 1rem;
  }
  .section_why .why_list figure img {
    margin: 0 auto;
    margin-top: 1rem;
  }
  .section_why h3 {
    font-size: 50%;
    width: 100%;
  }
  .section_why .why_list ul li {
    font-size: 1rem;
  }
  .section_want .wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .section_want .wrap h2 img {
    width: 75%;
  }
  .section_want .wrap p {
    font-size: 1rem;
  }
  .want_deco::before {
    display: none;
  }
  .want_deco::after {
    display: none;
  }
  .section_want .wrap .fs_change {
    font-size: 110%;
  }
  .section_want .wrap h3 {
    font-size: 100%;
    width: 100%;
  }
  .section_buy h2 img {
    width: 75%;
  }
  .section_buy p {
    font-size: 1rem;
  }
  .section_package .wrap .package_person {
    margin-bottom: 1.5rem;
  }
  .section_package .package_bar figure {
    width: 50%;
  }
  .section_cta .wrap {
    padding: 1rem 0;
  }
  .section_cta .wrap .btn_black {
    font-size: 2vw;
  }
  .section_cta::after {
    display: none;
  }
  .section_consultant .wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .section_consultant .wrap h2 img {
    width: 75%;
    margin: 0 auto 2rem;
  }
  .section_consultant .wrap p {
    font-size: 1rem;
  }
  .section_consultant .wrap h3 {
    font-size: 100%;
    margin-bottom: 1rem;
  }
  .section_structure .wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .section_structure .wrap h2 {
    font-size: 100%;
  }
  .section_structure .wrap .structure_text {
    font-size: 1rem;
  }
  .section_structure .wrap h3 {
    font-size: 80%;
    margin-bottom: 1rem;
  }
  .section_structure .wrap .structure_box {
    display: block;
  }
  .section_structure .wrap .structure_box div {
    margin-bottom: 1rem;
  }
  .section_proposal .wrap {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .section_proposal .wrap h2 img {
    width: 75%;
    margin: 0 auto 2rem;
  }
  .section_proposal .wrap h3 {
    font-size: 100%;
  }
  .section_proposal .wrap p {
    font-size: 1rem;
  }
  .section_proposal .wrap .proposal_perpson_1 img {
    width: 35%;
  }
  .section_proposal .wrap .proposal_perpson_1::after {
    left: 67%;
  }
  .section_proposal .wrap .proposal_perspon_2 img {
    width: 30%;
  }
  .section_proposal .wrap .proposal_perspon_2 {
    margin-top: 2rem;
  }
  .section_proposal .wrap .proposal_perspon_2::after {
    left: 67%;
  }
  .section_youtube .wrap {
    max-width: 80vw;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .section_step .wrap h2 img {
    width: 75%;
    margin-bottom: 2rem;
  }
  .section_step .wrap h3 {
    font-size: 100%;
    margin-bottom: 3rem;
  }
  .section_step .wrap .step_benefits .step_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    padding: 0 2rem;
    column-gap: 2rem;
    row-gap: 3.5rem;
  }
  .section_fight .wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_fight .wrap h2 img {
    width: 75%;
  }
  .section_fight .wrap h3 {
    font-size: 100%;
  }
  .section_fight .wrap .fight_image_2 {
    gap: 1rem;
    justify-content: space-between;
  }
  .section_fight .wrap .fight_image_2 div {
    flex: 1;
  }
  .section_fight .wrap .fight_image_2 p {
    font-size: 0.6rem;
  }
  .section_voice .wrap {
    padding-bottom: 4rem;
    margin-top: 2rem;
  }
  .section_voice .voice {
    gap: 1rem;
  }
  .section_contact .wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_contact .wrap h2 img {
    width: 75%;
  }
  .section_contact .wrap p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .section_contact .wrap .calendar iframe {
    height: 32rem;
  }
  .section_info .wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_info .wrap .info_block {
    gap: 1rem;
  }
  .section_info .wrap .info_block h3 {
    flex: 4;
  }
  .section_info .wrap .info_block .price_box .price_main {
    font-size: 1.5rem;
  }
  .section_info .wrap .info_block .price_box .price_main_2 {
    font-size: 1rem;
  }
  .section_info .wrap .info_block_contact .content_box {
    display: block;
  }
  .section_info .wrap .info_block_contact .seminar_points li {
    font-size: 1rem;
  }
  .section_info .wrap .info_block_contact .content_box .illustration img {
    width: 45%;
    margin: 0 auto;
  }
  .section_info .wrap .content_under p {
    font-size: 1rem;
  }
  .section_info .wrap .content_cancel .price_main_3 {
    font-size: 1.3rem;
  }
  .section_info .wrap .content_cancel {
    font-size: 1rem;
    width: 100%;
  }
  .section_vs .wrap {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
  .section_vs .wrap h2 img {
    width: 70%;
  }
  .section_vs .wrap p {
    font-size: 1rem;
  }
  .section_vs .wrap .vs_box {
    gap: 1rem;
  }
  .section_results .wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .section_results .wrap h2 {
    font-size: 110%;
    margin-bottom: 1rem;
  }
  .section_results .wrap .results_box {
    gap: 1rem;
  }
  .section_results .wrap .results_box .results_contents_1 {
    flex: 5;
  }
  .section_results .wrap .results_box .results_contents_2 span:first-of-type {
    font-size: 0.7rem;
  }
  .section_results .wrap .results_box .results_contents_2 h3 {
    font-size: 1rem;
    margin-bottom: 0rem;
  }
  .section_results .wrap .results_box .results_contents_2 h4 {
    font-size: 1.2rem;
  }
  .section_results .wrap .results_box .results_contents_2 p {
    font-size: 0.7rem;
  }
  .section_results .wrap .results_box .results_contents_1 .results_contents_text {
    font-size: 1rem;
  }
  .section_faq .wrap {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }
  .section_faq .wrap h2 img {
    width: 75%;
    margin: 0 auto 2rem;
  }
  .section_faq .wrap .faq_content {
    margin-top: 5rem;
  }
  .section_faq .wrap .faq_item .faq_text h4 {
    font-size: 1rem;
    margin-left: 0rem;
  }
  .section_faq .wrap .faq_item .faq_text p {
    font-size: 0.8rem;
    margin-left: 0rem;
  }
  .section_faq .wrap .faq_item .faq_text::after {
    top: -4rem;
  }
  .section_faq .wrap .faq_item {
    margin-bottom: 4rem;
  }
  .section_intro .wrap {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
  .section_intro .wrap h2 {
    font-size: 80%;
    margin-bottom: 2rem;
  }
  .section_intro .wrap h2 span {
    font-size: 85%;
  }
  .section_intro .wrap figure img {
    width: 65%;
    margin: 0 auto;
    transform: unset;
  }
  .section_intro .wrap p {
    font-size: 1rem;
  }
  .section_intro .wrap h3 {
    font-size: 1.5rem;
  }
  .section_intro .wrap .intro_box {
    padding: 2rem;
  }
  .section_intro .wrap .intro_box p {
    font-size: 1rem;
  }
  .section_intro .wrap .intro_box h4 {
    font-size: 1.2rem;
  }
  .section_intro .wrap .intro_box_under ul .li_flex {
    display: block;
  }
  .section_intro .wrap .intro_box_under ul li {
    padding-left: 3rem;
    padding-right: 1rem;
    font-size: 1.3rem;
  }
  .section_intro .wrap .intro_box_under {
    padding: 1rem 1rem;
  }
  .section_intro .wrap .intro_box_under ul li::before {
    left: 0.7rem;
  }
  .section_company .wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .section_company .wrap h2 {
    font-size: 120%;
    margin-bottom: 2rem;
  }
  .section_company .wrap .company_info .row dt {
    width: 35%;
  }
  .section_company .wrap .company_bunner {
    gap: 1rem;
  }
  .section_company .wrap .company_info {
    margin-bottom: 2rem;
  }
  footer .wrap {
    max-width: 90vw;
  }
  footer .wrap nav ul li {
    font-size: 0.7rem;
  }
  footer small {
    font-size: 0.4rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 3.4vw;
  }
  .wrap {
    max-width: 90vw;
    padding: 1rem 0;
  }
  .section_hero {
    padding: 1rem 0;
    max-width: 90vw;
    margin: 0 auto;
  }
  .section_hero .hero_content .hero_headline {
    margin-top: 1rem;
  }
  .section_hero .site_nav .nav_wrap h1 {
    width: 70%;
  }
  .section_hero .site_nav .nav_wrap .sns_icons {
    gap: 1.5rem;
  }
  .section_hero .site_nav .nav_wrap .sns_icons a {
    display: block;
    width: 3rem;
  }
  .section_hero .hero_content .hero_headline img {
    width: 100%;
    margin: 0 auto;
  }
  .section_hero .hero_content h3 {
    font-size: 5.5vw;
  }
  .section_hero .hero_content .desc {
    font-size: 5vw;
  }
  .section_hero .hero_content .desc {
    margin-bottom: 6rem;
  }
  .section_hero .hero_illust_left {
    width: 44%;
    display: unset;
    margin-left: 0rem;
  }
  .section_hero .hero_illust_right {
    width: 44%;
    display: unset;
  }
  .section_hero .hero_illust_left img {
    width: 100%;
  }
  .section_hero .hero_illust_right img {
    width: 100%;
  }
  .section_hero .hero_illust_right {
    transform: scale(1.45);
  }
  .section_hero .hero_content .btn_yellow {
    font-size: 5vw;
    margin-top: 3rem;
  }
  .section_black_copy .wrap {
    padding: 1.3rem 1rem;
  }
  .section_black_copy .wrap p {
    font-size: 5.3vw;
  }
  .section_event {
    padding: 1rem 0;
  }
  .section_event .wrap {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
  .section_event .event_grid {
    gap: 1.5rem;
  }
  .wave-bottom-white::after,
  .wave-bottom-yellow::after {
    height: 45px;
  }
  .section_why h2 img {
    width: 100%;
  }
  .section_why p {
    font-size: 1.3rem;
  }
  .section_why .why_list ul li {
    font-size: 1.3rem;
    padding-left: 4.2rem;
  }
  .section_why .why_list ul li::before {
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .section_why .why_list {
    display: block;
    margin-bottom: 1rem;
  }
  .section_why .why_list figure {
    width: 60%;
    margin: 0 auto;
    margin-top: 2rem;
    margin-right: 6rem;
  }
  .section_why h3 {
    width: 100%;
    font-size: 75%;
  }
  .section_why h3 .blue_big {
    font-size: 118%;
  }
  .section_why h3 .fs_change {
    font-size: 118%;
  }
  .section_want .wrap h2 img {
    width: 100%;
  }
  .section_want .wrap {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .section_want .wrap p {
    font-size: 1.3rem;
  }
  .section_want .wrap .fs_change {
    font-size: 125%;
  }
  .section_want .wrap h3 {
    width: 100%;
  }
  .section_buy h2 img {
    width: 100%;
  }
  .section_buy p {
    font-size: 1.3rem;
  }
  .section_package > .wrap:first-of-type {
    margin-bottom: 4rem;
  }
  .section_package .wrap {
    padding: 1rem 0;
  }
  .section_package .wrap .package_person {
    margin-right: 11rem;
  }
  .section_package .wrap .package_person img {
    width: 100%;
  }
  .section_package .wrap .package_person::before {
    width: 90%;
    left: 80%;
    top: 26%;
  }
  .section_package .wrap .package_person::after {
    left: 70%;
  }
  .section_package .wrap .package_bar figure {
    width: 80%;
  }
  .section_package .wrap .package_bar {
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    align-items: flex-start;
    height: 50vw;
    margin-top: 4rem;
  }
  .section_package .package_bar figure {
    width: 70%;
    margin-left: 0;
  }
  .section_package .wrap .package_bar figure::after {
    top: 105%;
    left: 35%;
    width: 36%;
    height: 87%;
  }
  .section_package .wrap .package_under {
    position: relative;
    text-align: center;
    padding-bottom: 1rem;
  }
  /* --- 矢印（普通に上に表示・スクロールしない） --- */
  .section_package .wrap .package_under figure {
    margin: 0 auto 0.8rem auto;
  }
  .section_package .wrap .package_under figure img {
    width: 50%;
    height: auto;
  }
  /* --- スクロールエリア --- */
  .section_package .wrap .package_under_scroll {
    overflow-x: auto; /* 横スクロールON */
    overflow-y: hidden; /* 縦スクロールは防ぐ */
    -webkit-overflow-scrolling: touch; /* iOSスムーズ */
    scroll-behavior: smooth;
    width: 100%;
    margin: 0 auto;
    touch-action: pan-x; /* ← 横スクロール操作を明示 (特にiOS Safariで効果的) */
  }
  .section_package .wrap .package_under_scroll img {
    width: 190% !important; /* 横長画像 */
    max-width: none; /* 親の幅制限を解除 */
    display: block; /* インライン隙間防止 */
  }
  /* 両端フェードで“動かせる”感を出す */
  .section_package .wrap .package_under_scroll {
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  /* スクロールバー表示 */
  .section_package .wrap .package_under_scroll::-webkit-scrollbar {
    height: 6px;
  }
  .section_package .wrap .package_under_scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
  }
  .section_cta .wrap .cta_pc {
    width: 100%;
  }
  .section_cta .wrap .btn_black {
    font-size: 4vw;
  }
  .section_cta::after {
    display: none;
  }
  .section_consultant .wrap {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .section_consultant .wrap h2 img {
    width: 100%;
    margin: 0 auto 3rem;
  }
  .section_consultant .wrap p {
    font-size: 1.4rem;
  }
  .section_consultant .wrap h3 {
    font-size: 150%;
    margin-bottom: 1rem;
  }
  .section_consultant .wrap .consultant_box {
    display: block;
  }
  .section_structure .wrap {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
  .section_structure .wrap h2 {
    font-size: 150%;
  }
  .section_structure .wrap h3 {
    font-size: 105%;
  }
  .section_structure .wrap .structure_text {
    font-size: 1.5rem;
  }
  .section_structure .wrap .structure_box > div p {
    font-size: 90%;
  }
  .section_proposal {
    position: relative;
  }
  .section_proposal .wrap {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 5rem;
    /* ↓ スクロール画像の下に固定される矢印 */
  }
  .section_proposal .wrap h2 img {
    width: 100%;
  }
  .section_proposal .wrap h3 {
    font-size: 130%;
  }
  .section_proposal .wrap p {
    font-size: 1.5rem;
  }
  .section_proposal .wrap .proposal_box {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden; /* ← 縦スクロール防止 */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    touch-action: pan-x; /* ← iOSでも横スクしやすく */
    /* 中の画像設定 */
    /* スクロールバー（ぼかしなし） */
    scrollbar-color: #ccc transparent; /* Firefox */
    scrollbar-width: thin;
    /* 疑似要素（完全にナシ） */
  }
  .section_proposal .wrap .proposal_box img {
    width: 200%;
    max-width: none;
    display: block; /* 画像下余白防止 */
  }
  .section_proposal .wrap .proposal_box::-webkit-scrollbar {
    height: 8px; /* 横スクバー表示 */
  }
  .section_proposal .wrap .proposal_box::-webkit-scrollbar-track {
    background: #f2f2f2;
  }
  .section_proposal .wrap .proposal_box::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 4px;
  }
  .section_proposal .wrap .proposal_box::after {
    display: none;
    content: none;
  }
  .section_proposal .wrap .scroll_arrow {
    position: absolute;
    top: 71%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: url(../img/proposal_img_4.png) no-repeat center center;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
  }
  .section_proposal .wrap .proposal_perpson_1 {
    margin-bottom: 1rem;
  }
  .section_proposal .wrap .proposal_perpson_1::after {
    width: 50%;
    left: 60%;
  }
  .section_proposal .wrap .proposal_perpson_1 img {
    width: 60%;
    margin: unset;
  }
  .section_proposal .wrap .proposal_perspon_2 {
    margin-top: 5rem;
    margin-bottom: 1rem;
  }
  .section_proposal .wrap .proposal_perspon_2::after {
    width: 45%;
    left: 55%;
  }
  .section_proposal .wrap .proposal_perspon_2 img {
    width: 50%;
    margin: unset;
  }
  .section_youtube .wrap {
    max-width: 90vw;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .section_step .wrap {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
  .section_step .wrap h2 img {
    width: 100%;
  }
  .section_step .wrap h3 {
    font-size: 130%;
    margin-bottom: 3rem;
  }
  .section_step .wrap .step_benefits .step_grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    row-gap: 3.5rem;
  }
  .section_step .wrap .step_benefits .benefit_box figure {
    width: 70px;
    top: -2.5rem;
  }
  .section_step .wrap .step_benefits .benefit_box h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .section_step .wrap .step_benefits .benefit_box p {
    font-size: 1.3rem;
  }
  .section_fight .wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .section_fight .wrap h2 img {
    width: 100%;
  }
  .section_fight .wrap h3 {
    font-size: 130%;
  }
  .section_fight .wrap .fight_image_1 {
    margin-bottom: 1.5rem;
  }
  .section_fight .wrap .fight_image_2 {
    display: block;
  }
  .section_fight .wrap .fight_image_2 p {
    font-size: 1.3rem;
  }
  .section_fight .wrap .fight_image_2 .fight_image_2_box {
    margin-bottom: 2rem;
  }
  .section_voice .wrap {
    padding-bottom: 6rem;
    margin-top: 2rem;
  }
  .section_voice .wrap h2 img {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section_voice .voice {
    display: block;
  }
  .section_voice .voice__avatar img {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .section_voice .voice__bubble::before {
    display: none;
  }
  .section_voice .voice__bubble::after {
    display: none;
  }
  .section_voice .voice__bubble p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .section_contact .wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_contact .wrap p {
    font-size: 1.4rem;
  }
  .section_contact .wrap h2 img {
    width: 100%;
  }
  .section_contact .wrap .calendar iframe {
    height: 80rem;
  }
  .section_info .wrap .info_block {
    display: block;
  }
  .section_info .wrap {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .section_info .wrap .info_block h3 {
    width: 55%;
    margin-bottom: 1rem;
  }
  .section_info .wrap .info_block .price_box .price_sub span {
    font-size: 1.3rem;
  }
  .section_info .wrap .info_block .price_box .price_main_2 {
    font-size: 1.5rem;
  }
  .section_info .wrap .info_block_contact .content_box {
    display: block;
  }
  .section_info .wrap .info_block_contact h3 img {
    width: 55%;
    margin-bottom: 1rem;
  }
  .section_info .wrap .info_block_contact .price_main_2 {
    font-size: 1.3rem;
  }
  .section_info .wrap .content_cancel .price_main_3 {
    font-size: 1.5rem;
  }
  .section_info .wrap .info_block_contact .seminar_points li {
    font-size: 1.3rem;
  }
  .section_info .wrap .info_block_contact .content_box .illustration img {
    width: 70%;
    margin: 0 auto;
  }
  .seminar_points {
    margin-bottom: 2rem;
  }
  .section_info .wrap .content_under p {
    font-size: 1.5rem;
  }
  .section_info .wrap .content_cancel {
    width: 100%;
    font-size: 1.2rem;
  }
  .section_vs {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 50% 100%, 0 97%);
  }
  .section_vs .wrap {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
  .section_vs .wrap h2 img {
    width: 90%;
  }
  .section_vs .wrap p {
    font-size: 1.5rem;
  }
  .section_vs .wrap .vs_box {
    display: block;
  }
  .section_vs .wrap .vs_box div {
    margin-bottom: 1.5rem;
  }
  .section_results .wrap h2 {
    font-size: 150%;
    margin-bottom: 0rem;
  }
  .section_results .wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_results .wrap .results_box {
    display: block;
  }
  .section_results .wrap .results_box .results_contents_1 {
    margin-bottom: 1rem;
  }
  .section_results .wrap .results_box .results_contents_1 .results_contents_text {
    font-size: 1.5rem;
  }
  .section_results .wrap .results_box .results_contents_2 span:first-of-type {
    font-size: 1.2rem;
  }
  .section_results .wrap .results_box .results_contents_2 h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .section_results .wrap .results_box .results_contents_2 h4 {
    font-size: 1.4rem;
  }
  .section_results .wrap .results_box .results_contents_2 p {
    font-size: 1.2rem;
  }
  .section_faq .wrap {
    padding-bottom: 0rem;
  }
  .section_faq .wrap h2 img {
    width: 100%;
    margin: 0 auto 2rem;
  }
  .section_faq .wrap .faq_content {
    margin-top: 7rem;
  }
  .section_faq .wrap .faq_item .faq_text h4 {
    margin-left: 0rem;
  }
  .section_faq .wrap .faq_item .faq_text::after {
    top: -60%;
  }
  .section_faq .wrap .faq_item .faq_text p {
    margin-left: 0;
    font-size: 1.2rem;
  }
  .section_faq .wrap .faq_item .faq_text h4 {
    font-size: 1.3rem;
  }
  .section_faq .wrap .faq_item {
    margin-bottom: 6rem;
  }
  .section_faq .wrap .faq_item:nth-of-type(1) .faq_text::after {
    background-image: url(../img/faq_img_1_sp.png);
  }
  .section_faq .wrap .faq_item:nth-of-type(2) .faq_text::after {
    background-image: url(../img/faq_img_2_sp.png);
  }
  .section_faq .wrap .faq_item:nth-of-type(3) .faq_text::after {
    background-image: url(../img/faq_img_3_sp.png);
  }
  .section_faq .wrap .faq_item:nth-of-type(4) .faq_text::after {
    background-image: url(../img/faq_img_4_sp.png);
  }
  .section_faq .wrap .faq_item:nth-of-type(5) .faq_text::after {
    background-image: url(../img/faq_img_5_sp.png);
    margin-bottom: 0.5rem;
  }
  .section_intro .wrap h2 {
    font-size: 130%;
    margin-bottom: 2rem;
  }
  .section_intro .wrap {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
  .section_intro .wrap p {
    font-size: 1.3rem;
  }
  .section_intro .wrap h3 {
    font-size: 1.8rem;
  }
  .section_intro .wrap figure img {
    width: 90%;
    margin: 0 auto;
    transform: unset;
  }
  .section_intro .wrap .intro_box {
    padding: 2rem;
  }
  .section_intro .wrap .intro_box p {
    margin-bottom: 0rem;
    font-size: 1.2rem;
  }
  .section_intro .wrap .intro_box_under ul .li_flex {
    display: block;
  }
  .section_intro .wrap .intro_box_under {
    padding: 0rem 1rem;
  }
  .section_intro .wrap .intro_box_under ul li {
    padding-right: 0rem;
    font-size: 1.3rem;
  }
  .section_company .wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .section_company .wrap h2 {
    font-size: 150%;
    margin-bottom: 2rem;
  }
  .section_company .wrap .company_info .row dt {
    font-size: 1.3rem;
    width: 100%;
  }
  .section_company .wrap .company_info .row dd {
    font-size: 1.1rem;
  }
  .section_company .wrap .company_bunner {
    display: block;
  }
  .section_company .wrap .company_bunner figure {
    margin-bottom: 2rem;
  }
  footer .wrap {
    max-width: 90vw;
    padding-top: 1.5rem;
  }
  footer .wrap nav ul {
    display: block;
    margin-bottom: 1rem;
  }
  footer .wrap nav ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  footer small {
    font-size: 0.8rem;
    display: block;
    line-height: 1.5;
  }
}
/* -----------------------------
   HEADER NAV（追加）
------------------------------- */
.site_nav {
  width: 100%;
  background: transparent;
  /* ロゴ（可変：vw） */
  /* ナビ */
  /* SNSアイコン（可変） */
}
.site_nav .nav_wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site_nav .header_logo {
  flex: 0 0 auto;
}
.site_nav .header_logo img {
  width: 15vw; /* ← 可変 */
  max-width: 200px; /* ← 大きすぎ防止 */
  min-width: 90px; /* ← 小さすぎ防止 */
  height: auto;
}
.site_nav .header_nav {
  flex: 1;
}
.site_nav .header_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw; /* ← 可変 */
}
.site_nav .header_nav ul li {
  list-style: none;
}
.site_nav .header_nav ul li a {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.site_nav .sns_icons {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  gap: 1rem;
}
.site_nav .sns_icons img {
  width: clamp(22px, 3vw, 34px); /* ← 可変＋最小最大設定 */
  height: auto;
}
@media (max-width: 1024px) {
  .site_nav .header_nav {
    display: none;
  }
  .site_nav .header_logo img {
    width: 40vw;
    max-width: 330px;
    min-width: 90px;
    height: auto;
  }
  .site_nav .sns_icons {
    display: none;
  }
  .site_nav .hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
  }
  .site_nav .hamburger span {
    width: 60px;
    height: 6px;
    background: #000;
    border-radius: 3px;
  }
}

/* トップへ戻るボタン */
.page_top {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  background: #ffea00;
  color: #000;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none; /* 非表示時はクリックできない */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
@media (max-width: 1024px) {
  .page_top {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page_top {
    font-size: 1.5rem;
  }
}

.page_top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- スマホ --- */
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
  .sns_icons {
    display: none;
  }
  .site_nav .hamburger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
  }
  .site_nav .hamburger span {
    width: 40px;
    height: 3px;
    background: #000;
    border-radius: 3px;
  }
}
/* ===========================================
   ★ PC：斜めストライプが切れない & 横スクロールゼロ
=========================================== */
/* 1) 親で横スクロールを吸収（必須） */
.section_hero_wrap,
.section_why,
.section_consultant_wrap,
.section_voice,
.section_info,
.section_faq {
  position: relative;
  overflow-x: hidden !important;
}

/* 2) PC用：斜めストライプの幅を十分に確保（切れ防止）
      ※ left は使わない（あなたのデザインでは不要）
*/
@media (min-width: 769px) {
  .section_hero_wrap .section_hero_stripe,
  .section_why::before,
  .section_consultant_wrap::before,
  .section_voice::before,
  .section_info::before,
  .section_faq::before {
    width: 330vw !important; /* ← 斜めでも必ず切れない総幅 */
    max-width: none !important;
    pointer-events: none;
  }
}
/* 3) スマホはあなたのCSSで非表示のままOK */