@charset "UTF-8";
/* destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* ↓ パッケージ導入せず直書きも可能、必要に応じてnpm管理も可 */
@import url("https://unpkg.com/destyle.css/destyle.css");
/* ----------------------------------------
Foundation - base -
プロジェクトにおける基本的なスタイルを定義します。
ページの下地としての全体の背景や、基本的なタイポグラフィなどが該当します。
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&display=swap");
* {
  box-sizing: border-box;
  font-size: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #520826;
  background: #fff;
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 375px) / (1280 - 375), 18px);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  word-wrap: break-word;
  font-feature-settings: "palt" 1;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 2;
  position: relative;
  overflow-x: hidden;
  font-size: 1.5vw;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 3.25vw;
  }
}
@media only screen and (min-width: 1401px) {
  body {
    font-size: 1.8rem;
  }
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  transform: rotate(0.05deg);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  transform: rotate(0.05deg);
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

iframe {
  vertical-align: bottom;
}

svg {
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

a {
  transition: 0.3s;
  text-decoration: none;
  transform: rotate(0.05deg);
}

p,
ul,
ol,
dl,
span {
  transform: rotate(0.05deg);
}

/* ----------------------------------------
form style
---------------------------------------- */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
}

textarea {
  width: 100%;
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

input[type=text],
input[type=passwprd],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=number],
textarea {
  width: 100%;
  padding: 5px;
  border: solid 1px #D3CDBD;
  background-color: #fff;
}

select {
  width: 100%;
  border: solid 1px #D3CDBD;
  padding: 5px;
}

