@charset "utf-8";
/*
サイト上の構成の大枠としてページ内に1度しか出てこないものと、グリッドレイアウトについてを記述します。
We will write about thing the only comes out once on the page as a frame and grid(column) layout.

接頭辞はLayoutの頭文字を取って【l_】とします。
Prefix will take the "Layout" first letter and use it as "l_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.l_wrap/.l_container/.l_header/
.l_nav/.l_main/.l_contents/.l_footer

モディファイヤを使用する場合は接頭辞【has_】をつけ、各レイアウトの下に記述します。
When using modifier put the prefix "has_" and write it under each layout.

フォントサイズはremで指定します。
"rem" will be used for font-size.

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑
*/
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
    width: 100%;
    position: relative;
	background: #fff500;
}

/*----------------------------------------------
	.l_container
---------------------------------------------*/
.l_container {
	position: relative;
	left: 50%;
  width: 100%;
  max-width: 390px;
	background: #fff;
  box-shadow: 0 4px 64px rgba(25, 25, 25, .15);
  transition: background-color 0.5s ease;
}
@media screen and (max-width: 1250px) {
  .l_container {
    left: 0;
		margin: 0 auto;
  }
}

/*----------------------------------------------
	.l_inner
---------------------------------------------*/
.l_inner {
	padding: 0 20px;
}

/*----------------------------------------------
	.l_bg
---------------------------------------------*/
.l_bg {
	position: relative;
  left: 5%;
  bottom: 5%;
}
.bg-fade {
	opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.bg-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.l_bg-head {
	position: fixed;
	top: 5%;
}
.l_bg-head img {
	width: 500px;
	min-width: 500px;
}
.l_bg-girl {
	position: fixed;
	/*top: 34%;
	left: 14.3%;*/
	top: 239px;
  left: 190px;
}
.l_bg-girl img {
	/*width: 480px;*/
	min-width: 600px;
	max-width: 800px;
	width: 800px;
}
.l_bg-ttl {
	position: fixed;
	bottom: 5%;
}
.l_bg-ttl img {
	width: 500px;
	min-width: 500px;
}
@media screen and (max-width: 1250px) {
  .l_bg {
    display: none;
  }
}

/*----------------------------------------------
	.l_nav_area
---------------------------------------------*/
.l_nav_area {
  position: fixed;
  right: 5%;
  bottom: 5%;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .l_nav_area {
    display: none;
  }
}

/*----------------------------------------------
	.hero
---------------------------------------------*/
.hero {
	position: relative;
	height: 560px;
	background: #fff500;
	padding-top: 30px;
	overflow: hidden;
}
.hero__ttl {
	opacity: 0;
	transform: translateY(30px);
  transition: opacity 0.3s ease;
}
.hero__ttl img {
	width: 100%;
	opacity: 0;          
  transform: translateY(20px); /* 下から上にスライド */
}
.hero__ttl.visible {
	opacity: 1;
	animation: popUp 0.3s linear forwards;
}
@keyframes popUp {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0); /* 最終位置 */
  }
}

