@charset "UTF-8";

@font-face {
  font-family: "Dream-Avenue";
  src: url("../font/FontsFree-Net-Dream-Avenue.ttf") format("truetype");
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
  /* リキッドレイアウト対応のための設定 */
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  color: #29A2E5;
  background-color: #fff;
  position: relative;
}

body.is-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

li {
  list-style: none;
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

*:focus {
  outline: none;
}

details summary {
  list-style: none;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

.l-main {
  overflow-x: clip;
}

.l-header {
  height: 6.25rem;
  background-color: skyblue;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
}

.l-header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 30rem;
  width: 100%;
  height: inherit;
  padding-inline: 15px;
  margin-inline: auto;
}

.l-header__logo {
  height: inherit;
}

.l-header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.l-header__logo-link img {
  width: 9.375rem;
}

.l-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background-color: rgba(84, 84, 84, 0.9);
  color: #0a0a0a;
  padding-inline: 3.125rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.l-header__item {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__item-link {
  padding-block: 1.5rem;
}

.l-header__menu-btn {
  width: 5.625rem;
  height: inherit;
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  text-align: center;
}

.l-header__menu-btn-bar {
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  margin-inline: auto;
  background-color: #0a0a0a;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-header__menu-btn-bar:nth-of-type(2) {
  margin-block: 0.6875rem;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.l-header.is-open .l-header__items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.l-header.is-open .l-header__menu-btn-bar:nth-of-type(1) {
  -webkit-transform: rotate(-215deg);
          transform: rotate(-215deg);
  background-color: #0a0a0a;
}

.l-header.is-open .l-header__menu-btn-bar:nth-of-type(2) {
  -webkit-transform: translateX(-100%) scaleX(0);
          transform: translateX(-100%) scaleX(0);
  background-color: #0a0a0a;
  margin-block: -0.125rem;
}

.l-header.is-open .l-header__menu-btn-bar:nth-of-type(3) {
  -webkit-transform: rotate(215deg);
          transform: rotate(215deg);
  background-color: #0a0a0a;
}

.l-header.is-open .l-header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-footer {
  text-align: center;
  position: relative;
}

.l-footer__inner {
  padding-block: 2.5rem 5rem;
  padding-inline: 15px;
}

.l-footer__links {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: 1fr;
  position: relative;
  gap: 1.5rem;
  font-weight: 500;
}

.l-footer__links::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
  background-image: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  left: 0;
  top: -2.5rem;
}

.l-footer__link {
  color: #29A2E5;
  text-align: center;
}

.l-footer__link-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  height: 2.25rem;
  width: 1px;
  background-color: #8DC9E2;
}

.l-footer__copy {
  margin-top: 3.5rem;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8DC9E2;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0em;
}

.c-inner {
  max-width: 30rem;
  width: 100%;
  height: auto;
  padding-top: 5rem;
  padding-inline: 15px;
  margin-inline: auto;
}

.c-section-title {
  color: #0B608E;
  font-size: 1.25rem;
  font-weight: 400;
}

.c-section-title__en {
  display: block;
  font-family: "Dream-Avenue";
  font-size: 1.25rem;
  font-weight: 400;
  color: #0B608E;
  text-align: left;
  line-height: 1;
  letter-spacing: 0em;
}

.c-section-title__ja {
  margin-top: 1.5rem;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #29A2E5;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
}

.c-section-title__ja.c-section-title__ja--small {
  font-size: 1.25rem;
}

.c-following {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}

.c-following {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1/1;
  position: fixed;
  z-index: 1000;
  border-radius: 50%;
  right: 0.9375rem;
  bottom: 0.9375rem;
}

.c-following__text {
  display: none;
}

.c-following__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  height: auto;
  aspect-ratio: 1/1;
  -webkit-filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.25));
  will-change: filter;
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1/1;
}

.c-following__bg {
  display: none;
}

