@charset "utf-8";

body,html {
  /* font-size: 16px; */
  font-family: "Noto Sans","Inter","Roboto Condensed", serif;
  font-size: 16px;
}
html, body, span, div, p, a, li {
  font-family: "Noto Sans", "Inter", "Roboto Condensed", sans-serif;
}
:root {
  --font-main: "Noto Sans", sans-serif;
  --font-en: "Roboto Condensed", sans-serif;
  --font-sub: "Inter", sans-serif;
  --color-white: #fff;
  --color-yellow: #FED81B;
  --color-navy: #192D5A;
}
main {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
img {
  width: 100%;
}
a {
  transition: .3s;
}
a:hover {
  opacity: 0.9;
}
p {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
}
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
.inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mv__image {
  width: 100%;
  line-height: 0; /* 画像下の隙間対策 */
}

.mv__image picture,
.mv__image img {
  width: 100%;
  height: auto; /* 縦横比を維持したまま拡大縮小 */
  display: block;
}

.message {
  width: 100%;
  padding: 10vw 0vw 19vw;
  box-sizing: border-box;
  background: var(--color-navy);
}

/* 各ブロック共通 */
.message__block {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0vw;
}

/* 上のブロック: 左に画像、右にテキスト */
.message__block--top {
  flex-direction: row;
}

.message__block--top .message__image {
    width: 60vw;
    margin-right: 1vw;
}
.message__block--top .message__text {
    width: 67vw;
    margin-left: -32vw;
}

/* 下のブロック: テキスト＋右下画像（重なりOK） */
.message__block--bottom {
  flex-direction: row;
}

.message__block--bottom .message__text {
  width: 94vw;
  margin: auto;
  z-index: 2;
}

.message__block--bottom .message__image {
  position: absolute;
  right: 0;
  bottom: -19vw;
  width: 55vw;
  z-index: 1;
}

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

.message__text h2 {
  font-size: 10.6vw;
  margin-bottom: 3vw;
  color: var(--color-yellow);
  font-family: var(--font-en);
  padding-left: 4vw;
}
.message__text p {
  font-size: 3.7vw;
  line-height: 2.1;
  color: var(--color-white);
  font-family: var(--font-sub);
}
.message__text p > span {
  color: var(--color-yellow);
}

/* 背景ラッパー */
.profile-wrap {
  background-color: var(--color-navy); /* ネイビー */
  padding: 15vw 5vw; /* 上下に余白をつける */
}

/* 内側のカード */
.profile {
  position: relative;
  border: 1px solid var(--color-white);
  border-radius: 3vw;
  padding: 10vw 5vw 5vw;
  margin: -15.5vw auto 0 auto;
  width: 92vw;
  box-sizing: border-box;
  background: transparent; /* 白カード */
}

/* タイトル（罫線をまたぐ仕様） */
.profile__title {
  position: absolute;
  top: -15vw;
  left: 5vw;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2vw;
  background: var(--color-navy);
  padding: 0 2vw;
  font-size: 4vw;
}

/* ラベルと名前 */
.profile__label {
  color: var(--color-yellow);
  font-family: var(--font-en);
  font-size: 10.5vw;
  font-weight: 500;
}

.profile__name {
  color: var(--color-white);
  font-size: 6.5vw;
  font-weight: 400;
}

/* コンテンツ部分 */
.profile__content {
  display: flex;
  flex-direction: column;
  gap: 0vw;
}

/* 各行 */
.profile__row {
  padding-bottom: 3vw;
  margin-bottom: 3vw;
  border-bottom: 1px dotted #999;
  font-size: 3.5vw;
  display: flex;
  align-items: center;
}
.profile__row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.profile__row p {
  font-size: 4.2vw;
  color: var(--color-white);
}

/* チーム行 */
.profile__row--team {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.profile__logo {
  width: 20vw;
  height: 20vw;
  flex-shrink: 0;
}
.profile__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile__team-name {
  font-size: 4.2vw;
  line-height: 1.75;
  color: var(--color-white);
}
.profile__team-name span {
  font-size: 5.3vw;
}
/* 課題セクション */
.problems {
  text-align: center;
  padding: 10vw 3vw 0vw;
  background: #2850AD;
}
.problems__title {
  font-size: 5vw;
  margin-bottom: 5vw;
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
}
.problems__wrap {
  background: #000;
  border-radius: 4vw;
  padding: 10vw 4vw;
  display: inline-block;
  text-align: left;
  width: 100%;
  margin-top: -20vw;
}
.problems__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.problems__list li {
  font-size: 3.8vw;
  line-height: 1.75;
  margin-bottom: 3vw;
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.problems__list li {
opacity: 0;
  transition: opacity 3s ease; /* フェードインをゆっくりに */
}

.problems__list li.is-visible {
opacity: 1;
}
.problems__list li .check {
  width: 8vw;
  margin-right: 2vw;
}
.problems__list li:last-child {
  margin-bottom: 0;
}
.problems__arrow {
  margin-top: 2vw;
}
.problems__arrow img {
  width: 27vw;
  height: auto;
}

/* 解決セクション */
.solution {
  padding: 0vw 0vw 30vw;
  background: #2850AD;
}
.solution__inner {
  position: relative; /* 子要素の絶対配置の基準にする */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0vw;
}

.solution__lead {
  position: relative;
  z-index: 2; /* テキストを前面に */
}

.solution__catch {
  font-size: 8vw;
  font-weight: bold;
  margin-bottom: 4vw;
  display: inline-block;
  position: relative;
  padding-left: 5vw;
}

.solution__catch span {
  background: linear-gradient(transparent 85%, #ffeb3b 85%);
  padding: 0 1vw;
  display: inline-block;
  transform: rotate(5deg);
  margin-top: 3vw;
  font-size: 15vw;
  letter-spacing: -0.05em;
  color: var(--color-white);
  font-weight: 500;
}

.solution__text {
  font-size: 5.3vw;
  line-height: 1.6;
  color: var(--color-white);
  font-weight: 400;
}

/* 画像を背面にして少し重ねる */
.solution__image {
  flex: 1;
  position: relative;
  z-index: 1; /* テキストより後ろ */
  margin-left: -40vw;
  margin-top: -23vw;
}

.solution__image img {
  width: 100%;
  height: auto;
}
.solution__row {
  width: 90vw;
  margin: 3vw auto 0;
}
.solution__desc {
  color: var(--color-white);
  font-size: 4.2vw;
}
.feature {
  padding: 10vw 5vw;
  background: var(--color-navy);
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 10vw;
}

.section-title__line {
  width: 100%;
  height: auto;
}

.section-title__text {
  font-size: 6vw;
  font-weight: bold;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  width: 100%;
}
.feature-title__small {
  font-size: 5.5vw;
}
.feature-title__number {
  font-size: 10vw;
}
.feature-title__large {
  font-size: 8vw;
}

.feature__inner {
  display: flex;
  flex-direction: column;
  gap: 10vw;
}

.feature__item {
  padding: 0vw;
}

.feature__head {
  display: flex;
  align-items: center;
  gap: 3vw;
  margin-bottom: 4vw;
}

.feature__head img {
  width: 16vw;
  height: auto;
}

.feature__head h3 {
  font-size: 6.4vw;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.5;
  font-weight: 600;
}
.feature__head h3 span {
  font-size: 7.4vw;
}

.feature__image img {
  width: 100%;
  height: auto;
  margin-bottom: 4vw;
}

.feature__text {
  font-size: 4.5vw;
  line-height: 1.6;
  color: var(--color-white);
}
/* .cta {
  position: relative;
  width: 100%;
  height: 86vw; 
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.cta {
  position: relative;
  width: 100%;
  height: 86vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* rellax対象の背景 */
.cta__bg {
  position: absolute;   /* セクション内で動かすのでabsolute */
  top: -20%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* 背景画像をセクションごとに設定 */
.cta__01 .cta__bg {
  background-image: url('../images/cta-bg01.png');
  background-position: left center;
}
.cta__02 .cta__bg {
  background-image: url('../images/cta-bg02.png');
  background-position: center;
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90vw;
  margin: auto;
}


.cta__lead {
  font-size: 5.8vw;
  margin-bottom: 3vw;
  font-weight: 600;
  text-align: center;
  color: #00F57F;
}

.cta__btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s ease; /* 0.3秒でふわっと拡大 */
}
.cta__btn:hover {
  transform: scale(1.05); /* 1.05倍に拡大 */
}

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

.online-features {
  padding: 10vw 5vw 40vw;
  background: #000;
  border-radius: 8vw 8vw 0 0;
  margin-top: -8vw;
  position: relative;
  z-index: 1;
}

.online-features__inner {
  display: flex;
  flex-direction: column;
  gap: 8vw; /* コンテンツ間の間隔 */
}

.online-features__item {
  display: flex;
  flex-direction: column;
}

.online-features__icon {
  width: 100%; /* アイコンサイズ */
  height: auto;
  margin-bottom: 3vw;
}

.online-features__text {
  font-size: 4vw;
  line-height: 1.6;
  color: var(--color-white);
}

.benefits {
  padding: 10vw 5vw 40vw;
  background: #224CAD;
  border-radius: 8vw;
  margin-top: -10vw;
  position: relative;
  z-index: 2;
}

/* スライダー */
.benefits__slider .splide__slide {
  background: transparent;
  border-radius: 4vw;
  padding: 5vw;
  margin-right: 3vw;
  box-sizing: border-box;
  border: 1px solid var(--color-white);
}

/* ヘッダー部分：左画像＋数字＋右テキスト */
.benefits__head {
  display: flex;
  align-items: center;
  gap: 3vw;
  margin-bottom: 6vw;
}


.benefits__icon-wrap {
  position: relative;
  width: 20vw;
  height: 20vw;
  flex-shrink: 0;
}

.benefits__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefits__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10%);
  font-size: 10vw;
  font-weight: 600;
  color: #2BFFBF;
  font-family: var(--font-en);
}

.benefits__text-head {
  font-size: 6vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: var(--color-white);
  font-weight: 600;
}

/* サブ見出し：スター＋「メリット」 */
.benefits__subhead {
  display: flex;
  align-items: center;
  gap: 2vw;
  font-size: 5.3vw;
  font-weight: bold;
  margin-bottom: 3vw;
  color: var(--color-white);
}
.benefits__subhead.benefits__subhead--feature {
  margin-top: 10vw;
}

.benefits__subhead img {
  width: 5vw;
  height: auto;
}

/* メリット箇条書き */
.benefits__points {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-white);
}

.benefits__points li {
  font-size: 4.2vw;
  line-height: 1.6;
  margin-bottom: 2vw;
  padding-left: 1em;           /* マーカー分の余白 */
  text-indent: -1em;  
}


.splide__pagination {
  bottom: -2.5em !important;
}
.cta02 {
  margin-top: -8vw;
  height: 94vw;
}

.voices {
padding: 8vw 4vw 65vw;
background: var(--color-navy);
margin-top: -14vw;
position: relative;
z-index: 1;
border-radius: 8vw 8vw 0 0;
}

.voices__list {
  display: grid;
  gap: 70vw;
  margin-top: 20vw;
}

.voice__head {
  display: flex;
  gap: 6vw;
  font-size: 4.7vw;
  font-weight: 400;
  margin-bottom: 2vw;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding-left: 4vw;
}

.voice__content {
  position: relative;
  margin-top: -19vw;
}
.voice__image {
  text-align: right;
  padding-right: 6vw;
}
.voice__image img {
  width: 40%;
  border-radius: 2vw;
}

.voice__text {
  position: absolute;
  bottom: -75%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8); /* 半透明の白背景 */
  padding: 4vw;
  border-radius: 2vw;
  line-height: 1.6;
}
.voice__text p {
font-size: 4vw;
}
.voice02__image img {
  width: 25%;
}

