@charset "UTF-8";

@media screen and (max-width: 999px){

img{
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

.pc{display:none !important;}
.sp{display:block !important;}



/****************************************

	ヘッダー

*****************************************/
header {}
#header {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.header__inner {
	width: 100%;
	margin: 0 auto;
}

.header-visual {
	position: relative;
	width: 100%;
}

.slider {
	width: 100%;
	margin: 18vw auto 0 auto;
	z-index: 1;
}
.slick-img {
	overflow: hidden;
}
.slick-img img {
	width: 100%;
	height: auto;
	display: block;
}


/* ================================
	ヘッダー水色タイトル
================================ */
.header-copy {
	position: absolute;
	top: -15vw;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 20;
	pointer-events: none;
}
.header-copy-main {
	position: absolute;
	left: 5vw;
	right: 5vw;
	margin: 0 auto;
}


/* ================================
	ヘッダー内要素
================================ */
.header-balloon img,
.header-login img {
	width: 100%;
	height: auto;
	display: block;
}

/* ヘッダーロゴ */
.header-logo {
	position: absolute;
	z-index: 100;
	top: 22vw;
	left: 3vw;
	width: 17vw;
}
.header-logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


/* SCROLL */
.header-scroll {
	position: absolute;
	z-index: 100;
	top: 45vw;
	left: 3vw;
	display: flex;
	align-items: flex-start;
	text-decoration: none;
}
.header-scroll__text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	margin: 0;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	transform: rotate(180deg);
}
.header-scroll__rail {
	position: relative;
	width: 10px;
	height: 100px; /* 85px + 斜線ぶん */
	display: block;
}
/* 縦95px線 */
.header-scroll__line {
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 85px;
	background: rgba(255, 255, 255, 1);
	overflow: hidden;
}
.header-scroll__line::after {
	content: "";
	position: absolute;
	top: -30px;
	left: 0;
	width: 1px;
	height: 85px;
	background: #faf221;
	animation: scrollLineMove 3s ease-in-out infinite;
}
.header-scroll__slash {
	position: absolute;
	right: 1px;
	bottom: 15px;
	width: 18px;
	height: 1px;
	background: #fff;
	transform: rotate(45deg);
	transform-origin: right center;
}

@keyframes scrollLineMove {
	0% {top: -85px;}
	100% {top: 85px;}
}


/* 黄色キャッチ */
.header-catch {
	position: absolute;
	z-index: 20;
	left: 20vw;
	bottom: 53vw;
	width: 60vw;
}


/* 吹き出し */
.header-balloon {
	position: absolute;
	right: 50vw;
	bottom: 44vw;
	z-index: 30;
	width: 30vw;
	height: auto;
}
.header-balloon img {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .45s ease;
}
.header-balloon img.is-active {
	opacity: 1;
}


/* 料金バッジ */
.header-price {
	position: absolute;
	z-index: 20;
	right: 22vw;
	bottom: 5vw;
	width: 30vw;
}


/* ログイン */
.header-login {
	position: fixed;
	right: 0;
	bottom: 22%;
	z-index: 9999;
	width: 50px;
}
.header-login:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}



/* ================================
	少し遅れて出す要素
================================ */
.header-copy {
	opacity: 0;
	transform: translateY(18px);
	animation: heroFade .9s ease forwards;
	animation-delay: .25s;
}
.header-logo {
	opacity: 0;
	transform: translateX(-50px);
	animation: heroFade .9s ease forwards;
	animation-delay: .5s;
}
.header-catch {
	opacity: 0;
	transform: translateY(18px);
	animation: heroFade .9s ease forwards;
	animation-delay: 1.2s;
}
.header-balloon {
	opacity: 0;
	transform: translateX(50px);
	animation: heroFade .9s ease forwards;
	animation-delay: .5s;
}
.header-price {
	opacity: 0;
	transform: translateX(50px);
	animation: heroFade .9s ease forwards;
	animation-delay: .5s;
}