.header {
  background: linear-gradient(to right, #FFE1EA 0% 6.25%, #FFEFF2 6.25% 93.6875%, #FFE1EA 93.75% 100%);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 0 0 2em 2em;
  overflow: hidden;
}
.header--logo {
  width: 30vw;
  display: flex;
  align-items: center;
  padding-left: 3vw;
}
.header--gnavInner {
  display: flex;
  justify-content: space-between;
}
.header--gnavItem.top {
  display: none;
}
.header--gnavLink {
  text-align: center;
  padding: 1.5em 1vw;
  display: block;
  height: 100%;
  margin: 0 0.5vw;
}
.header--gnavLink.program {
  margin: 0;
  background: #FFE8EF;
  color: #EE6EA1;
}
.header--gnavLink.admission {
  margin: 0;
  background: #EAF9DB;
  color: #67B61D;
}
.header--gnavLink .imgBox {
  margin-bottom: 0.8em;
}
.header--gnavLink .txt span {
  display: block;
  font-size: 0.8em;
  line-height: 1;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.header--gnavLink:hover.program:hover {
  background: #ffd8e2;
  color: #e34b88;
}
.header--gnavLink:hover.program:hover .txt {
  opacity: 1;
}
.header--gnavLink:hover.admission:hover {
  background: #e7ffce;
  color: #59ab0c;
}
.header--gnavLink:hover.admission:hover .txt {
  opacity: 1;
}
.header--gnavLink:hover .imgBox {
  animation: updown 0.8s ease-in-out infinite;
}
.header--gnavLink:hover .txt {
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  .header__inner {
    justify-content: center;
  }
  .header--logo {
    padding: 2em 0;
    width: 50vw;
    padding-left: 0;
  }
  .header--gnav {
    color: #520826;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    background: #FFEFF2;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: right 600ms 0s ease;
    justify-content: flex-start;
  }
  .header--gnav.is-enable {
    right: 0;
  }
  .header--gnavInner {
    min-width: auto;
    width: 100%;
    height: auto;
    overflow-y: auto;
    margin: 0;
    padding: 2em;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1em 0;
  }
  .header--gnavItem {
    width: 49%;
  }
  .header--gnavItem.top {
    display: block;
  }
  .header--gnavLink {
    padding: 1.5em;
    border-radius: 2em;
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 375px) / (1280 - 375), 18px);
    width: auto;
    display: block;
    background: #fff;
    border: 0.2em solid #ffd4dd;
  }
  .header--gnavLink:hover {
    background: #FFEFF2;
  }
  .header--gnavLink.program {
    border: 0.2em solid #ffb9c8;
  }
  .header--gnavLink.admission {
    border: 0.2em solid #cff9a8;
  }
}
@media only screen and (max-width: 960px) {
  .header--gnavLink {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 1400px) {
  .header--gnavLink {
    font-size: inherit;
  }
}
.header--hamburger {
  display: none;
  flex-flow: column;
  justify-content: space-between;
  width: 50px;
  height: 50px;
  padding: 17px 15px;
  background: #EE6EA1;
  cursor: pointer;
  position: fixed;
  border-radius: 100%;
  top: 2%;
  right: 2%;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .header--hamburger {
    display: flex;
  }
}
.header--hamburger::before, .header--hamburger::after {
  display: block;
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: all 200ms 0s ease;
  transform-origin: 0 0;
}
.header--hamburger.is-close::before, .header--hamburger.is-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.header--hamburger.is-close::before {
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
}
.header--hamburger.is-close::after {
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}

.footer {
  padding: 6em 3em 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  width: 699px;
  height: 246px;
  bottom: 0;
  right: 0;
  background: url(../images/common/bg-kamikawachi.png) no-repeat center/cover;
  z-index: -1;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__detail .corp {
  font-size: 0.8em;
  transform: rotate(0.05deg);
}
.footer__detail .name {
  margin-top: 0.2em;
  font-size: 1.4em;
  transform: rotate(0.05deg);
}
.footer__detail .address {
  margin-top: 0.2em;
  transform: rotate(0.05deg);
}
.footer__detail .tel {
  margin-top: 0.2em;
  transform: rotate(0.05deg);
}
.footer__detail .fax {
  margin-top: 0.2em;
  transform: rotate(0.05deg);
}
.footer__nav {
  width: 40%;
}
.footer__nav ul {
  display: flex;
  justify-content: space-between;
}
.footer__nav ul li::before {
  content: "・";
}
.footer__nav ul li a:hover {
  opacity: 0.6;
}
.footer .c-btnBox {
  margin-top: 2em;
}
.footer__copy {
  margin-top: 8em;
  width: 100%;
  font-size: 0.8em;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 2em 2em 0;
  }
  .footer::before {
    width: 90vw;
    height: 31vw;
  }
  .footer__nav {
    margin-top: 2em;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .footer {
    padding: 2em 1em 0;
  }
}

/* ----------------------------------------
Component
再利用できるパターンとして、小さな単位のモジュールを定義します。
grid/button/form/media...
---------------------------------------- */
.c-inner1280 {
  max-width: 1280px;
  margin: 0 auto;
}
.c-inner960 {
  max-width: 960px;
  margin: 0 auto;
}
.c-section {
  padding: 8em 3em;
}
@media only screen and (max-width: 768px) {
  .c-section {
    padding: 4em 2em;
  }
}
@media only screen and (max-width: 480px) {
  .c-section {
    padding: 4em 1em;
  }
}
.c-sectionWhite {
  position: relative;
  padding-bottom: 16em;
}
.c-sectionWhite::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8.5vw;
  bottom: 0;
  left: 0;
  background: url(../images/common/section-wave-white.svg) no-repeat top/cover;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-sectionWhite {
    padding-bottom: 8em;
  }
  .c-sectionWhite::after {
    height: 20vw;
    right: 0;
    left: inherit;
    background: url(../images/common/section-wave-white.svg) no-repeat top right/cover;
  }
}
.c-sectionPage {
  position: relative;
  padding-bottom: 16em;
}
.c-sectionPage::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  background: url(../images/common/section-wave-page.svg) no-repeat top/cover;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-sectionPage {
    padding-bottom: 8em;
  }
  .c-sectionPage::after {
    height: 17vw;
  }
}
.c-sectionYellow {
  position: relative;
  padding-bottom: 16em;
}
.c-sectionYellow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  background: url(../images/common/section-wave-yellow.svg) no-repeat top/cover;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-sectionYellow {
    padding-bottom: 8em;
  }
  .c-sectionYellow::after {
    height: 17vw;
  }
}
.c-title {
  font-size: 2.6em;
  color: #EE6EA1;
  margin-bottom: 1.2em;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  display: table;
  text-align: center;
}
.c-title .eng {
  font-size: 0.35em;
  text-align: center;
  display: block;
  color: #520826;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .c-title {
    font-size: 2.2em;
  }
}
.c-titleSub {
  font-size: 1.4em;
  margin-bottom: 3em;
  display: table;
  padding: 0 0 0 1.6em;
  position: relative;
}
.c-titleSub::before, .c-titleSub::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0.7em;
  height: 0.8em;
}
.c-titleSub::before {
  top: -10%;
  border-radius: 0.5em 0.5em 0 0;
  background-color: #FFACC5;
}
.c-titleSub::after {
  top: calc(0.8em - 10%);
  border-radius: 0 0 0.5em 0.5em;
  background-color: #AEE677;
}
.c-titleSub02 {
  font-size: 1.15em;
  margin-bottom: 2em;
  display: table;
  padding: 0 0 0 1em;
  position: relative;
}
.c-titleSub02::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  background: #FFACC5;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-fontSmaller {
  font-size: 0.78em;
  color: #520826;
}
.c-moreBtn {
  margin-top: 4em;
  padding-right: 5em;
  display: table;
  position: relative;
  width: fit-content;
}
.c-moreBtn::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-arrow.svg) no-repeat center/cover;
}
.c-moreBtn.pdf::before {
  background: url(../images/common/icon-pdf.svg) no-repeat center/cover;
}
.c-moreBtn span {
  padding-bottom: 0.8em;
  position: relative;
}
.c-moreBtn span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: #520826;
}
.c-moreBtn:hover {
  padding-right: 3.5em;
}
.c-moreBtn:hover span::before {
  content: none;
}
.c-moreBtn:hover::before {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 1400px) {
  .c-moreBtn::before {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .c-moreBtn::before {
    width: 12vw;
    height: 12vw;
  }
}
.c-cvTel {
  display: table;
  max-width: 520px;
}
.c-cvTel .num {
  font-size: 2.8em;
  font-weight: bold;
  color: #EE6EA1;
  padding-left: 1.1em;
  position: relative;
  display: table;
  margin: 0 auto;
  line-height: 1;
  letter-spacing: 0.008em;
  white-space: nowrap;
}
.c-cvTel .num::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../images/common/icon-tel.svg) no-repeat center/cover;
}
.c-cvTel .time {
  background: #EFEFEF;
  border-radius: 100px;
  padding: 0.2em 1em;
  text-align: center;
  margin-top: 1em;
}
@media only screen and (max-width: 1400px) {
  .c-cvTel .num::before {
    width: 4vw;
    height: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-cvTel .num::before {
    width: 8vw;
    height: 8vw;
  }
}
.c-btnBox {
  display: flex;
  justify-content: space-between;
  max-width: 540px;
  gap: 0 1em;
}
.c-cvBtn {
  width: 100%;
  font-size: 0.9em;
  text-align: center;
  border-radius: 100px;
  padding: 0.5em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.c-cvBtn::before {
  content: "→";
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  position: absolute;
  font-size: 1.2em;
}
.c-cvBtn span {
  display: block;
  font-size: 0.85em;
  margin-top: -0.5em;
}
.c-cvBtn.pink {
  background: #FFF8FA;
  border: 1px solid #FF75AC;
  color: #EE6EA1;
}
.c-cvBtn.pink:hover {
  background: #ffd8e2;
  color: #e34b88;
}
.c-cvBtn.green {
  background: #FBFFF7;
  border: 1px solid #89D443;
  color: #67B61D;
}
.c-cvBtn.green:hover {
  background: #e7ffce;
  color: #59ab0c;
}
.c-table01 {
  margin-top: 1em;
  width: 100%;
}
.c-table01 tr {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.c-table01 tr::before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../images/common/dotted.svg) repeat-x;
}
.c-table01 tr th {
  width: 15%;
  padding: 1.6em 0;
  text-align: left;
  font-weight: normal;
}
.c-table01 tr td {
  width: 85%;
  padding: 1.6em;
}
@media only screen and (max-width: 768px) {
  .c-table01 tr td {
    padding: 1.6em 1em;
  }
}
.c-table02, .c-table03 {
  margin-top: 1em;
  width: 100%;
}
.c-table02 tr, .c-table03 tr {
  display: flex;
  position: relative;
  justify-content: space-between;
  border-top: 1px solid #FECDDC;
}
.c-table02 tr:last-of-type, .c-table03 tr:last-of-type {
  border-bottom: 1px solid #FECDDC;
}
.c-table02 tr:nth-child(2n), .c-table03 tr:nth-child(2n) {
  background: #FFE8EF;
}
.c-table02 tr th, .c-table03 tr th {
  width: 25%;
  padding: 1.6em 0 1.6em 3em;
  text-align: left;
  font-weight: normal;
}
.c-table02 tr td, .c-table03 tr td {
  width: 75%;
  padding: 1.6em 3em 1.6em 0;
}
.c-table02 tr td.short, .c-table03 tr td.short {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .c-table02 tr th, .c-table03 tr th {
    padding: 1.6em 0 1.6em 1em;
  }
  .c-table02 tr td, .c-table03 tr td {
    padding: 1.6em 1em;
  }
}
.c-table03 tr {
  background: #fff;
}
.c-table03 tr th {
  width: 30%;
}
.c-table03 tr td {
  width: 70%;
}
.c-table04 {
  width: 100%;
}
.c-table04 tr th {
  border: 1px solid #FECDDC;
  background: #FFE8EF;
  padding: 1.6em;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
  width: 20%;
}
.c-table04 tr td {
  border: 1px solid #FECDDC;
  background: #fff;
  padding: 1em 1.6em;
  vertical-align: middle;
  width: 55%;
}
.c-table04 tr td:first-of-type {
  text-align: center;
  width: 15%;
}
@media only screen and (max-width: 768px) {
  .c-table04 tr th {
    padding: 1em 1em;
    width: 20%;
  }
  .c-table04 tr td {
    padding: 1em 1em;
    width: 65%;
  }
  .c-table04 tr td:first-of-type {
    width: 15%;
  }
}
.c-rssBox {
  display: flex;
  justify-content: space-between;
}
.c-rssBox__item {
  width: 28%;
}
.c-rssBox__item:nth-of-type(2) {
  margin-top: 4em;
}
.c-rssBox__item:hover .imgBox::before {
  transform: translate(-50%, -50%) rotate(0deg);
  transition-duration: 0.4s;
}
.c-rssBox__item:hover time,
.c-rssBox__item:hover .cate,
.c-rssBox__item:hover .title {
  opacity: 0.6;
}
.c-rssBox__item time,
.c-rssBox__item .cate,
.c-rssBox__item .title {
  transform: rotate(0.05deg);
}
.c-rssBox__item .imgBox {
  position: relative;
  z-index: 1;
}
.c-rssBox__item .imgBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 2em;
  border: 2px solid #86435E;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  position: absolute;
  z-index: -1;
}
.c-rssBox__item .imgBox img {
  width: 100%;
  border-radius: 2em;
}
.c-rssBox__item--head {
  margin-top: 2em;
  display: flex;
  align-items: center;
  font-size: 0.8em;
}
.c-rssBox__item--head time {
  margin-right: 1em;
}
.c-rssBox__item--head .cate {
  background: #fff;
  border-radius: 100px;
  border: 1px solid #86435E;
  padding: 0 1em;
}
.c-rssBox__item .title {
  margin-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .c-rssBox {
    flex-wrap: wrap;
    padding-left: 1em;
    padding-right: 1em;
  }
  .c-rssBox__item {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-rssBox__item:not(:first-of-type) {
    margin-top: 4em;
  }
}

/* ----------------------------------------
Project
プロジェクト固有のパターンであり、いくつかのComponentと、
それに該当しない要素によって構成されるものを定義します。
例えば、記事一覧や、ユーザープロフィール、画像ギャラリーなどコンテンツを構成する要素などが該当します。
articles/ranking/promo...
---------------------------------------- */
.p-visual {
  position: relative;
  background: linear-gradient(to right, #FFE1EA 0% 6.25%, #FFEFF2 6.25% 93.6875%, #FFE1EA 93.75% 100%);
}
.p-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 9vw;
  bottom: -1px;
  left: 0;
  background: url(../images/common/bg-cloud-page.svg) no-repeat top/cover;
  z-index: 10;
}
.p-visual__inner {
  position: relative;
  z-index: 1;
}
.p-visual__inner picture::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/common/page-border.svg) no-repeat center/cover;
  z-index: -1;
}
.p-visual__inner picture > img {
  width: 100%;
  height: auto;
  mask-image: url(../images/common/page-mask.svg);
  mask-size: 100%;
  mask-position: 0 0;
  mask-repeat: no-repeat;
  z-index: 1;
}
.p-visual__inner .title {
  position: absolute;
  z-index: 10;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.6em;
  font-weight: bold;
  width: 100%;
}
.p-visual__inner .title span {
  display: block;
  margin-top: 1.2em;
  font-size: 0.35em;
  text-transform: uppercase;
}
.p-visual__inner .title .small {
  margin-top: 0.25em;
  font-size: 0.55em;
}
@media only screen and (max-width: 768px) {
  .p-visual::before {
    height: 12vw;
  }
  .p-visual__inner picture::before {
    background: url(../images/home/main-border.svg) no-repeat center/cover;
  }
  .p-visual__inner picture > img {
    mask-image: url(../images/home/main-mask.svg);
  }
}
.p-wrapperWhite01 {
  background: url(../images/common/bg-tutuji-left.svg) no-repeat top 10em left, url(../images/common/bg-tutuji-right.svg) no-repeat top 40em right, url(../images/common/bg-tutuji-left.svg) no-repeat top 80em left, url(../images/common/bg-tutuji-right.svg) no-repeat top 120em right, url(../images/common/bg-tutuji-left.svg) no-repeat top 160em left, url(../images/common/bg-tutuji-right.svg) no-repeat top 200em right;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-wrapperWhite01 {
    background-size: 45% auto, 45% auto, 45% auto, 45% auto, 45% auto, 45% auto;
  }
}
@media only screen and (max-width: 480px) {
  .p-wrapperWhite01 {
    background-size: 35% auto, 35% auto, 35% auto, 35% auto, 35% auto, 35% auto;
  }
}
.p-wrapperWhite02 {
  background: url(../images/common/bg-pattern.svg) repeat top;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-wrapperWhite02 {
    background-size: 95% auto;
  }
}
.p-cvArea {
  background: #FEFFEA;
}
.p-cvArea__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em 2em;
}
.p-cvArea__inner__item {
  width: 48%;
  background: #fff;
  border-radius: 2em;
  text-align: center;
  padding: 3em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #EFF1CA;
}
.p-cvArea__inner__item .txt {
  font-size: 1.1em;
  margin-bottom: 1em;
  font-weight: bold;
}
.p-cvArea__inner__item .c-cvBtn {
  max-width: 360px;
}
@media only screen and (max-width: 768px) {
  .p-cvArea__inner__item {
    width: 100%;
  }
  .p-cvArea__inner__item .txt {
    font-size: 1em;
  }
}
.p-pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
}
.p-pagetop:hover {
  cursor: pointer;
}

