/* ------------------------reset--START------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
/* menu, nav, output, ruby, section, summary, */
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------------------------reset--END------------------------ */



/* ------------------------common--START------------------------ */
@media (max-width: 560px) {
	.sp-shown-n-pc-unshown {
		display: block;
	}
	.pc-shown-n-sp-unshown {
		display: none;
	}
}

@media (min-width: 560px) {
	.sp-shown-n-pc-unshown {
		display: none;
	}
	.pc-shown-n-sp-unshown {
		display: block;
	}
}

body {
	position: relative;
}

.wrapper {
	width: 100%;
	overflow: hidden;
}

.wrapper_white {
	background-color: #fff;
}

.wrapper_gray {
	background-color: #F8F8F8;
}

.container {
	padding: 70px 0 150px 0;
	width: 88vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1000px) {
	.container {
		width: 70vw;
		padding: 60px 0 150px 0;
	}
}

.area-title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	text-align: center;
	color: #333;
}

.area-title_non-top{
	margin-top: 100px;
}

.title-under-line {
	width: 100px;
	border: 2px solid #50B040;
	margin: 50px auto;
}

.paragraph {
	width: 50%;
	margin: auto;
}
@media(max-width: 1000px){
	.paragraph{
		width: 100%;
	}
}

.txt {
	font-size: 16px;
	line-height: 32px;
	font-family: "Noto Sans JP", sans-serif;
	color: #444;
}

.card {
	width: 65vw;
	height: auto;
	margin: auto;
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
	margin-top: 106px;
}
@media (max-width: 1000px) {
	.card {
		width: 100%;
		height: auto;
	}
}

.card__title {
	width: 100%;
	text-align: center;
	background-color: #50B040;
	line-height: 48px;
	color: #fff;
}

.card__flex-box {
	display: flex;
	flex-direction: row;
	padding: 30px;
}
@media (max-width: 1000px) {
	.card__flex-box {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.card__flex-box--img {
	width: 300px;
	height: auto;
	margin-right: 20px;
}

@media (max-width: 600px) {
	.card__flex-box--img {
		width: 230px;
		margin-right: 0;
	}
}

.card__flex-box--title {
	color: #333;
}
@media (max-width: 1000px) {
	.card__flex-box--title {
		margin-top: 40px;
	}
}

.card__flex-box--txt {
	margin-top: 20px;
	line-height: 24px;
}

.card:first-of-type {
	margin-top: 0;
}
/* ------------------------common--END------------------------ */



/* ------------------------header--START------------------------ */
.header-wrapper {
	width: 100%;
	height: 100px;
	background-color: #50B040;
	padding: 14px 0 14px;
	box-sizing: border-box;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
	position: fixed;
	z-index: 10000;
	top: 0;
}
@media (max-width: 1000px) {
	.header-wrapper {
		padding: 20px 15px;
		position: fixed;
		z-index: 100;
	}
}


.header-container {
	height: 100%;
	width: 1060px;
	width: 80vw;
	margin: 0 auto;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
@media (max-width: 1000px) {
	.header-container {
		width: 100%;
		justify-content: center;
	}
}

.container-upper {
	display: flex;
	flex-direction: row;
	align-items: center;
}
@media (max-width: 1000px) {
	.container-upper {
		width: 100%;
	}
}

.container-upper__logo {
	width: 20px;
	margin-left: 20px
}
@media (max-width: 560px) {
	.container-upper__logo {
		width: 30px;
	}
}
@media (max-width: 1000px) {
	.container-upper__logo {
		width: 30px;
	}
}

.container-upper__title {
	font-size: 24px;
	margin-left: 6px;
}
@media (max-width: 1000px) {
	.container-upper__title {
		font-size: 16px;
		line-height: 24px;
	}
}

.container-lower {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
@media (max-width: 1000px) {
	.container-lower {
		display: none;
	}
}
@media (max-width: 1000px) {
	.container-lower {
		display: none;
	}
}

.container-lower__left {
	display: flex;
	flex-direction: row;
}

.container-lower__left--item {
	margin-left: 38px;
}

.container-lower__left--item a {
	color: #fff;
}

.container-lower__left--item:first-of-type {
	margin-left: 0;
}

.container-lower__right--logo {
	font-size: 20px;
}

.container-lower__right--number {
	font-size: 24px;
	margin-left: 6px;
}

#nav-toggle {
	position: fixed;
	top: 28px;
	right: 25px;
	height: 32px;
	cursor: pointer;
}

#nav-toggle div {
	position: relative;
	width: 36px;
}

#nav-toggle span {
	width: 100%;
	height: 3px;
	left: 0;
	display: block;
	background: #fff;
	position: absolute;
	transition: transform .6s ease-in-out, top .5s ease;
}

#nav-toggle span:nth-child(1) {
	top: 8px;
}