@keyframes heroFade {
	to {
		opacity: 1;
		transform: translate(0);
	}
}




/****************************************

	フッター

*****************************************/
.footer {
	background: #59b0e3;
}

.footer__inner {
	position: relative;
	margin: 0 auto;
	padding: 30px 20px 10px 20px;
	box-sizing: border-box;
}

.footer__main {}


/* -----------------------------
	フッター左
----------------------------- */
.footer__left {
	width: fit-content;
}
.footer__logo {
	width: 110px;
	margin: 0 0 30px 0;
}
.footer__logo img {
	width: 100%;
	display: block;
}
.footer__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.footer__info-block {
	position: relative;
}
.footer__info {
	position: relative;
	padding-left: 15px;
}
.footer__info::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,0.75);
}

.footer__info p {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 2;
	white-space: nowrap;
}


.footer__sns {
	position: absolute;
	left: 180px;
	bottom: 0;
	display: flex;
	gap: 13px;
}
.footer__sns a {
	width: 36px;
	display: block;
}
.footer__sns img {
	width: 100%;
	display: block;
}
.footer__sns a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


/* -----------------------------
	フッター右
----------------------------- */
.footer__right {}

.footer__title {
	margin: 50px auto 50px auto;
	width: 80vw;
}


/* -----------------------------
	コピー
----------------------------- */
.footer__copy {
	margin: 20px 0 0 0;
	font-size: 14px;
	color: #fff;
}


/* -----------------------------
	右上キャッチ
----------------------------- */
.footer__catch {
	position: absolute;
	right: 3vw;
	top: -45px;
	max-width: 182px;
	width: 35vw;
}

.footer__catch img {
	width: 100%;
	display: block;
}




/****************************************

	スクロールをしたら要素を動かす系

*****************************************/
.parallax {
	opacity: 0;
	transition: all 1s ease;
	transition-delay: 0s;
}

.delay100 {
	transition-delay: 0.1s;
}
.delay200 {
	transition-delay: 0.2s;
}
.delay300 {
	transition-delay: 0.3s;
}
.delay400 {
	transition-delay: 0.4s;
}
.delay500 {
	transition-delay: 0.5s;
}
.delay600 {
	transition-delay: 0.6s;
}
.delay700 {
	transition-delay: 0.7s;
}
.delay800 {
	transition-delay: 0.8s;
}
.delay900 {
	transition-delay: 0.9s;
}
.delay1000 {
	transition-delay: 1s;
}

.parallax--up {
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
}
.parallax--down {
	-webkit-transform: translateY(-50px);
	transform: translateY(-50px);
}
.parallax--rl {
	-webkit-transform: translate(50px, 0);
	transform: translate(50px, 0);
}
.parallax--lr {
	-webkit-transform: translate(-50px, 0);
	transform: translate(-50px, 0);
}

.parallax--action {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}




/****************************************

	home

*****************************************/
#top {}



/* =================================
	TOP NEWS
================================= */
.top-news {
	padding: 40px 0 200px 0;
}

.top-news__inner {
	margin: 0 15px;
}

.top-news__heading {
	margin: 0 0 25px 0;
}

.top-news__sub {
	margin: 0 0 15px 0;
	color: #59b0e3;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.top-news__title {
	color: #59b0e3;
	font-family: "Lato", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 34px;
	font-weight: 900;
	font-style: italic;
	line-height: 1;
}

.top-news__list {
	margin: 0 auto;
}
.top-news__list iframe {
	height: 285px;
}
.top-news__item a {
	min-height: 50px;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 10px;
	text-decoration: none;
	color: #1a1a1a;
	box-sizing: border-box;
}

.top-news__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
	height: 22px;
	background: #e60012;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

.top-news__text {
	display: block;
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}



/* =================================
	TOP CONCEPT
================================= */
.top-concept {
	background: #fff;
	overflow: visible;
}
.top-concept__inner {}