.plans {
  padding: 8vw 5vw;
  background: var(--color-navy);
}

/* タブメニュー */
.plans__tabs {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-bottom: 0vw;
}

.plans__tab {
  font-size: 4.8vw;
  font-family: var(--font-en);
  color: #000;
  padding: 2vw 8vw;
  border: none;
  background: #D9D9D9;
  border-radius: 2vw 2vw 0 0;
  cursor: pointer;
}
.plans__tab.is-active {
  background: #0062AC;
  color: #fff;
  border: 0.5px solid var(--color-white);
}

/* コンテンツ */
.plans__contents {
  border: 1px solid #00345B;
  background: #E0EAF1;
  border-radius: 2.6vw;
}
.plans__content {
  display: none;
  padding: 5vw 4vw;
}
.plans__content.is-active {
  display: block;
}

.plans__intro {
  text-align: center;
  font-size: 4vw;

}
.plans__intro span {
  display: inline-block;
  padding-bottom: 2vw;
  border-bottom: 1px solid #00345B;
  position: relative;
  line-height: 1.5;
}
.plans__intro span::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -2.1vw;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/tab-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 4.65vw;
    height: 2.25vw;
    background-color: #E0EAF1;
}

.plans__divider {
  position: relative;
  text-align: center;
  margin: 4vw 0;
}
.plans__divider::before,
.plans__divider::after {
  content: "";
  display: inline-block;
  width: 25%;
  height: 1px;
  background: #333;
  vertical-align: middle;
  margin: 0 2vw;
}
.plans__arrow {
  font-size: 5vw;
  vertical-align: middle;
}

