
/* 全体設定
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/* 色の設定
------------------------------------------------------------*/
:root {
  --blue: #0A3682;
  --lightBlue: #0094FF;
  --bkBlue: #E9F5FF;
  --pink: #FF007B;
  --grey: #F2F7F4;
}
/*------------------------------------------------------------*/




body {
  font-family: 'Noto Sans JP', Arial,Helvetica, "Yu Gothic", "游ゴシック体","游ゴシック", "ヒラギノ角ゴProN W3", "Hiragino Kaku Gothic ProN","メイリオ ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--blue);
  font-weight: 500;
  width: 100%;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
}

.lenis-stopped {
  overflow-y: hidden;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: .3s all ease;
}

a:hover, a:active {
  outline: none;
  text-decoration: none;
  opacity: .7;
}
a[target="_blank"] {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #000;
}
a[target="_blank"]:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 6px;
  right: -20px;
  background-image: url('../img/icon_blank.svg');
  background-size: cover; /* 画像を全体にフィット */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返しを防止 */
}
a[target="_blank"]:hover {
  outline: none;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}


img {
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}
.text-small {
  font-size: 12px;
  line-height: 1.6;
}
.text-medium {
  font-size: 14px;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.text-center-pc {
  text-align: center;
}
.text-right {
  text-align: right;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
.note {
  text-indent: -1em;
  margin-left: 1em;
}
strong {
  font-weight: bold;
}
sup {
  font-size: 0.6em;
}
.text-centerBox{
  text-align: center;
}
@media (min-width: 767px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
color: #000;
border-bottom: 1px solid transparent;
}
}

.table_type01 {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 30px;
}
.table_type01 th,
.table_type01 td {
  border: 1px solid #333;
  padding: 1.5rem 1rem;
  vertical-align: middle;
  word-break: break-word;
}

.list_square {
  margin: 0 0 20px 0;
}
.list_square li {
  position: relative;
  padding: 0 0 0 18px;
  display: block;
  margin: 0 0 0 0;
  line-height: 1.8;
  vertical-align: top;
}
.list_square li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 14px;
  height: 14px;
  display: block;
  background: var(--blue);
}
.list_square li a {
  color: var(--blue);
}
.list_square li a:hover {
  color: var(--blue);
}
.flexBox_type1 {
  display: flex;
}
.flexBox_type2 {
  display: flex;
  justify-content: space-between;
}

.spacer100 {
  padding-top: 100px;
  height: auto !important;
}
.spacer90 {
  padding-top: 90px;
  height: auto !important;
}
.spacer80 {
  padding-top: 80px;
  height: auto !important;
}
.spacer70 {
  padding-top: 70px;
  height: auto !important;
}
.spacer60 {
  padding-top: 60px;
  height: auto !important;
}
.spacer50 {
  padding-top: 50px;
  height: auto !important;
}
.spacer40 {
  padding-top: 40px;
  height: auto !important;
}
.spacer30 {
  padding-top: 30px;
  height: auto !important;
}
.spacer20 {
  padding-top: 20px;
  height: auto !important;
}
.spacer10 {
  padding-top: 10px;
  height: auto !important;
}
.mrb20 {
  margin-bottom: 20px;
}


em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 70%, var(--bkBlue) 0%);
  display: inline;
  padding: 0 1px 0px;
}

header {}
header .inner {
  padding: 30px 30px 30px 30px;
  position: relative;
  background: var(--bkBlue);
}
header .inner .logoBox {
  width: 406px;
  margin: 0;
}
header .inner .head_cvBox {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: flex-end;
}
header .inner .head_cvBox .timetable a,
header .inner .head_cvBox .calendar a {
  color: var(--blue);
  padding: 15px 20px;
  display: block;
  margin-left: 0;
  margin-bottom: 5px;
}
header .inner .head_cvBox .timetable a .icon,
header .inner .head_cvBox .calendar a .icon {
  fill: var(--blue);
  width: 16px;
  vertical-align: -2px;
}
header .inner .head_cvBox .entry a {
  color: #fff;
  background: var(--lightBlue);
  padding: 15px 40px;
  display: block;
  margin-left: 10px;
  margin-bottom: 5px;
  border-radius: 30px;
}
header .inner .head_cvBox .entry a .icon {
  fill: #fff;
  width: 18px;
  margin-left: 2px;
  vertical-align: -2px;
}
header .inner .head_cvBox .contact a {
  color: #fff;
  background: var(--blue);
  padding: 15px 40px;
  display: block;
  margin-left: 15px;
  margin-bottom: 5px;
  border-radius: 30px;
}
header .inner .head_cvBox .contact a .icon {
  stroke: #fff;
  width: 16px;
  margin-left: 2px;
  vertical-align: -1px;
}

header .inner .head_cvBox a[target="_blank"] {
  display: block;
  position: relative;
  border-bottom: none;
}
header .inner .head_cvBox a[target="_blank"]:after {
  content: none;
}
header .inner .head_cvBox a[target="_blank"]:hover {
  outline: none;
  text-decoration: none;
  border-bottom: none;
}

.waveBox {
  width: 100%;
  height: 14px;
  background-image: url('../img/common/bg_wave.svg');
  background-size: contain; /* 画像を全体にフィット */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返しを防止 */
}
.waveBox.reverse {
  transform: rotate(180deg);
}

.gnavArea {}
.gnavArea .inner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 20px auto;
}
.lower .gnavArea .inner {
  margin: 0 auto 40px;
}
.gnavArea .inner .gavMenu {
  text-align: center;
}
.gnavArea .inner .gavMenu li {
  display: inline;
}
.gnavArea .inner .gavMenu li a {
  display: inline-block;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}
.gnavArea .inner .gavMenu li a.top {
  letter-spacing: 5px;
}