/* ----------------------------------------
Utility
ComponentとProjectレイヤーのObjectのモディファイアで
解決することが難しい・適切では無い、わずかなスタイルの調整のための便利クラスなどを定義します。
clearfix/display/margin...
---------------------------------------- */
@media only screen and (max-width: 1400px) {
  .u-display-mobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .u-display-pc {
    display: none;
  }
}
.u-link-disabled {
  pointer-events: none;
  text-decoration: none;
}
.u-align-center {
  text-align: center;
}
.u-align-left {
  text-align: left;
}
.u-align-right {
  text-align: right;
}

#home .topFv {
  position: relative;
  background: linear-gradient(to right, #FFE1EA 0% 6.25%, #FFEFF2 6.25% 93.6875%, #FFE1EA 93.75% 100%);
}
#home .topFv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 9vw;
  bottom: -1px;
  left: 0;
  background: url(../images/common/bg-cloud.svg) no-repeat top/cover;
  z-index: 10;
}
#home .topFv .swiper-slide {
  position: relative;
}
#home .topFv .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/home/main-border.svg) no-repeat center/cover;
  z-index: -1;
}
#home .topFv .swiper-slide > img {
  width: 100%;
  height: auto;
  mask-image: url(../images/home/main-mask.svg);
  mask-size: 100%;
  mask-position: 0 0;
  mask-repeat: no-repeat;
}
#home .topFv .swiper-pagination {
  bottom: 5%;
  z-index: 100;
}
#home .topFv .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
#home .topFv .swiper-pagination .swiper-pagination-bullet-active {
  background: #EE6EA1;
}
#home .greeting {
  padding-right: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