.top-concept__visual {
	position: relative;
	width: 100%;
	background-image: url("../../img/concept-bg01-sp.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 960 / 880;
}
@media screen and (min-width: 580px){
	.top-concept__visual {
		background-image: url("../../img/concept-bg01.jpg");
		aspect-ratio: 1300 / 640;
	}
}

.top-concept__box {
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 70vw;
	background: rgba(238, 246, 251, 0.88);
	text-align: center;
	box-sizing: border-box;
	padding: 30px;
	z-index: 20;
}

.top-concept__title {
	color: #59b0e3;
	font-family: "Lato", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 35px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 15px 0;
}
.top-concept__sub {
	color: #59b0e3;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 15px 0;
}

.top-concept__triangle {
	display: block;
	width: 140px;
	height: auto;
	margin: 20px auto 50px auto;
}

/* 本文 */
.top-concept__text {
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	text-align: left;
}
@media screen and (min-width: 580px){
	.top-concept__text {
		font-size: 18px;
	}
}


/* 左右の子ども */
.top-concept__kid--left {
	position: absolute;
	z-index: 25;
	display: block;
	left: -55px;
	top: 24px;
	width: 110px;
}
.top-concept__kid--right {
	position: absolute;
	z-index: 25;
	display: block;
	right: -45px;
	top: 19px;
	width: 85px;
}

/* 左下ロゴ */
.top-concept__catch {
	position: absolute;
	left: 3vw;
	bottom: -30px;
	z-index: 15;
	max-width: 196px;
	width: 35vw;
}
.top-concept__catch img {
	display: block;
	width: 100%;
	height: auto;
}



/* =================================
	TOP SECTION01
================================= */
.top-section01 {
	position: relative;
	overflow: hidden;
}
.top-section01__inner {
	position: relative;
	z-index: 2;
}

.top-section01__side {
	display: none;
}



/* =================================
	TOP PROGRAMS
================================= */
.top-programs {
	margin: 70px 0 0 0;
}

.top-programs__grid {
	display: grid;
	row-gap: 90px;
	width: 100%;
}

.program-card {
	position: relative;
}
.program-card__link {
	display: block;
	text-decoration: none;
	color: #1a1a1a;
}

.program-card__head {
	text-align: center;
}
.program-card__num {
	display: block;
	width: 250px;
	height: auto;
	margin: 0 auto 10px auto;
}
.program-card__sub {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: #1a1a1a;
	margin: 0 0 10px 0;
}

.program-card__image {
	position: relative;
	overflow: hidden;
}
.program-card__image img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .25s ease, opacity .25s ease;
}
.program-card__link:hover .program-card__image img {
	transform: scale(1.1);
	opacity: .8;
}

.program-card__button {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -24px;
	width: 207px;
	height: 48px;
	padding: 0 38px 0 26px;
	border-radius: 9999px;
	border: 2px solid #faf221;
	background: #faf221;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
	box-sizing: border-box;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.program-card__button::after {
	content: "›";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-52%);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}
.program-card__link:hover .program-card__button {
	border: 2px solid #faf221;
	background: rgba(250, 243, 33, 0.65);
}



/* =================================
	TOP CONTACT
================================= */
.top-contact {
	padding: 150px 0 90px 0;
}

.top-contact__heading {
	text-align: center;
	margin: 0 15px 40px 15px;
}
.top-contact__title {
	color: #59b0e3;
	font-size: 35px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 15px 0;
}
.top-contact__title span {
	font-size: 30px;
	padding: 0 2px 0 0;
}
.top-contact__sub {
	margin: 0 0 20px 0;
	color: #59b0e3;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 15px 0;
}
.top-contact__triangle {
	display: block;
	width: 140px;
	height: auto;
	margin: 20px auto 40px auto;
}


.top-contact__box {
	background: #9fd0ee;
	padding: 20px 20px 50px 20px;
}

.top-contact__note {
	margin: 0 0 30px 0;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}
.top-contact__note span {
	color: #ff0000;
}

