@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');
/*---------------------------------------------
 generic  class
---------------------------------------------*/
body {font-family: 'Noto Sans JP', sans-serif;}
body * { vertical-align: baseline; box-sizing: border-box; }
.txtB { font-weight: bold!important; }.txtN { font-weight: normal!important; }
.layoutC { text-align: center!important; }.layoutL { text-align: left!important; }.layoutR { text-align: right!important; }
img { max-width: 100%; }
.mt0 { margin-top: 0 !important; }

/*==========================================================================================================
custom
==========================================================================================================*/
#l-content {
  margin: 0 !important;
}
#rt_freelesson_button {
  display: none;
  pointer-events: none;
  opacity: 0;
}
#l-container {
  width: 100%;
}
.l-content-inner {
  margin-top: 0;
  width: auto;
}
.header-content {
  width: auto;
	height: 80px;
	padding: 5px 20px;
	align-items: center;
}
.l-header-01 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
  box-shadow: 0 0 3px rgba(187, 1, 88, 0.1);
}
.logo-aeon-03 {
  width: 36vw;
  margin-left: 0;
}

/*  footer  */
.is-irregular #l-footer {
  border-top: none;
}
#l-footer .l-footer-inner {
  display: none;
}
#l-footer .c-text-copyright {
  margin-bottom: 45px;
	margin-top: 20px !important;
	border-top: none;
	font-size: .6875rem;
}


/*==========================================================================================================
common
==========================================================================================================*/
.anchor-posi {
  padding-top: 80px;
  margin-top: -80px;
}
.fade-in {
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.75s ease;
}
.fade-in.show {
	opacity: 1;
	transform: translate(0,0);
}
.open-trigger-on ,
.open-trigger-off {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.open-trigger-on::before {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  height: 19px;
	background: url(../img/icn_arr_acc.png) no-repeat center / contain;
  top: calc(50% - 9px);
  right: 22px;
	transform: rotate(180deg);
	transition: all .3s ease;
}
.open-trigger-on.cur::before {
  transform: rotate(0);
}
.acc-contents {
  display: none;
}
.acc-contents.show {
	display: block;
}
.inner-wrap {
  padding: 0 20px;
}
.h2-cmn {
	margin-bottom: 26px;
	text-align: center;
}
.section-txt {
	line-height: 1.75;
	text-align: center;
	font-size: 1rem;
}
.pattern-bg-section {
	background-image: url(../img/img_bg_wave.png), url(../img/img_bg_pattern_01.png);
	background-repeat: no-repeat, repeat;
	background-size: auto 14px, 76px auto;
	background-position: calc(50% - 33px) top, center top;
}
.bg-wave-btm {
	position: relative;
	overflow: hidden;
}
.bg-wave-btm::after {
	content: "";
	width: 100%;
	height: 14px;
	background: url(../img/img_bg_wave_btm.png) no-repeat center top / auto 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}
.underline-txt {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.underline-txt::before {
  content: "";
  width: 100%;
  height: 13px;
  background-color: #FFEF00;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-wrap-ttl {
  text-align: center;
  margin-bottom: 10px;
  font-size: .9375rem;
  font-weight: 500;
	line-height: 1.64;
	color: #002E91;
}
.btn-wrap .sub-notes {
  margin-top: 10px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.64;
  text-align: center;
	font-feature-settings: "palt";
}
.btn-wrap .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 14px 36px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
	letter-spacing: .05em;
  min-height: 64px;
  border-radius: 40px;
}
.btn-wrap .btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 12px;
  top: calc(50% - 15px);
  background: url(../img/icn_arr.png) no-repeat center / cover;
}
.btn-wrap .btn.lesson {
  box-shadow: 0 5px 0 #D84B02;
  min-height: 80px;
  color: #fff;
	background: linear-gradient(-45deg,	#FF7600 50%, #F8CAA2 60%, #FF7600 70%);
	background-size: 600% 100%;
	animation: shine 20s infinite;
	animation-delay: 0s;
	animation-timing-function: linear;
}
@keyframes shine {
	0% {
		background-position-x: 400%;
	}
	50% {
		background-position-x: 0%;
	}
	100% {
		background-position-x: -400%;
	}
}
.btn-wrap .btn.lesson::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  left: 30px;
  top: calc(50% - 15px);
  background: url(../img/icn_lesson.png) no-repeat center / contain;
}
.btn-wrap .btn.school-btn {
  background: #44AFF2;
  box-shadow: 0 5px 0 #0072C6;
  color: #fff;
	width: 316px;
}
.btn-wrap .btn.school-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 26px;
  top: calc(50% - 10px);
  background: url(../img/icn_school.png) no-repeat center / cover;
}
.btn-wrap .btn.tel-btn {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 58px;
	min-height: 64px;
	color: #002E91;
  background: #fff;
  border: 3px solid #002E91;
	box-shadow: 0 3px 0 #002E91;
}
.btn-wrap .btn.tel-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: 28px;
  left: 26px;
  top: calc(50% - 12px);
  background: url(../img/icn_fee_call.png) no-repeat center / cover;
}
.btn-wrap .btn.tel-btn::after {
  background: url(../img/icn_tel.png) no-repeat center / cover;
	right: 10px;
}
.note-list > li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}
.check-list > li {
  position: relative;
  padding-left: 33px;
  font-size: 1.125rem;
  font-weight: 500;
	line-height: 1.66;
}
.check-list > li::before {
  content: "";
  width: 24px;
  height: 20px;
  background: url(../img/icn_check.png) no-repeat 0 0 / contain;
  position: absolute;
  left: 0;
  top: .3em;
}
.check-list > li + li {
  margin-top: 8px;
}