#home .greeting::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/common/section-wave.svg) no-repeat top/cover;
  z-index: 1;
}
#home .greeting__inner {
  position: relative;
  min-height: 770px;
  max-width: 1920px;
  margin: 0 auto;
}
#home .greeting__inner::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 100%;
  top: -5%;
  right: 0;
  background: url(../images/home/greeting-img.png) no-repeat top left/cover;
  z-index: -1;
}
#home .greeting__left {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 14em;
}
#home .greeting .c-title {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.8em;
  justify-content: start;
  margin-left: 0;
  margin-right: 0;
}
#home .greeting .c-title .item {
  display: inline-block;
  padding-right: 0.5em;
  position: relative;
  white-space: nowrap;
}
#home .greeting .c-title .item::before {
  content: "!";
  position: absolute;
  top: 55%;
  transform: translateY(-50%) rotate(10deg);
  right: 0;
  color: #520826;
  font-size: 0.8em;
}
#home .greeting .c-title .item .c-fontSmaller {
  margin-left: 0.1em;
}
#home .greeting--txt {
  width: 50%;
  line-height: 3em;
}
@media only screen and (max-width: 1400px) {
  #home .greeting__inner::before {
    width: 70vw;
    height: 60vw;
    top: inherit;
    bottom: 0;
    right: -12%;
  }
  #home .greeting .c-title {
    width: 80%;
  }
  #home .greeting--txt {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  #home .greeting {
    padding-right: inherit;
  }
  #home .greeting::before {
    height: 30px;
  }
  #home .greeting__inner {
    min-height: inherit;
  }
  #home .greeting__inner::before {
    right: 0;
  }
  #home .greeting .c-title {
    width: 100%;
    justify-content: center;
  }
  #home .greeting--txt {
    width: 100%;
    padding-right: 2em;
  }
  #home .greeting--txt br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  #home .greeting--txt {
    line-height: 2.5em;
    padding-right: 1em;
  }
}
#home .news {
  background: #FFEFF2;
}
#home .news .c-moreBtn {
  margin-left: auto;
}
#home .instagram {
  background: #FFEFF2;
}
#home .instagram .c-inner1280 {
  display: flex;
  background: #fff;
  border-radius: 3em;
  overflow: hidden;
}
#home .instagram__left {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6em 2em 7em 6em;
  position: relative;
  overflow: hidden;
}
#home .instagram__left::before {
  content: "";
  position: absolute;
  width: 393px;
  height: 75px;
  bottom: 0;
  right: -5%;
  background: url(../images/common/illsut-train.svg) no-repeat center/cover;
}
#home .instagram__left .c-title {
  text-align: inherit;
  margin-left: 0;
  margin-bottom: 0.6em;
}
#home .instagram__left .c-title .insta {
  display: table;
  margin-top: 0.2em;
  padding: 0 1em 0 0;
  position: relative;
}
#home .instagram__left .c-title .insta::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon-insta.svg) no-repeat center/cover;
}
#home .instagram__right {
  width: 52%;
}
#home .instagram__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1400px) {
  #home .instagram__left {
    width: 60%;
    padding: 6em 2em 7em 5vw;
  }
  #home .instagram__right {
    width: 40%;
  }
}
@media only screen and (max-width: 960px) {
  #home .instagram .c-inner1280 {
    flex-wrap: wrap;
  }
  #home .instagram__left {
    width: 100%;
    padding: 4em 2em 6em;
  }
  #home .instagram__left::before {
    width: 53vw;
    height: 10vw;
  }
  #home .instagram__left .c-title {
    margin-left: auto;
    text-align: center;
  }
  #home .instagram__left .c-title .insta {
    padding: 0 1.5em 0 0;
    margin-left: auto;
    margin-right: auto;
  }
  #home .instagram__left p br {
    display: none;
  }
  #home .instagram__right {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #home .instagram__left .c-title .insta {
    padding: 0 1em 0 0;
  }
  #home .instagram__left .c-title .insta::before {
    width: 6vw;
    height: 6vw;
  }
}
#home .contact {
  padding-top: 8em;
  padding-bottom: 0;
  background: #FFEFF2;
  position: relative;
}
#home .contact__inner {
  display: flex;
  flex-wrap: wrap;
}
#home .contact__left {
  width: 50%;
  z-index: 1;
  border-radius: 4em 0 0 0;
  overflow: hidden;
}
#home .contact__left iframe {
  width: 100%;
  height: 100%;
}
#home .contact__right {
  width: 50%;
  padding: 6em 1em 0 5em;
  background: #FEFFEA;
  padding-bottom: 16em;
  border-radius: 0 4em 0 0;
}
#home .contact__right .c-title {
  margin-left: 0;
}
#home .contact__right .c-title .eng {
  text-align: left;
}
#home .contact__right .c-btnBox {
  margin-top: 2.2em;
}
@media only screen and (max-width: 1400px) {
  #home .contact__left {
    width: 40%;
  }
  #home .contact__right {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  #home .contact {
    padding-top: 4em;
  }
  #home .contact__left {
    width: 100%;
    border-radius: 0;
    min-height: 600px;
  }
  #home .contact__right {
    width: 100%;
    border-radius: 0;
    padding: 4em 2em;
    padding-bottom: 28vw;
  }
  #home .contact__right .c-cvTel {
    max-width: inherit;
    margin: 0 auto;
  }
  #home .contact__right .c-btnBox {
    max-width: inherit;
  }
}
@media only screen and (max-width: 480px) {
  #home .contact__left {
    min-height: 400px;
  }
  #home .contact__right {
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 35vw;
  }
}