.kvArea {}
.kvArea .inner {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 70px;
}
.kvArea .inner div a {
  display: block;
  position: relative;
}
.kvArea .inner div a .term {
  position: absolute;
  bottom: 150px;
  right: 90px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.kvArea .inner div a .period {
  position: absolute;
  left: 300px;
  bottom: 70px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #FFFF00;
  border-radius: 6px;
  line-height: 1;
  padding: 4px 12px 8px;
  color: #FFFF00;
}
.kvArea .inner div a .period span {
  font-size: 30px;
}

.kvArea_lower {}
.kvArea_lower .inner {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 70px;
}



.informationArea {}
.informationArea .inner {
  max-width: 840px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.informationArea .inner dl {
  display: flex;
  flex-wrap: wrap;
}
.informationArea .inner dl dt {
  width: 150px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.informationArea .inner dl dd {
  width: calc(100% - 150px);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.informationArea .inner dl dt,
.informationArea .inner dl dd {
  background-image: radial-gradient(circle, #0090ff 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 3px;
}


.informationArea .inner dl dd a {
}
.informationArea .inner dl dd a:hover {
}


.suggArea {}
.suggArea .inner {
  max-width: 1240px;
  width: 100%;
  padding: 100px 20px 80px;
  margin: 0 auto 100px;
}
.suggArea .inner .imgBox {
  position: relative;
  width: 700px;
  margin: 0 auto;
}
.suggArea .inner .imgBox .img_01 {
  position: absolute;
  left: -220px;
  top: -260px;
  width: 200px;
}
.suggArea .inner .imgBox .img_02 {
  position: absolute;
  left: -360px;
  top: -70px;
  width: 242px;
}
.suggArea .inner .imgBox .img_03 {
  position: absolute;
  right: -360px;
  top: -210px;
  width: 360px;
}
.suggArea .inner .imgBox .img_01:after {
  content: "";
  position: absolute;
  left: -200px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background: var(--bkBlue);
  display: block;
  z-index: -1;
}
.suggArea .inner .imgBox .img_02:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background: var(--bkBlue);
  display: block;
  z-index: -1;
}
.suggArea .inner .imgBox .img_03:before {
  content: "";
  position: absolute;
  right: -50px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background: var(--bkBlue);
  display: block;
  z-index: -1;
}
.suggArea .inner .imgBox .img_03:after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -70px;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background: var(--bkBlue);
  display: block;
  z-index: -1;
}


.featuresArea {
  background: var(--bkBlue);
}
.featuresArea .inner {
  max-width: 1440px;
  width: 100%;
  padding: 80px 20px 100px;
  margin: 0 auto;
}
.featuresArea .inner .featuresBox {
  display: flex;
  justify-content: space-around;
}
.featuresArea .inner .featuresBox .features_03,
.featuresArea .inner .featuresBox .features_02,
.featuresArea .inner .featuresBox .features_01 {
  width: 400px;
  height: 400px;
  border-radius: 200px;
  background: #fff;
  text-align: center;
}
.featuresArea .inner .featuresBox .features_01 {
  padding-top: 140px;
}
.featuresArea .inner .featuresBox .features_02 {
  padding-top: 140px;
}
.featuresArea .inner .featuresBox .features_03 {
  padding-top: 110px;
}
.featuresArea .inner .featuresBox h3 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  position: relative;
  margin-bottom: 5px;
}
.featuresArea .inner .featuresBox h3 span.fukidashi {
  position: absolute;
  left: 0;
  right: 0;
  top: -65px;
  display: inline-block;
  background: var(--lightBlue);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  padding: 10px 20px 16px;
  border-radius: 30px;
  margin: auto;
  max-width: 130px;
  letter-spacing: 3px;
}
.featuresArea .inner .featuresBox h3 span.fukidashi > span {
  font-size: 26px;
  vertical-align: -1px;
}
.featuresArea .inner .featuresBox h3 span.fukidashi:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--lightBlue);
  border-bottom: 0;
}
.featuresArea .inner .featuresBox .features_03 .features_03_detail {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox01 {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #FFFF00;
  font-size: 13px;
  line-height: 1.2;
  padding-top: 18px;
}
.featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox02 {
  padding-left: 10px;
  line-height: 1.4;
}

.courseArea {}
.courseArea .inner {
  max-width: 1440px;
  width: 100%;
  padding: 80px 20px 100px;
  margin: 0 auto;
}
.courseArea .inner .courseBox {
  display: flex;
  margin-bottom: 100px;
}
.courseArea .inner .courseBox.reverse {
  flex-direction: row-reverse;
}
.courseArea .inner .courseBox .course_img {
  width: 560px;
}
.courseArea .inner .courseBox .course_text {
  width: calc(100% - 560px);
  padding-left: 50px;
}
.courseArea .inner .courseBox.reverse .course_text {
  padding-left: 0;
  padding-right: 50px;
}
.courseArea .inner .courseBox .course_text h3 {
  font-size: 32px;
  font-weight: 900;
  color: #FF72B1;
  position: relative;
  display: inline-block;
  margin: 30px 0 60px;
}
.courseArea .inner .courseBox .course_text h3 div {
  width: 120px;
  height: 120px;
  text-align: center;
  padding-top: 40px;
  position: absolute;
  right: -140px;
  top: -30px;
  font-size: 13px;
  background: #FFEEF6;
  border-radius: 60px;
}
.courseArea .inner .courseBox .course_text h3 div:after {
  content: "";
  width: 40px;
  height: 40px;
  background: #FF72B1;
  opacity: .1;
  border-radius: 20px;
  display: block;
  position: absolute;
  left: -10px;
  bottom: -10px;
}
.courseArea .inner .courseBox.course02 .course_text h3 {
  color: #00C568;
}
.courseArea .inner .courseBox.course02 .course_text h3 div {
  background: #D9FEE2;
  padding-top: 50px;
}
.courseArea .inner .courseBox.course02 .course_text h3 div:after {
  background: #00C568;
}
.courseArea .inner .courseBox.course03 .course_text h3 {
  color: #915BED;
}
.courseArea .inner .courseBox.course03 .course_text h3 div {
  background: #F0E7FF;
  padding-top: 25px;
}
.courseArea .inner .courseBox.course03 .course_text h3 div:after {
  background: #915BED;
}

.courseArea .inner .courseBox .course_text h4 {
  font-size: 24px;
  font-weight: 900;
  color: #FF72B1;
  position: relative;
}
.courseArea .inner .courseBox .course_text h4 span {
  font-size: 18px;
}
.courseArea .inner .courseBox .course_text p {
  margin-bottom: 30px;
}
.courseArea .inner .courseBox.course02 .course_text h4 {
  color: #00C568;
}
.courseArea .inner .courseBox.course03 .course_text h4 {
  color: #915BED;
}


.feeArea {
  background: var(--bkBlue);
}
.feeArea .inner {
  max-width: 1440px;
  width: 100%;
  padding: 80px 20px 100px;
  margin: 0 auto;
}
.feeArea .inner .entryFeeBox {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  font-weight: 900;
  border-radius: 40px;
  margin-bottom: 50px;
}
.feeArea .inner .entryFeeBox h3 {
  font-size: 32px;
  color: var(--lightBlue);
  margin-right: 20px;
}
.feeArea .inner .entryFeeBox div {
  font-size: 32px;
  margin-left: 20px;
}
.feeArea .inner .entryFeeBox div span {
  font-size: 20px;
}
.feeArea .inner .feeBox {
  display: flex;
  justify-content: space-between;
}
.feeArea .inner .feeBox .course {
  width: calc((100% / 3) - 34px );
  background: #fff;
  border-radius: 40px;
  padding: 30px 0 30px 50px;
  font-weight: 900;
}
.feeArea .inner .feeBox .course h3 {
  font-size: 32px;
  color: #FF72B1;
  margin-bottom: 20px;
}
.feeArea .inner .feeBox .course h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.feeArea .inner .feeBox .course .feeDl {
  display: flex;
  flex-wrap: wrap;
}
.feeArea .inner .feeBox .course .feeDl dt {
  color: #FF72B1;
  width: calc((100% / 2) - 30px);
  font-size: 18px;
  margin-bottom: 20px;
}
.feeArea .inner .feeBox .course .feeDl dt span {
  display: block;
  text-align: center;
  padding: 5px 0 7px;
  border: 2px solid #FF72B1;
  border-radius: 24px;
  line-height: 1;
}
.feeArea .inner .feeBox .course .feeDl dd {
  width: calc((100% / 2) + 30px);
  font-size: 30px;
  padding-left: 15px;
  line-height: 1;
  margin-bottom: 20px;
}

.feeArea .inner .feeBox .course.course02 h3 {
  color: #00C568;
}
.feeArea .inner .feeBox .course.course03 h3 {
  color: #915BED;
}
.feeArea .inner .feeBox .course.course02 .feeDl dt {
  color: #00C568;
}
.feeArea .inner .feeBox .course.course03 .feeDl dt {
  color: #915BED;
}
.feeArea .inner .feeBox .course.course02 .feeDl dt span {
  border: 2px solid #00C568;
}
.feeArea .inner .feeBox .course.course03 .feeDl dt span {
  border: 2px solid #915BED;
}

.accessArea {}
.accessArea .inner {
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 100px auto;
}
.accessArea .inner .accessBox {
  display: flex;
  font-size: 14px;
}
.accessArea .inner .accessBox .text {
  width: 400px;
}
.accessArea .inner .accessBox .text .address {
  margin-bottom: 10px;
}
.accessArea .inner .accessBox .text .tel {}
.accessArea .inner .accessBox .text .tel span {
  display: inline-block;
  vertical-align: top;
}
.accessArea .inner .accessBox .text .movie a {
  display: inline-block;
  padding: 15px 50px;
  background: #FFFF00;
  border-radius: 30px;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}
.accessArea .inner .accessBox .text .movie a svg {
  width: 16px;
  fill: var(--blue);
  vertical-align: -2px;
}
.accessArea .inner .accessBox .text .movie a[target="_blank"] {
  position: relative;
  border-bottom: none;
}
.accessArea .inner .accessBox .text .movie a[target="_blank"]:after {
  content: none;
}
.accessArea .inner .accessBox .text .movie a[target="_blank"]:hover {
  outline: none;
  text-decoration: none;
  border-bottom: none;
}

.accessArea .inner .accessBox .map {
  width: calc(100% - 400px);
}
.accessArea .inner .accessBox .map iframe {
  width: 100%;
  height: 300px;
  border-radius: 30px;
}

/* 共通パーツ */

.lowerArea .inner h2,
.accessArea .inner h2,
.featuresArea .inner h2,
.feeArea .inner h2,
.suggArea .inner h2,
.courseArea .inner h2,
.informationArea .inner h2 {
  position: relative;
  color: var(--blue);
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 80px 0;
}
.lowerArea .inner h2 span.mainText,
.accessArea .inner h2 span.mainText,
.featuresArea .inner h2 span.mainText,
.feeArea .inner h2 span.mainText,
.suggArea .inner h2 span.mainText,
.courseArea .inner h2 span.mainText,
.informationArea .inner h2 span.mainText {
  position: relative;
  z-index: 2;
}
.lowerArea .inner h2 span.subText,
.accessArea .inner h2 span.subText,
.featuresArea .inner h2 span.subText,
.feeArea .inner h2 span.subText,
.suggArea .inner h2 span.subText,
.courseArea .inner h2 span.subText,
.informationArea .inner h2 span.subText {
  position: absolute;
  color: var(--lightBlue);
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
}

/* //共通パーツ */




.footerArea {
  position: relative;
  background: var(--bkBlue);
}
.footerArea .inner {
  max-width: 1440px;
  width: 100%;
  padding: 80px 20px 60px;
  margin: 0 auto;
}
.footerArea .inner .column_2 {
  display: flex;
}
.footerArea .inner .column_2 .leftBox {
  width: calc(100% - 400px);
  display: flex;
}
.footerArea .inner .column_2 .leftBox .menuList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  margin: 10px 0 50px;
  max-width: 500px;
  width: 100%;
}
.footerArea .inner .column_2 .leftBox .menuList li {
  margin-bottom: 0;
}
.footerArea .inner .column_2 .leftBox .menuList li a .icon {
  fill: var(--blue);
  width: 16px;
  vertical-align: -2px;
}
.footerArea .inner .column_2 .leftBox .cvBox {
  position: relative;
  width: 200px;
  text-align: center;
}
.footerArea .inner .column_2 .leftBox .cvBox .entry a {
  color: #fff;
  background: var(--lightBlue);
  padding: 15px 10px;
  display: block;
  margin-bottom: 10px;
  border-radius: 30px;
}
.footerArea .inner .column_2 .leftBox .cvBox .entry a .icon {
  fill: #fff;
  width: 20px;
  vertical-align: -2px;
}
.footerArea .inner .column_2 .leftBox .cvBox .contact a {
  color: #fff;
  background: var(--blue);
  padding: 15px 10px;
  display: block;
  margin-bottom: 5px;
  border-radius: 30px;
}
.footerArea .inner .column_2 .leftBox .cvBox .contact a .icon {
  stroke: #fff;
  width: 16px;
  vertical-align: -2px;
}

.footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"] {
  display: block;
  position: relative;
  border-bottom: none;
}
.footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:after {
  content: none;
}
.footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:hover {
  outline: none;
  text-decoration: none;
  border-bottom: none;
}

.footerArea .inner .column_2 .rightBox {
  width: 400px;
}
.footerArea .inner .column_2 .rightBox .img {
  width: 100%;
  margin-bottom: 10px;
}
.footerArea .inner .column_2 .rightBox .text {
  width: 100%;
  font-size: 14px;
}
.footerArea .inner .column_2 .rightBox .text span {
  display: inline-block;
  vertical-align: top;
}




.copylightArea {
  width: 100%;
  background: var(--lightBlue);
  padding: 40px 0 20px;
  margin-top: -20px;
  position: relative;
  z-index: -1;
}
.copylightArea .inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.hamMenuModal {
  display: none;
}

.cvBox_side {
  position: fixed;
  right: -50vw;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}
.cvBox_side a {
  position: absolute;
  right: 0;
  top: 32vh;
  display: block;
  text-align: center;
  padding-top: 60px;
  color: #fff;
  background: var(--pink);
  width: 160px;
  height: 160px;
  border-radius: 80px;
  font-size: 22px;
  line-height: 1.5;
  pointer-events: initial;
}

.cvBox_side .icon {
  stroke: #fff;
  width: 30px;
  height: 30px;
  vertical-align: 0;
  position: absolute;
  right: 0;
  left: 0;
  top: 30px;
  margin: auto;
}