.top-contact__note02 {
	margin: 0 0 40px 0;
	font-size: 16px;
	line-height: 2;
	color: #1a1a1a;
}


.top-contact__form {
	margin: 0 0 40px 0;
}
.top-contact__form table {
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
	border: none;
}
.top-contact__form table th {
	padding: 10px 0;
	text-align: left;
	vertical-align: middle;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	display: block;
	width: 100%;
}
.top-contact__form table th span {
	background-color: #ff0000;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 4px;
	margin-left: 1rem;
	vertical-align: baseline;
}
.top-contact__form table td {
	padding: 20px;
	vertical-align: middle;
	background: #ffffff;
	border: 1px solid #a8a8a8;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	display: block;
	width: 100%;
}

.top-contact__form table td label {
	padding: 0 15px 0 0;
}
.top-contact__form--blocklabel label {
	display: block;
}


.form__smallbox {
	width: 45%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
	margin: 0 10px 0 0;
}
.form__largebox {
	width: 100%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
	margin: 0 10px 0 0;
}
.form__textarea {
	width: 100%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
}

.top-contact__form--btn {}
.form__btn-submit {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	padding: 16px 60px;
	border: 2px solid #faf221;
	background: #faf221;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
}
.form__btn-submit:hover {
	border: 2px solid #faf221;
	background: rgba(250, 243, 33, 0.65);
	color: #1a1a1a;
}

.form-error-text {
	color: #E60012;
	font-size: 0.85rem;
	margin-top: 8px;
	display: none;
}

.form-error-text.is-visible {
	display: block;
}

.input-text.is-error {
	background-color: #FFF0F0;
	outline: 2px solid #E60012;
}


/* =================================
	TOP LINKS
================================= */
.top-links {
	padding: 0 0 90px 0;
	margin: 0 15px 0 15px;
}

.top-links__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
	margin: 0 0 40px 0;
}
.top-links__button {
	width: 100%;
	max-width: 300px;
	height: 56px;
	border-radius: 9999px;
	border: 2px solid #59b0e3;
	background: #59b0e3;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #ffffff;
	line-height: 1;
}
.top-links__button:hover {
	border: 2px solid #59b0e3;
	background: rgba(89, 176, 227, 0.65);
	color: #ffffff;
}

.top-links__privacy {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
}




/****************************************

	KAKUNIN

*****************************************/
.kakunin {}


.form-kakunin {
	margin: 50px 0 90px 0;
}

.form-kakunin__heading {
	text-align: center;
	margin: 0 15px 40px 15px;
}
.form-kakunin__title {
	color: #59b0e3;
	font-size: 35px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 15px 0;
}
.form-kakunin__title span {
	font-size: 30px;
	padding: 0 2px 0 0;
}
.form-kakunin__sub {
	margin: 0 0 20px 0;
	color: #59b0e3;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 15px 0;
}
.form-kakunin__triangle {
	display: block;
	width: 140px;
	height: auto;
	margin: 20px auto 40px auto;
}


.form-kakunin__box {
	background: #9fd0ee;
	padding: 20px 20px 50px 20px;
}

.form-kakunin__note {
	margin: 0 0 30px 0;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}
.form-kakunin__note span {
	color: #ff0000;
}


.form-kakunin__form {
	margin: 0 0 40px 0;
}
.form-kakunin__form table {
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
	border: none;
}
.form-kakunin__form table th {
	padding: 10px 0;
	text-align: left;
	vertical-align: middle;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	display: block;
	width: 100%;
}
.form-kakunin__form table th span {
	color: #ff0000;
	font-size: 16px;
}
.form-kakunin__form table td {
	padding: 20px;
	vertical-align: middle;
	background: #ffffff;
	border: 1px solid #a8a8a8;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	display: block;
	width: 100%;
}

.form-kakunin__form table td label {
	padding: 0 15px 0 0;
}
.form-kakunin__form--blocklabel label {
	display: block;
}