.plans__name {
  text-align: center;
  font-size: 8.8vw;
  font-family: var(--font-en);
  margin-bottom: 7vw;
  margin-top: 7vw;
  color: var(--color-navy);
  font-weight: 400;

}
.plans__name span {
  background: linear-gradient(transparent 70%, #fff 70%);
  padding: 0 1vw;
  font-family: var(--font-en);
}

.plans__lead {
  font-size: 4vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.75;
}

.plans__menu-title {
  font-size: 4.8vw;
  font-weight: 600;
  margin-bottom: 4vw;
}

.plans__menu {
  font-size: 3.6vw;
  margin-bottom: 5vw;
}
.plans__menu li {
  font-size: 4.25vw;
}
.plans__menu li + li {
  margin-top: 3vw;
}
.plans__price {
  font-size: 4vw;
  font-weight: 600;
  text-align: center;
  padding-top: 3vw;
}
.plans__price p {
  display: inline-block;
  padding-bottom: 1vw;
  border-bottom: 2px solid #00345B;
  color: #00345B;
}
.plans__price p span {
  font-size: 5.3vw;
}
.plans__price strong {
  font-size: 9.3vw;
  margin: 0 0 0 5vw;
  font-weight: 600;
}

.flow {
  margin: 0 auto;
  padding: 20vw 4vw;
  background: var(--color-navy);
  border-radius: 0vw 0vw 8vw 8vw;
  position: relative;
  z-index: 1;
}
.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.flow__step {
  position: relative;
  border: 1px solid #E0EAF1;
  padding: 9vw 3vw 5vw;
  background: transparent;
}

.flow__step:nth-child(1) {
  border-radius: 4vw 4vw 0 0;
}
.flow__step:nth-child(4) {
  border-radius: 0vw 0vw 4vw 4vw;
}

.flow__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 3vw;
}