.cvBox_side a[target="_blank"] {
  display: block;
  position: relative;
  border-bottom: none;
}
.cvBox_side a[target="_blank"]:after {
  content: none;
}
.cvBox_side a[target="_blank"]:hover {
  outline: none;
  text-decoration: none;
  border-bottom: none;
}





.lowerArea {}
.lowerArea .inner {
  max-width: 840px;
  width: 100%;
  font-size: 18px;
}
.lowerArea.lowerArea_type01 {}
.lowerArea.lowerArea_type01 .inner {
  padding: 50px 20px 100px;
  margin: 0 auto;
}
.lowerArea.lowerArea_type02 {
  background: var(--bkBlue);
}
.lowerArea.lowerArea_type02 .inner {
  padding: 100px 20px;
  margin: 0 auto;
}

.lowerArea.lowerArea_type02 .inner h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto 20px;
  text-align: center;
}
.lowerArea.lowerArea_type02 .inner .list_square {
  display: flex;
  flex-wrap: wrap;
}
.lowerArea.lowerArea_type02 .inner .list_square li {
  width: calc(100% / 3);
  margin-bottom: 20px;
}
.lowerArea.lowerArea_type02 .inner .note {
  font-size: 16px;
}

.lowerArea.lowerArea_type03 {}
.lowerArea.lowerArea_type03 .inner {
  max-width: 1040px;
  width: 100%;
  padding: 50px 20px 100px;
  margin: 0 auto;
}
.lowerArea.lowerArea_type03 .inner h2 {
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin: 130px auto 50px;
  background: var(--blue);
  width: 400px;
  padding: 20px 0 22px;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  border-radius: 40px;
  position: relative;
}
.lowerArea.lowerArea_type03 .inner h2:after {
  content: "";
  display: block;
  background: var(--blue);
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  transform: rotate(45deg) skew(80deg, 80deg);
  margin: auto;
  z-index: 1;
}
.lowerArea.lowerArea_type03 .inner h2 span {
  position: relative;
  z-index: 2;
}
.lowerArea.lowerArea_type03 .inner h2 .text-sub {
  font-size: 24px;
}