.form-kakunin__form table td input[name="name04"],
.form-kakunin__form table td input[name="name03"],
.form-kakunin__form table td input[name="name02"],
.form-kakunin__form table td input[name="name01"] {
	width: 45%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
	margin: 0 10px 0 0;
}
.form-kakunin__form table td input[name="mail-kakunin"],
.form-kakunin__form table td input[name="mail"],
.form-kakunin__form table td input[name="tel"],
.form-kakunin__form table td input[name="learning-objectives"],
.form-kakunin__form table td input[name="garden-name"],
.form-kakunin__form table td input[name="address"],
.form-kakunin__form table td input[name="post-code"] {
	width: 100%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
	margin: 0 10px 0 0;
}
.form-kakunin__form table td textarea[name="inquiry-details"] {
	width: 100%;
	padding: 10px;
	color: #1a1a1a;
	background: #eeeeee;
	border: 1px solid #eeeeee;
}

.form-kakunin__form--btn {
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.form-kakunin__form--btn input[type="button"] {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	display: block;
	width: 45%;
	padding: 12px 40px;
	border: 2px solid #faf221;
	background: #faf221;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
}
.form-kakunin__form--btn input[type="button"]:hover {
	border: 2px solid #faf221;
	background: rgba(250, 243, 33, 0.65);
	color: #1a1a1a;
}

.form-kakunin__form--btn input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	display: block;
	width: 45%;
	padding: 12px 40px;
	border: 2px solid #faf221;
	background: #faf221;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
}
.form-kakunin__form--btn input[type="submit"]:hover {
	border: 2px solid #faf221;
	background: rgba(250, 243, 33, 0.65);
	color: #1a1a1a;
}



/****************************************

	ERROR

*****************************************/
.error {}


.form-error__note {
	margin: 0 0 30px 0;
	font-size: 16px;
	line-height: 2;
	color: #1a1a1a;
}
.form-error__note span {
	color: #ff0000;
}

.form-error__note02 {
	margin: 0 0 40px 0;
	font-size: 16px;
	line-height: 2;
	color: #ff0000;
}


.form-error__form--btn {
	width: fit-content;
	margin: 0 auto;
}
.form-error__form--btn input[type="button"] {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	display: block;
	padding: 12px 40px;
	border: 2px solid #faf221;
	background: #faf221;
	color: #1a1a1a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
}
.form-error__form--btn input[type="button"]:hover {
	border: 2px solid #faf221;
	background: rgba(250, 243, 33, 0.65);
	color: #1a1a1a;
}



/****************************************

	KANRYO

*****************************************/
.kanryo {}


.form-kanryo {
	margin: 50px 0 90px 0;
}
.form-kanryo__inner {
	margin: 0 15px;
}


.form-kanryo__heading {
	text-align: center;
	margin: 0 0 40px 0;
}
.form-kanryo__title {
	color: #59b0e3;
	font-size: 35px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 15px 0;
}
.form-kanryo__title span {
	font-size: 30px;
	padding: 0 2px 0 0;
}
.form-kanryo__sub {
	margin: 0 0 20px 0;
	color: #59b0e3;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 15px 0;
}
.form-kanryo__triangle {
	display: block;
	width: 140px;
	height: auto;
	margin: 20px auto 40px auto;
}


.form-kanryo__guide {}
.form-kanryo__message {
	background: #59b0e3;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	text-align: center;
	color: #ffffff;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 30px 20px;
	width: 80vw;
	margin: 0 auto 50px auto;
}
.form-kanryo__note {
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #1a1a1a;
	width: fit-content;
	margin: 0 auto 50px auto;
}




/****************************************

	INDEX

*****************************************/
.index {}


.index-header {
	width: 100%;
}
.index-header__visual {
	position: relative;
}
.index-header__bg img {
	width: 100%;
	height: auto;
}

.index-header__copy {
	position: absolute;
	z-index: 100;
	top: 5vw;
	left: 3vw;
	right: 3vw;
}