@-webkit-keyframes rotateInfinite {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateInfinite {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.p-fv {
  position: relative;
}

.p-fv .c-foundation-bg {
  position: absolute;
  z-index: -10;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
}

.p-fv .c-foundation-bg--blue {
  width: 15.4375rem;
  border-radius: 50%;
  right: -6.25rem;
  top: 0;
  background: linear-gradient(207deg, rgb(178, 214, 229) 0%, rgba(178, 214, 229, 0) 100%);
  -webkit-filter: blur(1.5625rem);
          filter: blur(1.5625rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-fv .c-foundation-bg--green {
  width: 21.5625rem;
  border-radius: 50%;
  bottom: 0;
  left: -9.375rem;
  background: linear-gradient(150deg, #b2eef0 0%, rgba(208, 239, 240, 0) 100%);
  -webkit-filter: blur(1.5625rem);
          filter: blur(1.5625rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-wish {
  position: relative;
}

.p-wish .c-foundation-bg {
  position: absolute;
  z-index: -10;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
}

.p-wish .c-foundation-bg--blue {
  width: 15.4375rem;
  border-radius: 50%;
  right: 0;
  top: 9.375rem;
  opacity: 0.78;
  background: linear-gradient(207deg, rgb(178, 214, 229) 0%, rgba(178, 214, 229, 0) 100%);
  -webkit-filter: blur(2.5rem);
          filter: blur(2.5rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-wish .c-foundation-bg--green {
  width: 21.5625rem;
  border-radius: 50%;
  bottom: -6.25rem;
  left: -6.25rem;
  opacity: 0.78;
  background: linear-gradient(150deg, #b2eef0 0%, rgba(208, 239, 240, 0) 100%);
  -webkit-filter: blur(3.125rem);
          filter: blur(3.125rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-faq {
  position: relative;
}

.p-faq .c-foundation-bg {
  position: absolute;
  z-index: -10;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
}

.p-faq .c-foundation-bg--blue {
  width: 15.4375rem;
  border-radius: 50%;
  opacity: 0.78;
  right: 0;
  top: 6.25rem;
  background: linear-gradient(207deg, rgb(178, 214, 229) 0%, rgba(178, 214, 229, 0) 100%);
  -webkit-filter: blur(2.5rem);
          filter: blur(2.5rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-faq .c-foundation-bg--green {
  width: 21.5625rem;
  border-radius: 50%;
  opacity: 0.78;
  bottom: 0;
  left: 0;
  background: linear-gradient(150deg, #b2eef0 0%, rgba(208, 239, 240, 0) 100%);
  -webkit-filter: blur(3.125rem);
          filter: blur(3.125rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-fv__catch-bg {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.p-fv__catch-text svg,
.p-fv__catch-tip,
.p-fv__texts,
.p-fv__img {
  opacity: 0;
}

.p-fv__img {
  -webkit-filter: blur(1.25rem);
          filter: blur(1.25rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-fv {
  padding-top: 2.5rem;
  height: 31.25rem;
}

.p-fv__inner {
  width: 100%;
  height: inherit;
  max-width: 30rem;
  max-height: 42.375rem;
  padding-inline: 15px;
  margin-inline: auto;
  position: relative;
}

.p-fv__img {
  height: inherit;
  max-height: inherit;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

.p-fv__img picture {
  display: block;
  height: inherit;
  max-height: inherit;
  aspect-ratio: inherit;
}

.p-fv__img img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-fv__catch {
  position: absolute;
  top: 1.5rem;
  right: 1.8125rem;
  width: 18.75rem;
  height: 10.3125rem;
}

.p-fv__catch-wrapper {
  width: inherit;
  height: inherit;
}

.p-fv__catch-text {
  width: inherit;
  height: inherit;
  position: relative;
  z-index: 0;
}

.p-fv__catch-text svg {
  width: inherit;
  height: inherit;
}

.p-fv__catch-bg {
  position: absolute;
  z-index: -2;
  border-radius: 0.3125rem;
  right: -0.375rem;
}

.p-fv__catch-bg--yourlife {
  background: linear-gradient(219deg, #b2c6e5 0%, #8dc9e2 100%);
  top: 6.0606060606%;
  height: 36.3636363636%;
  width: 92.6829268293%;
}

.p-fv__catch-bg--irodori {
  background: linear-gradient(38deg, #b3c7e6 0%, #8dc9e3 100%);
  bottom: 9.696969697%;
  height: 33.9393939394%;
  width: 54.5731707317%;
}

.p-fv__catch-tips {
  position: absolute;
  z-index: -1;
  width: 4.875rem;
  height: 4.6875rem;
  right: 26.2195121951%;
  bottom: 0;
}

.p-fv__catch-tip {
  display: block;
  position: absolute;
  z-index: 0;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 2.375rem;
  -webkit-filter: blur(0.9375rem);
          filter: blur(0.9375rem);
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-fv__catch-tip--blue {
  top: 0;
  left: 0;
  background-color: #29a2e5;
}

.p-fv__catch-tip--red {
  top: 8%;
  right: 8%;
  background-color: #ff93a2;
}

.p-fv__catch-tip--green {
  bottom: 12%;
  left: 2.6666666667%;
  background-color: #aaffbd;
}

.p-fv__catch-tip--yellow {
  bottom: 0;
  right: 0;
  background-color: #fff77b;
}

.p-fv__texts {
  max-width: 23.5625rem;
  margin-inline: auto;
  padding-inline: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
}

.p-fv__text {
  color: #fff;
  font-size: 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 27.0625rem;
}

.p-fv__icon {
  width: 2.875rem;
}

.p-fv__icon img {
  aspect-ratio: 1/1;
}

.p-problem {
  overflow: hidden;
}

.p-problem__inner {
  padding-top: 80px;
  padding-bottom: 8.75rem;
}

.p-problem__container {
  margin-top: 2.5rem;
}

.p-problem__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  counter-reset: problemNum 0;
  width: 100%;
}

.p-problem__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  counter-increment: problemNum 1;
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.p-problem__item::before {
  content: counter(problemNum, decimal-leading-zero);
  display: inline-block;
  position: absolute;
  left: 0.9375rem;
  top: 0.625rem;
  font-size: 2.8125rem;
  font-family: "Dream-Avenue";
  font-weight: 400;
  color: #0B608E;
}

.p-problem__item + .p-problem__item {
  margin-top: 6.5rem;
}

.p-problem__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  z-index: -10;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-filter: blur(6.25rem);
          filter: blur(6.25rem);
  will-change: filter;
}

.p-problem__bg.p-problem__bg--blue {
  background: rgba(41, 162, 229, 0.64);
}

.p-problem__bg.p-problem__bg--purple {
  background: rgba(125, 167, 234, 0.64);
}

.p-problem__bg-line {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: -9;
  width: 50%;
  height: 100%;
  border: 1px solid #fff;
}

.p-problem__bg-line--right {
  border-radius: 0px 15rem 15rem 0px;
  border-left: 0;
  right: 0;
}

.p-problem__bg-line--left {
  border-radius: 15rem 0px 0px 15rem;
  border-right: 0;
  left: 0;
}

.p-problem__text {
  text-align: center;
  color: #fff;
  font-size: 1.4375rem;
}

.p-problem__icon {
  position: absolute;
  right: 0;
  bottom: -0.75rem;
}

.p-problem__item:nth-of-type(1) .p-problem__icon {
  width: 15.125rem;
  height: 6.9375rem;
}

.p-problem__item:nth-of-type(2) .p-problem__icon {
  width: 5.875rem;
  height: 9rem;
}

.p-problem__item:nth-of-type(3) .p-problem__icon {
  width: 9.8125rem;
  height: 7.25rem;
}

.p-problem__item:nth-of-type(4) .p-problem__icon {
  width: 17.625rem;
  height: 3rem;
}

.p-problem__item:nth-of-type(5) .p-problem__icon {
  width: 4.6875rem;
  height: 10rem;
}

.p-problem__item:nth-of-type(6) .p-problem__icon {
  width: 8.5rem;
  height: 7.6875rem;
}

.p-wish__inner {
  margin-top: -2.5rem;
  padding-top: 0;
}

.p-wish__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-wish__text {
  margin-top: 2.5rem;
  font-weight: 500;
}

.p-wish__card {
  margin-top: 2.5rem;
}

.p-wish__card01 {
  width: 100%;
  aspect-ratio: 345/180;
}

.p-wish__card02 {
  width: 100%;
  aspect-ratio: 345/182;
}

.p-wish__card03 {
  width: 100%;
  aspect-ratio: 345/192;
}

.p-wish__card04 {
  width: 100%;
  aspect-ratio: 345/177;
  height: auto;
}

.p-cta {
  margin-top: 5rem;
}

.p-cta__inner {
  max-width: 30rem;
  width: 100%;
  height: auto;
  padding-inline: 15px;
  margin-inline: auto;
}

.p-cta__container {
  background-image: url(../img/00_common/cta-bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.5rem 0 2.1875rem;
  border-radius: 0.625rem;
}

.p-cta__head {
  width: 97.1014492754%;
  margin-inline: auto;
}

.p-cta__title {
  width: 100%;
  max-width: 28.125rem;
  margin-inline: auto;
}

.p-cta__body {
  background-color: rgba(41, 162, 229, 0.5);
  border-radius: 0.3125rem;
  max-width: 28.125rem;
  width: 90.7246376812%;
  margin-top: 1.5rem;
  margin-inline: auto;
  padding: 1rem 0.375rem 1.875rem;
}

.p-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}

.p-cta__icon {
  width: 1.75rem;
}

.p-cta__icon img {
  aspect-ratio: 1/1;
}

.p-cta__text {
  font-size: 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  line-height: 1.5;
}

.p-cta__btn {
  display: block;
  width: 16rem;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 256/56;
  margin-top: 1.5rem;
}

.p-curriculum__container {
  margin-top: 5rem;
}

.p-curriculum__container--mobile {
  display: block;
}

.p-curriculum__container--mobile .p-curriculum__item + .p-curriculum__item {
  margin-top: 5rem;
}

.p-curriculum__container--mobile .p-curriculum__vis {
  max-width: 17.5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.p-curriculum__container--mobile .p-curriculum__img img {
  border-radius: 0.625rem;
  aspect-ratio: 280/186;
}

.p-curriculum__container--mobile .p-curriculum__texts {
  width: 100%;
}

.p-curriculum__container--mobile .p-curriculum__head {
  color: #0B608E;
  margin-top: 1rem;
  padding-top: 1rem;
  position: relative;
  font-size: 1.5rem;
}

.p-curriculum__container--mobile .p-curriculum__head::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
  background-image: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  left: 0;
  top: 0;
}

.p-curriculum__container--mobile .p-curriculum__body {
  margin-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  font-weight: 500;
}

.p-curriculum__container--mobile .p-curriculum__body::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
  background-image: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  left: 0;
  bottom: 0;
}

.p-curriculum__container--desktop {
  display: none;
}

.p-curriculum__container--desktop .p-curriculum__vis-item:first-of-type {
  z-index: 2;
}

.p-curriculum__container--desktop .p-curriculum__content-items::-webkit-scrollbar {
  display: none;
}

.p-curriculum__container--desktop .p-curriculum__content-item {
  position: relative;
}

.p-about__container {
  margin-top: 5.625rem;
}

.p-about__item {
  position: relative;
  z-index: 0;
  border-radius: 0.625rem;
  padding-inline: 1rem;
}

.p-about__item + .p-about__item {
  margin-top: 5.625rem;
}

.p-about__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 1.25rem;
  border: 1px solid #b2eef0;
  z-index: -1;
}

.p-about__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: linear-gradient(225deg, #90cae4 0%, #f7cfcf 26.56%, #edeaf4 48.44%);
  border-radius: 1.25rem;
  z-index: -2;
  -webkit-transform: translate(0.5rem, 0.5rem) translateZ(0);
          transform: translate(0.5rem, 0.5rem) translateZ(0);
  -webkit-filter: blur(0.25rem);
          filter: blur(0.25rem);
  will-change: filter;
}

.p-about__tip {
  position: absolute;
}

.p-about__tip--chii {
  top: -3.125rem;
  left: 0;
  width: 5.375rem;
  aspect-ratio: 1/1;
}

.p-about__tip--shiori {
  top: -3.125rem;
  left: 0;
  width: 5.375rem;
}

.p-about__body {
  width: 100%;
  max-width: 42.625rem;
  margin-inline: auto;
  padding-block: 2.5rem;
}

.p-about__greeting {
  font-size: 1.25rem;
}

.p-about__greeting--shiori {
  font-size: 1rem;
}

.p-about__text {
  margin-top: 0.5rem;
  font-weight: 500;
}

.p-about__link-items {
  margin-top: 1.5rem;
}

.p-about__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-about__link-item + .p-about__link-item {
  margin-top: 1rem;
}

.p-about__link-arrow {
  width: 2rem;
}

.p-about__link {
  margin-left: 0.625rem;
}

.p-about__link-twitter {
  width: 1.75rem;
  height: 1.4375rem;
}

.p-about__link-instagram {
  width: 1.75rem;
  height: 1.75rem;
}

.p-voice__container {
  margin-top: 2.5rem;
}

.p-voice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2.5rem;
}

.p-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #0B608E;
  width: 100%;
}

.p-voice__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  z-index: -10;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-filter: blur(5rem);
          filter: blur(5rem);
  will-change: filter;
}

.p-voice__bg.p-voice__bg--blue {
  background: rgba(41, 162, 229, 0.5);
}

.p-voice__bg.p-voice__bg--purple {
  background: rgba(125, 167, 234, 0.5);
}

.p-voice__text {
  position: relative;
  font-weight: 500;
}

.p-voice__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.p-voice__icon {
  width: 3.875rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.p-voice__label {
  font-size: 0.875rem;
  display: block;
}

.p-flow__container {
  margin-top: 2.5rem;
}

.p-flow__items {
  position: relative;
}

.p-flow__woman img {
  width: 15.125rem;
  height: auto;
  aspect-ratio: 242/340;
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
}

.p-flow__item + .p-flow__item {
  margin-top: 2.5rem;
}

.p-flow__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Dream-Avenue";
  font-size: 1.5rem;
  font-weight: 400;
  color: #0B608E;
  line-height: 1;
  width: 2.875rem;
  height: 2.875rem;
  aspect-ratio: 1/1;
  will-change: filter;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  position: relative;
}

:root {
  --flow-num01-bg: #f6f6f6;
  --flow-num02-bg: #d6f3ff;
  --flow-num03-bg: #a8e5ff;
  --flow-num04-bg: #acdcf0;
  --flow-num05-bg: #8dc9e2;
}

.p-flow__item:nth-of-type(1) .p-flow__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--flow-num01-bg);
  -webkit-filter: blur(0.4375rem);
          filter: blur(0.4375rem);
}

.p-flow__item:nth-of-type(2) .p-flow__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--flow-num02-bg);
  -webkit-filter: blur(0.4375rem);
          filter: blur(0.4375rem);
}

.p-flow__item:nth-of-type(3) .p-flow__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--flow-num03-bg);
  -webkit-filter: blur(0.4375rem);
          filter: blur(0.4375rem);
}

.p-flow__item:nth-of-type(4) .p-flow__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--flow-num04-bg);
  -webkit-filter: blur(0.4375rem);
          filter: blur(0.4375rem);
}

.p-flow__item:nth-of-type(5) .p-flow__num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--flow-num05-bg);
  -webkit-filter: blur(0.4375rem);
          filter: blur(0.4375rem);
}

.p-flow__card {
  width: 18.0625rem;
  height: auto;
}

.p-faq__inner {
  padding-bottom: 5rem;
}

.p-faq__container {
  margin-top: 2.5rem;
}

.p-faq__accordion + .p-faq__accordion {
  margin-top: 2.5rem;
}

.p-faq__question {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 5.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  margin-inline: auto;
}

.p-faq__question-bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.p-faq__question-bg img {
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
}

.p-faq__question-tip {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: -1;
  width: 4rem;
  height: 3.75rem;
}

.p-faq__question-tip img {
  aspect-ratio: 91/84;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-faq__question-head,
.p-faq__answer-text {
  max-width: 22.5rem;
  width: 22.5rem;
  margin-inline: auto;
  margin-block: 1rem 2.75rem;
}

.p-faq__answer-text {
  font-weight: 500;
}

.p-faq__answer {
  margin-top: 2.5rem;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  margin-inline: auto;
}

.p-faq__answer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
  background-image: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  border-radius: 0.75rem;
  z-index: -3;
  -webkit-transform: translate(4px, 4px) translateZ(0);
          transform: translate(4px, 4px) translateZ(0);
  -webkit-filter: blur(0.25rem);
          filter: blur(0.25rem);
  will-change: filter;
}

.p-faq__answer-tip {
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  width: 3.25rem;
  height: 3.25rem;
}

.p-faq__answer-tip img {
  aspect-ratio: 87/84;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-faq__question-marker,
.p-faq__answer-marker {
  position: absolute;
  z-index: -1;
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}

.p-faq__question,
.p-faq__answer {
  cursor: pointer;
}

.u-hidden-mobile {
  display: none !important;
}

.u-block-hidden-mobile {
  display: none !important;
}

.u-grid-hidden-mobile {
  display: none !important;
}

.u-flex-hidden-mobile {
  display: none !important;
}

.u-hidden-pc {
  display: inline-block !important;
}

.u-block-hidden-pc {
  display: block !important;
}

.u-grid-hidden-pc {
  display: grid !important;
}

.u-flex-hidden-pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-hidden {
  visibility: hidden;
  display: none;
}

.u-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-fade-in-nonactive {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.u-fade-in-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade-in {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  .l-header__inner {
    max-width: 1240px;
    padding-inline: 80px;
  }

  .l-header__nav {
    width: auto;
    height: inherit;
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding-inline: 0;
    background-color: transparent;
  }

  .l-footer__inner {
    padding-block: 2.5rem 6.25rem;
    padding-inline: 80px;
  }

  .l-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .l-footer__link--l {
    text-align: right;
  }

  .l-footer__link--r {
    text-align: left;
  }

  .l-footer__copy {
    margin-top: 3.75rem;
  }

  .c-inner {
    max-width: 1240px;
    padding-top: 8.75rem;
    padding-inline: 80px;
  }

  .c-section-title__ja {
    font-size: 2.25rem;
  }

  .c-section-title__ja.c-section-title__ja--small {
    font-size: 2.25rem;
  }

  .c-following {
    width: 11.0625rem;
    bottom: 2.5rem;
    right: 2.5rem;
  }

  .c-following__link {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .c-following__text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 11.0625rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    -webkit-animation-name: rotateInfinite;
            animation-name: rotateInfinite;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-fill-mode: none;
            animation-fill-mode: none;
  }

  .c-following__icon {
    width: 4rem;
  }

  .c-following__bg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    width: 8.25rem;
    height: auto;
    aspect-ratio: 1/1;
    z-index: -1;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  }

  .p-fv .c-foundation-bg--blue {
    width: 48.6111111111%;
    -webkit-filter: blur(3.125rem);
            filter: blur(3.125rem);
  }

  .p-fv .c-foundation-bg--green {
    bottom: -25rem;
    left: -16.875rem;
    width: 61.9444444444%;
    -webkit-filter: blur(3.125rem);
            filter: blur(3.125rem);
  }

  .p-wish .c-foundation-bg--blue {
    width: 48.6111111111%;
    -webkit-filter: blur(6.25rem);
            filter: blur(6.25rem);
  }

  .p-wish .c-foundation-bg--green {
    width: 61.9444444444%;
    -webkit-filter: blur(9.375rem);
            filter: blur(9.375rem);
  }

  .p-faq .c-foundation-bg--blue {
    width: 48.6111111111%;
    -webkit-filter: blur(6.25rem);
            filter: blur(6.25rem);
  }

  .p-faq .c-foundation-bg--green {
    width: 61.9444444444%;
    -webkit-filter: blur(9.375rem);
            filter: blur(9.375rem);
  }

  .p-fv {
    padding-top: 5.625rem;
    width: min(86.1111111111vw, 1240px);
    margin-inline: auto;
    height: auto;
  }

  .p-fv__inner {
    max-width: 1290px;
    padding-inline: 25px;
    width: min(86.1111111111vw, 1240px);
    aspect-ratio: 1290/678;
  }

  .p-fv__img {
    border-radius: 1.25rem;
    aspect-ratio: 1240/678;
  }

  .p-fv__img img {
    border-radius: 1.25rem;
  }

  .p-fv__catch {
    top: 1.875rem;
    right: min(5.5555555556vw, 80px);
    width: min(40.9722222222vw, 590px);
    height: min(21.1111111111vw, 304px);
  }

  .p-fv__catch-bg {
    right: 0;
    border-radius: 0.625rem;
  }

  .p-fv__catch-bg--yourlife {
    top: min(1.5277777778vw, 22px);
    height: min(7.9861111111vw, 115px);
    width: min(38.8888888889vw, 560px);
  }

  .p-fv__catch-bg--irodori {
    bottom: min(0.6944444444vw, 10px);
    height: min(7.9861111111vw, 115px);
    width: min(22.5vw, 324px);
  }

  .p-fv__catch-tips {
    width: min(10.6944444444vw, 154px);
    height: min(10.2777777778vw, 148px);
    right: min(11.3888888889vw, 164px);
    right: min(11.3888888889vw, 164px);
  }

  .p-fv__catch-tip {
    width: min(5.1388888889vw, 74px);
    -webkit-filter: blur(1.875rem);
            filter: blur(1.875rem);
  }

  .p-fv__catch-tip--red {
    top: 8.1081081081%;
    right: 8.1081081081%;
  }

  .p-fv__catch-tip--green {
    bottom: 12.1621621622%;
    left: 2.027027027%;
  }

  .p-fv__texts {
    max-width: 30.1875rem;
    left: min(5.5555555556vw, 80px);
    right: unset;
    bottom: min(2.7777777778vw, 40px);
    padding-inline: 0;
  }

  .p-fv__text {
    font-size: 1rem;
    margin-top: 0.6875rem;
    margin-left: 0.25rem;
  }

  .p-problem {
    position: relative;
    z-index: 0;
  }

  .p-problem__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-problem__item {
    width: 22.75rem;
  }

  .p-problem__item::before {
    font-size: 4rem;
  }

  .p-problem__item + .p-problem__item {
    margin-top: 0;
    margin-left: 5rem;
  }

  .p-problem__item:nth-of-type(even) {
    margin-top: 2.5rem;
  }

  .p-problem__bg-line--right {
    border-radius: 0px 11.375rem 11.375rem 0px;
  }

  .p-problem__bg-line--left {
    border-radius: 11.375rem 0px 0px 11.375rem;
  }

  .p-problem__text {
    font-size: 1.5rem;
  }

  .p-problem__icon {
    bottom: 0;
  }

  .p-problem__item:nth-of-type(1) .p-problem__icon {
    width: 15.5rem;
    height: 7.125rem;
  }

  .p-problem__item:nth-of-type(2) .p-problem__icon {
    width: 7.3125rem;
    height: 11.1875rem;
    right: -2.5rem;
  }

  .p-problem__item:nth-of-type(3) .p-problem__icon {
    width: 11rem;
    height: 8.125rem;
  }

  .p-problem__item:nth-of-type(4) .p-problem__icon {
    width: 21.6875rem;
    height: 3.75rem;
  }

  .p-problem__item:nth-of-type(5) .p-problem__icon {
    width: 5.3125rem;
    height: 11.375rem;
  }

  .p-problem__item:nth-of-type(6) .p-problem__icon {
    width: 11.125rem;
    height: 10.125rem;
  }

  .p-wish__inner {
    padding-top: 0;
  }

  .p-wish__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }

  .p-wish__head {
    max-width: 29.6875rem;
  }

  .p-wish__text {
    margin-top: 1.5rem;
  }

  .p-wish__body {
    max-width: min(32.9861111111vw, 475px);
  }

  .p-wish__img {
    aspect-ratio: 475/384;
  }

  .p-wish__cards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .p-wish__card {
    margin-top: 0;
  }

  .p-wish__card01 {
    width: min(38.1944444444vw, 550px);
    margin-top: 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
    aspect-ratio: 551/380;
  }

  .p-wish__card02 {
    width: min(30.9027777778vw, 445px);
    margin-top: min(7.6388888889vw, 110px);
    margin-left: -2.8125rem;
    margin-right: auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 3;
    aspect-ratio: 445/307;
  }

  .p-wish__card03 {
    width: min(30.9027777778vw, 445px);
    margin-top: -5rem;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 4;
    aspect-ratio: 445/307;
  }

  .p-wish__card04 {
    width: min(38.1944444444vw, 550px);
    margin-top: -2.8125rem;
    margin-left: -1.375rem;
    margin-right: auto;
    position: relative;
    z-index: 2;
    aspect-ratio: 551/380;
  }

  .p-cta {
    margin-top: 6.25rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-block: 7.5rem;
  }

  .p-cta__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    height: 40rem;
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
    -o-object-fit: fill;
       object-fit: fill;
  }

  .p-cta__inner {
    max-width: 1240px;
    padding-inline: 80px;
  }

  .p-cta__container {
    background-image: url(../img/00_common/cta-bg.jpg);
    padding: 3.125rem 0.5rem 1.875rem;
    border-radius: 1.25rem;
    margin-inline: auto;
  }

  .p-cta__head {
    width: 100%;
  }

  .p-cta__title {
    max-width: 100%;
  }

  .p-cta__body {
    border-radius: 0.625rem;
    max-width: 48.1875rem;
    min-height: 9.625rem;
    width: 100%;
    margin-top: 0.3125rem;
    padding: 1rem 3rem 1.25rem;
  }

  .p-cta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .p-cta__icon {
    width: 2.875rem;
  }

  .p-cta__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-cta__text--fz20 {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
  }

  .p-cta__btn {
    margin-top: 0.75rem;
  }

  .p-curriculum {
    position: relative;
    z-index: 0;
    margin-top: -5rem;
  }

  .p-curriculum__inner {
    margin-top: 60px;
  }

  .p-curriculum__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }

  .p-curriculum__container--mobile {
    display: none;
  }

  .p-curriculum__container--mobile .p-curriculum__img img {
    aspect-ratio: 460/306;
  }

  .p-curriculum__container--mobile .p-curriculum__texts {
    width: 50%;
  }

  .p-curriculum__container--desktop {
    display: block;
  }

  .p-curriculum__container--desktop .p-curriculum__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }

  .p-curriculum__container--desktop .p-curriculum__vis-items {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 28.75rem;
    margin-right: auto;
    position: relative;
  }

  .p-curriculum__container--desktop .p-curriculum__vis-item {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }

  .p-curriculum__container--desktop .p-curriculum__vis-item.is-active {
    opacity: 1;
  }

  .p-curriculum__container--desktop .p-curriculum__img {
    margin-top: 2.9375rem;
  }

  .p-curriculum__container--desktop .p-curriculum__img img {
    border-radius: 1.25rem;
    aspect-ratio: 460/306;
  }

  .p-curriculum__container--desktop .p-curriculum__content-items {
    width: 50%;
    height: 24.75rem;
    overflow: hidden;
    cursor: default;
  }

  .p-curriculum__container--desktop .p-curriculum__content-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    left: 0;
    top: 0;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }

  .p-curriculum__container--desktop .p-curriculum__content-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dcdcdc;
    left: 0;
    bottom: 0;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }

  .p-curriculum__container--desktop .p-curriculum__head {
    color: #dcdcdc;
    padding-top: 1rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 1.5rem;
  }

  .p-curriculum__container--desktop .p-curriculum__body {
    margin-top: 1rem;
    padding-bottom: 1rem;
    color: #dcdcdc;
    font-weight: 500;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .p-curriculum__container--desktop .p-curriculum__content-item.is-active .p-curriculum__head {
    color: #0B608E;
  }

  .p-curriculum__container--desktop .p-curriculum__content-item.is-active .p-curriculum__body {
    color: #29A2E5;
  }

  .p-curriculum__container--desktop .p-curriculum__content-item.is-active::before {
    background: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
    background: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  }

  .p-curriculum__container--desktop .p-curriculum__content-item.is-active::after {
    background: -webkit-gradient(linear, left top, right top, from(rgb(141, 201, 226)), color-stop(51%, rgb(234, 243, 255)), to(rgb(244, 221, 245)));
    background: linear-gradient(90deg, rgb(141, 201, 226), rgb(234, 243, 255) 51%, rgb(244, 221, 245));
  }

  .p-about__container {
    margin-top: 4rem;
  }

  .p-about__items {
    padding-inline: 1.5rem 2rem;
  }

  .p-about__item {
    border-radius: 1.25rem;
    padding-inline: min(11.875vw, 171px);
  }

  .p-about__item + .p-about__item {
    margin-top: 3.75rem;
  }

  .p-about__tip--chii {
    top: -1.5rem;
    left: -1.5rem;
    width: min(11.1111111111vw, 160px);
  }

  .p-about__tip--shiori {
    top: -1.1875rem;
    left: -1.5rem;
    width: min(8.3333333333vw, 120px);
  }

  .p-about__body {
    padding-block: 2.5rem 2.375rem;
  }

  .p-about__greeting {
    font-size: 1.5rem;
  }

  .p-about__greeting--shiori {
    font-size: 1.5rem;
  }

  .p-about__link-items {
    margin-top: 1rem;
  }

  .p-about__link-item + .p-about__link-item {
    margin-top: 0.3125rem;
  }

  .p-about__link-arrow {
    margin-left: 0.3125rem;
  }

  .p-about__link {
    margin-left: 0.5rem;
  }

  .p-voice__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem min(4.1666666667vw, 60px);
  }

  .p-voice__item {
    min-height: 31.875rem;
    width: 47.2222222222%;
    padding-inline: 1.875rem;
    padding-block: 2rem 2.8125rem;
  }

  .p-voice__item:nth-of-type(even) {
    margin-top: 2.5rem;
  }

  .p-voice__bg {
    width: min(35.4166666667vw, 510px);
    -webkit-filter: blur(7.875rem);
            filter: blur(7.875rem);
  }

  .p-flow__inner {
    padding-top: 6.25rem;
  }

  .p-flow__container {
    padding-inline: 7.5rem;
  }

  .p-flow__circle {
    position: absolute;
    top: 0.25rem;
    bottom: 0.75rem;
    left: 0;
    margin: auto;
    z-index: -1;
    -webkit-transform: translateX(-68%);
            transform: translateX(-68%);
  }

  .p-flow__circle img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
    height: 100%;
  }

  .p-flow__woman {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }

  .p-flow__item {
    gap: 2.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-flow__item + .p-flow__item {
    margin-top: 2rem;
  }

  .p-flow__item:nth-of-type(2),
  .p-flow__item:nth-of-type(4) {
    -webkit-transform: translateX(7.9375rem);
            transform: translateX(7.9375rem);
  }

  .p-flow__item:nth-of-type(3) {
    -webkit-transform: translateX(10.9375rem);
            transform: translateX(10.9375rem);
  }

  .p-flow__num {
    font-size: 2.5rem;
    width: min(5.6944444444vw, 82px);
    height: min(5.6944444444vw, 82px);
  }

  .p-flow__card {
    width: 40.25rem;
  }

  .p-faq__inner {
    padding-bottom: 10rem;
  }

  .p-faq__question {
    min-height: 6.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 704px;
  }

  .p-faq__question-tip {
    width: 5.6875rem;
    height: 5.25rem;
  }

  .p-faq__question-head,
  .p-faq__answer-text {
    max-width: 27.5625rem;
    width: 27.5625rem;
    margin-block: 2.3125rem;
  }

  .p-faq__answer {
    max-width: 704px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-faq__answer-tip {
    width: 4.9375rem;
    height: 4.75rem;
  }

  .p-faq__question-marker,
  .p-faq__answer-marker {
    right: 2.5rem;
    top: 1.8125rem;
    bottom: unset;
  }

  .u-hidden-mobile {
    display: inline-block !important;
  }

  .u-block-hidden-mobile {
    display: block !important;
  }

  .u-grid-hidden-mobile {
    display: grid !important;
  }

  .u-flex-hidden-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-hidden-pc {
    display: none !important;
  }

  .u-block-hidden-pc {
    display: none !important;
  }

  .u-grid-hidden-pc {
    display: none !important;
  }

  .u-flex-hidden-pc {
    display: none !important;
  }
}

@media screen and (hover: hover) and (min-width: 768px) {
  .c-following__link:hover {
    opacity: 1;
  }
}

@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 374px) {
  html {
    font-size: 4.2780748663vw;
  }
}

@media (hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
    cursor: pointer;
  }

  button:hover {
    text-decoration: none;
    opacity: 0.7;
  }

  .c-following:hover .c-following__bg {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
/*# sourceMappingURL=style.css.map */