.lowerArea.lowerArea_type03 .inner .faqList {
  padding: 50px 60px 0 60px;
}
.lowerArea.lowerArea_type03 .inner .faqList dt {
  color: var(--blue);
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
  font-size: 24px;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lowerArea.lowerArea_type03 .inner .faqList dd {
  border-bottom: 5px dotted #ff72b1;
  position: relative;
  color: var(--lightBlue);
  padding-left: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  font-size: 20px;
}
.lowerArea.lowerArea_type03 .inner .faqList dd {
  border-bottom: 5px dotted var(--lightBlue);
}
.lowerArea.lowerArea_type03 .inner .faqList dd:last-child {
  border-bottom: none;
}
.lowerArea.lowerArea_type03 .inner .faqList dt:before,
.lowerArea.lowerArea_type03 .inner .faqList dd:before {
  content: "Q";
  font-size: 30px;
  line-height: 1.8;
  color: #fff;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: -10px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.lowerArea.lowerArea_type03 .inner .faqList dd:before {
  content: "A";
  background: var(--lightBlue);
}



/* PC,SP切り替え
------------------------------------------------------------*/
.pc-on {
  display: block !important;
}

.pc-on-inlineblock {
  display: inline-block !important;
}
.pc-on-inline {
  display: inline !important;
}
.pc-on-flex {
  display: flex !important;
}

.sp-on {
  display: none !important;
}

.sp-on-inlineblock {
  display: none !important;
}
.sp-on-inline {
  display: none !important;
}

.sp_cvArea { 
  display: none;
}
.sp_followMenu {
  display: none;
}


/* PC　狭めたとき
-----------------------------------------------*/
@media screen and (max-width:1440px) {


  body {
    font-size: 1.1vw;
    line-height: 1.8;
    letter-spacing: 1px;
    overflow-x: hidden;
  }


  a[target="_blank"]:after {
    content: "";
    display: block;
    width: 1.1vw;
    height: 1.1vw;
    position: absolute;
    bottom: .5vw;
    right: -1.5vw;
    background-image: url('../img/icon_blank.svg');
    background-size: cover; /* 画像を全体にフィット */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }


  .text-small {
    font-size: .9vw;
    line-height: 1.6;
  }
  .text-medium {
    font-size: 1.4vw;
    line-height: 1.6;
  }


  .table_type01 {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 3vw;
  }
  .table_type01 th,
  .table_type01 td {
    border: 1px solid #333;
    padding: 1.5rem 1rem;
    vertical-align: middle;
    word-break: break-word;
  }

  .list_square {
    margin: 0 0 1.5vw 0;
  }
  .list_square li {
    position: relative;
    padding: 0 0 0 1.5vw;
    display: block;
    margin: 0 0 0 0;
    line-height: 1.8;
    vertical-align: top;
  }
  .list_square li:before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 1.1vw;
    height: 1.1vw;
    display: block;
    background: var(--blue);
  }
  .list_square li a {
    color: var(--blue);
  }
  .list_square li a:hover {
    color: var(--blue);
  }


  .spacer100 {
    padding-top: 10vw;
    height: auto !important;
  }
  .spacer90 {
    padding-top: 9vw;
    height: auto !important;
  }
  .spacer80 {
    padding-top: 8vw;
    height: auto !important;
  }
  .spacer70 {
    padding-top: 7vw;
    height: auto !important;
  }
  .spacer60 {
    padding-top: 6vw;
    height: auto !important;
  }
  .spacer50 {
    padding-top: 5vw;
    height: auto !important;
  }
  .spacer40 {
    padding-top: 4vw;
    height: auto !important;
  }
  .spacer30 {
    padding-top: 3vw;
    height: auto !important;
  }
  .spacer20 {
    padding-top: 2vw;
    height: auto !important;
  }
  .spacer10 {
    padding-top: 1vw;
    height: auto !important;
  }

  .mrb20 {
    margin-bottom: 1.5vw;
  }


  header {}
  header .inner {
    padding: 2vw;
    position: relative;
    background: var(--bkBlue);
  }
  header .inner .logoBox {
    width: 27vw;
    margin: 0;
  }
  header .inner .head_cvBox {
    position: absolute;
    right: 1.4vw;
    top: 1.4vw;
    display: flex;
    align-items: flex-end;
  }
  header .inner .head_cvBox .timetable a,
  header .inner .head_cvBox .calendar a {
    color: var(--blue);
    padding: 1vw 1.4vw;
    display: block;
    margin-left: 0;
    margin-bottom: 5px;
  }
  header .inner .head_cvBox .timetable a .icon,
  header .inner .head_cvBox .calendar a .icon {
    fill: var(--blue);
    width: 1.1vw;
    vertical-align: -2px;
  }
  header .inner .head_cvBox .entry a {
    color: #fff;
    background: var(--lightBlue);
    padding: 1vw 2.7vw;
    display: block;
    margin-left: .7vw;
    margin-bottom: 5px;
    border-radius: 2vw;
  }
  header .inner .head_cvBox .entry a .icon {
    fill: #fff;
    width: 1.2vw;
    margin-left: 2px;
    vertical-align: -2px;
  }
  header .inner .head_cvBox .contact a {
    color: #fff;
    background: var(--blue);
    padding: 1vw 2.7vw;
    display: block;
    margin-left: 1vw;
    margin-bottom: 5px;
    border-radius: 2vw;
  }
  header .inner .head_cvBox .contact a .icon {
    stroke: #fff;
    width: 1.1vw;
    margin-left: 2px;
    vertical-align: -1px;
  }

  header .inner .head_cvBox a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  header .inner .head_cvBox a[target="_blank"]:after {
    content: none;
  }
  header .inner .head_cvBox a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }

  .waveBox {
    width: 100%;
    height: .95vw;
    background-image: url('../img/common/bg_wave.svg');
    background-size: contain; /* 画像を全体にフィット */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
  .waveBox.reverse {
    transform: rotate(180deg);
  }

  .gnavArea {}
  .gnavArea .inner {
    max-width: 1240px;
    width: 100%;
    padding: 0 2vw;
    margin: 1.4vw auto;
  }
  .lower .gnavArea .inner {
    margin: 0 auto 2.7vw;
  }
  .gnavArea .inner .gavMenu {
    text-align: center;
  }
  .gnavArea .inner .gavMenu li {
    display: inline;
  }
  .gnavArea .inner .gavMenu li a {
    display: inline-block;
    padding: .7vw 2.7vw;
    font-size: 1.2vw;
    font-weight: 700;
    color: var(--blue);
  }
  .gnavArea .inner .gavMenu li a.top {
    letter-spacing: 5px;
  }


  .kvArea {}
  .kvArea .inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    margin: 0 auto 4.8vw;
  }
  .kvArea .inner div a {
    display: block;
    position: relative;
  }
  .kvArea .inner div a .term {
    position: absolute;
    bottom: 10vw;
    right: 6vw;
    color: #fff;
    text-align: center;
    font-weight: 700;
  }
  .kvArea .inner div a .period {
    position: absolute;
    left: 20vw;
    bottom: 4.8vw;
    font-size: 1.4vw;
    font-weight: 700;
    color: #fff;
    border: 2px solid #FFFF00;
    border-radius: 6px;
    line-height: 1;
    padding: .26vw .8vw .5vw;
    color: #FFFF00;
  }
  .kvArea .inner div a .period span {
    font-size: 2vw;

  }


  .kvArea_lower {}
  .kvArea_lower .inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    margin: 0 auto 7vw;
  }


  .informationArea {}
  .informationArea .inner {
    max-width: 840px;
    width: 100%;
    padding: 0 2vw;
    margin: 0 auto;
  }
  .informationArea .inner dl {
    display: flex;
    flex-wrap: wrap;
  }
  .informationArea .inner dl dt {
    width: 10vw;
    margin-bottom: 2vw;
    padding-bottom: 2vw;
  }
  .informationArea .inner dl dd {
    width: calc(100% - 10vw);
    margin-bottom: 2vw;
    padding-bottom: 2vw;
  }

  .informationArea .inner dl dt,
  .informationArea .inner dl dd {
    background-image: radial-gradient(circle, #0090ff 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 3px;
  }


  .informationArea .inner dl dd a {
  }
  .informationArea .inner dl dd a:hover {
  }


  .suggArea {}
  .suggArea .inner {
    max-width: 1240px;
    width: 100%;
    padding: 3.5vw 2vw 5.5vw;
    margin: 0 auto 3.5vw;
  }
  .suggArea .inner .imgBox {
    position: relative;
    width: 46.6vw;
    margin: 0 auto;
  }
  .suggArea .inner .imgBox .img_01 {
    position: absolute;
    left: -14.6vw;
    top: -17.3vw;
    width: 14vw;
  }
  .suggArea .inner .imgBox .img_02 {
    position: absolute;
    left: -24vw;
    top: -4.8vw;
    width: 16vw;
  }
  .suggArea .inner .imgBox .img_03 {
    position: absolute;
    right: -24vw;
    top: -14vw;
    width: 24vw;
  }
  .suggArea .inner .imgBox .img_01:after {
    content: "";
    position: absolute;
    left: -14vw;
    bottom: .7vw;
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 2.4vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }
  .suggArea .inner .imgBox .img_02:after {
    content: "";
    position: absolute;
    right: -4vw;
    bottom: -3.5vw;
    width: 9.3vw;
    height: 9.3vw;
    border-radius: 4.8vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }
  .suggArea .inner .imgBox .img_03:before {
    content: "";
    position: absolute;
    right: -3.5vw;
    top: -2.7vw;
    width: 9.3vw;
    height: 9.3vw;
    border-radius: 4.8vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }
  .suggArea .inner .imgBox .img_03:after {
    content: "";
    position: absolute;
    left: 1.4vw;
    bottom: -4.8vw;
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 2.4vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }


  .featuresArea {
    background: var(--bkBlue);
  }
  .featuresArea .inner {
    max-width: 1440px;
    width: 100%;
    padding: 5.5vw 2vw 3.5vw;
    margin: 0 auto;
  }
  .featuresArea .inner .featuresBox {
    display: flex;
    justify-content: space-around;
  }
  .featuresArea .inner .featuresBox .features_03,
  .featuresArea .inner .featuresBox .features_02,
  .featuresArea .inner .featuresBox .features_01 {
    width: 26.5vw;
    height: 26.5vw;
    border-radius: 14vw;
    background: #fff;
    text-align: center;
  }
  .featuresArea .inner .featuresBox .features_01 {
    padding-top: 9.3vw;
  }
  .featuresArea .inner .featuresBox .features_02 {
    padding-top: 9.3vw;
  }
  .featuresArea .inner .featuresBox .features_03 {
    padding-top: 6.8vw;
    font-size: 1vw;
  }
  .featuresArea .inner .featuresBox h3 {
    color: var(--blue);
    font-size: 1.6vw;
    font-weight: 700;
    position: relative;
    margin-bottom: 5px;
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi {
    position: absolute;
    left: 0;
    right: 0;
    top: -5vw;
    display: inline-block;
    background: var(--lightBlue);
    color: #ffffff;
    font-size: 1.4vw;
    line-height: 1;
    padding: .7vw 1.4vw 1.1vw;
    border-radius: 2vw;
    margin: auto;
    max-width: 8.6vw;
    letter-spacing: 3px;
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi > span {
    font-size: 1.7vw;
    vertical-align: -1px;
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.7vw;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-left: .5vw solid transparent;
    border-right: .5vw solid transparent;
    border-top: .7vw solid var(--lightBlue);
    border-bottom: 0;
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail {
    display: flex;
    justify-content: center;
    margin-top: 1vw;
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox01 {
    width: 5.5vw;
    height: 5.5vw;
    border-radius: 2.7vw;
    background: #FFFF00;
    font-size: .86vw;
    line-height: 1.2;
    padding-top: 1.2vw;
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox02 {
    padding-left: .7vw;
    line-height: 1.4;
  }

  .courseArea {}
  .courseArea .inner {
    max-width: 1440px;
    width: 100%;
    padding: 5.5vw 2vw 3.5vw;
    margin: 0 auto;
  }
  .courseArea .inner .courseBox {
    display: flex;
    margin-bottom: 3.5vw;
  }
  .courseArea .inner .courseBox.reverse {
    flex-direction: row-reverse;
  }
  .courseArea .inner .courseBox .course_img {
    width: 37vw;
  }
  .courseArea .inner .courseBox .course_text {
    width: calc(100% - 37vw);
    padding-left: 3.5vw;
  }
  .courseArea .inner .courseBox.reverse .course_text {
    padding-left: 0;
    padding-right: 3.5vw;
  }
  .courseArea .inner .courseBox .course_text h3 {
    font-size: 2.1vw;
    font-weight: 900;
    color: #FF72B1;
    position: relative;
    display: inline-block;
    margin: 2vw 0 4vw;
  }
  .courseArea .inner .courseBox .course_text h3 div {
    width: 8vw;
    height: 8vw;
    text-align: center;
    padding-top: 2.7vw;
    position: absolute;
    right: -9.3vw;
    top: -2vw;
    font-size: .86vw;
    background: #FFEEF6;
    border-radius: 4vw;
  }
  .courseArea .inner .courseBox .course_text h3 div:after {
    content: "";
    width: 2.7vw;
    height: 2.7vw;
    background: #FF72B1;
    opacity: .1;
    border-radius: 1.4vw;
    display: block;
    position: absolute;
    left: -.7vw;
    bottom: -.7vw;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 {
    color: #00C568;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 div {
    background: #D9FEE2;
    padding-top: 3.5vw;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 div:after {
    background: #00C568;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 {
    color: #915BED;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 div {
    background: #F0E7FF;
    padding-top: 1.8vw;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 div:after {
    background: #915BED;
  }

  .courseArea .inner .courseBox .course_text h4 {
    font-size: 1.6vw;
    font-weight: 900;
    color: #FF72B1;
    position: relative;
  }
  .courseArea .inner .courseBox .course_text h4 span {
    font-size: 1.2vw;
  }
  .courseArea .inner .courseBox .course_text p {
    margin-bottom: 2vw;
  }
  .courseArea .inner .courseBox.course02 .course_text h4 {
    color: #00C568;
  }
  .courseArea .inner .courseBox.course03 .course_text h4 {
    color: #915BED;
  }


  .feeArea {
    background: var(--bkBlue);
  }
  .feeArea .inner {
    max-width: 1440px;
    width: 100%;
    padding: 5.5vw 2vw 3.5vw;
    margin: 0 auto;
  }
  .feeArea .inner .entryFeeBox {
    background: #fff;
    padding: 1.4vw;
    display: flex;
    justify-content: center;
    font-weight: 900;
    border-radius: 2.7vw;
    margin-bottom: 3.5vw;
  }
  .feeArea .inner .entryFeeBox h3 {
    font-size: 2.1vw;
    color: var(--lightBlue);
    margin-right: 1.4vw;
  }
  .feeArea .inner .entryFeeBox div {
    font-size: 2.1vw;
    margin-left: 1.4vw;
  }
  .feeArea .inner .entryFeeBox div span {
    font-size: 1.4vw;
  }
  .feeArea .inner .feeBox {
    display: flex;
    justify-content: space-between;
  }
  .feeArea .inner .feeBox .course {
    width: calc((100% / 3) - 2.2vw );
    background: #fff;
    border-radius: 2.7vw;
    padding: 2vw 0 2vw 3.5vw;
    font-weight: 900;
  }
  .feeArea .inner .feeBox .course h3 {
    font-size: 2.1vw;
    color: #FF72B1;
    margin-bottom: 1.4vw;
  }
  .feeArea .inner .feeBox .course h4 {
    font-size: 1.4vw;
    margin-bottom: .7vw;
  }
  .feeArea .inner .feeBox .course .feeDl {
    display: flex;
    flex-wrap: wrap;
  }
  .feeArea .inner .feeBox .course .feeDl dt {
    color: #FF72B1;
    width: calc((100% / 2) - 2vw);
    font-size: 1.2vw;
    margin-bottom: 1.4vw;
  }
  .feeArea .inner .feeBox .course .feeDl dt span {
    display: block;
    text-align: center;
    padding: 5px 0 7px;
    border: 2px solid #FF72B1;
    border-radius: 1.6vw;
    line-height: 1;
  }
  .feeArea .inner .feeBox .course .feeDl dd {
    width: calc((100% / 2) + 2vw);
    font-size: 2vw;
    padding-left: 1vw;
    line-height: 1;
    margin-bottom: 1.4vw;
  }

  .feeArea .inner .feeBox .course.course02 h3 {
    color: #00C568;
  }
  .feeArea .inner .feeBox .course.course03 h3 {
    color: #915BED;
  }
  .feeArea .inner .feeBox .course.course02 .feeDl dt {
    color: #00C568;
  }
  .feeArea .inner .feeBox .course.course03 .feeDl dt {
    color: #915BED;
  }
  .feeArea .inner .feeBox .course.course02 .feeDl dt span {
    border: 2px solid #00C568;
  }
  .feeArea .inner .feeBox .course.course03 .feeDl dt span {
    border: 2px solid #915BED;
  }

  .accessArea {}
  .accessArea .inner {
    max-width: 1140px;
    width: 100%;
    padding: 0 2vw;
    margin: 3.5vw auto;
  }
  .accessArea .inner .accessBox {
    display: flex;
    font-size: .95vw;
  }
  .accessArea .inner .accessBox .text {
    width: 26.5vw;
  }
  .accessArea .inner .accessBox .text .address {
    margin-bottom: .7vw;
  }
  .accessArea .inner .accessBox .text .tel {}
  .accessArea .inner .accessBox .text .tel span {
    display: inline-block;
    vertical-align: top;
  }
  .accessArea .inner .accessBox .text .movie a {
    display: inline-block;
    padding: 1vw 3.5vw;
    background: #FFFF00;
    border-radius: 2vw;
    text-align: center;
    margin-top: 1.4vw;
    font-size: 1.1vw;
  }
  .accessArea .inner .accessBox .text .movie a svg {
    width: 1.1vw;
    fill: var(--blue);
    vertical-align: -2px;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"] {
    position: relative;
    border-bottom: none;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"]:after {
    content: none;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }

  .accessArea .inner .accessBox .map {
    width: calc(100% - 26.5vw);
  }
  .accessArea .inner .accessBox .map iframe {
    width: 100%;
    height: 30vw;
    border-radius: 2vw;
  }

  /* 共通パーツ */

  .lowerArea .inner h2,
  .accessArea .inner h2,
  .featuresArea .inner h2,
  .feeArea .inner h2,
  .suggArea .inner h2,
  .courseArea .inner h2,
  .informationArea .inner h2 {
    position: relative;
    color: var(--blue);
    font-size: 2.8vw;
    font-weight: 700;
    text-align: center;
    margin: 0 0 5.5vw 0;
  }
  .lowerArea .inner h2, span.mainText,
  .accessArea .inner h2 span.mainText,
  .featuresArea .inner h2 span.mainText,
  .feeArea .inner h2 span.mainText,
  .suggArea .inner h2 span.mainText,
  .courseArea .inner h2 span.mainText,
  .informationArea .inner h2 span.mainText {
    position: relative;
    z-index: 2;
  }
  .lowerArea .inner h2 span.subText,
  .accessArea .inner h2 span.subText,
  .featuresArea .inner h2 span.subText,
  .feeArea .inner h2 span.subText,
  .suggArea .inner h2 span.subText,
  .courseArea .inner h2 span.subText,
  .informationArea .inner h2 span.subText {
    position: absolute;
    color: var(--lightBlue);
    font-size: 1.4vw;
    font-weight: 500;
    z-index: 1;
    bottom: -2.7vw;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
  }

  /* //共通パーツ */




  .footerArea {
    position: relative;
    background: var(--bkBlue);
  }
  .footerArea .inner {
    max-width: 1440px;
    width: 100%;
    padding: 5.5vw 2vw 3.5vw;
    margin: 0 auto;
  }
  .footerArea .inner .column_2 {
    display: flex;
  }
  .footerArea .inner .column_2 .leftBox {
    width: calc(100% - 26.5vw);
    display: flex;
  }
  .footerArea .inner .column_2 .leftBox .menuList {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    margin: .7vw 0 3.5vw;
    max-width: 500px;
    width: 38vw;
  }
  .footerArea .inner .column_2 .leftBox .menuList li {
    margin-bottom: 0;
  }
  .footerArea .inner .column_2 .leftBox .menuList li a .icon {
    fill: var(--blue);
    width: 1.1vw;
    vertical-align: -2px;
  }
  .footerArea .inner .column_2 .leftBox .cvBox {
    position: relative;
    width: 20vw;
    text-align: center;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .entry a {
    color: #fff;
    background: var(--lightBlue);
    padding: 1vw .7vw;
    display: block;
    margin-bottom: .7vw;
    border-radius: 2vw;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .entry a .icon {
    fill: #fff;
    width: 1.4vw;
    vertical-align: -2px;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .contact a {
    color: #fff;
    background: var(--blue);
    padding: 1vw .7vw;
    display: block;
    margin-bottom: 5px;
    border-radius: 2vw;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .contact a .icon {
    stroke: #fff;
    width: 1.1vw;
    vertical-align: -2px;
  }

  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:after {
    content: none;
  }
  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }

  .footerArea .inner .column_2 .rightBox {
    width: 30vw;
  }
  .footerArea .inner .column_2 .rightBox .img {
    width: 100%;
    margin-bottom: .7vw;
  }
  .footerArea .inner .column_2 .rightBox .text {
    width: 100%;
    font-size: .95vw;
  }
  .footerArea .inner .column_2 .rightBox .text span {
    display: inline-block;
    vertical-align: top;
  }




  .copylightArea {
    width: 100%;
    background: var(--lightBlue);
    padding: 2.7vw 0 1.4vw;
    margin-top: -1.4vw;
    position: relative;
    z-index: -1;
  }
  .copylightArea .inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 1.4vw 2.7vw;
    color: #fff;
    font-size: .8vw;
    text-align: center;
  }

  .hamMenuModal {
    display: none;
  }

  .cvBox_side {
    position: fixed;
    right: -50vw;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    pointer-events: none;
    z-index: 999;
  }
  .cvBox_side a {
    position: absolute;
    right: 0;
    top: 32vh;
    display: block;
    text-align: center;
    padding-top: 4vw;
    color: #fff;
    background: var(--pink);
    width: 10.6vw;
    height: 10.6vw;
    border-radius: 5.5vw;
    font-size: 1.46vw;
    line-height: 1.5;
    pointer-events: initial;
  }

  .cvBox_side .icon {
    stroke: #fff;
    width: 2vw;
    height: 2vw;
    vertical-align: 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 2vw;
    margin: auto;
  }

  .cvBox_side a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  .cvBox_side a[target="_blank"]:after {
    content: none;
  }
  .cvBox_side a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }



}






@media screen and (max-width:1040px) {

  .lowerArea {}
  .lowerArea .inner {
    max-width: 840px;
    width: 100%;
    font-size: 1.2vw;
  }
  .lowerArea.lowerArea_type01 {}
  .lowerArea.lowerArea_type01 .inner {
    padding: 0 4vw 10vw;
    margin: 0 auto;
  }
  .lowerArea.lowerArea_type02 {
    background: var(--bkBlue);
  }
  .lowerArea.lowerArea_type02 .inner {
    padding: 10vw 4vw;
    margin: 0 auto;
  }

  .lowerArea.lowerArea_type02 .inner h3 {
    font-size: 1.6vw;
    font-weight: 700;
    margin: 5vw auto 2vw;
    text-align: center;
  }
  .lowerArea.lowerArea_type02 .inner .list_square {
    display: flex;
    flex-wrap: wrap;
  }
  .lowerArea.lowerArea_type02 .inner .list_square li {
    width: calc(100% / 3);
    margin-bottom: 2vw;
    padding-left: 5vw;
  }
  .lowerArea.lowerArea_type02 .inner .list_square li:before {
    left: 3vw;
  }
  .lowerArea.lowerArea_type02 .inner .note {
    font-size: 1.2vw;
  }

  .lowerArea.lowerArea_type03 {}
  .lowerArea.lowerArea_type03 .inner {
    max-width: 1040px;
    width: 100%;
    padding: 5vw 0;
    margin: 0 auto;
  }
  .lowerArea.lowerArea_type03 .inner h2 {
    font-size: 2.8vw;
    color: #fff;
    line-height: 1.2;
    margin: 5vw auto 5vw;
    background: var(--blue);
    width: 36vw;
    padding: 2vw 0 2.2vw;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    border-radius: 4vw;
    position: relative;
  }
  .lowerArea.lowerArea_type03 .inner h2:after {
    content: "";
    display: block;
    background: var(--blue);
    width: .4vw;
    height: .4vw;
    position: absolute;
    left: 0;
    right: 0;
    bottom: .4vw;
    transform: rotate(45deg) skew(80deg, 80deg);
    margin: auto;
    z-index: 1;
  }
  .lowerArea.lowerArea_type03 .inner h2 span {
    position: relative;
    z-index: 2;
  }
  .lowerArea.lowerArea_type03 .inner h2 .text-sub {
    font-size: 2vw;
  }

  .lowerArea.lowerArea_type03 .inner .faqList {
    padding: 5vw 6vw 0 6vw;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dt {
    color: var(--blue);
    position: relative;
    padding-left: 5vw;
    margin-bottom: 4vw;
    font-size: 2vw;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd {
    border-bottom: .5vw dotted #ff72b1;
    position: relative;
    color: var(--lightBlue);
    padding-left: 5vw;
    padding-bottom: 4vw;
    margin-bottom: 4vw;
    font-size: 1.8vw;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd {
    border-bottom: .5vw dotted var(--lightBlue);
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd:last-child {
    border-bottom: none;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dt:before,
  .lowerArea.lowerArea_type03 .inner .faqList dd:before {
    content: "Q";
    font-size: 2vw;
    line-height: 1.8;
    color: #fff;
    background: var(--blue);
    position: absolute;
    left: 0;
    top: -.2vw;
    width: 4vw;
    height: 4vw;
    border-radius: 2vw;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd:before {
    content: "A";
    background: var(--lightBlue);
  }



}



/* スマートフォン
-----------------------------------------------*/
@media only screen and (max-width: 767px) {

  /* PC,SP切り替え
  ------------------------------------------------------------*/
  .pc-on {
      display: none !important;
  }

  .pc-on-inlineblock {
      display: none !important;
  }
  .pc-on-inline {
      display: none !important;
  }
  .pc-on-flex {
    display: none !important;
  }

  .sp-on {
      display: block !important;
  }

  .sp-on-inlineblock {
      display: inline-block !important;
  }
  .sp-on-inline {
      display: inline !important;
  }

  /* 全体設定
  ------------------------------------------------------------*/
  body {
    font-size: 3.8vw;
    line-height: 1.8;
    letter-spacing: 0.5px;
    overflow-x: hidden;
  }
  section {
    overflow-x: hidden;
  }


  a[target="_blank"]:after {
    content: "";
    display: block;
    width: 3vw;
    height: 3vw;
    position: absolute;
    bottom: 1.2vw;
    right: -4vw;
    background-image: url('../img/icon_blank.svg');
    background-size: cover; /* 画像を全体にフィット */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }


  .text-small {
    font-size: 2.6vw;
    line-height: 1.6;
  }
  .text-medium {
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .text-center {
    text-align: center;
  }
  .text-center-pc {
    text-align: center;
  }
  .text-right {
    text-align: right;
  }
  .note {
    text-indent: -1em;
    margin-left: 1em;
  }
  strong {
    font-weight: bold;
  }

  .text-centerBox{
    text-align: center;
  }

  .table_type01 {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 6vw;
  }
  .table_type01 th,
  .table_type01 td {
    border: 1px solid #333;
    padding: 1.5rem 1rem;
    vertical-align: middle;
    word-break: break-word;
  }



  .list_square {
    margin: 0 0 4vw 0;
  }
  .list_square li {
    position: relative;
    padding: 0 0 0 3.6vw;
    display: block;
    margin: 0 0 0 0;
    line-height: 1.8;
    vertical-align: top;
  }
  .list_square li:before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 2.8vw;
    height: 2.8vw;
    display: block;
  }
  .list_square li a {
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
  }
  .list_square li a:hover {
    color: var(--blue);
    border-bottom: 1px solid transparent;
  }
  .flexBox_type1 {
    display: flex;
  }
  .flexBox_type2 {
    display: flex;
    justify-content: space-between;
  }




  .flexBox_type1 {
    display: block;
  }
  .flexBox_type2 {
    display: block;
    justify-content: space-between;
  }

  .spacer100 {
    padding-top: 20vw;
  }
  .spacer90 {
    padding-top: 18vw;
  }
  .spacer80 {
    padding-top: 16vw;
  }
  .spacer70 {
    padding-top: 14vw;
  }
  .spacer60 {
    padding-top: 12vw;
  }
  .spacer50 {
    padding-top: 10vw;
  }
  .spacer40 {
    padding-top: 8vw;
  }
  .spacer30 {
    padding-top: 6vw;
  }
  .spacer20 {
    padding-top: 4vw;
  }
  .spacer10 {
    padding-top: 2vw;
  }

  .mrb20 {
    margin-bottom: 4vw;
  }




  header {}
  header .inner {
    padding: 6vw 6vw 6vw 6vw; /* 30px -> 6vw */
    position: relative;
    background: none;
  }
  header .inner .logoBox {
    width: 70vw; 
    margin: 0 auto;
  }
  header .inner .head_cvBox {
    display: none;
  }

  .waveBox {
    width: 250vw;
    height: 2vw;
    background-image: url('../img/common/bg_wave.svg');
    background-size: contain; /* 画像を全体にフィット */
    background-position: left; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
  }
  .waveBox.reverse {
    transform: rotate(180deg);
    background-position: right; /* 中央に配置 */
  }

  .gnavArea {
    display: none;
  }


  .kvArea {}
  .kvArea .inner {
    max-width: 288vw; /* 1440px -> 288vw */
    width: 100%;
    padding: 0 4vw; /* 20px -> 4vw */
    margin: 0 auto 14vw; /* 70px -> 14vw */
  }
  .kvArea .inner div a {
    display: block;
    position: relative;
  }
  .kvArea .inner div a .term {
    position: absolute;
    bottom: 30vw; /* 150px -> 30vw */
    right: 18vw; /* 90px -> 18vw */
    color: #fff;
    text-align: center;
    font-weight: 700;
  }
  .kvArea .inner div a .period {
    position: absolute;
    left: 60vw; /* 300px -> 60vw */
    bottom: 14vw; /* 70px -> 14vw */
    font-size: 4vw; /* 20px -> 4vw */
    font-weight: 700;
    color: #fff;
    border: 0.4vw solid #FFFF00; /* 2px -> 0.4vw */
    border-radius: 1.2vw; /* 6px -> 1.2vw */
    line-height: 1;
    padding: 0.8vw 2.4vw 1.6vw; /* 4px 12px 8px -> 0.8vw 2.4vw 1.6vw */
    color: #FFFF00;
  }
  .kvArea .inner div a .period span {
    font-size: 6vw; /* 30px -> 6vw */

  }


  .kvArea_lower {}
  .kvArea_lower .inner {
    max-width: 1440px;
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 10vw;
  }



  .informationArea {}
  .informationArea .inner {
    max-width: 168vw; /* 840px -> 168vw */
    width: 100%;
    padding: 0 4vw; /* 20px -> 4vw */
    margin: 0 auto;
  }
  .informationArea .inner dl {
    display: block;
    flex-wrap: wrap;
  }
  .informationArea .inner dl dt {
    width: 100%;
    margin-bottom: 1vw;
    padding: 0;
  }
  .informationArea .inner dl dd {
    width: 100%;
    margin-bottom: 6vw; /* 30px -> 6vw */
    padding-bottom: 6vw; /* 30px -> 6vw */
  }

  .informationArea .inner dl dt {
    background: none;
  }
  .informationArea .inner dl dd {
    background-image: radial-gradient(circle, #0090ff 0.3vw, transparent 0.3vw); /* 1.5px -> 0.3vw, 1.5px -> 0.3vw */
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 1.2vw 0.6vw; /* 6px 3px -> 1.2vw 0.6vw */
  }


  .informationArea .inner dl dd a {
  }
  .informationArea .inner dl dd a:hover {
  }


  .suggArea {}
  .suggArea .inner {
    max-width: 248vw; /* 1240px -> 248vw */
    width: 100%;
    padding: 12vw 4vw 50vw;
    margin: 0 auto 20vw; /* 100px -> 20vw */
    font-size: 4vw;
  }
  .suggArea .inner .imgBox {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .suggArea .inner .imgBox .img_01 {
    position: absolute;
    left: 18vw;
    top: unset;
    bottom: -116vw;
    width: 30vw;
  }
  .suggArea .inner .imgBox .img_02 {
    position: absolute;
    left:0;
    top: unset;
    bottom: -88vw;
    width: 26vw;
  }
  .suggArea .inner .imgBox .img_03 {
    position: absolute;
    right: -8vw;
    top: unset;
    bottom: -110vw;
    width: 48vw;
  }
  .suggArea .inner .imgBox .img_01:after {
    content: none;
  }
  .suggArea .inner .imgBox .img_02:after {
    content: "";
    position: absolute;
    right: 12vw;
    bottom: -13vw;
    width: 10vw;
    height: 10vw;
    border-radius: 5vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }
  .suggArea .inner .imgBox .img_03:before {
    content: none;
  }
  .suggArea .inner .imgBox .img_03:after {
    content: "";
    position: absolute;
    left: -11vw;
    bottom: 28vw;
    width: 18vw;
    height: 18vw;
    border-radius: 9vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }


  .featuresArea {
    background: var(--bkBlue);
  }
  .featuresArea .inner {
    max-width: 288vw; /* 1440px -> 288vw */
    width: 100%;
    padding: 16vw 4vw 20vw; /* 80px 20px 100px -> 16vw 4vw 20vw */
    margin: 0 auto;
  }
  .featuresArea .inner .featuresBox {
    display: block;
    justify-content: space-around;
  }
  .featuresArea .inner .featuresBox .features_03,
  .featuresArea .inner .featuresBox .features_02,
  .featuresArea .inner .featuresBox .features_01 {
    width: 92vw;
    height: 92vw;
    border-radius: 46vw;
    background: #fff;
    text-align: center;
    margin: 0 auto 6vw;
  }
  .featuresArea .inner .featuresBox .features_01 {
    padding-top: 32.5vw;
  }
  .featuresArea .inner .featuresBox .features_02 {
    padding-top: 32.5vw;
  }
  .featuresArea .inner .featuresBox .features_03 {
    padding-top: 26vw;
    font-size: initial;
  }
  .featuresArea .inner .featuresBox h3 {
    color: var(--blue);
    font-size: 5.4vw; /* 24px -> 4.8vw */
    font-weight: 700;
    position: relative;
    margin-bottom: 1vw; /* 5px -> 1vw */
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi {
    position: absolute;
    left: 0;
    right: 0;
    top: -15vw;
    display: inline-block;
    background: var(--lightBlue);
    color: #ffffff;
    font-size: 4.6vw;
    line-height: 1;
    padding: 3vw 4vw 3.2vw; /* 10px 20px 16px -> 2vw 4vw 3.2vw */
    border-radius: 6vw; /* 30px -> 6vw */
    margin: auto;
    max-width: 30vw; /* 130px -> 26vw */
    letter-spacing: 3px;
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi > span {
    font-size: 5.6vw;
    vertical-align: -0.2vw; /* -1px -> -0.2vw */
  }
  .featuresArea .inner .featuresBox h3 span.fukidashi:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2vw; /* -10px -> -2vw */
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-left: 1.6vw solid transparent; /* 8px -> 1.6vw */
    border-right: 1.6vw solid transparent; /* 8px -> 1.6vw */
    border-top: 2vw solid var(--lightBlue); /* 10px -> 2vw */
    border-bottom: 0;
  }
  .featuresArea .inner .featuresBox p {
    font-size: 3.8vw;
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail {
    display: flex;
    justify-content: center;
    margin-top: 3vw;
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox01 {
    width: 16vw; /* 80px -> 16vw */
    height: 16vw; /* 80px -> 16vw */
    border-radius: 8vw; /* 40px -> 8vw */
    background: #FFFF00;
    font-size: 2.6vw; /* 13px -> 2.6vw */
    line-height: 1.2;
    padding-top: 3.6vw; /* 18px -> 3.6vw */
  }
  .featuresArea .inner .featuresBox .features_03 .features_03_detail .textBox02 {
    padding-left: 2vw; /* 10px -> 2vw */
    font-size: 3.8vw;
    line-height: 1.4;
  }

  .courseArea {}
  .courseArea .inner {
    max-width: 288vw; /* 1440px -> 288vw */
    width: 100%;
    padding: 16vw 4vw 20vw; /* 80px 20px 100px -> 16vw 4vw 20vw */
    margin: 0 auto;
  }
  .courseArea .inner .courseBox {
    display: block;
    margin-bottom: 20vw; /* 100px -> 20vw */
  }
  .courseArea .inner .courseBox.reverse {
    flex-direction: row-reverse;
  }
  .courseArea .inner .courseBox .course_img {
    width: 100%;
    margin-bottom: 6vw;
  }
  .courseArea .inner .courseBox .course_text {
    width: 100%;
    padding-left: 0;
  }
  .courseArea .inner .courseBox.reverse .course_text {
    padding-left: 0;
    padding-right: 0;
  }
  .courseArea .inner .courseBox .course_text h3 {
    font-size: 6.4vw; /* 32px -> 6.4vw */
    font-weight: 900;
    color: #FF72B1;
    position: relative;
    display: inline-block;
    margin: 6vw 0 12vw; /* 30px 0 60px -> 6vw 0 12vw */
  }
  .courseArea .inner .courseBox .course_text h3 div {
    width: 32vw;
    height: 32vw;
    text-align: center;
    padding-top: 10vw;
    position: absolute;
    right: -40vw;
    top: -12vw;
    font-size: 3.2vw;
    background: #FFEEF6;
    border-radius: 16vw;
  }
  .courseArea .inner .courseBox .course_text h3 div:after {
    content: "";
    width: 10vw;
    height: 10vw;
    background: #FF72B1;
    opacity: .1;
    border-radius: 5vw;
    display: block;
    position: absolute;
    left: -4vw;
    bottom: 2vw;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 {
    color: #00C568;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 div {
    background: #D9FEE2;
    padding-top: 14vw;
  }
  .courseArea .inner .courseBox.course02 .course_text h3 div:after {
    background: #00C568;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 {
    color: #915BED;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 div {
    background: #F0E7FF;
    padding-top: 7vw;
  }
  .courseArea .inner .courseBox.course03 .course_text h3 div:after {
    background: #915BED;
  }

  .courseArea .inner .courseBox .course_text h4 {
    font-size: 5.2vw;
    font-weight: 900;
    color: #FF72B1;
    position: relative;
  }
  .courseArea .inner .courseBox .course_text h4 span {
    font-size: 4.2vw;
  }
  .courseArea .inner .courseBox .course_text p {
    margin-bottom: 6vw; /* 30px -> 6vw */
  }
  .courseArea .inner .courseBox.course02 .course_text h4 {
    color: #00C568;
  }
  .courseArea .inner .courseBox.course03 .course_text h4 {
    color: #915BED;
  }


  .feeArea {
    background: var(--bkBlue);
  }
  .feeArea .inner {
    max-width: 288vw; /* 1440px -> 288vw */
    width: 100%;
    padding: 16vw 4vw 20vw; /* 80px 20px 100px -> 16vw 4vw 20vw */
    margin: 0 auto;
  }
  .feeArea .inner .entryFeeBox {
    background: #fff;
    padding: 4vw; /* 20px -> 4vw */
    display: flex;
    justify-content: center;
    font-weight: 900;
    border-radius: 8vw; /* 40px -> 8vw */
    margin-bottom: 10vw; /* 50px -> 10vw */
  }
  .feeArea .inner .entryFeeBox h3 {
    font-size: 6.4vw; /* 32px -> 6.4vw */
    color: var(--lightBlue);
    margin-right: 4vw; /* 20px -> 4vw */
  }
  .feeArea .inner .entryFeeBox div {
    font-size: 7.5vw;
    margin-left: 4vw; /* 20px -> 4vw */
    line-height: 1.5;
  }
  .feeArea .inner .entryFeeBox div span {
    font-size: 5vw;
  }
  .feeArea .inner .feeBox {
    display: block;
    justify-content: space-between;
  }
  .feeArea .inner .feeBox .course {
    width: 100%;
    background: #fff;
    border-radius: 8vw; /* 40px -> 8vw */
    padding: 6vw 0 6vw 10vw; /* 30px 0 30px 50px -> 6vw 0 6vw 10vw */
    font-weight: 900;
    margin-bottom: 8vw;
  }
  .feeArea .inner .feeBox .course h3 {
    font-size: 6.4vw; /* 32px -> 6.4vw */
    color: #FF72B1;
    margin-bottom: 4vw; /* 20px -> 4vw */
  }
  .feeArea .inner .feeBox .course h4 {
    font-size: 4vw; /* 20px -> 4vw */
    margin-bottom: 2vw; /* 10px -> 2vw */
  }
  .feeArea .inner .feeBox .course .feeDl {
    display: flex;
    flex-wrap: wrap;
  }
  .feeArea .inner .feeBox .course .feeDl dt {
    color: #FF72B1;
    width: calc((100% / 2) - 6vw); /* 30px -> 6vw */
    font-size: 3.6vw; /* 18px -> 3.6vw */
    margin-bottom: 4vw; /* 20px -> 4vw */
  }
  .feeArea .inner .feeBox .course .feeDl dt span {
    display: block;
    text-align: center;
    padding: 1vw 0 1.4vw; /* 5px 0 7px -> 1vw 0 1.4vw */
    border: 0.4vw solid #FF72B1; /* 2px -> 0.4vw */
    border-radius: 4.8vw; /* 24px -> 4.8vw */
    line-height: 1;
  }
  .feeArea .inner .feeBox .course .feeDl dd {
    width: calc((100% / 2) + 6vw); /* 30px -> 6vw */
    font-size: 7.5vw;
    padding-left: 3vw; /* 15px -> 3vw */
    line-height: .8;
    margin-bottom: 4vw; /* 20px -> 4vw */
  }
  .feeArea .inner .feeBox .course .feeDl dd span {
    font-size: 5vw;
  }
  .feeArea .inner .feeBox .course.course02 h3 {
    color: #00C568;
  }
  .feeArea .inner .feeBox .course.course03 h3 {
    color: #915BED;
  }
  .feeArea .inner .feeBox .course.course02 .feeDl dt {
    color: #00C568;
  }
  .feeArea .inner .feeBox .course.course03 .feeDl dt {
    color: #915BED;
  }
  .feeArea .inner .feeBox .course.course02 .feeDl dt span {
    border: 0.4vw solid #00C568; /* 2px -> 0.4vw */
  }
  .feeArea .inner .feeBox .course.course03 .feeDl dt span {
    border: 0.4vw solid #915BED; /* 2px -> 0.4vw */
  }

  .accessArea {}
  .accessArea .inner {
    max-width: 228vw; /* 1140px -> 228vw */
    width: 100%;
    padding: 0 4vw; /* 20px -> 4vw */
    margin: 14vw auto; /* 100px -> 20vw */
  }
  .accessArea .inner .accessBox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    font-size: 4vw;
  }
  .accessArea .inner .accessBox .text {
    width: 100%;
  }
  .accessArea .inner .accessBox .text .address {
    margin-bottom: 2vw; /* 10px -> 2vw */
  }
  .accessArea .inner .accessBox .text .tel {}
  .accessArea .inner .accessBox .text .tel span {
    display: inline-block;
    vertical-align: top;
  }
  .accessArea .inner .accessBox .text .movie a {
    display: block;
    padding: 4.5vw 10vw;
    background: #FFFF00;
    border-radius: 8vw;
    text-align: center;
    margin: 8vw auto 0;
    font-size: 4.2vw;
    width: 80vw;
  }
  .accessArea .inner .accessBox .text .movie a svg {
    width: 5vw;
    fill: var(--blue);
    vertical-align: -0.8vw;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"] {
    position: relative;
    border-bottom: none;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"]:after {
    content: none;
  }
  .accessArea .inner .accessBox .text .movie a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }

  .accessArea .inner .accessBox .map {
    width: 100%;
    margin-bottom: 8vw;
  }
  .accessArea .inner .accessBox .map iframe {
    width: 100%;
    height: 120vw; /* 300px -> 60vw */
    border-radius: 6vw; /* 30px -> 6vw */
  }

  /* 共通パーツ */

  .lowerArea .inner h2,
  .accessArea .inner h2,
  .featuresArea .inner h2,
  .feeArea .inner h2,
  .suggArea .inner h2,
  .courseArea .inner h2,
  .informationArea .inner h2 {
    position: relative;
    color: var(--blue);
    font-size: 7vw;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16vw 0; /* 80px -> 16vw */
  }
  .lowerArea .inner h2 span.mainText,
  .accessArea .inner h2 span.mainText,
  .featuresArea .inner h2 span.mainText,
  .feeArea .inner h2 span.mainText,
  .suggArea .inner h2 span.mainText,
  .courseArea .inner h2 span.mainText,
  .informationArea .inner h2 span.mainText {
    position: relative;
    z-index: 2;
  }
  .lowerArea .inner h2 span.subText,
  .accessArea .inner h2 span.subText,
  .featuresArea .inner h2 span.subText,
  .feeArea .inner h2 span.subText,
  .suggArea .inner h2 span.subText,
  .courseArea .inner h2 span.subText,
  .informationArea .inner h2 span.subText {
    position: absolute;
    color: var(--lightBlue);
    font-size: 4.4vw;
    font-weight: 500;
    z-index: 1;
    bottom: -8vw; /* -40px -> -8vw */
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
  }

  .suggArea .inner h2 span.mainText:before {
    content: "";
    position: absolute;
    left: -30vw;
    bottom: -13vw;
    width: 10vw;
    height: 10vw;
    border-radius: 5vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }
  .suggArea .inner h2 span.mainText:after {
    content: "";
    position: absolute;
    right: -20vw;
    bottom: -5vw;
    width: 10vw;
    height: 10vw;
    border-radius: 5vw;
    background: #0090FF;
    opacity: .1;
    display: block;
    z-index: -1;
  }
  .suggArea .inner h2 span.subText:after {
    content: "";
    position: absolute;
    right: 4vw;
    bottom: -8vw;
    width: 18vw;
    height: 18vw;
    border-radius: 9vw;
    background: var(--bkBlue);
    display: block;
    z-index: -1;
  }


  /* //共通パーツ */




  .footerArea {
    position: relative;
    background: var(--bkBlue);
  }
  .footerArea .inner {
    max-width: 288vw;
    width: 100%;
    padding: 16vw 2vw 12vw;
    margin: 0 auto;
  }
  .footerArea .inner .column_2 {
    display: block;
  }
  .footerArea .inner .column_2 .leftBox {
    width: 100%;
    display: block;
  }
  .footerArea .inner .column_2 .leftBox .menuList {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    margin: 2vw 0 10vw; /* 10px 0 50px -> 2vw 0 10vw */
    max-width: 100vw; /* 500px -> 100vw */
    width: 100%;
  }
  .footerArea .inner .column_2 .leftBox .menuList li {
    margin-bottom: 3vw;
    padding-left: 3vw;
  }
  .footerArea .inner .column_2 .leftBox .menuList li a .icon {
    fill: var(--blue);
    width: 3.2vw; /* 16px -> 3.2vw */
    vertical-align: -0.4vw; /* -2px -> -0.4vw */
  }
  .footerArea .inner .column_2 .leftBox .cvBox {
    position: relative;
    width: 80vw;
    text-align: center;
    margin: 0 auto 10vw;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .entry a {
    color: #fff;
    background: var(--lightBlue);
    padding: 4.5vw 2vw;
    font-size: 4vw;
    display: block;
    margin-bottom: 4vw;
    border-radius: 8vw;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .entry a .icon {
    fill: #fff;
    width: 5vw; /* 20px -> 4vw */
    vertical-align: -0.4vw; /* -2px -> -0.4vw */
  }
  .footerArea .inner .column_2 .leftBox .cvBox .contact a {
    color: #fff;
    background: var(--blue);
    padding: 4.5vw 2vw;
    font-size: 4vw;
    display: block;
    margin-bottom: 1vw;
    border-radius: 8vw;
  }
  .footerArea .inner .column_2 .leftBox .cvBox .contact a .icon {
    stroke: #fff;
    width: 4.2vw; /* 16px -> 3.2vw */
    vertical-align: -0.4vw; /* -2px -> -0.4vw */
  }

  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:after {
    content: none;
  }
  .footerArea .inner .column_2 .leftBox .cvBox a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }

  .footerArea .inner .column_2 .rightBox {
    width: 100%;
    padding: 0 2vw;
  }
  .footerArea .inner .column_2 .rightBox .img {
    width: 74vw;
    margin: 0 auto 4vw;
  }
  .footerArea .inner .column_2 .rightBox .text {
    width: 100%;
    font-size: 3.6vw;
  }
  .footerArea .inner .column_2 .rightBox .text span {
    display: inline-block;
    vertical-align: top;
  }




  .copylightArea {
    width: 100%;
    background: var(--lightBlue);
    padding: 8vw 0 20vw;
    margin-top: -4vw;
    position: relative;
    z-index: -1;
  }
  .copylightArea .inner {
    max-width: 248vw; /* 1240px -> 248vw */
    width: 100%;
    margin: 0 auto;
    padding: 4vw 8vw;
    color: #fff;
    font-size: 3.4vw;
    text-align: center;
    line-height: 1.4;
  }

  .cvBox_side {
    display: none;
  }











  .hamMenuModal {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
  }
  .hamMenuModal .hamMenuModalBox {
    content: "";
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .hamMenuModal .hamMenuModalBox .inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10vw 2vw 10vw;
    position: relative;
    background: var(--bkBlue);
  }
  .hamMenuModal .hamMenuModalBox .inner2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 4vw 14vw 4vw;
    position: relative;
  }

  .hamMenuModal .hamMenuModalBox .inner .hamMenuBox--close {
    position: absolute;
    bottom: -20vw;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 9999;
    width: 10vw;
    height: 10vw;
    cursor: pointer;
    text-align: center;
  }
  .hamMenuModal .hamMenuModalBox .inner .hamMenuBox--close .menu01,
  .hamMenuModal .hamMenuModalBox .inner .hamMenuBox--close .menu02 {
    display: block;
    width: 8vw;
    height: 1px;
    border-top: 2px solid var(--blue);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  .hamMenuModal .hamMenuModalBox .inner .hamMenuBox--close .menu02 {
    transform: rotate(-45deg);
  }
  .hamMenuModal .hamMenuModalBox .inner .hamMenuBox--close .menu_text {
    color: var(--blue);
    font-size: 2.6vw;
    font-weight: 700;
    display: block;
    position: absolute;
    bottom: -3vw;
    left: 0;
    right: 0;
    margin: auto;
  }


  .hamMenuModal .hamMenuModalBox .inner2 .logoBox {
    width: 100%;
    margin: 0 auto 2vw;
  }

  .hamMenuModal .hamMenuModalBox .inner .menuList {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat( 4, auto);
    margin: 2vw 0 8vw;
    width: 100%;
  }
  .hamMenuModal .hamMenuModalBox .inner .menuList li {
    margin-bottom: 3vw;
  }
  .hamMenuModal .hamMenuModalBox .inner .menuList li a {
    display: block;
    padding-left: 2vw;
    letter-spacing: 0;
  }
  .hamMenuModal .hamMenuModalBox .inner .menuList li a .icon {
    width: 3.5vw;
    fill: var(--blue);
    vertical-align: -1px;
  }


  .hamMenuModal .hamMenuModalBox .inner .cvBox .trial a {
    width: 100%;
    color: #fff;
    background: var(--pink);
    padding: 5vw 0;
    display: block;
    margin-bottom: 4vw;
    text-align: center;
    border-radius: 8vw;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox .trial a .icon {
    stroke: #fff;
    width: 3.8vw;
    vertical-align: -4px;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox .entry a {
    width: 100%;
    color: #fff;
    background: var(--lightBlue);
    padding: 5vw 0;
    display: block;
    margin-bottom: 4vw;
    text-align: center;
    border-radius: 8vw;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox .entry a .icon {
    stroke: #fff;
    width: 4.4vw;
    vertical-align: -2px;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox .contact a {
    width: 100%;
    color: #fff;
    background: var(--blue);
    padding: 5vw 0;
    display: block;
    margin-bottom: 4vw;
    text-align: center;
    border-radius: 8vw;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox .contact a .icon {
    stroke: #fff;
    width: 4.4vw;
    vertical-align: -2px;
  }

  .hamMenuModal .hamMenuModalBox .inner .cvBox a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox a[target="_blank"]:after {
    content: none;
  }
  .hamMenuModal .hamMenuModalBox .inner .cvBox a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }






  .sp_followMenu {
    display: flex;
    position: fixed;
    justify-content: center;
    bottom: 4vw;
    left: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 999;
  }
  .sp_followMenu .btn_trial {
    width: calc(100% - 30vw);
    margin-right: 4vw;
  }
  .sp_followMenu .btn_trial a {
    display: block;
    text-align: center;
    background: var(--pink);
    padding: 4vw 0;
    border-radius: 10vw;
    color: #fff;
  }
  .sp_followMenu .btn_trial a .icon {
    width: 4vw;
  }
  .sp_followMenu .btn_menu {
    background: var(--blue);
    color: #fff;
    width: 16vw;
    height: 16vw;
    border-radius: 8vw;
    text-align: center;
    padding-top: 8vw;
    font-size: 2.6vw;
    position: relative;
  }
  .sp_followMenu .btn_menu span {
    width: 6vw;
    height: 1px;
    display: block;
    position: absolute;
    top: 7vw;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid #fff;
    cursor: pointer;
  }
  .sp_followMenu .btn_menu span:before {
    content: "";
    width: 6vw;
    height: 1px;
    display: block;
    position: absolute;
    top: -2.5vw;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid #fff;
  }
  .sp_followMenu a[target="_blank"] {
    display: block;
    position: relative;
    border-bottom: none;
  }
  .sp_followMenu a[target="_blank"]:after {
    content: none;
  }
  .sp_followMenu a[target="_blank"]:hover {
    outline: none;
    text-decoration: none;
    border-bottom: none;
  }



  .lowerArea {}
  .lowerArea .inner {
    max-width: 840px;
    width: 100%;
    font-size: 3.6vw;
  }
  .lowerArea.lowerArea_type01 {}
  .lowerArea.lowerArea_type01 .inner {
    padding: 6vw 4vw 10vw;
    margin: 0 auto;
  }
  .lowerArea.lowerArea_type02 {
    background: var(--bkBlue);
  }
  .lowerArea.lowerArea_type02 .inner {
    padding: 10vw 4vw;
    margin: 0 auto;
  }

  .lowerArea.lowerArea_type02 .inner h3 {
    font-size: 4.8vw;
    font-weight: 700;
    margin: 10vw auto 4vw;
    text-align: center;
  }
  .lowerArea.lowerArea_type02 .inner .list_square {
    display: flex;
    flex-wrap: wrap;
  }
  .lowerArea.lowerArea_type02 .inner .list_square li {
    width: calc((100% / 3) + 5vw);
    margin-bottom: 4vw;
    padding-left: 4vw;
  }
  .lowerArea.lowerArea_type02 .inner .list_square li:nth-of-type(3n) {
    width: calc((100% / 3) - 10vw);
  }
  .lowerArea.lowerArea_type02 .inner .list_square li:before {
    left: 0;
  }
  .lowerArea.lowerArea_type02 .inner .note {
    font-size: 3.2vw;
  }

  .lowerArea.lowerArea_type03 {}
  .lowerArea.lowerArea_type03 .inner {
    max-width: 1040px;
    width: 100%;
    padding: 6vw 4vw 10vw;
    margin: 0 auto;
  }
  .lowerArea.lowerArea_type03 .inner h2 {
    font-size: 6vw;
    color: #fff;
    line-height: 1.2;
    margin: 10vw auto 5vw;
    background: var(--blue);
    width: 100%;
    padding: 4vw 0 4.4vw;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    border-radius: 8vw;
    position: relative;
  }
  .lowerArea.lowerArea_type03 .inner h2:after {
    content: "";
    display: block;
    background: var(--blue);
    width: 1vw;
    height: 1vw;
    position: absolute;
    left: 0;
    right: 0;
    bottom: .8vw;
    transform: rotate(45deg) skew(80deg, 80deg);
    margin: auto;
    z-index: 1;
  }
  .lowerArea.lowerArea_type03 .inner h2 span {
    position: relative;
    z-index: 2;
  }
  .lowerArea.lowerArea_type03 .inner h2 .text-sub {
    font-size: 4.8vw;
  }

  .lowerArea.lowerArea_type03 .inner .faqList {
    padding: 10vw 0 0;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dt {
    color: var(--blue);
    position: relative;
    padding-left: 14vw;
    margin-bottom: 8vw;
    font-size: 4.2vw;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd {
    border-bottom: 5px dotted #ff72b1;
    position: relative;
    color: var(--lightBlue);
    padding-left: 14vw;
    padding-bottom: 8vw;
    margin-bottom: 8vw;
    font-size: 4vw;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd {
    border-bottom: 1vw dotted var(--lightBlue);
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd:last-child {
    border-bottom: none;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dt:before,
  .lowerArea.lowerArea_type03 .inner .faqList dd:before {
    content: "Q";
    font-size: 5vw;
    line-height: 1.8;
    color: #fff;
    background: var(--blue);
    position: absolute;
    left: 0;
    top: -2vw;
    width: 10vw;
    height: 10vw;
    border-radius: 5vw;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
  .lowerArea.lowerArea_type03 .inner .faqList dd:before {
    content: "A";
    background: var(--lightBlue);
  }





}