#program .wakuwaku__box {
  margin-top: 6em;
}
#program .wakuwaku .main-txt {
  text-align: center;
  font-size: 1.15em;
  line-height: 3em;
}
#program .wakuwaku .sub-txt {
  margin-bottom: 3em;
}
#program .wakuwaku__imgContainer {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  gap: 2em;
}
#program .wakuwaku__imgContainer__item {
  width: 48%;
}
#program .wakuwaku__imgContainer__item img {
  border-radius: 2em;
}
#program .wakuwaku__flex {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  gap: 2em;
}
#program .wakuwaku__flex__item {
  width: 48%;
  background: #FFE8EF;
  border-radius: 2em;
  padding: 2.5em 2em;
}
#program .wakuwaku__flex__item .title {
  font-size: 1.4em;
  border-radius: 100px;
  background: #fff;
  padding: 0.25em;
  text-align: center;
}
#program .wakuwaku__flex__item .txt {
  margin-top: 1em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #program .wakuwaku__box {
    margin-top: 3em;
  }
  #program .wakuwaku .main-txt {
    text-align: left;
  }
  #program .wakuwaku .main-txt br {
    display: none;
  }
  #program .wakuwaku .sub-txt br {
    display: none;
  }
  #program .wakuwaku__imgContainer {
    flex-wrap: wrap;
  }
  #program .wakuwaku__imgContainer__item {
    width: 100%;
  }
  #program .wakuwaku__imgContainer__item img {
    width: 100%;
  }
  #program .wakuwaku__flex {
    flex-wrap: wrap;
  }
  #program .wakuwaku__flex__item {
    width: 100%;
  }
}
#program .c-table04 {
  margin-bottom: 4em;
}
#program .p-cvArea__inner__item {
  width: 100%;
  max-width: 960px;
}