.index-header__logo {
	position: absolute;
	z-index: 100;
	top: 25vw;
	left: 3vw;
	width: 19vw;
}
.index-header__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.index-header__title {
	position: absolute;
	bottom: -10vw;
	left: 0;
	width: 100vw;
}




/* =================================
	INDEX SECTION
================================= */
.index-section {}
.index-section__inner {}


/* =================================
	INDEX PROGRAMS
================================= */
.index-programs {
	margin: 15vw 0 150px 0;
}


.index-programs__note {
	margin: 0 15px 70px 15px;
}
.index-programs__note li {
	position: relative;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding: 0 0 0 15px;
}
.index-programs__note li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #1a1a1a;
}
.index-programs__note a {
	color: #317abf;
	font-weight: 500;
	text-decoration: underline;
}
.index-programs__note a:hover {
	text-decoration: none;
}




/****************************************

	CIRCUIT

*****************************************/
.circuit {}


.circuit-header {
	width: 100%;
}
.circuit-header__visual {
	position: relative;
}
.circuit-header__bg img {
	width: 100%;
	height: auto;
}

.circuit-header__copy {
	position: absolute;
	z-index: 100;
	top: 5vw;
	left: 3vw;
	right: 3vw;
}

.circuit-header__logo {
	position: absolute;
	z-index: 100;
	top: 25vw;
	left: 3vw;
	width: 19vw;
}
.circuit-header__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.circuit-header__title {
	position: absolute;
	bottom: -10vw;
	left: 0;
	width: 100vw;
}


/* =================================
	CIRCUIT CONTENTS
================================= */
.circuit-contents {
	margin: 18vw 0 150px 0;
}

.circuit-contents__inner {
	margin: 0 15px;
}


/* =================================
	CIRCUIT PANKUZU
================================= */
.circuit-pankuzu {
	margin: 0 0 50px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	width: 100%;
	text-align: right;
}
.circuit-pankuzu__icon {
	display: block;
	width: 13px;
	height: auto;
	flex: 0 0 auto;
}
.circuit-pankuzu__text {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #c5c5c5;
	line-height: 1;
}
.circuit-pankuzu__text:hover {
	text-decoration:underline;
}


/* =================================
	CIRCUIT LIST
================================= */
.circuit-list {
	border-top: 1px solid #1a1a1a;
}
.circuit-list__item {
	border-bottom: 1px solid #1a1a1a;
}
.circuit-list__item a {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 10px 0;
	text-decoration: none;
	color: #1a1a1a;
	box-sizing: border-box;
}

.circuit-list__text {
	display: block;
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}




/****************************************

	KISETSU

*****************************************/
.kisetsu {}


.kisetsu-header {
	width: 100%;
}
.kisetsu-header__visual {
	position: relative;
}
.kisetsu-header__bg img {
	width: 100%;
	height: auto;
}

.kisetsu-header__copy {
	position: absolute;
	z-index: 100;
	top: 5vw;
	left: 3vw;
	right: 3vw;
}

.kisetsu-header__logo {
	position: absolute;
	z-index: 100;
	top: 25vw;
	left: 3vw;
	width: 19vw;
}
.kisetsu-header__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.kisetsu-header__title {
	position: absolute;
	bottom: -10vw;
	left: 0;
	width: 100vw;
}


/* =================================
	KISETSU CONTENTS
================================= */
.kisetsu-contents {
	margin: 18vw 0 150px 0;
}

.kisetsu-contents__inner {
	margin: 0 15px;
}


/* =================================
	KISETSU PANKUZU
================================= */
.kisetsu-pankuzu {
	margin: 0 0 50px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	width: 100%;
	text-align: right;
}
.kisetsu-pankuzu__icon {
	display: block;
	width: 13px;
	height: auto;
	flex: 0 0 auto;
}
.kisetsu-pankuzu__text {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #c5c5c5;
	line-height: 1;
}
.kisetsu-pankuzu__text:hover {
	text-decoration:underline;
}