/*==========================================================================================================
module
==========================================================================================================*/
.mv-wrap {
  margin-top: 80px;
}
.mv-wrap .mv {
	text-align: center;
	padding-top: 48px;
	padding-bottom: 25px;
	background: url(../img/img_mv_bg.png) no-repeat 0 0 / cover;
}
.mv-wrap .mv img {
	width: 86%;
}
.mv-info-wrap {
	margin-top: -20px;
	padding-top: 40px;
	padding-bottom: 30px;
	background: url(../img/img_mv_info_bg.png) no-repeat center top / cover;
}
.mv-info-list > li {
	color: #fff;
	font-weight: 500;
}
.mv-info-list > li + li {
	margin-top: 10px;
}
.mv-info-list > li dl {
	display: flex;
}
.mv-info-list > li dl dt {
	font-size: .875rem;
	border: 1px solid #fff;
	border-radius: 6px;
	width: 74px;
	min-height: 34px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 12px;
}
.mv-info-list > li dl dd {
	font-size: 1.125rem;
	line-height: 1.33;
	flex: 1;
	display: flex;
	align-items: center;
}
.mv-info-wrap .note-list {
	margin-top: 8px;
}
.mv-info-wrap .note-list > li {
	color: #9FDEFF;
	font-size: .75rem;
}

.lead-section {
	padding-top: 130px;
	padding-bottom: 74px;
	background: url(../img/img_section_lead_bg_01.png) no-repeat center 0 / 100% auto;
}
.lead-section-ttl {
	text-align: center;
	margin-bottom: 5px;
}
.lead-section .section-txt {
	line-height: 2;
	color: #07328F;
	margin-bottom: 10px;
}
.lead-section-lead {
	text-align: center;
	margin-bottom: 14px;
}
.lead-section-img {
	line-height: 1;
	margin-bottom: -10px;
	text-align: center;
	position: relative;
}
.lead-section-img .balloon-txt {
	width: 220px;
	position: absolute;
	left: -16px;
	top: 4px;
	z-index: -1;
}

