@charset "UTF-8";
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}


audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  border: none;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  max-width: 100%;
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}



a {
  text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  color: #333;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
}
a:hover {
  color: #000;
  cursor: pointer;
}

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

img {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
      display: block;
    }
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.4s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left,
.fade-right {
  opacity: 0;
  transition: all 1.4s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}



/* ヘッダーエリア */
.site-header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin: 4px 0;
}

.logo img {
  width: auto;
  height: 40px;
}

.header-btn-area {
  display: flex;
  gap: 1.2rem;
}


/* スマホ固定CTA */
.fixed-sp-cta {
  display: none;
}

/* メインビジュアル */
/* メインビジュアル */
.main-visual {
  background: url('../img/mv_bg.jpg') no-repeat center center / cover;
  position: relative;
  z-index: 0;
}

.mv-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.mv-text-area {
  flex: 1;
  min-width: 280px;
  background-color: rgba(235, 140, 144, 0.4);
  padding: 3rem 2rem;
  position: absolute;
  left: 10%;
}

.mv-copy-top {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: #fff;
  z-index: 3;
}

.mv-logo-image {
  margin-bottom: 2rem;
}

.mv-logo-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  z-index: 3;
}
.over {
  display: flex;
}
.mv-message {
  font-size: 3.6rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
  z-index: 3;
}

.mv-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  position: relative;
  margin-left: 30rem;
  z-index: 2;
}

.mv-image img {
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-btn-area {
    display: none;
  }

  .fixed-sp-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    justify-content: space-around;
    z-index: 9999;
  }

  .btn {
    font-size: 1.3rem;
    padding: 0.7rem 1.4rem;
  }

     .mv-inner {
       flex-direction: column;
       gap: 2rem;
     }

     .mv-text-area {
       padding: 2rem 1.5rem;
     }

     .mv-message {
       font-size: 1.8rem;
     }
  .mv-logo-image {
    max-width: 220px;
  }

  .mv-image {
    max-width: 100%;
    margin-left: 0;
  }
}

/* 共通ボタンスタイル */
.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 6px;
  transition: background 0.3s;
  text-decoration: none;
}
.btn-request {
  background-color: #fff;
  border: 2px solid #eb8c90;
  color: #eb8c90;
}

.btn-request:hover {
  background-color: #eb8c90;
  color: #fff;
}

.btn-trial {
  background-color: #fff;
  border: 2px solid #00458d;
  color: #00458d;
}

.btn-trial:hover {
  background-color: #00458d;
  color: #fff;
}

@media screen and (max-width:767px) {
  .btn-request {
      display: flex;
      justify-content: center;
      align-items: center;
  }
}


/* ヘッダー固定（PCのみ） */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
}

.header-btn-area {
  display: flex;
  gap: 10px;
}

/* スマホ固定CTA */
.fixed-sp-cta {
  display: none;
}

@media screen and (max-width: 767px) {
  .header-btn-area {
    display: none;
    /* SP時はヘッダー内CTA非表示 */
  }

  .fixed-sp-cta {
    position: fixed;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    gap: 10px;
  }

  .fixed-sp-cta .btn {
    flex: 1;
    font-size: 1.3rem;
  }
}

/* --- CTAセクション --- */
.section-cta {
  position: relative;
  background: linear-gradient(to right, rgba(56, 109, 207, 0.8), rgba(191, 203, 215, 0.8)),
      url('../img/cta_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem;
  text-align: center;
  color: #fff;
}

.section-cta .inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
  margin-bottom: 3rem;
}