/* =================================
	KISETSU LIST
================================= */
.kisetsu-list {
	border-top: 1px solid #1a1a1a;
}
.kisetsu-list__item {
	border-bottom: 1px solid #1a1a1a;
}
.kisetsu-list__item a {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 10px 0;
	text-decoration: none;
	color: #1a1a1a;
	box-sizing: border-box;
}

.kisetsu-list__text {
	display: block;
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}




/****************************************

	TAISOU

*****************************************/
.taisou {}


.taisou-header {
	width: 100%;
}
.taisou-header__visual {
	position: relative;
}
.taisou-header__bg img {
	width: 100%;
	height: auto;
}

.taisou-header__copy {
	position: absolute;
	z-index: 100;
	top: 5vw;
	left: 3vw;
	right: 3vw;
}

.taisou-header__logo {
	position: absolute;
	z-index: 100;
	top: 25vw;
	left: 3vw;
	width: 19vw;
}
.taisou-header__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.taisou-header__title {
	position: absolute;
	bottom: -10vw;
	left: 0;
	width: 100vw;
}


/* =================================
	TAISOU CONTENTS
================================= */
.taisou-contents {
	margin: 18vw 0 150px 0;
}

.taisou-contents__inner {
	margin: 0 15px;
}


/* =================================
	TAISOU PANKUZU
================================= */
.taisou-pankuzu {
	margin: 0 0 50px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	width: 100%;
	text-align: right;
}
.taisou-pankuzu__icon {
	display: block;
	width: 13px;
	height: auto;
	flex: 0 0 auto;
}
.taisou-pankuzu__text {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #c5c5c5;
	line-height: 1;
}
.taisou-pankuzu__text:hover {
	text-decoration:underline;
}


/* =================================
	TAISOU LIST
================================= */
.taisou-list {
	border-top: 1px solid #1a1a1a;
}
.taisou-list__item {
	border-bottom: 1px solid #1a1a1a;
}
.taisou-list__item a {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 10px 0;
	text-decoration: none;
	color: #1a1a1a;
	box-sizing: border-box;
}

.taisou-list__text {
	display: block;
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}




/****************************************

	SKILL UP

*****************************************/
.skillup {}


.skillup-header {
	width: 100%;
}
.skillup-header__visual {
	position: relative;
}
.skillup-header__bg img {
	width: 100%;
	height: auto;
}

.skillup-header__copy {
	position: absolute;
	z-index: 100;
	top: 5vw;
	left: 3vw;
	right: 3vw;
}

.skillup-header__logo {
	position: absolute;
	z-index: 100;
	top: 25vw;
	left: 3vw;
	width: 19vw;
}
.skillup-header__logo a:hover img {
	opacity: 0.7;
	transition: all .3s ease;
}


.skillup-header__title {
	position: absolute;
	bottom: -10vw;
	left: 0;
	width: 100vw;
}


/* =================================
	SKILL UP CONTENTS
================================= */
.skillup-contents {
	margin: 18vw 0 150px 0;
}

.skillup-contents__inner {
	margin: 0 15px;
}


/* =================================
	SKILL UP PANKUZU
================================= */
.skillup-pankuzu {
	margin: 0 0 50px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	width: 100%;
	text-align: right;
}
.skillup-pankuzu__icon {
	display: block;
	width: 13px;
	height: auto;
	flex: 0 0 auto;
}
.skillup-pankuzu__text {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #c5c5c5;
	line-height: 1;
}
.skillup-pankuzu__text:hover {
	text-decoration:underline;
}


/* =================================
	SKILL UP LIST
================================= */
.skillup-list {
	border-top: 1px solid #1a1a1a;
}
.skillup-list__item {
	border-bottom: 1px solid #1a1a1a;
}
.skillup-list__item a {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 10px 0;
	text-decoration: none;
	color: #1a1a1a;
	box-sizing: border-box;
}

.skillup-list__text {
	display: block;
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #1a1a1a;
}



/****************************************

	以下レスポンシブ　記述終了用　削除禁止

*****************************************/
}