.course-section {
	overflow: hidden;
}
.course-top-wrap {
	padding-top: 84px;
	position: relative;
}
.course-top-wrap::before {
	content: "";
	width: 100%;
	width: 628px;
	height: 393px;
	background: url(../img/img_course_lead_bg.png) no-repeat center / cover;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
}
.course-top-ttl {
	text-align: center;
}
.course-balloon-wrap {
	padding-top: 552px;
	position: relative;
}
.balloons-wrap .balloon {
	position: absolute;
	width: 123px;
}
.balloons-wrap .balloon-01 {
	left: calc(50% - 190px);
	top: 186px;
}
.balloons-wrap .balloon-02 {
	left: calc(50% - 130px);
	top: 50px;
}
.balloons-wrap .balloon-03 {
	right: calc(50% - 140px);
	top: 28px;
}
.balloons-wrap .balloon-04 {
	right: calc(50% - 186px);
	top: 154px;
}
.course-btm-wrap {
	position: relative;
	padding: 165px 0 85px;
	margin-top: -144px;
}
.course-btm-wrap::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/img_bg_pattern_02.png) repeat center top / 15px auto;
	clip-path: polygon(0 0, 50% 82px, 100% 0, 100% 100%, 0 100%);
	position: absolute;
	left: 0;
	top: 0;
}
.course-btm-wrap > .inner-wrap {
	position: relative;
}
.course-btm-wrap .lead-wrap .wrap-ttl {
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
.course-btm-wrap .lead-wrap .wrap-ttl .deco {
	position: absolute;
	width: 86px;
	left: 40px;
	top: -68px;
}
.course-btm-wrap .lead-white-box {
	background-color: #fff;
	border-radius: 16px;
	padding: 26px 0 37px;
	line-height: 1;
	text-align: center;
	margin-bottom: 25px;
}
.course-btm-wrap .section-txt {
	color: #fff;
	font-size: 1.125rem;
	line-height: 1.89;
}

.tab-section {
	margin-top: 40px;
	margin-bottom: 40px;
}
.cmn-tab-wrap {
  position: relative;
}
.cmn-tab-ttl-list {
  display: flex;
  justify-content: center;
}
.cmn-tab-ttl-list > li {
  width: 100%;
  margin-right: 10px;
	border: 3px solid transparent;
	border-bottom: none;
	margin-bottom: -21px;
	border-radius: 12px 12px 0 0;
	position: relative;
}
.cmn-tab-ttl-list > li:last-of-type {
  margin-right: 0;
}
.cmn-tab-ttl-list > li.cur {
	border-color: #002E91;
	top: 3px;
}
.cmn-tab-ttl {
  border-radius: 12px;
  font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.39;
	display: block;
	min-height: 113px;
	color: #fff !important;
  text-align: center;
	text-decoration: none !important;
	position: relative;
}
.cmn-tab-ttl > span {
  background: #002E91;
	display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
	border-radius: 12px;
}
.cmn-tab-ttl:hover {
	text-decoration: none;
}
.cmn-tab-ttl .underline-txt::before {
	opacity: 0;
}
.cmn-tab-ttl.cur {
  color: #002E91 !important;
	z-index: 2;
}
.cmn-tab-ttl.cur .txt-inr {
	background-color: #fff;
	border-radius: 9px 9px 0 0;
	padding-bottom: 35px;
	min-height: 122px;
}
.cmn-tab-ttl.cur .underline-txt::before {
	opacity: 1;
}
.cmn-tab-ttl.cur::before {
	opacity: 1;
}
.cmn-tab-contents-wrap {
  position: relative;
	padding: 25px 0 0; 
	background-color: #fff;
	border-radius: 16px;
	border: 3px solid #002E91;
}
.cmn-tab-contents-wrap .cmn-tab-contents {
  overflow: hidden;
  display: none;
}
.cmn-tab-contents-wrap .cmn-tab-contents.cur {
  display: block;
}
.course-desc-wrap {
	margin-bottom: 34px;
	padding: 0 16px;
}
.course-desc-wrap .img-box {
	margin-bottom: 30px;
	line-height: 1;
}
.course-desc-wrap .img-box img {
	width: 100%;
}
.course-desc-wrap .txt {
	text-align: center;
}
.course-desc-wrap .txt-02 {
	text-align: center;
	padding-left: 20px;
}
.lesson-wrap {
	padding: 34px 0 14px;
	border-radius: 0 0 13px 13px;
	background: url(../img/img_bg_pattern_03.png) repeat center top / 27px auto;
}
.lesson-list-ttl {
	text-align: center;
	margin-bottom: 30px;
}
.lesson-list-ttl img {
	width: auto;
	height: 52px;
}
.lesson-list {
	padding: 0 34px;
}
.lesson-list > li {
	position: relative;
}
.lesson-list + .lesson-list-ttl::after,
.lesson-list > li:not(:last-of-type)::after {
	content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 44px;
  top: calc(100% + 12px);
  left: calc(50% - 24px);
  background: url(../img/icn_flow_yot.png) no-repeat center / contain;
}
.lesson-list > li + li {
	margin-top: 73px;
}
.lesson-list .lesson-ttl {
	text-align: center;
	margin-bottom: 20px;
}
.lesson-list .lesson-img {
	text-align: center;
	position: relative;
	line-height: 1;
	z-index: 1;
	margin-bottom: 22px;
}
.lesson-list .lesson-img::before {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background-color: #FF9602;
	position: absolute;
	left: 9px;
	top: 9px;
	z-index: -1;
}
.lesson-list .lesson-txt {
	font-size: .875rem;
	line-height: 1.71;
}
.lesson-list .lesson-ttl + .lesson-txt.color {
	margin-top: -10px;
	margin-bottom: 20px;
}
.lesson-list .lesson-txt.color {
	font-size: .9375rem;
	line-height: 1.6;
	font-weight: 700;
	color: #002E91;
	text-align: center;
}
.lesson-list.lesson-list-v2 > li + li {
	margin-top: 50px;
}
.lesson-list.lesson-list-v2 > li:not(:last-of-type)::after {
	content: none;
}
.lesson-list + .lesson-list-ttl {
	margin-top: 85px;
	position: relative;
}
.lesson-list + .lesson-list-ttl::after {
	top: -56px;
}
.lesson-list-ttl + .lesson-txt-lg {
	margin-top: -10px;
}

.lesson-txt li {
  list-style-type: disc !important;
  list-style-position: inside !important; /* 内側に入れる */
  padding-left: 20px !important;         /* さらに左に余裕を持たせる */
}
.lesson-txt-lg {
	padding: 0 36px;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #002E91;
}
.lesson-txt-lg .color {
	color: #FF7600;
}
.lesson-info-box {
	border-radius: 10px;
	background-color: #D9F0FF;
	padding: 30px 24px;
	margin-top: 50px;
	max-width: calc(100% - 28px);
	margin: 53px auto 0;
}
.lesson-info-box .txt {
	font-size: 1.125rem;
	font-weight: 700;
	color: #002E91;
	margin-top: 10px;
	line-height: 1.67;
}
.lesson-info-box .txt .color {
	color: #FF7600;
}

.schedule-section {
	padding: 20px 0 70px;
}
.schedule-section .lead-img {
	padding: 0 22px 90px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.schedule-section .lead-img::before {
	content: "";
	width: 144vw;
	aspect-ratio: 261 / 255;
	background: url(../img/img_section_schedule_bg_01.png) no-repeat center bottom / 100% auto;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: -1;
}
.schedule-frame-top {
	margin-top: -68px;
}
.schedule-frame-wrap + .schedule-frame-wrap {
	margin-top: 20px;
}
.schedule-acc-ttl {
	height: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #44AFF2;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	position: relative;
	border-radius: 12px;
	transition: all .8s ease;
}
.schedule-acc-ttl.cur {
	border-radius: 12px 12px 0 0;
}
.schedule-acc-ttl .open-trigger-on::before {
	right: 16px;
	background: url(../img/icn_arr_acc_white.png) no-repeat center / contain;
}
.schedule-frame-body {
	border: 3px solid #44AFF2;
	border-radius: 0 0 12px 12px;
	padding: 2px 0;
}
.schedule-list > li {
	padding: 10px 4px 10px 16px;
}
.schedule-list > li + li {
	border-top: 2px solid #44AFF2;
}
.schedule-list .list-img {
	line-height: 1;
}
.attention-wrap {
	padding: 27px 14px;
}
.attention-wrap .attention-box {
	padding: 0 10px 0 14px;
	line-height: 1.46;
}
.attention-wrap .attention-box + .attention-box {
	border-top: 2px solid #D9F2FF;
	margin-top: 16px;
	padding-top: 20px;
}
.attention-wrap .attention-ttl {
	color: #07328F;
	font-weight: 700;
	font-size: .9375rem;
	margin-bottom: 4px;
}
.attention-wrap .attention-txt {
  font-size: .9375rem;
}
.attention-wrap .attention-txt + .attention-ttl {
  margin-top: 28px;
}
.attention-list > li {
  position: relative;
  font-size: .9375rem;
  line-height: 1.46;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
.attention-list > li .mark {
	margin-right: .3em;
}
.attention-list > li + li {
  margin-top: 7px;
}
.schedule-section .cv-box {
	margin-top: 30px;
}

.flow-section {
	padding: 80px 0;
}
.step-list {
  margin-top: 65px;
}
.step-list > li {
  background-color: #fff;
	border-radius: 16px;
	padding: 48px 6px 6px;
	position: relative;
	z-index: 1;
}
.step-list > li:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 44px;
  top: 100%;
  left: calc(50% - 24px);
  background: url(../img/icn_flow_arr.png) no-repeat center / contain;
	z-index: -1;
}
.step-list > li + li {
	margin-top: 76px;
}
.step-list .step-label {
  width: auto;
	height: 48px;
  position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.step-list .step-label img {
	height: 100%;
	width: auto;
}
.step-list .step-ttl {
  font-size: 1.5rem;
  font-weight: 700;
	text-align: center;
	color: #002E91;
  line-height: 1.4;
  margin-bottom: 14px;
}
.step-list .step-lead {
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.73;
	padding: 0 24px;
	margin-bottom: 20px;
}
.step-list .cv-box {
	border-radius: 0 0 16px 16px;
	box-shadow: none;
	margin-top: 32px;
}
.step-list .step-img {
	text-align: center;
	line-height: 1;
	margin-top: 15px;      /* 上のテキストとの隙間 */
	margin-bottom: 15px;   /* 下のCVボックスとの隙間 */
}

/* ↓画像自体のサイズをここでコントロール */
.step-list .step-img img {
	display: inline-block;
	vertical-align: bottom;
	width: 100%;            /* ★ 90% から 100% にアップ */
	max-width: 400px;      /* ★ 340px から 400px にアップ */
	height: auto;
}

.school-section {
	padding: 74px 0 68px;
}
.school-section .h2-cmn {
	margin-bottom: 34px;
}
.school-section-img {
	margin-bottom: 16px;
	text-align: center;
}
.school-section .btn-wrap {
	margin-top: 30px;
}

.faq-section {
  padding: 80px 0;
	margin-bottom: 70px;
}
.faq-section .section-txt {
	margin-bottom: 40px;
}
.faq-contents-wrap + .faq-contents-wrap {
  margin-top: 20px;
}
.faq-contents-wrap {
  background: #fff;
  border-radius: 16px;
}
.faq-acc-ttl {
  position: relative;
  padding: 20px 48px 20px 66px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
	color: #002E91;
  overflow: hidden;
}

.faq-acc-ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26px;
  left: 16px;
  background: url(../img/icn_q.png) no-repeat center / cover;
}

.faq-acc-contents {
  font-size: 1rem;
	font-weight: 500;
  line-height: 1.5;
	padding: 0 16px;
}
.faq-acc-contents .acc-contents-inner {
  position: relative;
  padding: 24px 24px 20px 50px;
  border-top: 2px solid #C7ECFF;
}
.faq-acc-contents .acc-contents-inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  left: 0;
  background: url(../img/icn_a.png) no-repeat center / cover;
}
.acc-contents-inner .txt + .txt {
	margin-top: 10px;
}
.acc-contents-inner .note-list {
  margin-top: 10px;
}
.acc-contents-inner .note-list + .txt {
	margin-top: 20px;
}
.acc-contents-inner .note-list > li {
  font-size: .875rem;
}

.cv-box {
  background: #FFF7C9;
	border-radius: 16px;
	box-shadow: 0 4px 0 #FFD17E;
  position: relative;
  padding: 35px 16px 40px;
}
.cv-box-ttl {
	text-align: center;
}
.cv-box-lead {
	text-align: center;
	margin-top: -7px;
}
.cv-box .btn-wrap {
	margin-top: 10px;
}
.cv-box-content-col + .cv-box-content-col {
	margin-top: 32px;
}

.fixed-contents {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 12px 16px 15px;
  width: 100%;
  background: #D5F1FF;
  z-index: 99;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition-duration: .3s;
}
.fixed-contents.show {
  opacity: 1;
  pointer-events: all;
}
.fixed-contents-inner {
  display: flex;
  width: 100%;
}
.fixed-contents .btn-wrap {
  width: calc((100% - 10px)/2);
}
.fixed-contents .btn-wrap + .btn-wrap {
  margin-left: 10px;
  margin-top: 0;
}
.fixed-contents .btn-wrap .btn {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  padding: 0 26px;
  line-height: 1.33;
  min-height: 44px;
}
.fixed-contents .btn-wrap .btn::after {
  width: 20px;
  height: 20px;
  right: 10px;
  top: calc(50% - 10px);
}
.fixed-contents .btn-wrap .btn.lesson {
	box-shadow: 0 3px 0 #D84B02;
	min-height: 44px;
}
.fixed-contents .btn-wrap .btn.lesson::before {
  width: 20px;
  height: 20px;
  left: 15px;
  top: calc(50% - 10px);
}
.fixed-contents .btn-wrap .btn.school-btn {
	box-shadow: 0 3px 0 #0072C6;
	width: 100%;
}
.fixed-contents .btn-wrap .btn.school-btn::before {
  width: 20px;
  height: 20px;
  left: 15px;
  top: calc(50% - 10px);
}


/*==========================================================================================================
PC Only
==========================================================================================================*/
@media screen and (min-width: 770px){
	
  .sp-only {display: none !important;}
  .logo-aeon-01 {
    margin-left: 7%;
  }
	
  /*==========================================================================================================
  common
  ==========================================================================================================*/
  body {
    overflow-x: hidden;
  }
  .inner-wrap {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .pc-inner-s {
    max-width: 790px;
  }
  .logo-aeon-03 {
    width: 222px;
    margin-left: 7%;
  }
  
  .anchor-posi {
    padding-top: 110px;
    margin-top: -110px;
  }
  .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .btn-wrap-ttl {
    margin-bottom: 0;
    font-size: .9375rem;
		font-weight: 700;
    line-height: 1.625;
		display: flex;
		align-items: center;
		justify-content: center;
  }
  .btn-wrap .sub-notes {
		margin-top: 6px;
		font-size: .875rem;
  }
  .btn-wrap .btn {
		max-width: 600px;
    padding: 10px 64px;
    font-size: 1.25rem;
    min-height: 80px;
    border-radius: 80px;
    transition-duration: .3s;
  }
  .btn-wrap .btn::after {
    right: 20px;
  }
  .btn-wrap .btn:hover {
    text-decoration: none;
    box-shadow: none !important;
  }
  .btn-wrap .btn.lesson::before {
    width: 30px;
    height: 30px;
    left: 40px;
    top: calc(50% - 15px);
  }
	.btn-wrap .btn.school-btn {
		min-height: 70px;
		max-width: 550px;
		width: 100%;
		font-size: 1rem;
	}
  .btn-wrap .btn.school-btn::before {
    content: "";
    display: block;
    position: absolute;
    left: 36px;
  }
  .tel-btn {
    pointer-events: none;
    box-shadow: none !important;
  }
  .btn-wrap .btn.tel-btn {
    font-size: 1.875rem;
    padding: 0 0 8px 66px;
		min-height: auto;
		border: none;
		max-width: 320px;
  }
  .btn-wrap .btn.tel-btn::before {
    width: 52px;
    height: 40px;
    left: 0;
    top: calc(50% - 20px);
  }
  .btn-wrap .btn.tel-btn::after {
    content: none;
  }
	.check-list > li {
		font-size: 1rem;
	}
	.check-list > li::before {
		width: 22px;
		height: 19px;
	}
	
  
  /*==========================================================================================================
  module
  ==========================================================================================================*/
  .mv-wrap {
    padding-top: 0;
  }
  .mv-wrap .mv {
		padding-top: 78px;
		padding-bottom: 25px;
		background: url(../img/img_mv_bg_pc.png) no-repeat center / cover;
	}
	.mv-wrap .mv img {
		width: auto;
	}
	.mv-info-wrap {
		background: url(../img/img_mv_info_bg_pc.png) no-repeat center top / cover;
		padding-top: 110px;
		padding-top: 8.6vw;
		margin-top: -6.4vw;
	}
	.mv-info-list {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.mv-info-list > li {
		position: relative;
	}
	.mv-info-list > li + li {
		margin-left: 30px;
		margin-top: 0;
	}
	.mv-info-list > li + li::before {
		content: "";
		width: 16px;
		height: 24px;
		background: url(../img/icn_mv_info_line.svg) no-repeat 0 0 / contain;
		position: absolute;
		left: -28px;
		top: 0;
	}
	.mv-info-list > li dl {
		align-items: baseline;
	}
	.mv-info-list > li dl dt {
		width: 72px;
		min-height: 24px;
		font-size: .75rem;
	}
	.mv-info-list > li dl dd {
		font-size: 1.125rem;
	}
	.mv-info-wrap .note-list > li {
		text-align: center;
		font-size: .6875rem;
	}
	
	.lead-section {
		padding-top: 196px;
		padding-bottom: 116px;
		background: url(../img/img_section_lead_bg_01_pc.png) no-repeat center 0 / 100% auto;
	}
	.lead-section .inner-wrap {
		max-width: 800px;
	}
	.lead-section-ttl {
		margin-bottom: 2px;
	}
	.lead-section .section-txt {
		line-height: 2;
		font-size: 1.25rem;
		margin-bottom: 20px;
	}
	.lead-section-lead {
		margin-bottom: 28px;
	}
	.lead-section-img img {
		width: 398px;
		right: 32px;
	}
	.lead-section-img .balloon-txt {
		width: 250px;
		left: calc(50% - 230px);
		top: 13px;
	}
	.course-top-wrap {
		padding-top: 120px;
	}
	.course-top-wrap::before {
		width: 1280px;
    height: 360px;
    background: url(../img/img_course_lead_bg_pc.png) no-repeat center / cover;
	}
	.course-balloon-wrap {
		padding-top: 560px;
	}
	.balloons-wrap .balloon {
		width: 156px;
	}
	.balloons-wrap .balloon-01 {
		left: calc(50% - 334px);
		top: 150px;
	}
	.balloons-wrap .balloon-02 {
		left: calc(50% - 168px);
		top: 58px;
	}
	.balloons-wrap .balloon-03 {
		right: calc(50% - 170px);
		top: 40px;
	}
	.balloons-wrap .balloon-04 {
		right: calc(50% - 330px);
		top: 122px;
	}
	.course-btm-wrap {
		margin-top: -244px;
		padding: 328px 0 178px;
	}
	.course-btm-wrap::before {
		clip-path: polygon(0 0, 50% 220px, 100% 0, 100% 100%, 0 100%);
	}
	.course-btm-wrap .lead-wrap .wrap-ttl .deco {
		width: 116px;
		left: calc(50% - 196px);
		top: -82px;
	}
	.course-btm-wrap .lead-white-box {
		padding: 60px 0;
	}
	
	.tab-section {
		margin-top: 60px;
		margin-bottom: 50px;
	}
	.cmn-tab-ttl .fz-lg {
		font-size: 1.4375rem;
	}
	.cmn-tab-contents-wrap {
		padding: 50px 0 0; 
	}
	.course-desc-wrap {
		padding: 0 50px;
		margin-bottom: 50px;
	}
	.course-desc-wrap .img-box {
		margin-bottom: 0;
		line-height: 1;
	}
	.course-desc-wrap .txt-box {
		width: calc(100% - 100px);
		margin: -130px auto 0;
		border-radius: 12px;
		position: relative;
		padding: 38px 20px 0;
		z-index: 1;
		overflow: hidden;
	}
	.course-desc-wrap .txt-box::before {
		content: "";
		width: 120%;
		height: 120%;
		background: url(../img/img_bg_white.png) no-repeat 0 0 / cover;
		border-radius: 12px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		filter: blur(15px);
		opacity: .95;
		z-index: -1;
	}
	.lesson-wrap {
		padding: 50px 0;
	}
	.lesson-list {
		padding: 0 110px 0 50px;
	}
	.lesson-list > li {
		padding-right: 387px;
		min-height: 285px;
		padding-top: 24px;
	}
	.lesson-list > li:not(:last-of-type)::after {
		top: calc(100% + 33px);
		left: calc(50% + 6px);
	}
	.lesson-list > li + li {
		margin-top: 120px;
	}
	.lesson-list .lesson-img {
		position: absolute;
		right: 0;
		top: 0;
		width: 387px;
	}
	.lesson-list .lesson-txt {
		padding: 0 49px;
	}
	.lesson-list .lesson-img {
		margin-bottom: 0;
	}
	.lesson-list.lesson-list-v2 > li {
		display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
	}
	.lesson-list + .lesson-list-ttl {
		margin-top: 100px;
	}
	.lesson-list + .lesson-list-ttl::after {
		top: -72px;
	}
	.lesson-list .lesson-ttl + .lesson-txt.color {
		margin-top: -5px;
		margin-bottom: 0;
		font-size: 1.125rem;
	}
	
	.lesson-txt li {/* 追加 */
		list-style-type: disc;
		padding-left: 0px;
	}/* 追加 */
	
	.lesson-txt-lg {
		text-align: center;
		font-size: 1.25rem;
	}
	
	.lesson-txt-lg .color {
		color: #FF7600;
	}
	.lesson-info-box {
		padding: 40px 50px;
		max-width: calc(100% - 100px);
		margin: 80px auto 0;
	}
	.lesson-info-box .check-list {
		display: flex;
		justify-content: center;
	}
	.lesson-info-box .txt {
		font-weight: 500;
		font-size: 1rem;
		text-align: center;
	}
	
	.schedule-section {
		padding: 112px 0 132px;
	}
	.schedule-section .lead-img {
		padding-bottom: 115px;
	}
	.schedule-section .lead-img::before {
		width: 100%;
    aspect-ratio: 1280 / 622;
    background: url(../img/img_section_schedule_bg_01_pc.png) no-repeat center top / 100% auto;
		bottom: -4vw;
	}
	.schedule-acc-ttl {
		height: 90px;
	}
	.schedule-acc-ttl .open-trigger-on::before {
		right: 50px;
	}
	.schedule-frame-body {
		padding: 26px 70px;
	}
	.schedule-frame-wrap + .schedule-frame-wrap {
		margin-top: 40px;
	}
	.schedule-list > li {
		padding: 20px 0;
		text-align: center;
	}
	.attention-wrap {
		padding: 20px 0;
	}
	.attention-wrap .attention-ttl {
		margin-bottom: 14px;
	}
	.attention-wrap .attention-box + .attention-box {
		margin-top: 28px;
		padding-top: 30px;
	}
	.schedule-section .cv-box {
		margin-top: 40px;
	}
	
	.flow-section {
		padding: 128px 0;
	}
  .step-list {
    margin-top: 80px;
		display: flex;
		flex-wrap: wrap;
  }
	.step-list > li {
		padding-top: 55px;
	}
	.step-list > li + li {
		margin-top: 0;
	}
	.step-list > li:first-of-type {
		width: 100%;
		margin-bottom: 80px;
	}
	.step-list > li:first-of-type .step-ttl {
		font-size: 1.75rem;
	}
	.step-list > li:not(:first-of-type) {
		width: calc((100% - 40px) / 3);
		margin-right: 20px;
		display: flex;
		flex-direction: column;
		z-index: auto;
	}
	.step-list > li:last-of-type {
		margin-right: 0 !important;
	}
	.step-list > li:not(:last-of-type):not(:first-of-type)::after {
		transform: rotate(-90deg);
		top: calc(50% - 42px);
		left: calc(100% - 14px);
		z-index: 2;
	}
	.step-list .step-label img {
		width: auto;
		max-height: 100%;
	}
	.step-list .step-ttl {
		line-height: 1.75rem;
		text-align: center;
		margin-bottom: 20px;
	}
	.step-list > li:first-of-type {
		text-align: center;
	}
	.step-list > li:not(:first-of-type) .step-ttl {
		font-size: 1.5rem;
		line-height: 1.33;
		margin-bottom: 14px;
	}
	.step-list > li:not(:first-of-type):last-of-type .step-ttl {
		font-size: 1.3125rem;
		line-height: 1.52;
	}
	.step-list .step-lead {
		font-size: 1rem;
		font-weight: 400;
		margin-bottom: 26px;
		padding: 0 34px;
	}
	.step-list .step-img {
		margin-top: auto;
	}
	
	.step-list .step-img img {
    max-width: 600px;    /* PC版でボタンの塊とキレイに揃うサイズ */
	}
	
	.step-list .cv-box {
		border-radius: 16px;
	}

	.school-section {
		padding: 120px 0 128px;
	}
	.school-section .h2-cmn {
		margin-bottom: 50px;
	}
	.school-section-img {
		margin-bottom: -22px;
	}
	.school-section .section-txt {
		font-size: 1.125rem;
	}
	
  .faq-section {
    padding: 136px 0 128px;
		margin-bottom: 100px;
  }
  .faq-section .h2-cmn img {
    width: 326px;
  }
	.faq-section .section-txt {
		font-size: 1.125rem;
		margin-bottom: 56px;
	}
  .faq-acc-ttl {
    position: relative;
    padding: 20px 50px 20px 100px;
    font-size: 1rem;
    height: 95px;
    display: flex;
    align-items: center;
  }
  .faq-acc-ttl .open-trigger-on::before {
    right: 50px;
  }
  .faq-acc-ttl::before {
		width: 32px;
		height: 32px;
    left: 50px;
		top: calc(50% - 16px);
  }
	.faq-acc-contents {
		padding: 0 50px;
	}
  .faq-acc-contents .acc-contents-inner {
    padding: 34px 0 30px 50px;
  }
  .faq-acc-contents .acc-contents-inner::before {
		width: 32px;
		height: 32px;
    top: 30px;
    left: 0;
  }

  .cv-box {
		padding: 30px 20px 20px;
	}
	.cv-box-ttl img {
		width: 348px;
	}
	.cv-box-lead {
		margin-top: 0;
	}
	.cv-box-content-col + .cv-box-content-col {
		margin-top: 40px;
	}
	.cv-box-content-col.tel-col {
		background-color: #fff;
		border-radius: 6px;
		display: flex;
		align-items: center;
		padding: 22px 30px 30px;
	}
	.cv-box-content-col.tel-col .btn-wrap-ttl {
		width: 46%;
	}
	.cv-box-content-col.tel-col .btn-wrap-ttl > span {
		display: inline-block;
		padding-left: 34px;
		background: url(../img/icn_ttl_tel.png) no-repeat 0 center / 28px auto;
	}
	.cv-box-content-col.tel-col .btn-wrap {
		width: 54%;
		border-left: 3px solid #FFF7C9;
		justify-content: center;
		margin-top: 0;
		padding-left: 14px;
	}
	.cv-box.pc-v2 {
		padding: 40px 30px 45px 45px; 
	}
	.pc-v2 .cv-box-contents {
		display: flex;
	}
	.pc-v2 .cv-box-ttl {
		margin-top: -7px;
		margin-bottom: -7px;
	}
	.pc-v2 .cv-box-content-col:not(.tel-col) {
		width: 60%;
	}
	.pc-v2 .cv-box-content-col.tel-col {
		width: calc(40% - 40px);
		margin-left: 40px;
		margin-top: 0;
		padding: 34px 26px;
		flex-direction: column;
		justify-content: center;
	}
	.pc-v2 .cv-box-content-col.tel-col .btn-wrap-ttl {
		width: 100%;
	}
	.pc-v2 .cv-box-content-col.tel-col .btn-wrap {
		border-left: none;
		width: 100%;
		padding-left: 0;
	}
	.pc-v2 .btn-wrap .btn.tel-btn {
		font-size: 1.625rem;
	}
	.pc-v2 .cv-box-content-col.tel-col .btn-wrap-ttl {
		margin-bottom: 20px;
	}
	.pc-v2 .cv-box-content-col.tel-col .btn-wrap-ttl > span {
		padding-left: 0;
		background-image: none;
	}
	.pc-v2 .btn-wrap .sub-notes {
		margin-top: 10px;
	}

  .fixed-contents {
    bottom: 0;
    padding: 16px 0;
  }
  .fixed-contents.show {
    opacity: 1;
    pointer-events: all;
  }
  .fixed-contents-inner {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
  }
  .fixed-contents .btn-wrap {
    max-width: 450px;
    width: calc((100% - 32px)/2);
  }
  .fixed-contents .btn-wrap + .btn-wrap {
    margin-left: 32px;
    margin-top: 0;
  }
  .fixed-contents .btn-wrap .btn {
		font-size: 1rem;
    padding: 0 26px;
    line-height: 1.5;
		min-height: 65px;
  }
  .fixed-contents .btn-wrap .btn::after {
    width: 30px;
    height: 30px;
    right: 20px;
    top: calc(50% - 15px);
  }
  .fixed-contents .btn-wrap .btn.school-btn::before {
    width: 24px;
    height: 24px;
    left: 30px;
    top: calc(50% - 12px);
  }
	.fixed-contents .btn-wrap .btn.lesson {
		min-height: 65px;
	}
  .fixed-contents .btn-wrap .btn.lesson::before {
    width: 28px;
    height: 28px;
    left: 32px;
    top: calc(50% - 14px);
  }
  #l-footer {
    padding-bottom: 102px;
  }
}

/*==========================================================================================================
 SP Only
==========================================================================================================*/
@media screen and (max-width: 769px){
  
  .pc-only { display: none !important; }

  /*---------------------------------------------
   generic  class
  ---------------------------------------------*/
  .sp_txtB { font-weight: bold!important; }.sp_txtN { font-weight: normal!important; }
  .sp_layoutC { text-align: center!important; }.sp_layoutL { text-align: left!important; }.sp_layoutR { text-align: right!important; }
  
}