.cta-text strong {
  font-weight: bold;
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ボタンスタイルは共通で設定済みのためここでは省略 */


/* --- hopeセクション --- */
.section-hope {
  background: url('../img/hope_bg.jpg') no-repeat center center / cover;
  padding: 6rem 2rem;
  text-align: center;
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
}

.hope-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hope-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hope-title .emphasis {
  color: #e96b8b;
  font-weight: bold;
}

.hope-content {
  background-color: rgba(255, 230, 235, 0.5);
  /* 薄いピンク背景 */
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hope-icon {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.hope-list {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hope-list li {
  position: relative;
  padding-left: 2.2em;
  text-indent: -2.2em;
}

.hope-message {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hope-footer {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .hope-title {
    font-size: 2rem;
  }

  .hope-content {
    flex-direction: column;
    align-items: center;
  }

  .hope-list {
    font-size: 1.5rem;
  }

  .hope-icon {
    width: 60px;
  }
}
/* --- aboutセクション --- */
.section-about {
  position: relative;
  background: url('../img/about_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem 6rem;
  text-align: center;
  color: #333;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}

.section-about .inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 5rem;
  font-weight: bold;
  color: #fff;
}

.specialist-cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 6rem 0;
}

.card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
  padding: 1.2rem 0;
}

.card-text {
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: left;
  padding: 2rem;
}

.about-arrow {
  margin-bottom: 4rem;
}

.about-bottom {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#about .bottom-title {
  font-size: 3rem;
  color: #eb8c90;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.bottom-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .section-about::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
 }

  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .specialist-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
  }

  .bottom-title {
    font-size: 1.8rem;
  }

  .bottom-text {
    font-size: 1.6rem;
  }
    #about .bottom-title {
      font-size: 2.4rem;
    }
}

/* --- point --- */
/* --- point section --- */
.section-feature {
  position: relative;
  background: url('../img/point_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem;
  color: #333;
  text-align: center;
  overflow: hidden;
}

.section-feature::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}

.section-feature .inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
  padding-bottom: 11rem;
}

.section-lead {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 4rem;
}

.feature-list {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-item+.feature-item {
  margin-top: 4rem;
}

.feature-body {
  text-align: left;
  padding: 2rem 0;
}

.feature-title {
  font-size: 2.4rem;
  font-weight: bold;
  background: #9ba0a8;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  color: #fff;
  position: relative;
  padding-left: 9rem;
}

.feature-title .feature-number {
  position: absolute;
  top: -1.6rem;
  left: 0.2rem;
  width: 7.2rem;
  height: 7.2rem;
  background-color: #f4b4a8;
  border-radius: 50%;
  font-size: 3.8rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-text {
  font-size: 1.5rem;
  line-height: 1.8;
  flex: 1;
  width: 45%;
}

.feature-content img {
  border-radius: 0.5rem;
  flex-shrink: 0;
  width: 45%;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .section-feature::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
    }
  .section-title {
    font-size: 2rem;
  }

  .section-lead {
    font-size: 1.4rem;
  }

  .feature-title {
    font-size: 2rem;
    padding: 2.8rem 1rem 1rem;
  }

  .feature-title .feature-number {
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
    top: -3rem;
    left: 1rem;
  }

  .feature-text {
    font-size: 1.4rem;
    width: 100%;
  }

  .feature-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-content img {
    width: 100%;
    max-width: 100%;
  }
}

/* --- future --- */
#future .section-title {
  text-align: center;
}
.section-future {
  position: relative;
  background: url('../img/future_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem;
  overflow: hidden;
}

.section-future::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}
.section-future .inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.future-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.future-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.future-row.reverse {
  flex-direction: row-reverse;
}

.future-img {
  flex: 1 1 45%;
  text-align: center;
}

.future-img img {
  max-width: 100%;
  height: auto;
}

.future-text {
  flex: 1 1 45%;
}

.future-text img {
  max-width: 80px;
  height: auto;
  margin-bottom: 1rem;
}
.reason-title {
  margin: 2rem 0;
  color: #eb8c90;
  font-size: 2.4rem;
}

/* 下部 future-bottom セクション */
#future-bottom {
  position: relative;
}
.future-bottom {
  width: 100%;
  background: url('../img/future-bottom_bg.jpg') no-repeat center center / cover;
  padding: 12rem 2rem;
}
.future-need {
  width: 100%;
  background: url('../img/future-need_bg.jpg') no-repeat center center / cover;
  padding: 6rem 2rem;
}

#future-bottom .bottom-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
}

#future-bottom .bottom-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin: 6rem;
}

#future-bottom .bottom-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;

}

#future-bottom .bottom-title span {
  color: #faf0b0;
  font-size: 4rem;
}