#news .news .utility {
  background: #fff;
  border-radius: 2em;
  padding: 3em;
  border: 2px solid #FFE8EF;
}
@media only screen and (max-width: 768px) {
  #news .news .utility {
    padding: 2em;
  }
}
#news .news .entry {
  padding: 4em 3em 2em;
  position: relative;
  background: #fff;
  border-radius: 2em;
  border: 2px solid #FFE8EF;
}
#news .news .entry .content .icon-banner a img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #news .news .entry {
    padding: 2em;
  }
}
#news .calender td a {
  display: block;
  border-radius: 0.5em;
  background-color: #FFE8EF;
  text-decoration: none;
}
#news .content h2,
#news .content h3,
#news .content h4,
#news .content h5,
#news .content h6,
#news .content p,
#news .content ul,
#news .content ol,
#news .content li,
#news .content dl,
#news .content dt,
#news .content dd {
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  #news .utility {
    width: 100%;
  }
}

#daily .daily__timeline {
  position: relative;
  padding: 3em 0;
}
#daily .daily__timeline::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/common/dotted-vertical.svg) repeat-y top;
}
#daily .daily__timeline__box {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
#daily .daily__timeline__box:not(:first-of-type) {
  margin-top: 1.5em;
}
#daily .daily__timeline__box.order.halfBox::after {
  order: 0;
}
#daily .daily__timeline__box.order .daily__timeline--content {
  order: 1;
  padding-right: 0;
  padding-left: 1.5em;
}
#daily .daily__timeline__box.order .daily__timeline--content::before {
  right: inherit;
  left: -1.55%;
}
#daily .daily__timeline__box.order .daily__timeline--content .txtBox {
  justify-content: flex-start;
}
#daily .daily__timeline__box.img .daily__timeline--content::before {
  content: none;
}
#daily .daily__timeline__box.halfBox::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
}
#daily .daily__timeline--content {
  width: 50%;
  padding-right: 1.5em;
  position: relative;
}
#daily .daily__timeline--content:nth-of-type(2) {
  padding-right: 0;
  padding-left: 1.5em;
}
#daily .daily__timeline--content::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #EEA0BF;
  top: 1em;
  right: -1.55%;
  border-radius: 100%;
}
#daily .daily__timeline--content .txtBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#daily .daily__timeline--content .txtBox .time {
  font-size: 1.3em;
  color: #fff;
  padding: 0.22em 1.4em;
  background: #EE6EA1;
  border-radius: 100px;
}
#daily .daily__timeline--content .txtBox .txt {
  font-size: 1.6em;
  margin-left: 0.8em;
}
#daily .daily__timeline--content .txtBox .imgBox {
  margin-top: 1.5em;
}
#daily .daily__timeline--content .imgBox {
  width: 100%;
}
#daily .daily__timeline--content .imgBox img {
  width: 100%;
  border-radius: 1.5em;
}
#daily .daily .c-titleSub {
  margin-top: 4em;
}
#daily .daily__flexBox {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2em;
}
#daily .daily__flexBox--item {
  width: 48%;
}
#daily .daily__flexBox--item img {
  border-radius: 2em;
}
@media only screen and (max-width: 768px) {
  #daily .daily__timeline::before {
    left: 0;
    transform: inherit;
    width: 1.25vw;
    background-size: 100% auto;
  }
  #daily .daily__timeline__box.order.halfBox::after {
    content: none;
  }
  #daily .daily__timeline--content {
    width: 100%;
    padding-left: 1.5em;
    padding-right: 0;
  }
  #daily .daily__timeline--content::before {
    width: 4vw;
    height: 4vw;
    top: 1em;
    left: -1.55%;
    right: inherit;
  }
  #daily .daily__timeline--content .txtBox {
    justify-content: flex-start;
  }
  #daily .daily__timeline--content:not(:first-of-type) .imgBox {
    margin-top: 2em;
  }
  #daily .daily__flexBox--item {
    width: 100%;
    text-align: center;
  }
  #daily .daily__flexBox--item img {
    width: 100%;
  }
}
#daily .event {
  background: #FFEFF2;
}
#daily .event .txt {
  text-align: center;
  padding: 0 0 0 2em;
  display: table;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#daily .event .txt::before {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  background: url(../images/common/icon-camera.svg) no-repeat center/cover;
}
#daily .event__flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 1em;
}
#daily .event__flexBox__item {
  margin-top: 8em;
  padding-top: 3em;
  width: 32%;
  background: #fff;
  border-radius: 2em;
  position: relative;
  min-height: 504px;
}
#daily .event__flexBox__item .month {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
}
#daily .event__flexBox__item .month::before {
  content: "";
  background: #fff;
  width: 156px;
  height: 156px;
  border-radius: 100%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