.flow__head img {
  width: 17vw;
}

.flow__subtitle {
  font-size: 6.1vw;
  font-weight: 600;
  color: #00B9EC;
}

.flow__text {
  font-size: 4vw;
  line-height: 1.5;
  color: var(--color-white);
}

/* 矢印 */
.flow__arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
    height: 6.67vw;
    background: url(../images/flow-arrow.png) center center / contain no-repeat;
}

.youtube {
  padding: 20vw 4vw;
  text-align: center;
  background: #000;
  margin-top: -10vw;
}

.youtube__inner {
  max-width: 900px;
  margin: 0 auto;
}

.youtube__title {
  font-size: 6vw;
  font-weight: bold;
  margin-bottom: 4vw;
  color: var(--color-white);
}

.youtube__video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
  margin-bottom: 3vw;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.youtube__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube__desc {
  font-size: 3.8vw;
  line-height: 1.6;
  color: var(--color-white);
}
.youtube__meta {
  font-size: 3.5vw;
  color: #fff;
  margin-bottom: 5vw;
  line-height: 1.4;
  text-align: center;
}

.youtube__meta span {
  font-weight: bold;
  color: var(--color-yellow); 
  font-size: 5vw;
}
.floating__button {
    position: fixed;
    right: 4vw;
    bottom: 4vw;
    width: 16.5vw;
    height: 16.5vw;
    z-index: 1000;
}

.floating__link {
  display: block;
  width: 100%;
  height: 100%;
}

.floating__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact {
    padding: 20vw 4vw;
    background: #C9D6E1;
}
.contact .section-title__text {
  color: #00345B;
}
.contact__content {

}
.contact__content form {
  width: 90vw;
  margin: 0 auto;
}

/* ラベル */
.contact__content label {
  display: block;
  font-size: 4.5vw; /* スマホ基準 */
  margin-bottom: 2vw;
  color: #333;
}