.bottom-stats {
  text-align: left;
  margin: 1rem auto 2rem;
  font-size: 1.4rem;
  line-height: 2;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 3.6rem 1.4rem;
  border-radius: 10px;
}

.bottom-label {
  position: absolute;
  bottom: 42%;
  left: 40%;
  background-color: #faf0b0;
  color: #000;
  display: inline-block;
  padding: 1rem 6rem;
  border-radius: 2em;
  font-weight: bold;
  font-size: 2.4rem;
}

.bottom-lead {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  max-width: 800px;
  margin: 13rem auto;
}

.bottom-lead .highlight {
  color: #eb8c90;
  font-weight: bold;
  font-size: 4rem;
}

.underline {
  background: linear-gradient(transparent 70%, #faf0b0 70%);
  border-radius: 8px;
  display: inline-block;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .future-bottom {
    background-position-x: -370px;
  }
  .section-future::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
    }

  .future-row,
  .future-row.reverse {
    flex-direction: column;
  }

  .future-text,
  .future-img {
    flex: 1 1 100%;
  }

  .bottom-stats {
    font-size: 1.2rem;
  }
    .bottom-lead .highlight {
      font-size: 2.0rem;
    }

  .bottom-lead {
    font-size: 2rem;
    margin: 1rem auto;
  }
 #future-bottom .bottom-text {
  margin: 1rem;
 }
 .bottom-label {
   bottom: 23%;
   left: 3%;
 }
 #future-bottom .bottom-title {
  text-align: center;
 }
}

/* voice セクション全体 */
.section-voice {
  position: relative;
  background: linear-gradient(to bottom, #fef1eb, #f6eaec);
  padding: 10rem 2rem;
  overflow: hidden;
}

.section-voice::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}

.section-voice .inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.section-voice .section-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* 個別の修了生ブロック */
.voice-item {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* プロフィールエリア */
.voice-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.voice-profile img {
  border-radius: 50%;
  width: 30%;
  height: auto;
  object-fit: cover;
}

.voice-name {
  font-size: 1.6rem;
  color: #333;
}

.voice-name .name {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 1rem 0;
}

.voice-summary {
  background: #fff;
  border-radius: 10px;
  padding: 7rem 3rem;
  position: relative;
}
/* リード文 */
.voice-lead {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background: #d295a1;
  border-radius: 12px;
  position: absolute;
  top: -50px;
  left: -10px;
  color: #fff;
}


/* BEFORE → AFTER */
.voice-beforeafter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}
.voice-beforeafter p {
  padding: 2rem 0;
}

.before,
.after {
  flex: 1;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
}

.before {
  background-color: #c6e0ea;
}

.before .label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: #333333;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 240px;
}

.after {
  background-color: #ebd3c9;
}

.after .label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: #eb8c90;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 240px;
}



/* 矢印 */
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon::before {
  content: "▶︎";
  color: #eb8c90;
  font-size: 2rem;
}

/* コメント部分 */
.voice-comment p {
  margin-bottom: 1em;
  line-height: 1.8;
  font-size: 1.5rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .section-voice {
    padding: 6rem 1.5rem;
  }
    .section-voice::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
  }
    .section-voice .section-title {
      font-size: 2.2rem;
    }
  .voice-item {
    padding: 2rem;
  }

  .voice-profile {
    flex-direction: column;
    align-items: center;
  }

  .voice-profile img {
    width: 50%;
    height: auto;
  }

  .voice-name {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }

  .voice-lead {
    font-size: 1.6rem;
    text-align: left;
    left: 3%;

  }

  .voice-beforeafter {
    flex-direction: column;
    align-items: stretch;
  }

  .arrow {
    justify-content: flex-start;
    padding: 0.5rem 0;
  }

  .arrow-icon {
    display: block;
    margin: 0 auto;
  }
  .arrow-icon::before {
    font-size: 1.6rem;
    content: "▼";
  }

  .before,
  .after {
    font-size: 1.4rem;
  }

  .voice-comment p {
    font-size: 1.4rem;
  }
}

/* =====================
  診断セクション
===================== */
/* セクション全体の背景 */
.section-diagnosis {
  position: relative;
  background: url('../img/diagnosis_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem;
  overflow: hidden;
}

.section-diagnosis::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}