#daily .event__flexBox__item .imgBox {
  width: 100%;
  position: relative;
}
#daily .event__flexBox__item .imgBox img {
  width: 100%;
}
#daily .event__flexBox__item .imgBox .cap {
  position: absolute;
  padding: 0.2em 1em;
  bottom: 0;
  right: 0;
  font-size: 0.7em;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}
#daily .event__flexBox__item ul {
  padding: 2em;
}
#daily .event__flexBox__item ul li {
  padding: 0 0 0 1em;
  position: relative;
}
#daily .event__flexBox__item ul li:not(:first-child) {
  margin-top: 0.5em;
}
#daily .event__flexBox__item ul li::before {
  content: "・";
  position: absolute;
  top: 0.1em;
  left: 0;
}
#daily .event__flexBox__item ul li .photo {
  position: relative;
  display: table;
}
#daily .event__flexBox__item ul li .photo::after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  position: absolute;
  background: url(../images/common/icon-camera.svg) no-repeat center/cover;
}
#daily .event__flexBox__item ul li .photo:hover {
  opacity: 0.6;
}
#daily .event__flexBox__item ul li .small {
  font-size: 0.8em;
}
#daily .event__flexBox__item ul li .small.block {
  display: block;
}
#daily .event__other {
  display: flex;
  justify-content: space-between;
  margin-top: 6em;
}
#daily .event__other__left {
  width: 45%;
}
#daily .event__other__left ul li {
  padding: 0 0 0 1em;
  position: relative;
}
#daily .event__other__left ul li:not(:first-child) {
  margin-top: 0.5em;
}
#daily .event__other__left ul li::before {
  content: "・";
  position: absolute;
  top: 0.1em;
  left: 0;
}
#daily .event__other__left ul li .small {
  font-size: 0.8em;
}
#daily .event__other__left ul li .small.block {
  display: block;
}
#daily .event__other__right {
  width: 50%;
}
@media only screen and (max-width: 1400px) {
  #daily .event .txt::before {
    width: 2.5vw;
    height: 2.5vw;
  }
  #daily .event__flexBox__item ul li .photo::after {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media only screen and (max-width: 768px) {
  #daily .event .txt::before {
    width: 5vw;
    height: 5vw;
    top: 5%;
    transform: inherit;
  }
  #daily .event__flexBox__item {
    width: 100%;
    margin-top: 6em;
  }
  #daily .event__flexBox__item .month {
    width: 22vw;
  }
  #daily .event__flexBox__item .month::before {
    width: 10em;
    height: 10em;
  }
  #daily .event__flexBox__item .month img {
    width: 100%;
  }
  #daily .event__flexBox__item ul li .photo::after {
    width: 5vw;
    height: 5vw;
  }
  #daily .event__other {
    flex-wrap: wrap;
  }
  #daily .event__other__left {
    width: 100%;
  }
  #daily .event__other__right {
    margin-top: 2em;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  #daily .event__flexBox__item {
    min-height: 360px;
  }
}

#admission .requirement__box,
#admission .childcare__box {
  margin-top: 6em;
}
#admission .requirement .txt,
#admission .childcare .txt {
  margin-bottom: 3em;
}
#admission .requirement .c-moreBtn,
#admission .childcare .c-moreBtn {
  margin-bottom: 3em;
}
#admission .requirement .c-table03:not(:last-of-type),
#admission .childcare .c-table03:not(:last-of-type) {
  margin-bottom: 3em;
}

#about .target__main {
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  font-size: 1.4em;
  line-height: 3em;
  z-index: 1;
}
#about .target__main::before {
  content: "";
  position: absolute;
  width: 628px;
  height: 475px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/about/bg-target.svg) no-repeat center/cover;
  z-index: -1;
}
#about .target .c-titleSub {
  margin-top: 4em;
}
#about .target__flexBox {
  display: flex;
  justify-content: center;
  gap: 4em 2em;
  flex-wrap: wrap;
}
#about .target__flexBox--item {
  width: 40%;
  text-align: center;
  font-size: 1.4em;
  line-height: 2.2em;
  min-height: 316px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
