@charset "UTF-8";
/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */
/* カラー */
:root {
  --color-font-gray: #f3f3f2;
  --color-font-blue: #4688db;
  --color-font-navy: #2005bd;
  --color-font-black: #474747;
  --color-font-white: #ffffff;
  --color-bg-blue: #4688db;
  --color-bg-lightblue: #61b8ff;
  --color-bg-purple: #e8ebf8;
  --color-bg-navy: #2005bd;
  --color-bg-green: #63dc85;
  --color-bg-skyblue: #f2f9ff;
  --color-bg-white: #ffffff;
  --color-gradation: linear-gradient(
    90deg,
    rgba(32, 5, 189, 0.7) 0%,
    rgba(44, 207, 243, 0.7) 100%
  );
}

/* コンテナ幅 */
:root {
  --width-content: 1200px;
}

/* フォント */
:root {
  --font-family-gothic: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
}

/* -------------------------
全体共通のスタイル
------------------------- */
body {
  font-family: var(--font-family-gothic);
  font-size: 16px;
  color: var(--color-font-black);
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

/* -------------------------
文字が跳ねるアニメーション
------------------------- */
.bounce-title-char {
  animation-name: bounceText;
  animation-duration: 1.1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
  display: block;
  animation-play-state: paused;
}

.bounce-title-text {
  display: flex;
  opacity: 0;
}

.bounce-title[data-animation] .bounce-title-text {
  opacity: 1;
}

.bounce-title[data-animation="after"] .bounce-title-char {
  animation-play-state: running;
}

@keyframes bounceText {
  0% {
    opacity: 0;
    transform: scale3d(0.5, 0.5, 1);
  }
  25% {
    opacity: 0.9;
    transform: scale3d(1.08, 1.08, 1);
  }
  50% {
    opacity: 1;
    transform: scale3d(0.9, 0.9, 1);
  }
  75% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
/* -------------------------
ホバーで画像拡大（dialogを開く前に）
------------------------- */
.hover-zoom {
  height: auto;
  transition: transform 0.6s ease;
  cursor: pointer;
}
.hover-zoom img {
  height: auto;
  transition: transform 0.6s ease;
  cursor: pointer;
}
.hover-zoom img:hover {
  transform: scale(1.08);
}

/* -------------------------
モーダル
------------------------- */
.dialog__button--inner {
  text-align: center;
  padding: 30px;
  margin: 30px auto;
}

.dialog_inner {
  text-align: center;
}

/* -------------------------
フェードインアニメーション（スクロールで範囲に入ったら、左から右へ）
------------------------- */
.load-slide-left {
  transition: all 0.6s ease;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  will-change: clip-path, opacity;
}

.active.load-slide-left {
  transform: translateX(0); /* 動作時にのみ適用 */
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* -------------------------
フェードインアニメーション（スクロールで範囲に入ったら）
------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* -------------------------
コンテナの幅、余白
------------------------- */
.l-container {
  width: 90%;
  margin: 0 auto;
  max-width: var(--width-content);
}
@media screen and (max-width: 500px) {
  .l-container {
    padding: 0 16px;
    width: 100%;
  }
}

.l-container-max {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}

.section__inner {
  padding: 80px 0;
}
@media screen and (max-width: 500px) {
  .section__inner {
    padding: 64px 0;
  }
}

/* -------------------------
タイトル
------------------------- */
.c-title-level2 {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: clamp(25px, 2.7vw, 40px);
}

.c-title-level3 {
  font-weight: bold;
  font-size: 38px;
  line-height: 1.5;
}

.c-title-bg {
  font-weight: bold;
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-title-top {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font-blue);
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .c-title-top {
    font-size: 18px;
  }
}
.c-title-top::before {
  background-color: var(--color-bg-blue);
  bottom: -6px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 32px;
}

.title__wrap {
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.title__wrap .title__bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .title__wrap .title__bg {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .title__wrap .title__bg img {
    width: 100%;
  }
}

/* -------------------------
ボタン
------------------------- */
.c-button {
  display: inline-block;
  min-width: 350px;
  color: var(--color-font-white);
  padding: 0.6em 2em;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 100vmax;
  position: relative;
  cursor: pointer;
}

.c-button__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  top: 37%;
  position: absolute;
  right: 10%;
  transform: rotate(45deg);
  margin: auto;
  border-top: solid 2px var(--color-bg-white);
  border-right: solid 2px var(--color-bg-white);
}

.c-button--skyblue {
  background-color: #329cf4;
}

.c-button--blue {
  background-color: var(--color-bg-blue);
}

.c-button--green {
  background-color: var(--color-bg-green);
}

/* -------------------------
ヘッダー
------------------------- */
.header {
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  background-color: transparent;
}
@media screen and (min-width: 1440px) {
  .header {
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .header {
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  transform: initial;
  max-width: inherit;
  margin: 0 auto;
  height: inherit;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1440px) {
  .header__inner {
    max-width: 1920px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1160px) {
  .header__inner {
    height: inherit;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}

.header-logo {
  position: absolute;
  top: 27px;
  left: 70px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 1441px) {
  .header-logo {
    left: 22px;
  }
}
@media screen and (max-width: 1160px) {
  .header-logo {
    position: static;
    margin-left: 16px;
  }
}
@media screen and (max-width: 1160px) {
  .header-logo img {
    width: 71px;
    height: auto;
  }
}

.header__menu {
  justify-content: space-between;
  padding-top: inherit;
  padding-bottom: inherit;
  position: inherit;
  height: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 1160px) {
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-lightblue);
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-lightblue);
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 1160px) {
  .header__menu.active {
    background-color: var(--color-bg-white);
  }
}

.header__button {
  height: 100%;
  display: flex;
  width: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-bg-black);
}
@media screen and (min-width: 1025px) {
  .header__button {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    width: 60px;
  }
}

.header__menu--inner {
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  height: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 1160px) {
  .header__menu--inner {
    display: none;
    width: 100%;
    position: fixed;
    left: 0;
    height: calc(100% - 60px);
    animation-name: fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
    z-index: -1;
  }
  .header__menu--inner.active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__menu--inner {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 60px);
    animation-name: fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
    z-index: -1;
  }
  .header__menu--inner.active {
    display: block;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__list {
  display: flex;
  align-items: center;
  position: absolute;
  top: 23px;
  right: 123px;
  padding: 0;
  background-color: var(--color-bg-white);
  box-shadow: 0px 4px 4px rgba(187, 182, 217, 0.2);
  padding: 10px 24px;
  padding: 10px 0 10px 24px;
  border-radius: 100vw;
}
@media screen and (min-width: 1441px) {
  .header__list {
    right: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1160px) {
  .header__list {
    gap: 24px;
    flex-direction: column;
    color: var(--color-font-white);
    text-align: center;
    padding-top: 120px;
    height: 100vh;
    border-radius: 0;
    right: 0;
    width: 100%;
    top: 0;
    padding-left: 16px;
    padding-right: 16px;
    background: linear-gradient(
      90deg,
      rgba(32, 5, 189, 0.9) 0%,
      rgba(44, 207, 243, 0.9) 100%
    );
  }
}
@media screen and (max-width: 767px) {
  .header__list {
    gap: 24px;
    flex-direction: column;
    color: var(--color-font-white);
    text-align: center;
    padding-top: 120px;
    height: 100vh;
    border-radius: 0;
    right: 0;
    width: 100%;
    top: 0;
    padding-left: 16px;
    padding-right: 16px;
    background: linear-gradient(
      90deg,
      rgba(32, 5, 189, 0.9) 0%,
      rgba(44, 207, 243, 0.9) 100%
    );
  }
}
@media screen and (max-width: 375px) {
  .header__list {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header__item {
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.header__item.tel {
  display: none;
}
@media screen and (max-width: 1160px) {
  .header__item.tel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 24px;
  }
}
@media screen and (max-width: 375px) {
  .header__item.tel {
    font-size: 18px;
  }
}
.header__item.tel .number {
  position: relative;
  padding-left: 39px;
}
.header__item.tel .number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url(../img/lp/tel-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__item.tel .hours {
  font-size: 12px;
}
@media screen and (max-width: 500px) {
  .header__item {
    font-size: 24px;
  }
}
.header__item a:hover {
  color: var(--color-font-blue);
  transition: 0.5s;
}
@media screen and (max-width: 1160px) {
  .header__item a:hover {
    color: var(--color-font-white);
    transition: 0.5s;
  }
}
.header__item .c-button__header:hover {
  color: var(--color-font-white);
}

.header__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 15px;
}
.header__item:first-child {
  padding-right: 8px;
}
@media screen and (max-width: 767px) {
  .header__item:first-child {
    padding-right: 0;
  }
}
.header__item:first-child::before {
  border-right: solid 1px var(--color-font-black);
}
@media screen and (max-width: 1160px) {
  .header__item:first-child::before {
    border: none;
  }
}
.header__item:nth-child(2) {
/*   padding: 0 24px; */
	padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .header__item:nth-child(2) {
    padding: 0;
  }
}
/* .header__item:nth-child(2)::before {
  border-right: solid 1px var(--color-font-black);
} */
@media screen and (max-width: 1160px) {
  .header__item:nth-child(2)::before {
    border: none;
  }
}
.header__item:nth-child(3) {
  padding-left: 22px;
}
@media screen and (max-width: 1160px) {
  .header__item:nth-child(3) {
    padding: 0;
  }
}
@media screen and (max-width: 1160px) {
  .header__item {
    margin: 0;
    font-weight: 700;
    color: var(--color-bg-white);
  }
}

.c-button__header {
  flex-shrink: 0;
  display: none;
}
@media screen and (max-width: 1160px) {
  .c-button__header {
    display: block;
    font-size: 14px;
    width: 215px;
    height: 60px;
    line-height: 60px;
  }
}
.c-button__header:hover {
  color: var(--color-font-white);
}

.c-button__header.document {
  background-color: #63dc85;
}

.c-button__header.session {
  background-color: #329cf4;
}
.c-button__header::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  top: 43%;
  transform: translateY(-50%);
  position: absolute;
  right: 10%;
  transform: rotate(45deg);
  margin: auto;
  border-top: solid 2px var(--color-bg-white);
  border-right: solid 2px var(--color-bg-white);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1160px) {
  .hamburger {
    display: block;
    width: 30px;
    height: 16px;
    z-index: 1;
    text-align: center;
  }
  .hamburger.active span {
    right: -5px;
  }
  .hamburger span {
    display: block;
    background-color: var(--color-bg-white);
    width: 28px;
    height: 3px;
    border-radius: 100vw;
    transition: transform 0.3s, opacity 0.3s;
    will-change: transform, opacity;
    transform-origin: 0 0;
    position: absolute;
  }
  .hamburger span.active {
    width: 100%;
    height: 2px;
    transition: opacity 0.3s;
    cursor: pointer;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 4px;
  }
  .hamburger span:nth-child(3) {
    top: 8px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 36px;
    top: -4px;
    left: 6px;
    background-color: var(--color-bg-lightblue);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: 14px;
    bottom: 0;
    left: 5px;
    width: 36px;
    transform: rotate(-45deg);
    background-color: var(--color-bg-lightblue);
  }
}

.header__button {
  width: 100%;
  height: 100%;
}
.header__button span {
  position: relative;
}

/* -------------------------
ファーストビュー
------------------------- */
.first-view__inner {
  max-width: 1440px;
  margin: 0 auto;
  background-image: url(../img/lp/fv-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .first-view__inner {
    max-width: none;
    height: 750px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .first-view__inner {
    background-image: url(../img/lp/fv-tb.webp);
  }
}
@media screen and (max-width: 500px) {
  .first-view__inner {
    background-image: url(../img/lp/fv-sp.webp);
    background-position: top;
    height: 700px;
  }
}

.first-view__text {
  position: absolute;
  top: 112px;
  left: 120px;
}
@media screen and (min-width: 1161px) and (max-width: 1280px) {
  .first-view__text {
    left: 80px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1160px) {
  .first-view__text {
    left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .first-view__text {
    left: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__text {
    top: auto;
    bottom: 46px;
    left: 0;
    text-align: left;
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .first-view__text {
    top: auto;
    bottom: 46px;
    left: 0;
    text-align: center;
    padding: 0 16px;
  }
}

.first-view__title {
  font-size: 36px;
  text-align: left;
}
.first-view__title .color {
  color: #6157d1;
}
@media screen and (max-width: 1024px) {
  .first-view__title .color {
    display: block;
  }
}
.first-view__title .large {
  font-size: clamp(26px, 3.3vw, 48px);
}
@media screen and (max-width: 1024px) {
  .first-view__title .large {
    font-size: 32px;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__title {
    font-size: 32px;
    text-align: left;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .first-view__title {
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
  }
}

.first-view__lead {
  font-size: 20px;
  margin-bottom: 28px;
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__lead {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .first-view__lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .first-view__lead {
    font-size: 14px;
  }
}

.first-view__detail--small {
  font-size: 15px;
  letter-spacing: 0.05em;
  background-color: var(--color-bg-navy);
  color: var(--color-font-white);
  font-weight: bold;
  padding: 5px 17px;
  border-radius: 100vw;
  display: inline-block;
  margin-bottom: 16px;
}

.first-view__logo {
  margin-bottom: 16px;
}
.first-view__logo img {
  width: 286px;
  height: auto;
}
@media screen and (max-width: 500px) {
  .first-view__logo img {
    width: 292px;
  }
}

.first-view__detail {
  width: 35%;
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 12px;
}
.first-view__detail .color {
  color: #6157d1;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .first-view__detail {
    width: 36%;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__detail {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .first-view__detail {
    width: 100%;
    text-align: left;
  }
}

.first-view__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
  margin-bottom: 21px;
}
.first-view__button .c-button {
  min-width: 390px;
  padding: 0.9em 2em;
}
@media screen and (max-width: 1024px) {
  .first-view__button .c-button {
    display: none;
  }
}
.first-view__button .c-button:first-child {
  border: solid 1.5px var(--color-bg-white);
}
.first-view__button .c-button.slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.first-view__button .c-button.slide::after {
  background: var(--color-bg-white);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 101%;
  height: 101%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.first-view__button .c-button.slide:hover {
  border: solid 1.5px var(--color-bg-lightblue);
  color: var(--color-bg-lightblue);
}
.first-view__button .c-button.slide:hover::after {
  transform: scale(1, 1);
}
.first-view__button .c-button.c-button__arrow:hover::before {
  border-top: solid 2px var(--color-bg-lightblue);
  border-right: solid 2px var(--color-bg-lightblue);
}
@media screen and (max-width: 767px) {
  .first-view__button {
    flex-direction: column;
    display: none;
  }
}

/* .first-view__tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
} */

.first-view__number {
  font-size: 24px;
  position: relative;
  font-weight: bold;
  padding-left: 40px;
}
.first-view__number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../img/lp/tel-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 375px) {
  .first-view__number {
    font-size: 20px;
  }
}

.first-view__hours {
  font-size: 15px;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .first-view__hours {
    font-size: 12px;
  }
}

.first-view__cta {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  background: linear-gradient(
    360deg,
    rgba(32, 5, 189, 0.7) 0%,
    rgba(44, 243, 207, 0.7) 99.69%
  );
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 65px;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1160px) {
  .first-view__cta {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .first-view__cta {
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    position: static;
    background: transparent;
  }
}

.first-view__cta--button {
  color: var(--color-font-white);
  gap: 12px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
}
.first-view__cta--button .block {
  display: block;
}
@media screen and (max-width: 1160px) {
  .first-view__cta--button .block {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .first-view__cta--button img {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .first-view__cta--button {
    writing-mode: horizontal-tb;
  }
}
.first-view__cta--button p {
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 501px) and (max-width: 1160px) {
  .first-view__cta--button p {
    font-size: 16px;
  }
}
.first-view__cta--button:first-child {
  background-color: #329cf4;
  padding: 17px 0 36px 0;
}
@media screen and (min-width: 501px) and (max-width: 1160px) {
  .first-view__cta--button:first-child {
    padding: 20px 0;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .first-view__cta--button:first-child {
    height: inherit;
    padding: 0;
    width: 50%;
  }
  .first-view__cta--button:first-child::after {
    content: "";
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    border-top: solid 2px var(--color-bg-white);
    border-right: solid 2px var(--color-bg-white);
  }
}
.first-view__cta--button:last-child {
  background-color: #63dc85;
  padding: 17px 0 22px 0;
}
@media screen and (min-width: 501px) and (max-width: 1160px) {
  .first-view__cta--button:last-child {
    padding: 20px 0;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .first-view__cta--button:last-child {
    height: inherit;
    padding: 0;
    width: 50%;
  }
  .first-view__cta--button:last-child::after {
    content: "";
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    border-top: solid 2px var(--color-bg-white);
    border-right: solid 2px var(--color-bg-white);
  }
}

/* -------------------------
ファーストビュー（セミナー用）
------------------------- */

.first-view__inner.seminar {
  background-image: url(../img/lp/fv-seminar-pc.webp);
  height: 650px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .first-view__inner.seminar {
    height: 650px;
  }
}
@media screen and (min-width: 841px) and (max-width: 1024px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-tb.webp);
  }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-tb.webp);
    height: 628px;
  }
}
@media screen and (min-width: 631px) and (max-width: 767px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-sp.webp);
    height: clamp(750px, 111.8vw, 850px);
  }
}
@media screen and (min-width: 501px) and (max-width: 630px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-sp.webp);
    height: clamp(650px, 117.6vw, 741px);
  }
}
@media screen and (min-width: 431px) and (max-width: 500px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-sp.webp);
    height: clamp(700px, 160vw, 800px);
  }
}
@media screen and (min-width: 357px) and (max-width: 430px) {
  .first-view__inner.seminar {
    background-image: url(../img/lp/fv-seminar-sp.webp);
    height: clamp(595px, 153.4vw, 660px);
  }
}

.first-view__container {
  max-width: 1000px;
  margin: 85px auto 0 auto;
  position: relative;
}

@media screen and (min-width: 375px) and (max-width: 1024px) {
  .first-view__container {
    padding: 0 16px;
    margin: 80px auto 0 auto;
  }
}

.first-view__text--seminar {
  max-width: 657px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 767px) and (max-width: 960px) {
  .first-view__text--seminar {
    max-width: clamp(600px, 68.4vw, 657px);
  }
}

.first-view__text--emblem {
  position: absolute;
  bottom: 5%;
  right: 17%;
  width: 114px;
  z-index: 1;
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__text--emblem {
    bottom: 70px;
    right: 16px;
  }
}
@media screen and (min-width: 431px) and (max-width: 500px) {
  .first-view__text--emblem {
    width: 90px;
    right: 16px;
    bottom: clamp(75px, 22.6vw, 113px);
  }
}
@media screen and (min-width: 375px) and (max-width: 430px) {
  .first-view__text--emblem {
    width: 90px;
    right: 16px;
    bottom: 83px;
  }
}
@media screen and (max-width: 374px) {
  .first-view__text--emblem {
    width: 80px;
    right: 16px;
    bottom: 70px;
  }
}
.first-view__text--features {
  max-width: 554px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__text--features {
    max-width: clamp(260px, 46vw, 350px);
  }
}
@media screen and (min-width: 390px) and (max-width: 414px) {
  .first-view__text--features {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 375px) and (max-width: 500px) {
  .first-view__text--features {
    max-width: clamp(170px, 48vw, 240px);
  }
}
@media screen and (max-width: 374px) {
  .first-view__text--features {
    max-width: 170px;
  }
}

.first-view__triangle {
  position: absolute;
  width: 100%;
  max-width: clamp(400px, 50vw, 720px);
}

.first-view__triangle.top {
  top: 0;
  left: 0;
  transform: rotate(-180deg);
}
.first-view__triangle.bottom {
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .first-view__triangle.bottom {
    display: none;
  }
}
.first-view__image {
  position: absolute;
  bottom: 0;
  right: -195px;
  max-width: 800px;
}
@media screen and (min-width: 841px) and (max-width: 1024px) {
  .first-view__image {
    bottom: 13%;
    max-width: clamp(600px, 73.6vw, 750px);
    right: clamp(-91px, 17.6vw, -180px);
  }
}

@media screen and (min-width: 768px) and (max-width: 840px) {
  .first-view__image {
    bottom: 13%;
    max-width: clamp(500px, 77.3vw, 650px);
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .first-view__image {
    bottom: 13%;
    max-width: clamp(600px, 105vw, 800px);
  }
}

@media screen and (min-width: 375px) and (max-width: 500px) {
  .first-view__image {
    bottom: 16%;
    max-width: clamp(398px, 100vw, 500px);
    right: -27%;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .first-view__inner.seminar
    .first-view__container
    .first-view__button
    .c-button {
    display: block;
    max-width: 390px;
  }
}
@media screen and (max-width: 500px) {
  .first-view__inner.seminar
    .first-view__container
    .first-view__button
    .c-button {
    display: block;
    max-width: 310px;
    min-width: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .first-view__inner.seminar .first-view__container .first-view__button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .first-view__inner.seminar .first-view__container .first-view__button {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 640px) {
  .first-view__cta.seminar .block {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .first-view__cta.seminar p {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .first-view__cta.seminar .first-view__cta--button {
    min-height: clamp(60px, 14vw, 90px);
  }
}

/* -------------------------
相談会・資料請求ページ
------------------------- */
.page-contents {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .page-contents {
    margin-top: 50px;
  }
}
.page-header__inner {
  background-image: var(--color-gradation);
  padding: 10% 0;
  text-align: center;
  color: var(--color-font-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-header__inner {
    padding: 19% 0;
  }
}

.page-header-triangle {
  position: absolute;
  top: 0;
  left: 0;
}

.page-header-triangle img {
  max-width: 720px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .page-header-triangle img {
    width: 100%;
  }
}

.page-header__inner a {
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}
.page-contents__form {
  border: solid 1px #b6b6b6;
  border-radius: 15px;
  padding: 5% 3% 3% 3%;
}
.page-contents__form p {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.page-contents__form.complete {
  border: none;
  border-radius: 0;
  padding: 5% 0 3% 0;
  margin-bottom: 10%;
  text-align: center;
}

.sf-form-cover {
  display: none !important;
}
.page-contents__form .title__wrap {
  margin-bottom: 40px;
}
.page-contents__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-contents__flex {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }
}
.page-contents__flex p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.page-contents__flex a {
  text-decoration: underline;
}
.page-contents__flex img {
  width: 36%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .page-contents__flex img {
    width: 62%;
  }
}
.form__title {
  margin-bottom: 40px;
}

.form__center {
  text-align: center;
}
.button-rect.sf-btn {
  border-color: rgb(32, 5, 189);
  background-color: rgb(32, 5, 189);
  color: rgb(255, 255, 255);
  font-weight: normal;
  font-size: 20px;
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  display: inline-block;
  max-width: 616px;
  width: 100%;
  text-align: center;
  padding: 0.25em 0.25em;
  margin-top: 9%;
  line-height: 1.5;
}

.section__title--sub {
  letter-spacing: 0.05em;
  text-align: center;
  font-size: clamp(18px, 1.28vw, 20px);
}

/* 資料請求・下部 */
.form__bottom {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

@media screen and (max-width: 767px) {
  .form__bottom {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .form__bottom {
    flex-direction: column;
  }
}
.form__bottom--image {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .form__bottom--image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}

.form__bottom--text p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .form__bottom--text p {
    font-size: 14px;
  }
}

.form__bottom--text a {
  font-weight: bold;
  color: var(--color-bg-lightblue);
  text-decoration: underline;
}
/* -------------------------
フッター
------------------------- */
.footer {
  background-color: var(--color-bg-white);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 160px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 30px;
    align-items: center;
  }
}

.footer__nav {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.footer__nav--item {
  font-size: 12px;
  line-height: 1;
}

.footer__copyright {
  font-size: 13px;
  line-height: 1;
}

/* -------------------------
お悩み
------------------------- */
.problem__inner {
  position: relative;
}
.problem__inner .title__wrap .title__bg {
  top: 27%;
}
.problem__inner .title__wrap .title__bg img {
  max-width: clamp(418px, 62.9vw, 907px);
  height: auto;
}

.problem__image--wrap {
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .problem__image--wrap {
    margin-top: 44px;
  }
}

.problem__image {
  max-width: 602px;
  margin: -75px auto 0 auto;
}
@media screen and (max-width: 500px) {
  .problem__image {
    margin-top: 0;
  }
}

.problem__arrow {
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
  margin: -13px auto 0 auto;
  max-width: clamp(130px, 15.2vw, 220px);
}

/* -------------------------
お悩み解決
------------------------- */
.solution {
  background-color: var(--color-bg-purple);
  position: relative;
  z-index: -1;
  padding-top: 134px;
  padding-bottom: 119px;
}
@media screen and (max-width: 500px) {
  .solution {
    padding-top: 80px;
    padding-bottom: 82px;
  }
}

.solution__inner {
  position: relative;
}
.solution__inner .title__wrap .title__bg {
  top: -55%;
}
.solution__inner .title__wrap .title__bg img {
  max-width: 658px;
  height: auto;
}

.solution__flex--list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: clamp(109px, 10.4vw, 151px);
}
@media screen and (max-width: 500px) {
  .solution__flex--list {
    gap: 40px;
  }
}
.solution__flex--list .solution__flex__item {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-left: 120px;
  position: relative;
  background-color: #fff;
}
.solution__flex--list .solution__flex__item:first-child {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .solution__flex--list .solution__flex__item:first-child .solution__text {
    padding: 52px 18px 36px 18px;
  }
}
@media screen and (max-width: 960px) {
  .solution__flex--list .solution__flex__item {
    flex-direction: column-reverse;
    margin-left: 0;
  }
}
.solution__flex--list .solution__flex__item .solution__text {
  z-index: 2;
  padding-left: 40px;
  margin-top: -45px;
}
@media screen and (max-width: 767px) {
  .solution__flex--list .solution__flex__item .solution__text {
    padding-left: 0;
    padding: 36px 18px;
  }
}
.solution__flex--list .solution__flex__item .solution__text .solution__point {
  max-width: clamp(250px, 21.8vw, 314px);
}
@media screen and (max-width: 767px) {
  .solution__flex--list .solution__flex__item .solution__text .solution__point {
    max-width: 164px;
    margin-bottom: 8px;
  }
}
.solution__flex--list .solution__flex__item .solution__image {
  flex-shrink: 0;
  max-width: 720px;
}
@media screen and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item .solution__image {
    max-width: 588px;
  }
}
.solution__flex--list .solution__flex__item:nth-last-child(even) {
  background-color: transparent;
  flex-direction: row-reverse;
  margin-right: 120px;
  margin-left: 0;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item:nth-last-child(even) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 960px) {
  .solution__flex--list .solution__flex__item:nth-last-child(even) {
    flex-direction: column-reverse;
    margin-right: 0;
  }
}
.solution__flex--list
  .solution__flex__item:nth-last-child(even)
  .solution__image {
  background-image: var(--color-gradation);
  padding: 33px 33px 33px 0;
}
@media screen and (min-width: 501px) and (max-width: 960px) {
  .solution__flex--list
    .solution__flex__item:nth-last-child(even)
    .solution__image {
    padding: 20px 14px;
  }
}
@media screen and (max-width: 500px) {
  .solution__flex--list
    .solution__flex__item:nth-last-child(even)
    .solution__image {
    padding: 20px 14px 20px 0;
    margin-right: 55px;
  }
}
.solution__flex--list .solution__flex__item:first-child::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -120px;
  height: 190px;
  width: 94%;
  z-index: -1;
  background-image: var(--color-gradation);
  transform: rotate(180deg);
}
@media screen and (min-width: 1441px) {
  .solution__flex--list .solution__flex__item:first-child::before {
    left: 0;
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item:first-child::before {
    width: 107%;
  }
}
@media screen and (max-width: 960px) {
  .solution__flex--list .solution__flex__item:first-child::before {
    left: -20px;
    height: 91px;
    width: 100%;
    top: -55px;
  }
}
.solution__flex--list .solution__flex__item:first-child::after {
  content: "";
  position: absolute;
  background-image: url(../img/lp/solution-illust.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 138px;
  height: 152px;
  top: -239px;
  right: 266px;
  z-index: 100;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item:first-child::after {
    right: clamp(70px, 12.7vw, 163px);
  }
}
@media screen and (max-width: 960px) {
  .solution__flex--list .solution__flex__item:first-child::after {
    width: 74px;
    height: 80px;
    right: 8%;
    bottom: 0;
    top: -134px;
  }
}
.solution__flex--list .solution__flex__item:nth-child(2) .solution__text {
  padding-left: 70px;
  margin-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .solution__flex--list .solution__flex__item:nth-child(2) .solution__text {
    padding-right: 70px;
    background-color: var(--color-bg-white);
  }
}
@media screen and (max-width: 767px) {
  .solution__flex--list .solution__flex__item:nth-child(2) .solution__text {
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    background-color: var(--color-bg-white);
    padding: 36px 18px;
  }
}
.solution__flex--list .solution__flex__item:nth-child(2)::before {
  content: "";
  width: 282px;
  height: 275px;
  position: absolute;
  top: 0;
  right: -120px;
  z-index: 100;
  background-image: url(../img/lp/solution__flex__item-bg-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item:nth-child(2)::before {
    display: none;
  }
}
.solution__flex--list .solution__flex__item:last-child {
  margin: 0 20px;
  margin-top: 56px;
}
.solution__flex--list .solution__flex__item:last-child .solution__text {
  padding-left: 31px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .solution__flex--list .solution__flex__item:last-child .solution__text {
    margin-top: -30px;
    padding: 44px 18px 36px 18px;
  }
}
.solution__flex--list .solution__flex__item:last-child::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0;
  height: 190px;
  width: 94%;
  z-index: -1;
  background-image: var(--color-gradation);
}
@media screen and (max-width: 960px) {
  .solution__flex--list .solution__flex__item:last-child::before {
    right: -20px;
    height: 91px;
    top: -55px;
    width: 100%;
  }
}
.solution__flex--list .solution__flex__item:last-child::after {
  content: "";
  width: 296px;
  height: 288px;
  position: absolute;
  top: 0;
  left: -180px;
  z-index: -1;
  background-image: url(../img/lp/solution__flex__item-bg-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .solution__flex--list .solution__flex__item:last-child::after {
    display: none;
  }
}
.solution__title {
  font-size: clamp(22px, 2.6vw, 38px);
  color: var(--color-font-white);
  background-color: var(--color-bg-navy);
  display: inline-block;
  line-height: 1;
  padding: 12px 40px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) and (max-width: 1160px) {
  .solution__title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 961px) and (max-width: 1024px) {
  .solution__title {
    padding: 12px 20px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .solution__title {
    margin-bottom: 24px;
    display: block;
    text-align: center;
    padding: 6px 35px;
  }
}
.solution__detail {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .solution__detail {
    font-size: 18px;
  }
}

/* -------------------------
事例
------------------------- */
.case {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .case {
    padding-top: 61px;
  }
}
.case.last {
  padding-top: 9px;
}

.case__inner {
  padding: 35px 0;
  background-image: url(../img/lp/case-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .case__inner {
    padding: 12px 0;
  }
}
@media screen and (max-width: 500px) {
  .case__inner {
    background-image: none;
    background: linear-gradient(
      178.21deg,
      rgba(32, 5, 189, 0.2) 2.71%,
      rgba(44, 207, 243, 0.2) 100%
    );
  }
}

.case__bg {
  position: relative;
  margin-top: 64px;
  height: clamp(88px, 10.6vw, 154px);
}
@media screen and (max-width: 767px) {
  .case__bg {
    margin-top: 45px;
  }
}

.case__image {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
.case__image img {
  height: clamp(88px, 10.6vw, 154px);
  width: auto;
}

.case__episode {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  box-shadow: 0px 4px 10px #cdcdcd;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 43px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case__episode {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .case__episode {
    flex-direction: column;
    padding: 32px 16px;
    border-radius: 0;
    gap: 26px;
    margin-top: 0;
  }
}
.case__episode.bottom {
  margin-top: 0;
  padding: 40px 0;
  flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .case__episode.bottom {
    padding: 32px 16px;
  }
}
.case__episode.bottom .case__episode--text {
  width: 80%;
}
@media screen and (min-width: 1280px) and (max-width: 1920px) {
  .case__episode.bottom .case__episode--text {
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .case__episode.bottom .case__episode--text {
    width: 100%;
  }
}

.case__episode.bottom .case__episode--text .flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 500px) {
  .case__episode.bottom .case__episode--text .flex {
    flex-direction: column;
  }
}
.case__episode.bottom .case__episode--text .flex img {
  width: 132px;
  height: auto;
  padding: 11px 14px;
  background-color: var(--color-bg-skyblue);
}
.case__episode.bottom .case__episode--text .flex .case__episode--title {
  margin-bottom: 0;
}
.case__episode.bottom .case__episode--detail {
  margin-bottom: 24px;
}
.case__episode.bottom .case__episode--detail.right {
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .case__episode.bottom .case__episode--detail.right {
    font-size: 12px;
  }
}

.case__profile {
  background-color: var(--color-bg-skyblue);
  width: 33%;
  text-align: center;
  padding: 24px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case__profile {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .case__profile {
    width: 100%;
    padding: 18px 24px;
  }
}
.case__profile img {
  width: 187px;
  height: auto;
  margin-bottom: 12px;
}
@media screen and (max-width: 500px) {
  .case__profile img {
    width: 206px;
    margin-bottom: 15px;
  }
}

.case__profile--name {
  margin-bottom: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case__profile--name {
    text-align: center;
  }
}
.case__profile--name .small {
  margin-left: 16px;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .case__profile--name .small {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}

.case__profile--title {
  background-color: var(--color-bg-navy);
  border-radius: 100vw;
  color: var(--color-font-white);
  font-size: 12px;
  padding: 0.5em 0;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case__profile--title {
    display: inline-block;
    padding: 0.5em 3em;
  }
}

.case__profile--text {
  font-size: 12px;
  line-height: 2.25;
  text-align: left;
  margin-bottom: 8px;
}
@media screen and (max-width: 500px) {
  .case__profile--text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: -2px;
  }
}

.case__profile--link {
  display: block;
  text-align: right;
  font-size: 12px;
  line-height: 2.25;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
  color: var(--color-font-blue);
}
@media screen and (max-width: 500px) {
  .case__profile--link {
    text-align: center;
    display: inline;
    font-size: 15px;
  }
}
.case__profile--link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 11px;
  transform: translateY(-50%);
  background-image: url(../img/lp/icon-arrow-gradation.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.case__episode--number {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-font-blue);
}
.case__episode--number .large {
  font-size: 28px;
}

.case__episode--title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--color-font-blue);
  margin-bottom: 32px;
}
@media screen and (max-width: 500px) {
  .case__episode--title {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
}

.case__episode--detail {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 16px;
}
.case__episode--detail.right {
  text-align: right;
}
.case__episode--detail:last-child {
  margin-bottom: 0;
}
.case__episode--detail .color {
  color: var(--color-font-blue);
  font-weight: bold;
}

/* -------------------------
CTA
------------------------- */
.cta {
  background-image: url(../img/lp/cta-bg-pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .cta {
    background-image: url(../img/lp/cta-bg-sp.webp);
    background-position: top;
  }
}

.cta__inner {
  text-align: center;
  padding: 8% 0 6% 0;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    padding: 16% 0 12% 0;
  }
}
.cta__inner .c-button {
  padding: 1.7em 0;
  box-shadow: 0px 4px 4px #456680;
  background-color: #329cf4;
}
.cta__inner .c-button::before {
  top: 43%;
}
.cta__inner .c-button.big {
  transition-duration: 0.4s;
}
.cta__inner .c-button.big:hover {
  transform: scale(1.1);
}

.cta__text {
  letter-spacing: 0.05em;
  color: var(--color-font-white);
  margin-bottom: clamp(12px, 2.4vw, 35px);
}
@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 14px;
    font-weight: bold;
  }
}

/* -------------------------
選ばれる理由
------------------------- */
.reason {
  padding-bottom: 87px;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-bottom: 0;
  }
}

.reason__inner {
  position: relative;
  padding-top: 164px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .reason__inner {
    padding-top: 66px;
  }
}
.reason__inner .title__wrap .title__bg {
  top: -55%;
}
@media screen and (max-width: 767px) {
  .reason__inner .title__wrap .title__bg {
    top: 26%;
  }
}
.reason__inner .title__wrap .title__bg img {
  max-width: 768px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .reason__inner .title__wrap .title__bg img {
    width: 86%;
  }
}

.reason__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 122px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .reason__list {
    width: 80%;
    flex-direction: column;
    margin-top: 107px;
    gap: 79px;
  }
}
@media screen and (max-width: 767px) {
  .reason__list {
    width: 100%;
  }
}

.reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .reason__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .reason__item:last-child {
    margin-top: -36px;
  }
}

.reason__item--image {
  border: solid 3px #2005bd;
  border-radius: 8px;
  position: relative;
  padding: 56px 22px 25px 22px;
}

.reason__item--number {
  background-color: #2005bd;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  line-height: 91px;
  font-weight: bold;
  color: var(--color-font-white);
  text-align: center;
  position: absolute;
  top: -45px;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%);
}

.reason__item--text p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.reason__item--title {
  color: #2005bd;
  font-size: 24px;
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.reason__item--title::before {
  background-color: var(--color-bg-navy);
  bottom: -16px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 32px;
}

.reason__circle {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .reason__circle {
    margin-top: 117px;
  }
}
.reason__circle img {
  max-width: 662px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .reason__circle img {
    max-width: none;
    width: 97%;
  }
}

.reason__system--list {
  display: flex;
  gap: 9px;
  max-width: 1200px;
  margin: 0 auto 45px auto;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .reason__system--list {
    margin: 0 16px 45px 16px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--list {
    flex-direction: column;
    gap: 124px;
    padding: 0 16px;
    margin-top: 108px;
    margin-bottom: 59px;
  }
}

.reason__system--item {
  background-color: var(--color-bg-skyblue);
  border-radius: 20px;
  padding: 25px;
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .reason__system--item {
    padding: 43px 15px 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--item {
    width: 100%;
  }
}
.reason__system--item:first-child {
  width: 50%;
  padding: 43px 25px 25px 25px;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .reason__system--item:first-child {
    padding: 43px 15px 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--item:first-child {
    width: 100%;
    padding: 63px 24px 24px 24px;
  }
}
.reason__system--item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 1;
  transform: translateY(-50%);
  background-image: url(../img/lp/support-plus.webp);
  width: 55px;
  height: 55px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .reason__system--item:first-child::after {
    top: auto;
    bottom: -15%;
    right: 50%;
    transform: translate(25px, -50%);
  }
}
@media screen and (max-width: 500px) {
  .reason__system--item:first-child::after {
    bottom: -9%;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--item:nth-child(2) {
    padding: 32px 52px;
  }
}
.reason__system--item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 1;
  transform: translateY(-50%);
  background-image: url(../img/lp/support-plus.webp);
  width: 55px;
  height: 55px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .reason__system--item:nth-child(2)::after {
    top: auto;
    bottom: -11%;
    right: 50%;
    transform: translate(25px, -50%);
  }
}
@media screen and (max-width: 500px) {
  .reason__system--item:nth-child(2)::after {
    bottom: -13%;
  }
}
.reason__system--item:last-child .reason__system--title {
  top: -28px;
}
@media screen and (max-width: 767px) {
  .reason__system--item:last-child .reason__system--box p {
    padding: 0px 18px 8px 18px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--item:last-child {
    padding: 32px 52px;
    margin-top: -47px;
  }
}
.reason__system--item:last-child .reason__system--box:after {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .reason__system--item:last-child .reason__system--title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--item:last-child .reason__system--title {
    font-size: 18px;
    top: -38px;
  }
}

.reason__system--flex {
  display: flex;
  justify-content: center;
  gap: 56px;
  position: relative;
}
.reason__system--flex::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/lp/plus-icon.svg);
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 431px) and (max-width: 500px) {
  .reason__system--flex::after {
    top: 391px;
  }
}
@media screen and (min-width: 415px) and (max-width: 430px) {
  .reason__system--flex::after {
    top: 352px;
  }
}
@media screen and (min-width: 391px) and (max-width: 414px) {
  .reason__system--flex::after {
    top: 345px;
  }
}
@media screen and (min-width: 376px) and (max-width: 390px) {
  .reason__system--flex::after {
    top: 332px;
  }
}
@media screen and (max-width: 375px) {
  .reason__system--flex::after {
    top: 325px;
  }
}
@media screen and (max-width: 500px) {
  .reason__system--flex {
    flex-direction: column;
    gap: 40px;
  }
}

.reason__system--box {
  background-color: var(--color-bg-white);
  flex-grow: 1;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__system--box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.reason__system--box:first-child::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 30%;
  width: 89px;
  height: 23px;
  background-image: url(../img/lp/selfee-logo-navy.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .reason__system--box:first-child::before {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }
}
.reason__system--box .title {
  font-size: 18px;
  line-height: 1.8;
  color: #2ccff3;
  font-weight: bold;
  text-align: center;
}
.reason__system--box p {
  font-size: 14px;
  line-height: 1.9;
  padding: 8px;
}
.reason__system--box ul {
  padding: 8px;
}
.reason__system--box ul li {
  font-size: 14px;
  line-height: 1.9;
  position: relative;
  padding-left: 18px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) and (max-width: 1160px) {
  .reason__system--box ul li {
    font-size: 12px;
  }
}
.reason__system--box ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url(../img/lp/check-circle-icon-navy.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reason__system--title {
  font-size: 18px;
  color: var(--color-font-navy);
  font-weight: bold;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__system--title {
    top: -46px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .reason__system--title img {
    width: 117px;
    height: auto;
  }
}

.reason__bottom {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  max-width: 1000px;
  padding: 24px 0;
  margin: 0 auto;
  letter-spacing: 0.05em;
  background-color: #f2f9ff;
  color: #4688db;
  text-align: center;
}
@media screen and (min-width: 501px) and (max-width: 1280px) {
  .reason__bottom {
    max-width: clamp(400px, 75vw, 960px);
    padding: 18px;
  }
}
@media screen and (max-width: 500px) {
  .reason__bottom {
    margin: 0 20px;
    font-size: 20px;
    padding: 24px;
  }
}
@media screen and (max-width: 1080px) {
  .reason__bottom .br-pc {
    display: none;
  }
}

/* -------------------------
ラインナップ
------------------------- */
.lineup__inner {
  position: relative;
  padding: 106px 0 80px 0;
}
.lineup__inner .title__wrap .title__bg {
  top: 8%;
}
.lineup__inner .title__wrap .title__bg img {
  max-width: 720px;
  height: auto;
}

.lineup__list {
  max-width: 1000px;
  margin: 108px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.lineup__title {
  font-size: 28px;
  line-height: 1.8;
  position: relative;
  padding-left: 34px;
}
@media screen and (max-width: 500px) {
  .lineup__title {
    font-size: 24px;
  }
}
.lineup__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 50px;
  background: linear-gradient(
    180deg,
    rgba(32, 5, 189, 0.7) 34.18%,
    rgba(44, 207, 243, 0.7) 100.68%
  );
}

.lineup__item--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  background-color: var(--color-bg-skyblue);
  padding: 40px 60px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lineup__item--flex {
    gap: 30px;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item--flex {
    flex-direction: column-reverse;
    padding: 40px 16px;
    gap: 24px;
  }
}

.lineup__item--curriculum {
  width: 100%;
}
.lineup__item--curriculum ul li {
  padding-bottom: 8px;
  border-bottom: solid 1px #e2e2e2;
  line-height: 2.2;
}

.lineup__item--image {
  flex-shrink: 0;
}
.lineup__item--image img {
  width: 320px;
  height: auto;
}
@media screen and (max-width: 500px) {
  .lineup__item--image img {
    width: 100%;
  }
}

/* -------------------------
サンプル
------------------------- */
.sample {
  background-image: url(../img/lp/sample-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 32px 0;
}

.sample__inner .title__wrap .title__bg {
  bottom: 32%;
}
.sample__inner .title__wrap .title__bg img {
  max-width: 764px;
  height: auto;
}

.sample__swiper {
  margin-top: 41px;
  position: relative;
  padding-bottom: 108px;
}
.sample__swiper .swiper-wrapper {
  margin-left: 69px;
  align-items: center;
  transition-timing-function: linear;
}
.sample__swiper .swiper-button-prev,
.sample__swiper .swiper-button-next {
  height: 50px;
  width: 50px;
  position: absolute;
  top: initial;
  bottom: 0;
}
.sample__swiper .swiper-button-prev::after,
.sample__swiper .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.sample__swiper .swiper-button-prev {
  left: 41%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .sample__swiper .swiper-button-prev {
    left: clamp(300px, 37.5vw, 480px);
  }
}
@media screen and (min-width: 841px) and (max-width: 1024px) {
  .sample__swiper .swiper-button-prev {
    left: clamp(200px, 34.1vw, 350px);
  }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .sample__swiper .swiper-button-prev {
    left: clamp(235px, 29.7vw, 250px);
  }
}
@media screen and (min-width: 431px) and (max-width: 767px) {
  .sample__swiper .swiper-button-prev {
    left: clamp(100px, 31.5vw, 240px);
  }
}
@media screen and (max-width: 430px) {
  .sample__swiper .swiper-button-prev {
    left: clamp(47px, 16.2vw, 70px);
  }
}
@media screen and (max-width: 400px) {
  .sample__swiper .swiper-button-prev {
    left: 40px;
  }
}
.sample__swiper .swiper-button-prev::after {
  background-image: url(../img/lp/swiper-arrow.webp);
}
.sample__swiper .swiper-button-next {
  right: 41%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .sample__swiper .swiper-button-next {
    right: clamp(300px, 37.5vw, 480px);
  }
}
@media screen and (min-width: 841px) and (max-width: 1024px) {
  .sample__swiper .swiper-button-next {
    right: clamp(200px, 34.1vw, 350px);
  }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .sample__swiper .swiper-button-next {
    right: clamp(235px, 29.7vw, 250px);
  }
}
@media screen and (min-width: 431px) and (max-width: 767px) {
  .sample__swiper .swiper-button-next {
    right: clamp(100px, 31.5vw, 240px);
  }
}
@media screen and (max-width: 430px) {
  .sample__swiper .swiper-button-next {
    right: clamp(47px, 16.2vw, 70px);
  }
}
@media screen and (max-width: 400px) {
  .sample__swiper .swiper-button-next {
    right: 40px;
  }
}
.sample__swiper .swiper-button-next::after {
  background-image: url(../img/lp/swiper-arrow.webp);
  transform: rotate(180deg);
}
.sample__swiper .swiper-pagination-bullets {
  position: absolute;
  bottom: 40px !important;
  left: 0;
}
.sample__swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background-color: var(--color-bg-navy);
}

/* -------------------------
導入までの流れ
------------------------- */
.flow__inner {
  position: relative;
  padding: 151px 0 60px 0;
}
.flow__inner .title__wrap .title__bg {
  top: 24px;
  z-index: 0;
}
.flow__inner .title__wrap .title__bg img {
  max-width: 514px;
  height: auto;
}

.flow {
  background-color: var(--color-bg-skyblue);
}

.flow__list {
  max-width: 77%;
  margin: 52px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(68px, 6.875vw, 99px);
}
@media screen and (max-width: 767px) {
  .flow__list {
    max-width: 75%;
  }
}

.flow__item {
  background-color: var(--color-bg-white);
  padding: 32px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}
@media screen and (max-width: 500px) {
  .flow__item {
    padding: 16px 13px;
  }
}
.flow__item::after {
  content: "";
  width: 30px;
  height: 24px;
  background-image: url(../img/lp/flow-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .flow__item::after {
    top: -43px;
  }
}
@media screen and (max-width: 767px) {
  .flow__item::after {
    top: -43px;
  }
}
.flow__item:first-child::after {
  background-image: none;
}
.flow__item:nth-child(3) p {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-child(3) p {
    letter-spacing: -0.01em;
  }
}

.flow__item--text p {
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.flow__item--text p a {
  color: var(--color-font-blue);
}

.flow__item--image {
  max-width: clamp(100px, 11.8vw, 170px);
}

.flow__item--text {
  width: 100%;
}

.flow__item--number {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: var(--color-font-blue);
  margin-bottom: 8px;
}
@media screen and (max-width: 500px) {
  .flow__item--number {
    text-align: center;
  }
}

.flow__item--title {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: var(--color-font-blue);
  margin-bottom: 16px;
}
@media screen and (max-width: 500px) {
  .flow__item--title {
    text-align: center;
  }
}

/* -------------------------
サポート
------------------------- */
.support .section__title {
  font-size: clamp(28px, 3.88vw, 56px);
}

.support__inner {
  position: relative;
  padding: 169px 0 60px 0;
}
.support__inner .title__wrap .title__bg {
  top: -57px;
  z-index: 0;
}
.support__inner .title__wrap .title__bg img {
  max-width: 908px;
  height: auto;
}

.support__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .support__list {
    flex-direction: column;
    max-width: 80%;
    margin: 80px auto 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .support__list {
    width: 100%;
    max-width: none;
  }
}

.support__item {
  width: 33.3333333333%;
  background-color: var(--color-bg-purple);
  position: relative;
  padding: 30px 40px 20px 40px;
}
@media screen and (max-width: 767px) {
  .support__item {
    width: 100%;
    padding: 45px 32px 32px 32px;
  }
}
.support__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--color-gradation);
}
.support__item::after {
  content: "";
  width: 72px;
  height: 72px;
  background-image: url(../img/lp/support-plus.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translate(53px, -50%);
}
@media screen and (max-width: 767px) {
  .support__item::after {
    bottom: -18%;
    top: auto;
    left: 50%;
    transform: translate(-34px, -50%);
  }
}
@media screen and (max-width: 600px) {
  .support__item::after {
    bottom: -19%;
  }
}
.support__item:last-child::after {
  display: none;
}

.support__item--image {
  margin-bottom: 25px;
}

.support__item--text p {
  line-height: 1.5;
  font-size: 15px;
}
@media screen and (max-width: 500px) {
  .support__item--text p {
    font-size: 16px;
  }
}
.support__item--text ul li {
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
}
.support__item--text ul li::before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 9px;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/lp/check-circle-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.support__item--title {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-bg-lightblue);
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 500px) {
  .support__item--title {
    margin-bottom: 16px;
  }
}

/* -------------------------
料金
------------------------- */
.price .section__title {
  font-size: clamp(28px, 3.88vw, 56px);
}

.price__inner {
  position: relative;
  padding: 109px 0 60px 0;
}
.price__inner .title__wrap .title__bg {
  top: -57px;
  z-index: 0;
}
.price__inner .title__wrap .title__bg img {
  max-width: 560px;
  height: auto;
}

.price__image {
  margin-top: 39px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .price__image img {
    max-width: none;
    max-width: 776px;
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  .scroll-hint-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: clamp(150px, 29.8vw, 227px);
    height: clamp(150px, 29.8vw, 227px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .scroll-hint-icon.scroll-hint-icon-black {
    background-color: #68676f;
  }
  .scroll-hint-icon.scroll-hint-icon-black .scroll-hint-text {
    font-size: clamp(9px, 1.8vw, 14px);
  }
}

.price__limited {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .price__limited {
    width: 100%;
  }
}
.price__limited p {
  font-size: 12px;
  line-height: 1.8;
  margin: -3px 30px 10px 30px;
}
@media screen and (max-width: 500px) {
  .price__limited p {
    margin: 0 auto;
  }
}

/* -------------------------
TOPへ戻るボタン
------------------------- */
@media screen and (max-width: 767px) {
  .page-top {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    border-radius: 50%;
    transition: 0.3s;
    background-color: var(--color-bg-skyblue);
    box-shadow: rgba(0, 0, 0, 0.2392156863) 0px 3px 8px;
    z-index: 1;
  }
  .page-top:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 12%;
    right: 37%;
    bottom: 0;
    margin: auto;
    border-top: solid 2px var(--color-bg-navy);
    border-right: solid 2px var(--color-bg-navy);
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-first {
  opacity: 0;
  transform: translateX(-200px); /* 左に100pxずらす */
  transition: opacity 1s ease, transform 1s ease; /* アニメーション効果 */
} /*# sourceMappingURL=style.css.map */