#nav-toggle span:nth-child(2) {
	top: 22px;
}

#nav-toggle span:nth-child(3) {
	top: 36px;
}

#nav-toggle:hover span:nth-child(1) {
	top: 8px;
}

#nav-toggle:hover span:nth-child(3) {
	top: 36px;
}

.open #nav-toggle span {
	background: #fff;
}

.open #nav-toggle span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}

.open #nav-toggle span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
	z-index: 1000;
}
@media (min-width: 1000px) {
	#nav-toggle {
		display: none;
	}
}

#container {
	z-index: 900;
}

#gloval-nav {
	background: #50B040;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	text-align: center;
	display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 16px 0;
	transition: color .6s ease;
}

#gloval-nav a:hover {
	color: #666;
}

#gloval-nav ul {
	list-style: none;
}

#gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform .6s ease, opacity .2s ease;
}

#gloval-nav ul li:nth-child(2) {
	transition-delay: .15s;
}

#gloval-nav ul li:nth-child(3) {
	transition-delay: .3s;
}

#gloval-nav ul li:nth-child(4) {
	transition-delay: .45s;
}

#gloval-nav ul li:nth-child(5) {
	transition-delay: .6s;
}

#gloval-nav ul li:nth-child(6) {
	transition-delay: .75s;
}

#gloval-nav ul li:nth-child(7) {
	transition-delay: .9s;
}

/* open */
.open {
	overflow: hidden;
}

.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}

.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity .9s ease;
}
/* ------------------------header--END------------------------ */



/* ------------------------footer--START------------------------ */
.footer-wrapper {
	background-color: #329222;
	width: 100%;
	height: 400px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
	overflow: hidden;
}
@media (max-width: 560px) {
	.footer-wrapper {
		height: 620px;
	}
}

.footer-container {
	width: 85vw;
	margin: 0 auto;
}
@media (max-width: 560px) {
	.footer-container {
		width: 80%;
		margin: 0 auto;
	}
}

.footer-container__upper {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 100px;
}
@media (max-width: 560px) {
	.footer-container__upper {
		display: flex;
		flex-direction: column;
		margin-top: 70px;
	}
}

.footer-container__left {
	display: flex;
	flex-direction: row;
}
@media (max-width: 560px) {
	.footer-container__left {
		margin: 0 auto;
	}
}

.footer-container__left--left {
	width: 106px;
	display: flex;
	flex-direction: column;
}
@media (max-width: 560px) {
	.footer-container__left--left {
		width: 64px;
	}
}

.footer-container__left--left li {
	margin: 32px 0 0 auto;
	color: #E1E1E1;
}
.footer-container__left--left li:first-of-type {
	margin: 0 0 0 auto;
}

.footer-container__left--right {
	margin-left: 30px;
}

.footer-container__left--right li {
	margin: 32px 0 0 auto;
}
.footer-container__left--right li:first-of-type {
	margin: 0 0 0 auto;
}

@media (max-width: 560px) {
	.footer-container__right ul {
		display: flex;
		flex-direction: column;
	}
}

.footer-container__right li {
	margin: 20px 0 0 auto;
}
@media (max-width: 560px) {
	.footer-container__right li {
		margin: 20px 0 0 0;
		text-align: center;
	}
}

.footer-container__right li a {
	color: #fff;
	text-decoration: none;
}

.footer-container__right li:first-of-type {
	margin: 0 0 0 auto;
}
@media (max-width: 560px) {
	.footer-container__right li:first-of-type {
		margin: 0;
	}
}

@media (max-width: 560px) {
	.footer-container__right {
		margin-top: 70px;
	}
}

.footer-container__lower {
	display: block;
	margin-top: 100px;
	text-align: center;
}
@media (max-width: 560px) {
	.footer-container__lower {
		margin-top: 70px;
		font-size: 14px;
	}
}
/* ------------------------footer--END------------------------ */



/* ------------------------index--START------------------------ */
.key-visual {
	background-image: url(../images/key-visual.jpg);
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 66.74%;
	margin-top: 100px;
}

.setsubi-flex-box {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
}
@media (max-width: 1000px) {
	.setsubi-flex-box {
		flex-direction: column;
	}
}