/* input / textarea */
.contact__content input[type="text"],
.contact__content input[type="email"],
.contact__content input[type="tel"],
.contact__content textarea {
  width: 100%;
  padding: 3.5vw;
  font-size: 4vw;
  background: #fff;
  border-radius: 2vw;
  margin-bottom: 6vw;
  margin-top: 1vw;
  box-sizing: border-box;
}

/* textarea */
.contact__content textarea {
  min-height: 30vw;
  resize: vertical;
}

/* 送信ボタン */
.contact__content input[type="submit"] {
  display: block;
  margin: 0 auto;
  padding: 3.5vw 20vw;
  font-size: 4.5vw;
  color: #fff;
  background: #00345B;
  border: none;
  border-radius: 2vw;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact__content input[type="submit"]:hover {
  opacity: 0.85;
}
.cf7-cf-turnstile {
	text-align: center;
}

@media screen and (min-width: 750px) {
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
  .inner {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  .message {
    width: 100%;
    padding: 100px 0vw 404px;
    box-sizing: border-box;
    background: var(--color-navy);
}
  .message__text h2 {
    font-size: 80px;
    padding-left: 0;
  }
  .message__block--top .message__text {
    width: 100%;
    margin-left: -180px;
} 
.message__block--top .message__image {
  width: 60%;
}
.message__text p {
  font-size: 28px;
}
.message__block--bottom .message__text {
  width: 95%;
}
.message__block--bottom .message__image {
        position: absolute;
        right: 130px;
        bottom: -230px;
        width: 35%;
        z-index: 1;
}
.profile-wrap {
  padding: 50px 30px 300px;
}
.profile {
    position: relative;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 90px 70px 90px;
    margin: -224px auto 0 auto;
    width: 80%;
}
.profile__title {
  font-size: initial;
  top: -100px;
  left: 5vw;
  gap: 10px;
}
.profile__label {
  font-size:80px;
}
.profile__name {
  font-size: 50px;
}
.profile__logo {
    width: 173px;
    height: 100%;
    flex-shrink: 0;
}
.profile__team-name {
  font-size: 32px;
}
.profile__team-name span {
  font-size: 40px;
}
.profile__row--team {
    gap: 30px;
}
.profile__row {
      padding-bottom: 15px;
    margin-bottom: 15px;
}
.profile__row p {
  font-size: 24px;
}
.problems__wrap {
        padding: 100px 60px;
        width: 70%;
        max-width: 1000px;
        margin: -260px auto 0;
        border-radius: 30px;
}
.problems__title {
  font-size: 42px;
  margin-bottom: 100px;
}
.problems__list li {
  font-size: 30px;
}
.problems__list li .check {
  width: 60px;
  margin-right: 20px;
}
.problems__arrow {
  margin-top: 20px;
}
.solution__inner {
    width: 100%;
    max-width: 900px;
    margin: auto;
}
.problems__arrow img {
  width: 40%;
  max-width: 300px;
}
.solution__text {
  font-size: 40px;
}
.solution__catch {
font-size: initial;
padding-left: initial;
margin-bottom: initial;
        margin-top: 170px;
}
.solution__catch span {
  font-size: 117px;
}
.solution__image {
    margin-left: -340px;
    margin-top: 0px;
} 
.solution__row {
  width: 100%;
  padding: 0 30px;
}
.solution__desc {
  font-size: 32px;
}
.solution {
  padding: 0 0 120px;
}
.feature-title__small {
  font-size: 42px;
}
.feature-title__number {
  font-size: 78px;
}
.feature-title__large {
  font-size: 65px;
}
.feature {
  padding: 120px 30px;
}
.section-title__text {
  font-size: 46px;
}
.section-title {
  max-width: 700px;
  margin-bottom: initial;
  margin: 0 auto 100px;
}
.feature__head h3 {
  font-size: 24px;
}
.feature__head h3 span {
  font-size: 24px;
}
.feature__head img {
  width: 40px;
}
.feature__image img {
  margin-bottom: 20px;
}
.feature__head {
  gap: 10px;
  margin-bottom: 20px;
}
.feature__text {
  font-size: 16px;
}
.feature__inner {
  gap: 50px;
  flex-direction: initial;
}
.feature__item {
  width: calc(33%);
}
.cta {
  height: 635px;
}
.cta02 {
  margin-top: 0;
}

.cta__01 .cta__bg {
  background-position: left top;
}
.cta__02 .cta__bg {
  background-position: left top;
}
.cta__lead {
  font-size: 44px;
  margin-bottom: 10px;
}
.online-features {
  margin-top: 0px;
  padding: 120px 30px 120px;
  border-radius: 0;
}
.online-features__text {
  font-size: 18px;
}
.online-features__inner {
    gap: 60px;
    flex-direction: initial;
    flex-wrap: wrap;
}
.online-features__item {
  width: calc(47%);
}
.online-features__icon {
  margin-bottom: 20px;
}
.benefits {
  margin-top: 0px;
  padding: 120px 30px;
  border-radius: 0;
}
.benefits__head {
  gap: 30px;
  margin-bottom: 40px;
}
.benefits__icon-wrap {
  width: 70px;
  height: 100%;
}
.benefits__number {
  font-size: 36px;
}
.benefits__text-head {
  font-size: 28px;
  text-align: left;
}
.benefits__slider .splide__slide {
  border-radius: 30px;
  padding: 30px;
}
.benefits__subhead {
  font-size: 24px;
  gap: 10px;
  margin-bottom: 20px;
}
.benefits__subhead img {
  width: 30px;
}
.benefits__points li {
  font-size: 18px;
  margin-bottom: 15px;
}
.benefits__subhead.benefits__subhead--feature {
  margin-top: 50px;
}
.voices {
margin-top: 0px;
        padding: 120px 30px 120px;
        border-radius: 0;
}
.voice {
  width: calc(50%);
}
.voices__list {
        display: flex;
        gap: 80px;
        margin-top: 220px;
}
.voice__head {
font-size: 28px;
        gap: 10px;
        padding-left: 30px;
}
.voice__text p {
  font-size: 18px;
}
.voice__content {
    margin-top: -190px;
}
.voice__text {
    padding: 30px;
    position: relative;
    margin-top: -150px;
}
.voice__text.voice02__text {
  margin-top: -120px;
}
.plans {
  padding: 120px 30px;
}
.plans__intro {
  line-height: 1;
}
.plans__intro span {
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 1.5;
}
.plans__intro span::after {
      width: 18px;
    height: 9px;
    bottom: -7px;
}
  .plans__tabs {
    display: none;
  }

  /* コンテンツ全体をflexで横並び */
  .plans__contents {
    display: flex;
    gap: 20px;
    border: none;
    background: transparent;
    align-items: stretch; /* 高さを揃える */
  }

  /* 各プランカード */
  .plans__content {
    display: flex !important;
    flex-direction: column; /* 中身を縦に並べる */
    flex: 1;
    padding: 30px 20px;
    border: 1px solid #00345B;
    border-radius: 10px;
    background: #E0EAF1;
  }

  /* プラン名 */
  .plans__name {
    text-align: center;
    font-size: 48px;
    margin-top: 20px;
    margin-bottom: 35px;
    color: var(--color-navy);
    font-weight: 400;
  }
  .plans__name span {
    background: linear-gradient(transparent 70%, #fff 70%);
    padding: 0 5px;
  }

  /* リード文 */
  .plans__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
	 min-height: 240px;
  }

  /* メニュー */
  .plans__menu-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .plans__menu {
    font-size: 15px;
    margin-bottom: 20px;
  }
    .plans__menu li {
      font-size: 16px;
    }
  .plans__menu li + li {
    margin-top: 15px;
  }

  /* 価格 */
  .plans__price {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: auto; /* 一番下に寄せる */
    padding-top: 15px;
  }
  .plans__price p {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
  }
  .plans__price span {
    font-size: 20px;
  }
  .plans__price strong {
    font-size: 42px;
    margin-left: 10px;
    font-weight: 600;
  }
  .plans__price p span {
    font-size: 28px;
  }
  .flow {
    padding: 120px 30px;
    border-radius: 0;
  }
  .flow__steps {
        display: flex;
    flex-direction: initial;
    gap: 55px;
  }
  .flow__step:nth-child(1) {
    border-radius: 20px; 
}
  .flow__step:nth-child(4) {
    border-radius: 20px; 
}
  .flow__step {
    padding: 20px;
    background: transparent;
    width: calc(25%);
    border-radius: 20px;
  }
  .flow__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 3vw;
}
.flow__arrow {
    top: 50%;
    left: -29%;
    width: 100px;
    height: 100px;
    transform: translateY(-50%) rotate(-90deg);
}
.flow__head img {
    width: 100px;
}
.flow__subtitle {
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
}
.flow__text {
  font-size: 18px;
}
.youtube__title {
  font-size: 38px;
}
.youtube {
  padding: 120px 30px;
  margin-top: 0;
}
.youtube__desc {
  font-size: 22px;
}
  .youtube__meta {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .youtube__meta span {
    font-size: 50px;
  }
.floating__button {
    right: 50px;
    bottom: 30px;
    width: 124px;
    height: 124px;
    transition: transform 0.3s ease; /* ふわっと拡大 */
}
.floating__button:hover {
  transform: scale(1.1); /* 10%拡大 */
}
.contact {
  padding: 120px 30px;
}
  .contact__content form {
    max-width: 800px;
  }

  .contact__content label {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .contact__content input[type="text"],
  .contact__content input[type="email"],
  .contact__content input[type="tel"],
  .contact__content textarea {
    padding: 15px;
    font-size: 18px;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .contact__content textarea {
    min-height: 150px;
  }

  .contact__content input[type="submit"] {
    padding: 20px 140px;
    font-size: 17px;
    border-radius: 6px;
  }


}



/* 共通 */
.header {
  width: 100%;
  background: var(--color-navy);
  z-index: 1000;
  transition: 0.3s ease;
}
/* スクロール後に固定される状態 */
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 影をつけるとわかりやすい */
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
.header__logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  font-family: var(--font-en);
}

/* PCメニュー */
.pc-nav ul {
  display: flex;
  gap: 50px;
}
.pc-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding: 0 12px;
  transition: color 0.3s;
}
.pc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* 文字から少し下 */
  width: 100%;
  height: 2px;
  background: var(--color-white); /* 下線の色 */
  transform: scaleX(0); /* 初期は非表示 */
  transform-origin: right;
  transition: transform 0.3s ease;
}
.pc-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ハンバーガー（SPのみ表示） */
.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
    right: 15px;
    top: 15px;
  z-index: 3;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: 0.3s

}
.hamburger span + span {
  margin-top: 5px;
}