.section-diagnosis .inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.section-diagnosis .section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 4rem;
  color: #fff;
}

.section-diagnosis .section-title .highlight {
  font-size: 3rem;
  color: #333;
}

.diagnosis-inner {
  font-family: 'Zen Maru Gothic', sans-serif;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 2rem;
  }

.diagnosis-title {
  width: 80%;
    display: block;
    margin: 0 auto;
    padding-bottom: 10rem;
}

/* 説明文 */
.diagnosis-intro .intro-lead {
  font-weight: bold;
  font-size: 2rem;
  color: #eb8c90;
}
.diagnosis-intro {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.diagnosis-leadblock {
  position: relative;
}
.diagnosis-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* 質問リスト */
.question-list {
  counter-reset: question-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.question-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  font-size: 1.6rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.question-text {
  font-weight: bold;
  flex: 1;
  min-width: 200px;
}

.answer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.answer-group label {
  font-weight: normal;
  white-space: nowrap;
}

/* ラジオボタンラベル横並び */
.question-list li label {
  margin-left: 1.5rem;
  font-weight: normal;
  white-space: nowrap;
}

.question-list li label:first-of-type {
  margin-left: 0;
}

.question-list li {
  flex-wrap: wrap;
}

/* ボタンエリア */
.btn-area {
  text-align: center;
  margin-top: 3rem;
  padding-top: 6rem;
}

.btn-pink {
  background-color: #eb8c90;
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-pink:hover {
  background-color: #e36b70;
}

/* 診断結果表示 */
.diagnosis-result {
  background-color: #f6eaec;
  margin-top: 4rem;
  padding: 3rem 8rem;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.diagnosis-result .type {
  font-size: 2.4rem;
  text-align: center;
}

.diagnosis-result .type span {
  font-size: 3rem;
  font-weight: bold;
  color: #eb8c90;
  margin-bottom: 4rem;
}
.diagnosis-result .result {
  margin: 5rem 0;
}
.diagnosis-result .result p+p {
  margin: 1.5rem 0;
}
.diagnosis-result .tips {
  padding: 2rem 1rem;
  margin: 3rem 0;
  background: #fff;
  border: 1px solid #333;
  border-radius: 10px;
}


/* メディアクエリ（スマホ対応） */
@media screen and (max-width: 768px) {
  .section-diagnosis::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
    }

  .diagnosis-title {
    width: 100%;
    padding-bottom: 3rem;
  }
    .diagnosis-image {
      width: 40%;
    }
  .question-list li {
    flex-direction: column;
    align-items: flex-start;
  }
    .answer-group {
      justify-content: flex-start;
      font-size: 1.4rem;
    }

  .question-list li label {
    margin: 0.5rem 1rem 0 0;
  }

  .btn-pink {
    width: 100%;
    font-size: 1.6rem;
  }

  .section-diagnosis .section-title .highlight {
    font-size: 2.4rem;
  }
  .diagnosis-result {
    padding: 3rem 1rem;
  }
}


/* faq */
.section-faq {
  position: relative;
  background-color: #f6f6f6;
  padding: 10rem 2rem;
  overflow: hidden;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: -45vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background-color: rgba(235, 140, 144, 0.7);
  border-radius: 50%;
  z-index: 0;
}

.section-faq .inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.section-faq .section-title {
  font-size: 3.2rem;
  margin-bottom: 5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.faq-item {
  background-color: #f6eaec;
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.faq-item .question {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.faq-item .answer {
  color: #555;
  line-height: 1.8;
  background: #fff;
  padding: 2rem;
}

@media (max-width: 768px) {
  .section-faq::before {
      top: -35vw;
      width: 120vw;
      height: 80vw;
  }
  .section-faq {
    padding: 6rem 1.5rem;
  }

  .section-faq .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item .question {
    font-size: 1.6rem;
  }

  .faq-item .answer {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/* 講師紹介 */
#teacher {
  background: url("../img/teacher_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 150px 0;
}

#teacher h2.title {
  text-align: center;
  display: block;
}

#teacher>.container {
  width: 100%;
  max-width: 768px;
  padding: 0 50px;
  margin: auto;
}

#teacher>.container .overview-block {
  background: #fff;
  border-radius: 10px;
  padding: 40px 80px 80px;
  display: block;
  margin-top: 5rem;
}

#teacher .profile {
  padding: 3rem 0;
}

#teacher .profile h3 {
  font-size: 3rem;
  text-align: center;
  margin: 1rem 0;
  font-family: "Noto Serif JP", serif;
}

#teacher .profile ul {
  font-size: 1.8rem;
  font-family: sans-serif;
  font-weight: bold;
}

#teacher .profile ul li {
  list-style: square;
}

#teacher .profile h3 rt {
  margin: 4px 0;
}