#about .target__flexBox--item::before {
  content: "";
  border-radius: 100%;
  width: 316px;
  height: 316px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -2;
}
#about .target__flexBox--item::after {
  content: "";
  width: 316px;
  height: 316px;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
}
#about .target__flexBox--item.green {
  color: #2D5D02;
}
#about .target__flexBox--item.green::before {
  background: #EAF9DB;
}
#about .target__flexBox--item.green::after {
  background: url(../images/about/dashed-green.svg) no-repeat center/cover;
}
#about .target__flexBox--item.orange {
  color: #4F3D0C;
}
#about .target__flexBox--item.orange::before {
  background: #FEF6E0;
}
#about .target__flexBox--item.orange::after {
  background: url(../images/about/dashed-orange.svg) no-repeat center/cover;
}
#about .target__flexBox--item.pink {
  color: #69142E;
}
#about .target__flexBox--item.pink::before {
  background: #FFE8EF;
}
#about .target__flexBox--item.pink::after {
  background: url(../images/about/dashed-pink.svg) no-repeat center/cover;
}
#about .target__flexBox--item.blue {
  color: #002644;
}
#about .target__flexBox--item.blue::before {
  background: #E4EFF8;
}
#about .target__flexBox--item.blue::after {
  background: url(../images/about/dashed-blue.svg) no-repeat center/cover;
}
#about .target__flexBox--item .imgLeft,
#about .target__flexBox--item .imgRight {
  position: absolute;
  bottom: -10%;
}
#about .target__flexBox--item .imgLeft {
  left: -4%;
}
#about .target__flexBox--item .imgRight {
  right: -4%;
}
@media only screen and (max-width: 768px) {
  #about .target {
    overflow: hidden;
  }
  #about .target__main {
    min-height: 100vw;
    line-height: 2.2em;
  }
  #about .target__main::before {
    width: 130vw;
    height: 98vw;
  }
  #about .target__main p br {
    display: none;
  }
  #about .target__flexBox {
    gap: 6em 0;
  }
  #about .target__flexBox--item {
    width: 100%;
  }
  #about .target__flexBox--item::before {
    width: 380px;
    height: 380px;
  }
  #about .target__flexBox--item::after {
    width: 380px;
    height: 380px;
  }
  #about .target__flexBox--item .imgLeft img,
  #about .target__flexBox--item .imgRight img {
    width: 25Vw;
  }
  #about .target__flexBox--item .imgLeft {
    left: 5%;
  }
  #about .target__flexBox--item .imgRight {
    right: 5%;
  }
}
@media only screen and (max-width: 480px) {
  #about .target__flexBox {
    gap: 2em 0;
  }
  #about .target__flexBox--item::before, #about .target__flexBox--item::after {
    width: 280px;
    height: 280px;
  }
  #about .target__flexBox--item .imgLeft,
  #about .target__flexBox--item .imgRight {
    bottom: 0;
  }
}
#about .feature {
  background: #FFEFF2;
}
#about .feature__flexBox {
  display: flex;
  justify-content: space-between;
}
#about .feature__flexBox:nth-of-type(2n) .feature__flexBox__left {
  order: 1;
}
#about .feature__flexBox:nth-of-type(2n) .feature__flexBox__right {
  order: 0;
}
#about .feature__flexBox:not(:first-of-type) {
  margin-top: 4em;
}
#about .feature__flexBox__left {
  width: 45%;
  position: relative;
  z-index: 1;
}
#about .feature__flexBox__left .title {
  margin-top: 1em;
  font-size: 1.55em;
  line-height: 2.4em;
}
#about .feature__flexBox__left .title .em {
  font-size: 1.3em;
  color: #EE6EA1;
}
#about .feature__flexBox__left .title .small {
  display: block;
  font-size: 0.7em;
  line-height: 2em;
}
#about .feature__flexBox__left .illustBox {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#about .feature__flexBox__right {
  width: 50%;
}
#about .feature__flexBox__right img {
  border-radius: 2em;
}
@media only screen and (max-width: 1400px) {
  #about .feature__flexBox__left .pointIcon {
    width: 7vw;
  }
  #about .feature__flexBox__left .illustBox {
    width: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  #about .feature__flexBox {
    flex-wrap: wrap;
  }
  #about .feature__flexBox:nth-of-type(2n) .feature__flexBox__left {
    order: 0;
  }
  #about .feature__flexBox:nth-of-type(2n) .feature__flexBox__right {
    order: 1;
  }
  #about .feature__flexBox__left {
    width: 100%;
  }
  #about .feature__flexBox__left .pointIcon {
    width: 25vw;
  }
  #about .feature__flexBox__left .illustBox {
    width: 28vw;
    bottom: -60%;
  }
  #about .feature__flexBox__right {
    margin-top: 3em;
    width: 100%;
  }
}
#about .detail {
  background: #FFEFF2;
}
#about .history {
  background: #FFEFF2;
}
#about .facility {
  background: #FFEFF2;
}
#about .facility__flexBox {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2em;
}
#about .facility__flexBox--item {
  width: 48%;
}
#about .facility__flexBox--item img {
  border-radius: 2em;
}
@media only screen and (max-width: 768px) {
  #about .facility__flexBox--item {
    width: 100%;
  }
}