/* ドロワーメニュー */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: var(--color-navy);
  color: #fff;
  transition: right 0.4s ease;
  padding: 130px 24px;
  z-index: 2;
}
.drawer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.drawer a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* 表示制御 */
.drawer.is-active {
  right: 0;
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .pc-nav { display: none; }
  .sp-nav { display: block; }
}
@media (min-width: 769px) {
  .pc-nav { display: block; }
  .sp-nav { display: none; }
}
@media screen and (min-width:750px) {
  .header__inner {
  padding: 25px 100px;
}
.header__logo {
  font-size: 40px;
}

}


/* 共通初期状態 */
.fadein,
.fadein-60,
.fadein-left,
.fadein-right,
.fadein-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 普通のフェードイン（ちょっと下にズラして出す） */
.fadein {
  transform: translateY(20px);
}
.fadein-60 {
  transform: translateY(20px);
}

/* 左から */
.fadein-left {
  transform: translateX(-40px);
}

/* 右から */
.fadein-right {
  transform: translateX(40px);
}

/* 下から */
.fadein-up {
  transform: translateY(40px);
}

/* 表示されたときの状態 */
.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.footer {
  padding-top: 8vw;
  background: #222;
  color: #fff;
  text-align: center;
}

/* 内側ラッパー */
.footer__inner {
  padding: 6vw 2vw;         /* SPはvwで余白 */
}

/* タイトル */
.footer__title {
  font-size: 6vw;         /* SPはvw */
  margin-bottom: 6vw;
  font-weight: bold;
  font-family: var(--font-en);
}

/* メニュー */
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;               /* SPはvwで間隔 */
}

.footer__menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 3.5vw;
}

/* コピーライト */
.footer__copy {
  font-size: 3vw;
  padding: 6vw 0;
  text-align: center;
}

/* PC用 */
@media screen and (min-width: 750px) {
  .footer {
    padding-top: 20px;
  }
  .footer__inner {
    padding: 40px 0;
  }

  .footer__title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .footer__menu {
    gap: 40px;
  }

  .footer__menu li a {
    font-size: 16px;
  }

  .footer__copy {
    font-size: 12px;
    padding: 20px 0;
  }
}