#teacher .message p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
#teacher .catch {
  color: #eb8c90;
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:767px) {
  #teacher>.container {
    padding: 0 20px;
  }

  #teacher>.container .overview-block {
    padding: 40px 20px 80px;
  }
    #teacher .profile ul {
      font-size: 1.6rem;
      padding-left: 2rem;
     }
}

/* flow */
#flow {
  font-family: "Noto Sans JP", sans-serif;
}
.section-flow {
  background-color: #fff;
  padding: 10rem 2rem;
}

.section-flow .inner {
  background-color: #f1eae6;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-radius: 8px;
  position: relative;
}

.section-flow .section-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1rem;
  color: #333;
}

.section-flow .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right,
      #333,
      #333 5px,
      transparent 5px,
      transparent 10px);
  transform: translateX(-50%);
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-list li {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  gap: 2rem;
}

.step-icon {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f8dbda;
  color: #9c5e5e;
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.step-content .price-note {
  font-size: 1.8rem;
  color: #eb8c90;
  font-weight: bold;
}

.step-content p {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .section-flow {
    padding: 6rem 1rem;
  }

  .section-flow .inner {
    padding: 3rem 1.5rem;
  }

  .section-flow .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .flow-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-bottom: 1rem;
  }

  .step-content h3 {
    font-size: 2rem;
  }

  .step-content p {
    font-size: 1.4rem;
  }
}

/* support */
#support {
  font-family: "Noto Sans JP", sans-serif;
}
.section-support {
  background: url('../img/support_bg.jpg') no-repeat center center / cover;
  padding: 10rem 2rem;
}

.support-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
  text-align: center;
}

.support-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.support-subtitle {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 3rem;
}

.support-list {
  background-color: #fff;
  list-style: none;
  padding: 4rem 8rem;
  margin: 0;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.support-list li {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
  padding-left: 2.2rem;
}

.support-list .icon {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.4rem;
}

.support-list small {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  color: #666;
}
@media (max-width: 768px) {
  .section-support {
    padding: 6rem 1rem;
  }

  .support-inner {
    padding: 3rem 1.5rem;
  }

  .support-title {
    font-size: 2rem;
  }

  .support-subtitle {
    font-size: 1.6rem;
  }
  .support-list {
    padding: 4rem 4rem;
  }
  .support-list li {
    font-size: 1.6rem;
    padding-left: 1.8rem;
  }

  .support-list .icon {
    font-size: 1.2rem;
  }

  .support-list small {
    font-size: 1.4rem;
  }
}


/* footer */
footer {
  background: #d295a1;
  color: #fff;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1200px) {
  footer {
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    height: auto;
    padding: 30px 0 100px;
  }
}

footer>.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  footer>.container {
    padding: 0 5%;
  }
}

footer>.container .copyright {
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer>.container .copyright {
    font-size: 12px;
  }
}

footer ul.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  footer ul.footer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
}

footer ul.footer-list li:nth-child(n+2) {
  margin-left: 2em;
}

@media screen and (max-width: 767px) {
  footer ul.footer-list li:nth-child(n+2) {
    margin: 0.5em 0 0 0;
  }
}

footer ul.footer-list li a {
  color: #fff;
  position: relative;
  padding-bottom: 1px;
}

@media screen and (max-width: 767px) {
  footer ul.footer-list li a {
    font-size: 14px;
  }
}

footer ul.footer-list li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

footer ul.footer-list li a:hover:before {
  visibility: hidden;
  opacity: 0;
}