/*
 * Base
 * -------------------------------------------------------------------
 */
/*	Reset
-------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

/*	Typography
-------------------------------*/
html {
  font-size: 62.5%;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/*	Layout
-------------------------------*/
article, aside, footer, header, nav, section, main {
  display: block;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

img {
  border-style: none;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

img, svg {
  width: 100%;
  height: auto;
}

blockquote, q {
  quotes: none;
}

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

button,
input,
optgroup,
select,
textarea {
  /* -webkit-appearance: none; 1 */
  /* appearance: none; */
  vertical-align: middle;
  color: inherit;
  font: inherit;
  /* background: transparent; */
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

label[for] {
  cursor: pointer;
}

/*	Attributes & States
-------------------------------*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "M PLUS 1p", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 2;
  letter-spacing: 0.08em;
  background-color: #ABA7FF;
  color: #624F8F;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}

.main {
  width: 100%;
  position: relative;
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.bg {
  width: 100vw;
  height: 100vh;
  background-image: url(../asset/img/bg.webp);
  background-size: cover;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 420px) {
  .bg {
    height: 0;
  }
}

.bg__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.bg__cloud {
  position: fixed;
}

.bg__cloud-01 {
  width: 459px;
  top: 0;
  right: 0;
  z-index: 1;
}

.bg__cloud-02 {
  width: 100vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.bg__cloud-03 {
  width: 100vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.bg__item {
  position: fixed;
}

.bg__item img {
  will-change: transform;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bg__moon {
  width: 320px;
  left: 6.25vw;
  bottom: 20vh;
  z-index: 2;
}

.bg__star-01 {
  width: 70.18px;
  left: 4.16667vw;
  bottom: 19vh;
  z-index: 4;
}

.bg__star-02 {
  width: 35.77px;
  left: 27vw;
  bottom: 16vh;
  z-index: 4;
}

.bg__star-03 {
  width: 27.69px;
  right: 25vw;
  bottom: 19vh;
  z-index: 4;
}

.bg__star-04 {
  width: 51.84px;
  right: 14vw;
  bottom: 21vh;
  z-index: 4;
}

.bg__star-05 {
  width: 22.6px;
  left: 17vw;
  bottom: 10vh;
  z-index: 4;
}

.bg__star-06 {
  width: 8.61px;
  left: 19.6vw;
  bottom: 12vh;
  z-index: 4;
}

.bg__star-07 {
  width: 19px;
  left: 23vw;
  bottom: 33vh;
  z-index: 4;
}

.bg__star-08 {
  width: 18px;
  right: 20vw;
  bottom: 10vh;
  z-index: 4;
}

.bg__star-09 {
  width: 14.68px;
  right: 5vw;
  bottom: 9vh;
  z-index: 4;
}

.banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.banner-head {
  top: 0;
}

.banner-foot {
  bottom: 0;
}

.banner__inner {
  width: 100vw;
  height: 56px;
  overflow: hidden;
  position: relative;
  background-color: #ABA7FF;
}

.banner-head .banner__inner {
  border-bottom: 4px solid #624F8F;
}

.banner-foot .banner__inner {
  border-top: 4px solid #624F8F;
}

.banner__cont {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 35.53px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-name: bannerAnime;
  animation-fill-mode: backwards;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes bannerAnime {
  0% {
    left: 0;
    transform: translateY(-50%);
  }
  100% {
    left: -100vw;
    transform: translateY(-50%);
  }
}
.banner p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Rubik Mono One", serif;
  color: #624F8F;
  white-space: nowrap;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 35.53px;
}
.banner p::before {
  content: "";
  display: block;
  width: 23.1px;
  height: 23.1px;
  background-image: url(../asset/img/banner-neko.svg);
  background-size: cover;
}

.btn-primary {
  width: 327px;
  height: 58px;
  margin: 20px auto;
  background-color: #FEFFE1;
  border-radius: 82px;
  border: 4px solid #624F8F;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-align: center;
  cursor: pointer;
}

.cta {
  display: block;
  width: 400px;
  height: 208px;
  border-radius: 22px;
  background-color: #D3EAFF;
  border: 4px solid #624F8F;
  position: fixed;
  top: 77px;
  left: 25px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta {
    display: none;
  }
}

.cta__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.cta__inner::before, .cta__inner::after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 14px;
  border-radius: 50%;
}
.cta__inner::before {
  border: 4px solid #624F8F;
  right: 39px;
}
.cta__inner::after {
  background-color: #624F8F;
  right: 14px;
}

.cta__cont {
  width: 333.88px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.menu {
  width: 318px;
  height: 585px;
  border-radius: 22px;
  border: 4px solid #624F8F;
  background-image: url(../asset/img/next_princess/menu-bg.webp);
  background-size: cover;
  position: fixed;
  top: 135px;
  right: 80px;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .menu {
    display: none;
  }
}

.menu__cont {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 40px;
}

.menu__cont h2 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32em;
  font-family: "Rubik Mono One", serif;
  text-align: center;
}

.menu__cont ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 23px;
}

.menu__cont ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 0;
}

.menu__cont ul li a .en {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.25em;
  font-family: "Rubik Mono One", serif;
  text-align: center;
}

.menu__cont ul li a .jp {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-align: center;
}


.content {
  max-width: 420px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B5C5FE;
  z-index: 2;
  border: 4px solid #624F8F;
  padding-top: 36px;
}

.form-group {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 800;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 5px;
}

.form-control {
  background: #fff;
  border: 2px solid;
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
  padding: 0 5px;
}

.fv {
  width: 100%;
  height: 720px;
  background-image: url(../asset/img/next_princess/fv-bg.webp);
  background-size: cover;
  position: relative;
}

.fv__cont {
  width: 381px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 420px) {
  .fv__cont {
    width: 90vw;
  }
}

.for__pertners__btn__outer {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}

.for__pertners__btn {
  width: 327px;
  height: 58px;
  background-color: #FEFFE1;
  border-radius: 10px;
  border: 4px solid #624F8F;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-align: center;
  cursor: pointer;
}

.fv__btn__outer {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.fv__btn__bubble {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.21em;
  text-align: center;
  white-space: nowrap;
  position: relative;
  text-shadow: 0px 4px 6.5px rgb(255, 255, 255);
}
.fv__btn__bubble::before, .fv__btn__bubble::after {
  content: "";
  display: block;
  width: 29.53px;
  height: 3px;
  border-radius: 3px;
  background-color: #624F8F;
  position: absolute;
  top: 50%;
}
.fv__btn__bubble::before {
  left: -32px;
  transform: translateY(-50%) rotate(61.7deg);
}
.fv__btn__bubble::after {
  right: -32px;
  transform: translateY(-50%) rotate(-61.7deg);
}

.fv__btn__bubble span {
  font-size: 2.4rem;
}

.fv__btn {
  width: 307px;
  height: 58px;
  background-color: #FEFFE1;
  border-radius: 82px;
  border: 4px solid #624F8F;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-align: center;
  cursor: pointer;
}

.concept {
  width: 100%;
  background: rgb(211, 234, 255);
  background: linear-gradient(180deg, rgb(211, 234, 255) 0%, rgba(211, 234, 255, 0) 100%);
  padding: 10px 11px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 420px) {
  .concept {
    padding: 40px 2.619vw 0;
  }
}

.concept__inner {
  padding: 16px 16px 34px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 34px;
  border-radius: 22px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 420px) {
  .concept__inner {
    padding: 16px 3.8vw 34px;
  }
}

.concept__head {
  width: 243.16px;
}

.concept__body__ttl {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  .concept__body__ttl {
    font-size: 4.7619vw;
    margin-bottom: 9.5238vw;
  }
}

.concept__body__ttl.txt-big {
  font-size: 1.5em; /* フォントサイズを大きくする */
  font-weight: bold; /* フォントを太くする */
}

.concept__body__cont p {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p {
    font-size: 3.8vw;
  }
}
.concept__body__cont p:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p:not(:last-child) {
    margin-bottom: 7.619vw;
  }
}

.concept__body__cont p span {
  font-size: 2rem;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p span {
    font-size: 4.7619vw;
  }
}

.concept__body__cont p.emoji-01::after,
.concept__body__cont p.emoji-02::after,
.concept__body__cont p.emoji-03::after {
  content: "";
  display: block;
  background-size: cover;
  position: absolute;
}

.concept__body__cont p.emoji-01::after {
  width: 23px;
  height: 23px;
  background-image: url(../asset/img/nent_princess/emoji-01.svg);
  bottom: 4.78px;
  right: -13px;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p.emoji-01::after {
    right: -3.09523vw;
  }
}

.concept__body__cont p.emoji-02::after {
  width: 20px;
  height: 20px;
  background-image: url(../asset/img/nent_princess/emoji-02.svg);
  bottom: 5.78px;
  right: 23px;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p.emoji-02::after {
    right: 5.47619vw;
  }
}

.concept__body__cont p.emoji-03::after {
  width: 32px;
  height: 30.8px;
  background-image: url(../asset/img/nent_princess/emoji-03.svg);
  bottom: 0.02px;
  right: 78px;
}
@media screen and (max-width: 420px) {
  .concept__body__cont p.emoji-03::after {
    right: 18.5714vw;
  }
}

.reco {
  padding: 30px 14px 95.93px;
  position: relative;
  z-index: 1;
}
.reco::before, .reco::after {
  content: "";
  display: block;
  width: 100%;
  background-size: cover;
  position: absolute;
  transform: translateX(-50%);
}
.reco::before {
  height: 1370px;
  background-image: url(../asset/img/next_princess/reco-bg-01.webp);
  top: -409px;
  left: 50%;
  z-index: 1;
}
.reco::after {
  height: 2098px;
  background-image: url(../asset/img/next_princess/reco-bg-02.webp);
  top: -115px;
  left: 50%;
  z-index: 2;
}

.reco__head  {
  position: relative;
  z-index: 3;
  width: 243.16px;
  margin: 0 auto 40px;
}

.reco__head h2{
  color: #624F8F;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}

.reco__cont {
  position: relative;
  z-index: 3;
}

.reco__cont h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}

.reco__cont__head {
  width: 100%;
  margin-bottom: 40px;
}

.reco__cont__body {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 40px;
  display: block;
}

.reco__cont__body table,
.reco__cont__body tr,
.reco__cont__body th,
.reco__cont__body td {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 1.2rem;
}

.reco__cont__body td {
  border: 1px solid #624F8F;
  background-color: #fff;
  padding: 1rem;
}

.reco__cont__body tr td:first-child {
  text-align: center;
  color: #fff;
  background-color: #624F8F;
}

.reco__cont__body-bg {
  font-size: 2rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 10px;
  display: block;
}

.reco__cont__body-sm {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: center;
  margin: 0 auto 10px;
  display: block;
}

.reco__cont__bubble {
  width: 100%;
}

.courses {
  padding: 0 11px;
  position: relative;
  z-index: 2;
}

.courses__inner {
  width: 100%;
  background-color: #DDFBFD;
  border-radius: 22px;
  padding: 32px 0 46px;
}

.courses__head {
  width: 243.16px;
  margin: 0 auto 32px;
}

.courses__head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.courses__txt {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 23.22px;
}

.courses__txt-bg {
  font-size: 2rem;
}

.courses__txt-sm {
  font-size: 1.4rem;
}

.courses__learn {
  width: 100%;
  padding: 0 26px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  row-gap: 8px;
}
@media screen and (max-width: 420px) {
  .courses__learn {
    padding: 65px 6vw 31.78px;
  }
}

.courses__learn__label {
  width: 280.17px;
  position: absolute;
  top: 0;
  left: -11px;
}

.courses__learn__item {
  width: 165px;
  height: 143px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .courses__learn__item {
    width: 39vw;
  }
}

.courses__learn__item__img {
  width: 72px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.courses__learn__item__ttl {
  width: 100%;
  height: 50px;
  background-color: #FFF6DE;
  border-radius: 0 0 16px 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
}

.courses__movie__img {
  width: 100%;
  margin-bottom: 126px;
}

.courses__movie__list {
  padding: 0 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 140px;
}

.courses__movie__item {
  width: 100%;
  position: relative;
}

.courses__movie__item__img {
  width: 100%;
}

.courses__movie__item__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
}

.courses__movie__item__img iframe {
  width: 100%;
  height: 100%;
}

.courses__movie__item__label {
  width: 268.89px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.ctaBanner {
  margin: 8.35px 0 6px;
  width: 100%;
  cursor: pointer;
}

.lecturers {
  padding: 0 11px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}

.lecturers__charm {
  width: 100%;
  border-radius: 22px;
  background-color: #FBEBE2;
  padding: 16px 0 34px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  z-index: 3;
}

.lecturers__charm__head {
  width: 280px;
  margin-bottom: 24px;
}

.lecturers__charm__head h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.lectures__charm__img {
  width: 358px;
  margin-bottom: 24px;
}

.lectures__charm__sns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 21px;
}

.lectures__charm__sns li a {
  width: 24px;
}

.lectures__charm__txt {
  padding: 0 12px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.lectures__charm__txt a {
  text-decoration: underline;
}

.lectures__person {
  width: 100%;
  padding: 16px 12px 24px;
  border-radius: 22px;
  background-color: #FBEBE2;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.lectures__person__icon {
  width: 109px;
  height: 106px;
  background-color: #fff;
  border-radius: 22px;
}

.lectures__person__cont {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  width: calc(100% - 125px);
}

.lectures__person__cont__head {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.lectures__person__cont__head h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.05em;
}

.lectures__person__cont__head p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.lectures__person__cont__sns {
  display: -webkit-flex;
  display: flex;
  gap: 21px;
  padding-bottom: 8px;
}

.lectures__person__cont__sns li a {
  width: 24px;
}

.lectures__person__body {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.lectures__person__body a {
  text-decoration: underline;
}

.lectures__person__body span {
  letter-spacing: 0.05em;
}

.lectures__ambasa {
  width: 100%;
  padding: 16px 12px;
  border-radius: 22px;
  background-color: #FBEBE2;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}

.lectures__ambasa__title {
  width: 312px;
  margin-bottom: 34px;
}

.lectures__ambasa__img {
  width: 100%;
  margin-bottom: 24px;
}

.lectures__person__body-ambasa {
  font-size: 1.5rem;
  line-height: 2;
}

.faq {
  padding: 0 11px 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 15.22px;
  position: relative;
  z-index: 3;
}

.faq__head {
  width: 388px;
}
@media screen and (max-width: 420px) {
  .faq__head {
    width: 92vw;
  }
}

.faq__head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
}

.faq__cont {
  width: 100%;
  background-color: #F0FFE2;
  border-radius: 22px;
  padding: 16px 12px;
}

.faq__cont h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 10px;
}

.faq__cont__head {
  width: 243.16px;
  margin: 0 auto 24px;
}

.faq__cont__head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.faq__cont__body {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}

.faq__cont__body__item {
  width: 100%;
}

.faq__cont__body__item__q {
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  background-color: #E9E5F2;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.faq__cont__body__item__q span {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  background-color: #624F8F;
  border-radius: 12px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
}

.faq__cont__body__item__a {
  display: none;
  padding: 12px;
  background-color: #624F8F;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 8px;
}

.content__item {
  border: 6px solid var(--divider);
  border-radius: 16px;
  background-color: var(--secondary);
  transition: 0.3s;
}
@media screen and (max-width: 1700px) {
  .content__item {
    border: 4px solid var(--divider);
  }

}
@media screen and (max-width: 768px) {
  .content__item {
    border: 3px solid var(--divider);
    width: 100%;
  }
}

.modal {
  padding: 0;
  border-radius: 16px;
  max-width: 420px;
}

.modal-box {
  background-color: var(--secondary);
  max-width: 420px;
  z-index: 1000;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .modal-box {
    max-width: none;
    width: 100%;
    max-height: none;
    height: 100%;
  }
}

.str-form-full {
  width: 100%;
}

.str-form-half {
  width: 49%;
}

.input-form {
  max-width: 420px;
  display: grid;
  display: -webkit-grid;
}

.portfolio-form {
  gap: 1rem;
}

.portfolio-form input {
  border: 2px solid var(--divider);
  border-radius: 8px;
  background-color: var(--button-text);
  padding-left: 4px;
}

.portfolio-form select {
  border: 2px solid var(--divider);
  border-radius: 8px;
  background-color: var(--button-text);
  width: 100%;
}

.portfolio-form select option {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* NOTE: Safariの日付デザイン崩れのためのプロパティ */
.portfolio-form input[type="date"] {
  -webkit-appearance: none;
  width: 100%;
  text-align: left;
}
.portfolio-form input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.portfolio-button {
  text-align: center;
  padding: 15px 5px 50px 5px;
}

.princess__get__btn {
  width: 100%;
  height: 50px;
  font-size: 12px;
  line-height: 1.5;
  background-color: var(--table-border);
  color: var(--button-text);
  border-radius: 12px;
  border: none;
}

.close__btn_on_top_right {
  width: 30px;
  height: 30px;
  top: 1.15rem;
  right: 1.25rem;
  position: absolute;
  cursor: pointer;
}

.close__btn_on_top_right span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--table-border);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.close__btn_on_top_right span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close__btn_on_top_right span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.next__princess__footer {
  padding: 16px 0 78px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.next__princess__footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1411px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(181, 197, 254);
  background: linear-gradient(180deg, rgb(181, 197, 254) 2%, rgb(198, 236, 244) 42%, rgb(246, 200, 217) 100%);
  z-index: 1;
}

.footer__link {
  margin-bottom: 34px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.footer__link a {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  border-radius: 32px;
}

.footer__logo {
  width: 275px;
  position: relative;
  z-index: 2;
}

.benefit__cont__q {
  background-color: #FFF6DE;
  font-size: 1.3rem;
  justify-content: space-between;
}

.benefit__cont__q__img {
  border-radius: 16px;
}

.benefit__cont__q span {
  background-color: transparent;
}

.benefit__cont__a {
  font-size: 1.3rem;
  font-weight: 800;
  color: inherit;
  background-color: #fff;
}

.toggle__icon {
  color: black !important;
  justify-content: flex-end;
}