.setsubi-card {
	width: 25vw;
	display: flex;
	flex-direction: column;
	margin-left: 38px;
	align-items: center;
}
@media (max-width: 1000px) {
	.setsubi-card {
		margin-left: 0;
		margin-top: 90px;
		width: 50vw;
	}
}

.setsubi-card__icon {
	color: #50B040;
}

.setsubi-card__title {
	margin-top: 20px;
	font-size: 20px;
}

.setsubi-card__txt {
	margin-top: 20px;
	width: 80%;
}
@media (max-width: 1000px) {
	.setsubi-card__txt {
		margin-top: 20px;
		width: 120%;
	}
}


.setsubi-card:first-of-type {
	margin-left: 0;
}
@media (max-width: 560px) {
	.setsubi-card:first-of-type {
		margin-top: 0;
	}
}

.gaiyou-title {
	color: #fff;
	z-index: 1;
	position: relative;
}

.gaiyou-background {
	width: 100%;
	height: 560px;
	background-image: url(../images/child-studying.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	position: relative;
}
@media (max-width: 1000px) {
	.gaiyou-background {
		background-size: 200%;
		height: 500px;
	}
}
.gaiyou-background::after {
	content: " ";
	background-color: rgba(51, 51, 51, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
}

.flex-box_gaiyou {
	display: flex;
	margin: 70px auto 0;
	z-index: 1;
	position: relative;
}

.flex-box_gaiyou__head {
	text-align: right;
	line-height: 60px;
	color: #fff;
}

.flex-box_gaiyou__content {
	text-align: left;
	margin-left: 30px;
	line-height: 60px;
	font-weight: bold;
	color: #fff;
}

.setsubi-img{
	margin-top: 30px;
	width: 100px;
}

/* ------------------------index--END------------------------ */



/* ------------------------hiyou--START------------------------ */
@media (min-width: 560px) {
	.shidou-taisyou {
		width: 762px;
		height: 253px;
		border-radius: 4px;
		border: 4px #50B040 solid;
		background-color: #F8F8F8;
		margin: 48px auto 0;
		display: flex;
	}

	.shidou-taisyou__label {
		height: 100%;
		width: 153px;
		background: #50B040;
		text-align: center;
		line-height: 253px;
		color: #fff;
		position: relative;
		text-align: right;
		font-size: 20px;
	}
	.shidou-taisyou__label::after {
		position: absolute;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 130px 0 130px 100px;
		top: -2px;
		left: 153px;
		border-color: transparent transparent transparent #50B040;
	}

	.shidou-taisyou__subjects {
		margin: auto 0 auto 180px;
		width: 50%;
	}

	.shidou-taisyou__dot {
		display: inline-block;
		margin-right: 10px;
		width: 15px;
		height: 15px;
		background-color: #50B040;
	}

	.shidou-taisyou__flex-box {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.shidou-taisyou__flex-box li {
		margin-right: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 560px) {
	.shidou-taisyou {
		width: 100%;
		height: 240px;
		border-radius: 4px;
		border: 4px #50B040 solid;
		background-color: #F8F8F8;
		margin-top: 68px;
	}

	.shidou-taisyou__label {
		width: 100%;
		background-color: #50B040;
		color: #fff;
		height: 54px;
		text-align: center;
		position: relative;
		line-height: 54px;
	}

	.shidou-taisyou__flex-box {
		display: flex;
		flex-direction: row;
		width: 80%;
		height: 50%;
		margin: 50px auto 0;
	}

	.shidou-taisyou__dot {
		display: inline-block;
		margin-right: 10px;
		width: 15px;
		height: 15px;
		background-color: #50B040;
	}

	.shidou-taisyou__flex-box {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.shidou-taisyou__flex-box li {
		margin-right: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.shidou-taisyou__flex-box li:nth-of-type(3) {
		margin-right: 0;
	}
}

.hiyou-table_pc {
	width: 70%;
	margin: 106px auto 0;
}

.price-box {
	width: 60%;
	border-radius: 4px;
	border: 4px #50B040 solid;
	height: 114px;
	margin: 0 auto;
	display: flex;
	box-sizing: border-box;
}
@media (max-width: 900px) {
	.price-box {
		width: 100%;
	}
}

.price-box__label {
	width: 20%;
	height: 100%;
	background-color: #50B040;
	color: #fff;
	text-align: center;
	line-height: 114px;
}
@media (max-width: 560px) {
	.price-box__label {
		width: 30%;
	}
}

.price-box__content {
	width: 80%;
	height: 100%;
	background-color: #fff;
	line-height: 114px;
	text-align: center;
}
@media (max-width: 560px) {
	.price-box__content {
		width: 70%;
	}
}

.price-box:nth-of-type(2) {
	margin-top: 48px;
}

.hiyou_paragraph {
	margin: 62px auto 0;
}

.sample-title {
	margin-left: 235px;
	margin-top: 96px;
}
@media (max-width: 1000px) {
	.sample-title {
		margin-left: 0;
	}
}
.sample-title:first-of-type {
	margin-top: 0;
}

.sample-box {
	width: 60%;
	height: 170px;
	margin: 0 auto;
	display: flex;
	box-sizing: border-box;
}

@media (max-width: 1000px) {
	.sample-box {
		width: 100%;
	}
}

.sample-box__top {
	border-radius: 4px 4px 0 0;
	border-top: 2px solid #50B040;
	border-right: 2px solid #50B040;
	border-bottom: 1px solid #50B040;
	border-left: 2px solid #50B040;
}

.sample-box__bottom {
	border-radius: 0 0 4px 4px;
	border-top: 1px solid #50B040;
	border-right: 2px solid #50B040;
	border-bottom: 2px solid #50B040;
	border-left: 2px solid #50B040;
}

.sample-box__label {
	width: 20%;
	height: 100%;
	background-color: #F8F8F8;
	text-align: center;
	line-height: 170px;
	position: relative;
}
@media (max-width: 560px) {
	.sample-box__label {
		width: 30%;
	}
}
.sample-box__label::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 25%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 45px 0 45px 43.3px;
	border-color: transparent transparent transparent #F8F8F8;
}
@media (max-width: 560px) {
	.sample-box__label::after {
		content: "";
		top: 35%;
		border-width: 25px 0 25px 23.3px;
	}
}

.sample-box__label--top {
	border-radius: 2px 0 0 0;
}

.sample-box__label--bottom {
	border-radius: 0 0 0 2px;
}

.sample-box__content {
	width: 80%;
	height: 100%;
	background-color: #fff;
	text-align: center;
}
@media (max-width: 560px) {
	.sample-box__content {
		width: 70%;
	}
}

.sample-box__content__top {
	border-radius: 0 2px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sample-box__content__bottom {
	border-radius: 0 0 2px 0;
	line-height: 170px;
}
/* ------------------------hiyou--START------------------------ */



/* ------------------------access--START------------------------ */
.access {
	width: 924px;
	margin: 0 auto;
}
@media (max-width: 560px) {
	.access {
		width: 100%;
	}
}

.access__flex-box {
	display: flex;
	flex-direction: row;
	height: 124px;
	width: 100%;
}

@media (max-width: 560px) {
	.access__flex-box {
		flex-direction: column;
		padding-left: 24px;
		box-sizing: border-box;
	}
}

.access__flex-box--head {
	margin-left: 86px;
	width: 226px;
	height: 100%;
	line-height: 124px;
	color: #444;
}
@media (max-width: 560px) {
	.access__flex-box--head {
		margin-left: 0;
		height: 68px;
		line-height: 68px;
		font-size: 12px;
	}
}

.access__flex-box--content {
	width: 450px;
	height: 100%;
	color: #333;
	line-height: 124px;
}
@media (max-width: 560px) {
	.access__flex-box--content {
		height: 62px;
		line-height: 18px;
		font-size: 12px;
	}
}

.access__flex-box--content img {
	width: 100%;
	margin-top: 50px;
}
@media (max-width: 560px) {
	.access__flex-box--content img {
		margin-top: 0;
		width: 55%;
	}
}

.access__flex-box_white {
	background-color: #fff;
}

.access__flex-box_gray {
	background-color: #F8F8F8;
}

.access__flex-box_big {
	height: 608px;
}
@media (max-width: 560px) {
	.access__flex-box_big {
		height: 400px;
	}
}
/* ------------------------access--END------------------------ */



/* ------------------------concept--START------------------------ */
.concept_greeting-name {
	text-align: center;
	margin-top: 30px;
}

.btn {
	width: 350px;
	height: 100px;
	border-radius: 4px;
	border: 3px solid #50B040;
	background-color: #F8F8F8;
	margin: 124px auto 0;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
	line-height: 100px;
	padding: 0;
	color: #50B040;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}
@media (max-width: 560px) {
	.btn {
		width: 100%;
		height: 70px;
		line-height: 70px;
	}
}
.btn:hover {
	background-color: #50B040;
	color: #F8F8F8;
	transition-duration: 0.5s;
}

.btn a {
	display: block;
	height: 100%;
	width: 100%;
}
/* ------------------------concept--END------------------------ */