.hero__theme {
	position: absolute;
	left: 30px;
  bottom: 63px;
	opacity: 0;
}
.hero__theme img {
  opacity: 0;          
  transform: translateX(-20px); /* 左から右にスライド */
}
.hero__theme.visible {
	opacity: 1;
	animation: fadeIn 1s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero__theme img {
	width: 75px;
}

.hero__girl {
	position: relative;
	bottom: -480px;
  right: -22px;
  text-align: center;
	opacity: 0;
}
.hero__girl img {
	width: 285px;
	position: absolute;
  bottom: -300px;  /*枠外にずらす */
  right: -300px;
}
.hero__girl.visible {
	opacity: 1;
}

/*----------------------------------------------
  .message
---------------------------------------------*/
.message {
	position: relative;
	background-image: linear-gradient(180deg, #fff500 0%, #fff500 70%, #fff 71%, #fff 100%);;
	padding: 80px 0 0;
	overflow: hidden;
}
.message > * {
	text-align: center;
}
.message__box {
	position: relative;
	top: 0;
  z-index: 9;
}
.message__head {
	text-align: center;
	animation-delay: .6s!important;
}
.message__head img {
	width: 250px;
}
.message__txt {
	color: #fff;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
	font-size: 1.5rem;
	font-weight: bold;
	text-align: left;
	line-height: 1.8;
	margin: 0 40px;
}
.message__txt img {
	width: 270px;
}
.message__girls {
	position: relative;
	bottom: 0;
}
.message__girls img {
	width: 170px;
}

/*----------------------------------------------
  .about
---------------------------------------------*/
.about {
	position: relative;
	top: -40px;
	padding: 80px 0 140px;
}
.about__bg {
	position: relative;
}
.about__bg svg#line {
      position: absolute;
      top: -977px;
      /*left: 50%;
      transform: translate(-50%, -50%);*/
      width: 300px;
      height: 2931px;
      z-index: 0;
    }
    .about__bg path {
      fill: none;
      stroke: #fff500;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
.about__boxes {
	position: relative;
	margin-top: 200px;
	z-index: 1;
}
.about__box {
	position: relative;
	top: -45px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.about__box:nth-child(4),
.about__box:nth-child(5) {
	top: -57px;
}
.about__box:not(:last-of-type) {
	margin-bottom: 75px;
}
.about__box:nth-of-type(even) {
	flex-direction: row-reverse;
}
.about__box-img {
	position: relative;
}
.about__box:nth-of-type(even) .about__box-img {
	margin: 0 10px 0 0;
}
.about__img img {
	width: 130px;
}
.about__btn {
	position: absolute;
	bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.about__btn:hover {
	opacity: .6;
}
.about__btn img {
	width: 61px;
}

.about__content {
	margin: 0 40px;
}

@media screen and (max-width:767px) {
	.about__img img {
		width: 115px;
	}
}

/*----------------------------------------------
  .course
---------------------------------------------*/
.course {
	position: relative;
	padding: 120px 0 600px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
	z-index: 2;
}
.course__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.course__content.visible {
  opacity: 1;
  transform: translateY(0);
}

.course__num,
.course__head {
	margin: 0 40px;
}
.course__num img {
	width: 61px;
}
.course__head img {
	width: 100%;
}
.course__ttl {
	text-align: center;
	margin: 0 20px;
}
.course__ttl img {
	width: 100%;
}
.course__txt {
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8;
	margin: 0 40px;
}

.course__boxes {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	margin: 60px 20px 0;
}
.course__arrow {
	position: relative;
	overflow: visible;
	height: auto;
	opacity: 0;
	transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.course__arrow img {
  display: block;
  position: relative;
  z-index: 1;
}
.course__arrow--left img {
	/*width: 86px;*/
	width: 91%;
}
.course__arrow--right img {
	/*width: 224px;*/
	width: 90%;
}
.course__arrow.active {
  opacity: 1;
  transform: translateY(0);
}

.course__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*transform: translateX(-50%);*/
  width: 4px;
  height: 0;
  background-color: #3aa29c;
  transition: height 1s ease;
	transition-delay: 0.8s;
  z-index: 0;
}
.course__arrow--left::after {
	/*width: 86px;*/
	width: 91%;
}
.course__arrow--right::after {
	/*width: 224px;*/
	width: 90%;
}
/* active になったら伸びる */
.course__arrow.active::after {
  height: 676px;
}

.course__detail {
	position: absolute;
	top: 200px;
	opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
	transition-delay: 0.8s;
}
.course__detail img {
	width: 350px;
}
.course__detail.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width:767px) {
	.course__boxes {
		gap: 11px;
	}
	.course__arrow.active::after {
		height: 676px;
	}
}
@media screen and (max-width:376px) {
	.course__arrow.active::after {
		height: 655px;
	}
}

/*----------------------------------------------
  .scholarship
---------------------------------------------*/
.scholarship {
	position: relative;
	margin-top: 30px;
}

/* 背景をまとめる */
.bg-container {
  position: relative;
  width: 100%;
  height: 575px; /* 背景の高さ */
}
/* 背景レイヤー */
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* スクロールで表示されるとき */
.bg.visible { 
	opacity: 1;
	transform: translateY(0);
}
.white { 
	background: #fff;
	z-index: 1;
	clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}
.yellow { 
	background: #fff500;
	z-index: 2;
	clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}
.photo {
	top: 60px;
  background: url("../images/scholarship_girls.png") top center/cover no-repeat;
  z-index: 3;
	clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}

.scholarship__block {
	position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.scholarship__num {
	margin: 0 30px;
}
.scholarship__num img {
	width: 70px;
}
.scholarship__head01,
.scholarship__head02 {
	margin: 0 20px;
}
.scholarship__head01 img {
	width: 200px;
}
.scholarship__head02 {
	margin-top: -10px;
}
.scholarship__head02 img {
	width: 310px;
}

.scholarship__box {
	margin: 100px 40px;
}
.scholarship__box p:nth-of-type(even) {
	text-align: right;
}
.scholarship__box a img {
	transition: transform .3s ease, box-shadow .3s ease;
}
.scholarship__box a:hover img {
	opacity: .7;
	transform: scale(1.05);
  cursor: pointer;
}

.fade--left, .fade--right {
  opacity: 0;
  transition: opacity .5s ease, transform .3s linear;
}
.fade--left { transform: translateX(-30px); }
.fade--right { transform: translateX(30px); }

.fade--left.visible,
.fade--right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width:767px) {
	.scholarship__block {
    position: absolute;
    top: 10%;
    left: 0;
    transform: none;
	}
}

/*----------------------------------------------
  .tailor
---------------------------------------------*/
.tailor {
	position: relative;
	overflow: hidden;
}
.tailor > * {
	text-align: center;
}
.tailor__circle {
	position: relative;
	margin-bottom: 120px;
	padding: 213px 0 0;
}
.tailor__circle-box {
	position: relative;
  z-index: 9;
	margin: 0 40px;
}
.tailor__circle-box img {
	width: 100%;
}
.tailor__txt {
	color: #231815;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: left;
	line-height: 1.8;
}
.tailor__contents {
	position: relative;
	background: #cbe6e5;
	margin-bottom: 120px;
	padding: 120px 40px 0;
	z-index: 0;
}
.tailor__bg01 {
	position: absolute;
	top: 0;
	right: 50px;
	width: 75%;
	z-index: -1;
}
.tailor__bg02 {
	position: absolute;
	top: 0;
	left: -32px;
	height: 100%;
	z-index: -1;
}
.tailor__bg03 {
	position: absolute;
	top: -28px;
	left: 0;
}
.tailor__bg03 img {
	width: 350px;
}
.tailor__girl01,
.tailor__girl02,
.tailor__girl03 {
	position: absolute;
}
.tailor__girl01 {
	top: 25px;
	left: 76px;
}
.tailor__girl01 img {
	width: 60px;
}
.tailor__girl02 {
	top: 3px;
  left: 143px;
}
.tailor__girl02 img {
	width: 40px;
}
.tailor__girl03 {
	top: -17px;
  right: 166px;
}
.tailor__girl03 img {
	width: 30px;
}
@media screen and (max-width: 376px) {
	.tailor__bg01 {
		right: 30px;
	}
	.tailor__girl03 {
		right: 142px;
	}
}

.tailor__box {
	margin-bottom: 40px;
}
.tailor__detail {
	text-align: center;
	margin-bottom: 10px;
}
.tailor__detail img {
	width: 100%;
}
.tailor__description {
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
.tailor__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.tailor__item {
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	background: #5cb2ad;
	padding: 3px 5px;
}
.tailor__item:nth-of-type(2) {
	flex-basis: 29%;
}

/*----------------------------------------------
  .l_copyright
---------------------------------------------*/
.l_copyright {
  background: #808080;
  color: #FFFFFF;
  text-align: center;
  font-size: .9rem;
  padding: 10px 0;
}

/*----------------------------------------------
  .l_pagetop
---------------------------------------------*/
.l_pagetop {
  position: fixed;
  right: 38%;
  transform: translateX(190px);
  bottom: 10px;
	z-index: 99;
}
.l_pagetop a{
	line-height: 0;
	display: block;
}
.l_pagetop img:hover {
	opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .l_pagetop {
    right: 10px;
    transform: none;
  }
}