@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho&display=swap');
@import url("font-awesome.min.css");


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	padding: 0;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	letter-spacing: .1em;
	background: #000;
}

a {
	text-decoration: none;
	}

main {
	background: #fff;
	}

/* header */
header {
	display: none;
	}
@media screen and (max-width:950px){
header {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	margin: 0;
	padding: 25px;
	z-index: 1000;
	padding: 10px;
	}
}

header span.bt {
	display: none;
	}
@media screen and (max-width:950px){
header span.bt {
	position: fixed;
	right: 10px;
	top: 10px;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	transition: .5s cubic-bezier(0.25, 1, 0.5, 1);
	}
header span.bt:before {
	position: absolute;
	left: 0px;
	top: 7px;
	width: 30px;
	height: 1px;
	content: "";
	background: #aaa;
	transition: .5s cubic-bezier(0.25, 1, 0.5, 1);
	}
header span.bt:after {
	position: absolute;
	left: 0px;
	bottom: 7px;
	width: 30px;
	height: 1px;
	content: "";
	background: #aaa;
	transition: .5s cubic-bezier(0.25, 1, 0.5, 1);
	}
header span.bt.open:before {
	top: 14.5px;
	transform: rotate(-315deg);
	}
header span.bt.open:after {
	bottom: 14.5px;
	transform: rotate(315deg);
	}
}

header nav {
	position: absolute;
	right: 10px;
	top: 0px;
	display: block;
	z-index: 1000;
	}
@media screen and (max-width:950px){
header nav {
	position: fixed;
	top: 50px;
	right: -100%;
	width: 100%;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
header nav.open {
	right: 0px;
	}
}

header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
@media screen and (max-width:950px){
header nav ul {
	border-top: 1px solid #333;
	}
}

header nav ul li {
	display: block;
	}
@media screen and (max-width:950px){
header nav ul li {
	width: 100%;
	border-bottom: 1px solid #333;
	}
}

header nav ul li a {
	position: relative;
	display: block;
	padding: 42px 10px;
	color: #fff;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1em;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
header nav ul li a:after {
	position: absolute;
	left: 50%;
	bottom: 35px;
	content: "";
	width: 0%;
	height: 1px;
	background: #004499;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
@media screen and (max-width:1250px){
header nav ul li a:after {
	bottom: 25px;
	}
}
header nav ul li a:hover:after {
	left: 0;
	width: 100%;
	}

@media screen and (max-width:1250px){
header nav ul li a {
	padding: 28px 5px;
	font-size: 14px;
	}
}

@media screen and (max-width:950px){
header nav ul li a {
	padding: 20px 15px;
	font-size: 16px;
	background: #000;
	}
header nav ul li a:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}
}

header nav ul li.counseling a {
	position: relative;
	margin: 22px 10px 0 20px;
	padding: 20px 50px 20px 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
header nav ul li.counseling a:after {
	display: none;
	}

@media screen and (max-width:1250px){
header nav ul li.counseling a {
	margin: 12px 0 0 10px;
	padding: 15px 40px 15px 10px;
	}
}

header nav ul li.counseling a:hover {
	background: #0055bb;
	}

header nav ul li.counseling a span {
	position: absolute;
	right: 15px;
	top: 20px;
	display: block;
	font-size: 7px;
	line-height: 8px;
	text-align: center;
	}

@media screen and (max-width:1250px){
header nav ul li.counseling a span {
	right: 7px;
	top: 15px;
	}
}
@media screen and (max-width:950px){
header nav ul li.counseling a span {
	position: relative;
	right: auto;
	top: auto;
	display: inline-block;
	margin: 0 0 0 10px;
	transform: translateY(2px);
	}
}
header nav ul li.counseling a span span {
	position: relative;
	right: auto;
	top: auto;
	display: inline;
	font-size: 11px;
	}
@media screen and (max-width:950px){
header nav ul li.counseling a span span {
	margin: 0;
	transform: translateY(0);
	}
}

@media screen and (max-width:950px){
header nav ul li.counseling a {
	margin: 0;
	padding: 20px 15px;
	color: #fff;
	letter-spacing: 0;
	background: #004499;
	border-radius: 0;
	}
header nav ul li.counseling a:before {
	content: "\f054";
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}
}

/* footer */
footer {
	position: relative;
	width: 100%;
	padding: 70px 30px 200px;
	text-align: center;
	background: #000;
	}
@media screen and (max-width:767.98px){
footer {
	padding: 15vw 4vw 30vw;
	}
}

footer p {
	display: block;
	margin: 0 0 50px;
	color: #fff;
	font-size: 16px;
	}
@media screen and (max-width:950px){
footer p {
	font-size: 14px;
	}
}

footer a {
	display: block;
	color: #fff;
}

footer img {
	display: block;
	height: 40px;
	margin: 0 auto 10px;
	}
@media screen and (max-width:767.98px){
footer img {
	height: 30px;
	}
}

footer img.logo {
	display: block;
	height: 50px;
	margin: 0 auto;
	}
@media screen and (max-width:767.98px){
footer img.logo {
	height: 40px;
	}
}

/* トップへ戻るボタン */
.totop {
	position: absolute;
	right: 40px;
	top: -1px;
	display: block;
	width: 40px;
	height: 40px;
	background: #fff;
	}
@media screen and (max-width:767.98px){
.totop {
	right: 4vw;
	width: 30px;
	height: 30px;
	}
}

.totop a {
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/totop.svg") center center no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
	text-indent: 100%;
	font-size: 0;
	}
@media screen and (max-width:767.98px){
.totop a {
	width: 30px;
	height: 30px;
	}
}

sup {
	font-size: .4em;
	line-height: 1em;
	}

/* section.cv */
section.cv {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 4vw;
	text-align: center;
	background: linear-gradient(0deg, rgba(0, 0, 0, .8) 85%, rgba(0, 0, 0, 0) 100%);
	z-index: 999;
	}

section.cv h2 {
	margin: 0 0 .5em;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
section.cv h2 {
	font-size: 3.5vw;
	}
}

section.cv a {
	position: relative;
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 30px 110px 30px 30px;
	color: #000;
	font-size: 36px;
	line-height: 2em;
	text-align: center;
	background-image: linear-gradient(#ffc300, #fecc19 50%, #ebbb1c 50%, #ffd900);
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
@media screen and (max-width:767.98px){
section.cv a {
	width: 100%;
	padding: 10px 63px 10px 20px;
	}
}
section.cv a:hover {
	background-image: linear-gradient(#ffc300, #ffdf6d 50%, #ffd136 50%, #ffbb04);
	}

section.cv a:after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	width: 100px;
	height: 150px;
	content: "";
	background: url(../img/icon_coach.png) center center no-repeat;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
section.cv a:after {
	width: 53px;
	height: 80px;
	}
}

section.cv a span.cv1 {
	display: block;
	padding-bottom: 5px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv1 {
	font-size: 3vw;
	letter-spacing: 0;
	}
}

section.cv a span.cv1 span {
	position: relative;
	left: auto;
	top: auto;
	display: inline;
	font-size: 27.5px;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv1 span {
	font-size: 4vw;
	}
}

section.cv a span.cv2 {
	display: block;
	font-size: 36px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:768px){
section.cv a span.cv2 {
	font-size: 24px;
	}
}
@media screen and (max-width:767.98px){
section.cv a span.cv2 {
	font-size: 3.5vw;
	letter-spacing: 0;
	}
}

section.cv a span.cv3 {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 10px;
	line-height: 1.5em;
	text-align: left;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv3 {
	max-width: 80%;
	font-size: 2vw;
	}
}

section.cv a span.cv3 span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv3 span {
	font-size: 2vw;
	}
}

section.cv a span.cv3 span span {
	display: inline;
	font-size: 10px;
	font-weight: 300;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv3 span span {
	font-size: 1.5vw;
	}
}

section.cv a span.cv3 img {
	display: block;
	float: right;
	height: 30px;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv3 img {
	height: 25px;
	}
}

section.cv a span.cv4 {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:767.98px){
section.cv a span.cv4 {
	font-size: 5vw;
	}
}

section.cv a span.cv4 span {
	font-size: 10px;
	font-weight: 300;
	}

section.cv a span.cv2:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}

.sp_scroll {
	overflow: auto;
	}

.pc {
	}
@media screen and (max-width:767.98px){
.pc {
	display: none;
	}
}

br.sp {
	display: none;
	}
@media screen and (max-width:767.98px){
br.sp {
	display: inline;
	}
}

/* #mv */
#mv {
	color: #fff;
	background: url(../img/bg_mv.jpg) top center no-repeat;
	background-size: cover;
	}

#mv div.inner {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 50px 0;
	}
@media screen and (max-width:1100px){
#mv div.inner {
	max-width: 1000px;
	padding: 70px 20px 20px;
	}
}
@media screen and (max-width:768px){
#mv div.inner {
	padding: 50px 20px 10px;
	}
}
@media screen and (max-width:767.98px){
#mv div.inner {
	padding: 15vw 3vw 3vw;
	}
}

#mv img {
	display: block;
	}

#mv img.logo {
	width: 292px;
	margin: 0 0 2em;
	}
@media screen and (max-width:1100px){
#mv img.logo {
	width: 175px;
	}
}
@media screen and (max-width:768px){
#mv img.logo {
	width: 146px;
	margin: 0 0 1.5em;
	}
}
@media screen and (max-width:767.98px){
#mv img.logo {
	width: 70%;
	margin: 0 auto;
	}
}

#mv img.ijin {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 450px;
	object-fit: cover;
	}
@media screen and (max-width:1100px){
#mv img.ijin {
	width: 350px;
	}
}
@media screen and (max-width:768px){
#mv img.ijin {
	top: 50px;
	right: 20px;
	width: 250px;
	}
}
@media screen and (max-width:767.98px){
#mv img.ijin {
	position: relative;
	right: auto;
	top: auto;
	width: 70%;
	margin: 0 auto;
	}
}

#mv h1 {
	margin: 0 0 .5em;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 1em;
	letter-spacing: .1em;
	}
@media screen and (max-width:1350px){
#mv h1 {
	font-size: 30px;
	}
}
@media screen and (max-width:1200px){
#mv h1 {
	font-size: 27px;
	}
}
@media screen and (max-width:1000px){
#mv h1 {
	font-size: 24px;
	}
}
@media screen and (max-width:768px){
#mv h1 {
	font-size: 19px;
	}
}
@media screen and (max-width:767.98px){
#mv h1 {
	margin: 0 auto;
	padding: 0 0 .5em 0;
	font-size: 6vw;
	line-height: 1.5em;
	text-align: center;
	}
}

#mv h2 {
	margin: 0 0 1.5em;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 1em;
	letter-spacing: .1em;
	}
@media screen and (max-width:1350px){
#mv h2 {
	font-size: 30px;
	}
}
@media screen and (max-width:1200px){
#mv h2 {
	font-size: 27px;
	}
}
@media screen and (max-width:1000px){
#mv h2 {
	font-size: 24px;
	}
}
@media screen and (max-width:768px){
#mv h2 {
	font-size: 19px;
	}
}
@media screen and (max-width:767.98px){
#mv h2 {
	margin: 0 0 1em;
	font-size: 6vw;
	text-align: center;
	margin-left: .1em;
	}
}

#mv h3 {
	margin: 0 0 1.5em;
	font-size: 15px;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: .37em;
	}
@media screen and (max-width:1100px){
#mv h3 {
	font-size: 11px;
	}
}
@media screen and (max-width:768px){
#mv h3 {
	font-size: 10.74px;
	}
}
@media screen and (max-width:767.98px){
#mv h3 {
	font-size: 2.2vw;
	text-align: center;
	}
}

#mv h4 {
	margin: 0 0 1em;
	font-size: 20.3px;
	font-weight: 400;
	line-height: 1em;
	letter-spacing: .36em;
	}
@media screen and (max-width:1100px){
#mv h4 {
	font-size: 14.85px;
	}
}
@media screen and (max-width:768px){
#mv h4 {
	font-size: 14.5px;
	}
}
@media screen and (max-width:767.98px){
#mv h4 {
	font-size: 3vw;
	text-align: center;
	}
}

#mv p {
	margin: 0 0 2em;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	letter-spacing: .1em;
	}
@media screen and (max-width:1400px){
#mv p {
	font-size: 14px;
	}
}
@media screen and (max-width:1100px){
#mv p {
	font-size: 12px;
	}
}
@media screen and (max-width:768px){
#mv p {
	font-size: 10px;
	letter-spacing: 0.05em;
	}
}
@media screen and (max-width:767.98px){
#mv p {
	margin: 0 0 1em;
	font-size: 3.5vw;
	}
#mv .inner p br {
	display: none;
	}
}

#mv div.promise {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px 30px;
	}
@media screen and (max-width:1024px){
#mv div.promise {
	padding: 0 20px 20px;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise {
	padding: 0 4vw 4vw;
	}
}

#mv div.promise .inner {
	width: 100%;
	margin: 0 auto;
	padding: 50px 40px 40px;
	background: #000;
	border: 1px solid;
	border-image: linear-gradient(to right, #754C0C, #FFB200, #754C0C) 1;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner {
	padding: 30px 20px 20px;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner {
	padding: 5vw 4vw 4vw;
	}
}

#mv div.promise .inner h3 {
	margin: 0 0 .5em;
	font-family: "Zen Old Mincho", serif;
	font-size: 48px;
	text-align: center;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner h3 {
	font-size: 34px;
	letter-spacing: .1em;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner h3 {
	font-size: 5vw;
	letter-spacing: 0;
	}
}

#mv div.promise .inner h4 {
	margin: 0 0 2em;
	font-family: "Zen Old Mincho", serif;
	font-size: 24px;
	text-align: center;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner h4 {
	margin: 0 0 1em;
	font-size: 20px;
	letter-spacing: 0;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner h4 {
	font-size: 2.8vw;
	letter-spacing: 0;
	}
}

#mv div.promise .inner p {
	margin: 0;
	font-size: 16px;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner p {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner p {
	margin: 0 0 1em;
	}
}

#mv div.promise .inner img {
	position: absolute;
	display: block;
	right: 300px;
	bottom: 60px;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner img {
	right: 70px;
	bottom: 40px;
	width: 243.26px;
	height: 60px;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner img {
	position: relative;
	right: auto;
	bottom: auto;
	}
}

#mv div.promise .inner h5 {
	position: absolute;
	right: 20px;
	bottom: 40px;
	font-size: 40px;
	}
@media screen and (max-width:1024px){
#mv div.promise .inner h5 {
	right: 20px;
	bottom: 20px;
	font-size: 21px;
	}
}
@media screen and (max-width:767.98px){
#mv div.promise .inner h5 {
	position: relative;
	right: auto;
	bottom: auto;
	margin-top: -20px;
	font-size: 5vw;
	letter-spacing: 0;
	text-align: right;
	}
}

#mv div.reason {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px 30px;
	}
@media screen and (max-width:1100px){
#mv div.reason {
	max-width: 1000px;
	padding: 0 20px 20px;
	}
}
@media screen and (max-width:768px){
#mv div.reason {
	padding: 0 20px 10px;
	}
}
@media screen and (max-width:767.98px){
#mv div.reason {
	padding: 0 3vw 3vw;
	}
}

#mv div.reason dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	}

#mv div.reason dt {
	display: block;
	width: 30%;
	margin: 0 0 .5em;
	padding: 1em;
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
	background: #001E45;
	}
@media screen and (max-width:1024px){
#mv div.reason dt {
	font-size: 1em;
	}
}
@media screen and (max-width:767.98px){
#mv div.reason dt {
	width: 100%;
	margin: 0 auto;
	}
}

#mv div.reason dd {
	display: block;
	width: 70%;
	margin: 0 0 .5em;
	padding: 1em;
	color: #000;
	font-size: 1.2em;
	font-weight: 500;
	background: #fff;
	}
@media screen and (max-width:1024px){
#mv div.reason dd {
	font-size: 1em;
	}
}
@media screen and (max-width:767.98px){
#mv div.reason dd {
	width: 100%;
	margin: 0 auto 10px;
	}
}


/* #difference */
#difference {
	padding: 100px 4vw;
	background: url(../img/bg_difference.jpg) top center no-repeat;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#difference {
	padding: 20vw 4vw;
	}
}

#difference h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#difference h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#difference h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#difference h2:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}

#difference p {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#difference p {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#difference p {
	letter-spacing: 0.1em;
	}
}
@media screen and (max-width:767.98px){
#difference p {
	font-size: 16px;
	}
#difference p br {
	display: none;
	}
}

#difference .inner {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	padding: 20px;
	text-align: center;
	background: rgba(0,0,0,.5);
	}

#difference h3 {
	margin: 0 auto .5em;
	color: #fff;
	font-size: 24px;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#difference h3 {
	font-size: 5vw;
	}
}

#difference ol {
	display: flex;
	list-style: none;
	counter-reset: listnum;
	flex-wrap: wrap;
	justify-content: space-between;
	}

#difference li {
	position: relative;
	display: block;
	width: 32%;
	padding: 1em 0;
	color: #fff;
	font-size: 1.2em;
	background: #020F24;
	border: 1px solid #003399;
	}

#difference li:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	counter-increment: listnum;
	content: counter(listnum);
	background: #003399;
	}

/* #comparison */
#comparison {
	padding: 100px 4vw;
	background: #000916;
	}
@media screen and (max-width:767.98px){
#comparison {
	padding: 20vw 4vw;
	}
}

#comparison h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#comparison h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#comparison h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#comparison h2:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}

#comparison table {
	width: fit-content;
	margin: 0 auto 2em;
	text-align: center;
	border: 0;
	border-collapse: collapse;
	}

#comparison table thead th:nth-of-type(1) {
	width: 20%;
	padding: 1em;
	color: #fff;
	font-weight: 400;
	background: #020F24;
	border: 0;
	}

#comparison table thead th:nth-of-type(2) {
	width: 40%;
	color: #fff;
	padding: 1em;
	font-weight: 400;
	background: #003399;
	border: 0;
	}

#comparison table thead th:nth-of-type(3) {
	width: 40%;
	color: #fff;
	padding: 1em;
	font-weight: 400;
	background: #989898;
	border: 0;
	}

#comparison table tbody tr:nth-child(odd) th {
	padding: .5em;
	color: #fff;
	font-weight: 400;
	background: #3A3A3A;
	border: 0;
	}

#comparison table tbody tr:nth-child(odd) td:nth-of-type(1) {
	width: 40%;
	color: #003399;
	padding: .5em;
	font-weight: 500;
	background: #E9F0FF;
	border: 0;
	}

#comparison table tbody tr:nth-child(odd) td:nth-of-type(2) {
	width: 40%;
	color: #000;
	padding: .5em;
	font-weight: 500;
	background: #F7F7F7;
	border: 0;
	}

#comparison table tbody tr:nth-child(even) th {
	padding: .5em;
	color: #fff;
	font-weight: 400;
	background: #4D4D4D;
	border: 0;
	}

#comparison table tbody tr:nth-child(even) td:nth-of-type(1) {
	width: 40%;
	color: #003399;
	padding: .5em;
	font-weight: 500;
	background: #F4F8FF;
	border: 0;
	}

#comparison table tbody tr:nth-child(even) td:nth-of-type(2) {
	width: 40%;
	color: #000;
	padding: .5em;
	font-weight: 500;
	background: #FFFFFF;
	border: 0;
	}

#comparison p {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#comparison p {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#comparison p {
	letter-spacing: 0.1em;
	}
}
@media screen and (max-width:767.98px){
#comparison p {
	font-size: 16px;
	}
#comparison p br {
	display: none;
	}
}

/* #monitor */
#monitor {
	padding: 100px 20px;
	background: url(../img/bg_monitor.jpg) top center no-repeat;
	background-size: cover;
	}
@media screen and (max-width:768px){
#monitor {
	padding: 100px 20px 20px;
	}
}

#monitor h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 1.5em;
	}
@media screen and (max-width:1100px){
#monitor h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#monitor h2 {
	font-size: 6vw;
	}
}

#monitor h2:after {
	position: absolute;
	left: 50%;
	bottom: 45px;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}
@media screen and (max-width:1100px){
#monitor h2:after {
	bottom: 37px;
	}
}
@media screen and (max-width:767.98px){
#monitor h2:after {
	bottom: 32px;
	}
}

#monitor h2 span {
	display: block;
	font-size: 24px;
	}
@media screen and (max-width:1100px){
#monitor h2 span {
	font-size: 18px;
	}
}
@media screen and (max-width:767.98px){
#monitor h2 span {
	font-size: 14px;
	}
}

#monitor h2 span.medal {
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translate(-230px,-30px);
	width: 80px;
	height: 80px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 80px;
	letter-spacing: 0;
	text-align: center;
	background: #001E45;
	border-radius: 40px;
	}
@media screen and (max-width:767.98px){
#monitor h2 span.medal {
	left: 60%;
	top: -30px;
	scale: .8;
	}
}

#monitor h2 span.medal span {
	display: inline;
	font-weight: 30px;
	}

#monitor p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#monitor p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#monitor p.intro {
	font-size: 16px;
	}
#monitor p.intro br {
	display: none;
	}
}

#monitor .bt {
	position: relative;
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 50px;
	padding: 10px 0;
	color: #000;
	font-size: 36px;
	line-height: 2em;
	text-align: center;
	background-image: linear-gradient(#ffc300, #fecc19 50%, #ebbb1c 50%, #ffd900);
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
	}
@media screen and (max-width:1100px){
#monitor .bt {
	max-width: 500px;
	}
}
@media screen and (max-width:768px){
#monitor .bt {
	font-size: 24px;
	}
}
@media screen and (max-width:767.98px){
#monitor .bt {
	margin: 0 auto 20px;
	padding: 10px 0;
	font-size: 18px;
	}
}
#monitor .bt:hover {
	background-image: linear-gradient(#ffc300, #ffdf6d 50%, #ffd136 50%, #ffbb04);
	}

#monitor .bt:before {
	display: inline-block;
	margin-right: 10px;
	content: "\f054" !important;
	font-family: FontAwesome;
	rotate: 90deg;
	}

#monitor .info {
	display: none;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 1em;
	padding: 70px 0 50px;
	font-size: 16px;
	line-height: 2em;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0,0,0,.25);
	}
@media screen and (max-width:768px){
#monitor .info {
	padding: 50px 4vw 15px;
	}
}

#monitor .info h3 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 1.5em;
	}
@media screen and (max-width:1100px){
#monitor .info h3 {
	font-size: 20px;
	}
}
@media screen and (max-width:767.98px){
#monitor .info h3 {
	font-size: 5vw;
	}
}

#monitor .info h3:after {
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translate(-50%,0);
	content: "";
	width: 220px;
	height: 3px;
	background: #003399;
	}

#monitor .info p {
	position: relative;
	width: fit-content;
	margin: 0 auto 2em;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:768px){
#monitor .info p {
	font-size: 14px;
	}
}

#monitor .info p span {
	display: block;
	text-align: center;
	}

#monitor .info a {
	position: relative;
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 10px 0;
	color: #000;
	font-size: 36px;
	line-height: 2em;
	text-align: center;
	background-image: linear-gradient(#ffc300, #fecc19 50%, #ebbb1c 50%, #ffd900);
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
	}
@media screen and (max-width:1100px){
#monitor .info a {
	font-size: 24px;
	}
}
@media screen and (max-width:768px){
#monitor .info a {
	max-width: 500px;
	}
}
@media screen and (max-width:767.98px){
#monitor .info a {
	margin: 0 auto 20px;
	padding: 10px 0;
	font-size: 18px;
	}
}
#monitor .info a:hover {
	background-image: linear-gradient(#ffc300, #ffdf6d 50%, #ffd136 50%, #ffbb04);
	}

#monitor .info a:before {
	display: inline-block;
	margin-right: 10px;
	content: "\f054" !important;
	font-family: FontAwesome;
	}

/* #reason */
#reason {
	padding: 100px 4vw;
	background: url(../img/bg_blue.jpg) center center;
	}
@media screen and (max-width:767.98px){
#reason {
	padding: 20vw 4vw;
	}
}

#reason h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#reason h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#reason h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#reason h2:after {
	position: absolute;
	left: 50%;
	bottom: 1.9em;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}

#reason h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .25em;
	text-indent: .25em;
	}
@media screen and (max-width:767.98px){
#reason h2 span {
	font-size: 4vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#reason p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#reason p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#reason p.intro {
	letter-spacing: 0.1em;
	}
}
@media screen and (max-width:767.98px){
#reason p.intro {
	font-size: 16px;
	}
#reason p.intro br {
	display: none;
	}
}

#reason .dualcore {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 2em;
	padding: 50px 50px 20px;
	text-align: center;
	background: #fff;
	}
@media screen and (max-width:768px){
#reason .dualcore {
	padding: 40px 20px 20px;
	text-align: left;
	}
}

#reason .dualcore h3 {
	margin: 0 0 1em;
	font-size: 32px;
	}
@media screen and (max-width:768px){
#reason .dualcore h3 {
	text-align: center;
	}
}

#reason .dualcore p {
	margin: 0 0 1em;
	line-height: 2em;
	}

#reason .dualcore p.summary {
	font-weight: 600;
	font-size: 1.2em;
	}

#reason .dualcore img {
	display: block;
	width: 100%;
	margin: 0 0 1em;
	}

#reason div div {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 1em;
	padding: 50px;
	border: 1px solid #003399;
	background: #020F24;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#reason div div {
	margin: 0 auto 4vw;
	padding: 10vw;
	}
}

#reason div div h3 {
	margin: 0 0 .5em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .15em;
	}
@media screen and (max-width:768px){
#reason div div h3 {
	font-size: 20px;
	}
}
@media screen and (max-width:767.98px){
#reason div div h3 {
	font-size: 5vw;
	}
}

#reason div div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#reason div div h3 span {
	width: 40px;
	height: 40px;
	line-height: 40px;
	}
}

#reason div div p {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#reason div div p {
	font-size: 4vw;
	}
}

#reason div div a {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	padding: 5px 10px;
	color: #fff;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}

#reason div div a:hover {
	background: #0055bb;
	}

#reason div div a:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}

#reason div h4 {
	margin: 0 0 1em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#reason div h4 {
	font-size: 3vw;
	}
}
@media screen and (max-width:767.98px){
#reason div h4 {
	font-size: 4.5vw;
	}
}

/* #reason2 */
#reason2 {
	padding: 100px 4vw;
	background: url(../img/bg_reason2.jpg) center center;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#reason2 {
	padding: 20vw 4vw;
	}
}

#reason2 h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#reason2 h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#reason2 h2 {
	font-size: 6vw;
	letter-spacing: .01em;
	text-indent: .01em;
	line-height: 1.5em;
	}
}

#reason2 h2:after {
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#reason2 h2:after {
	bottom: -10px;
	}
}

#reason2 h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .25em;
	text-indent: .25em;
	}
@media screen and (max-width:767.98px){
#reason2 h2 span {
	font-size: 4vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#reason2 p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#reason2 p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#reason2 p.intro {
	font-size: 16px;
	}
#reason2 p.intro br {
	display: none;
	}
}

#reason2 div.inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	}

#reason2 div.inner div {
	display: block;
	width: 32%;
	padding: 0;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	}
@media screen and (max-width:767.98px){
#reason2 div.inner div {
	width: 100%;
	margin: 0 0 1em;
	}
}

#reason2 div.inner h3 {
	display: block;
	margin: 0;
	padding: 1em 0;
	color: #fff;
	font-size: 26px;
	line-height: 1em;
	text-align: center;
	background: #020F24;
	}
@media screen and (max-width:768px){
#reason2 div.inner h3 {
	font-size: 18px;
	}
}
@media screen and (max-width:767.98px){
#reason2 div.inner h3 {
	font-size: 5vw;
	}
}

#reason2 div.inner h4 {
	display: block;
	margin: 0;
	padding: 1em 0;
	font-size: 20px;
	line-height: 1.5em;
	text-align: center;
	}
@media screen and (max-width:1024px){
#reason2 div.inner h4 {
	font-size: 18px;
	}
}
@media screen and (max-width:768px){
#reason2 div.inner h4 {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#reason2 div.inner h4 {
	font-size: 4.5vw;
	}
}

#reason2 div.inner p {
	display: block;
	margin: 0;
	padding: 0 0 1em;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:1024px){
#reason2 div.inner p {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#reason2 div.inner p {
	font-size: 12px;
	letter-spacing: 0em;
	}
}
@media screen and (max-width:767.98px){
#reason2 div.inner p {
	font-size: 4vw;
	}
}

/* #reason3 */
#reason3 {
	padding: 100px 4vw;
	background: url(../img/bg_blue.jpg) center center;
	}
@media screen and (max-width:767.98px){
#reason3 {
	padding: 20vw 4vw;
	}
}

#reason3 h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#reason3 h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#reason3 h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 1.5em;
	}
}

#reason3 h2:after {
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#reason3 h2:after {
	bottom: -8px;
	}
}

#reason3 h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .25em;
	text-indent: .25em;
	}
@media screen and (max-width:767.98px){
#reason3 h2 span {
	font-size: 4vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#reason3 p {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#reason3 p {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#reason3 p {
	font-size: 16px;
	}
#reason3 p br {
	display: none;
	}
}

#reason3 h3 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#reason3 h3 {
	font-size: 22px;
	}
}
@media screen and (max-width:767.98px){
#reason3 h3 {
	font-size: 5vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#reason3 ul {
	position: relative;
	width: fit-content;
	margin: 0 auto 1em;
	padding: 50px;
	border: 1px solid #003399;
	background: #020F24;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:768px){
#reason3 ul {
	padding: 4vw;
	}
}
@media screen and (max-width:767.98px){
#reason3 ul {
	margin: 0 auto 4vw;
	padding: 10vw;
	}
}

#reason3 li {
	display: block;
	padding: 5px 0;
	color: #fff;
	font-size: 16px;
	}

#reason3 li:before {
	content: "・";
	}

/* #coach */
#coach {
	padding: 100px 4vw;
	background: url(../img/bg_coach.jpg) center center;
	background-size: cover;
	}
@media screen and (max-width:768px){
#coach {
	padding: 50px 4vw 0;
	}
}
@media screen and (max-width:767.98px){
#coach {
	padding: 20vw 4vw 0;
	}
}

#coach h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#coach h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#coach h2 {
	font-size: 5vw;
	letter-spacing: .15em;
	}
}

#coach h2:after {
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#coach h2:after {
	}
}

#coach p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#coach p {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#coach p {
	font-size: 12px;
	letter-spacing: .01em;
	}
}

#coach h3 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#coach h3 {
	font-size: 22px;
	}
}
@media screen and (max-width:767.98px){
#coach h3 {
	font-size: 5vw;
	letter-spacing: .15em;
	}
}

#coach h3:after {
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translate(-50%,0);
	content: "";
	width: 240px;
	height: 2px;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#coach h3:after {
	}
}

#coach ul {
	max-width: 1300px;
	margin: 0 auto 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
@media screen and (max-width:767.98px){
#coach ul {
	margin: 0 0 10px;
	}
}

#coach ul li {
	position: relative;
	display: block;
	width: 31%;
	padding-bottom: 10px;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
@media screen and (max-width:1100px){
#coach ul li {
	width: 32%;
	}
}
@media screen and (max-width:767.98px){
#coach ul li {
	width: 100%;
	margin: 0 0 20px;
	}
}

#coach ul li img {
	display: block;
	}

#coach ul li h4 {
	display: block;
	padding: 10px 0 0;
	font-size: 24px;
	line-height: 1.5em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#coach ul li h4 {
	font-size: 22px;
	}
}
@media screen and (max-width:768px){
#coach ul li h4 {
	font-size: 16px;
	}
}
@media screen and (max-width:767.98px){
#coach ul li h4 {
	font-size: 5vw;
	}
}

#coach ul li h5 {
	display: block;
	padding: 5px 0 10px;
	font-size: 17px;
	line-height: 1.8em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#coach ul li h5 {
	font-size: 14px;
	letter-spacing: 0;
	}
}
@media screen and (max-width:768px){
#coach ul li h5 {
	font-size: 10px;
	}
}
@media screen and (max-width:767.98px){
#coach ul li h5 {
	font-size: 4vw;
	}
}

#coach ul li p {
	display: block;
	padding: 0 20px;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#coach ul li p {
	font-size: 13px;
	letter-spacing: 0;
	}
}
@media screen and (max-width:768px){
#coach ul li p {
	font-size: 9px;
	}
}
@media screen and (max-width:767.98px){
#coach ul li p {
	font-size: 4vw;
	}
}

/* #decisive */
#decisive {
	padding: 100px 4vw;
	background: url(../img/bg_blue.jpg) center center;
	}
@media screen and (max-width:767.98px){
#decisive {
	padding: 20vw 4vw;
	}
}

#decisive h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#decisive h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#decisive h2 {
	font-size: 5.5vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 1.5em;
	}
}

#decisive p.intro {
	display: block;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#decisive p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#decisive p.intro {
	font-size: 16px;
	}
#decisive p.intro br {
	display: none;
	}
}

#decisive div div {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 1em;
	padding: 50px;
	border: 1px solid #003399;
	background: #020F24;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#decisive div div {
	margin: 0 auto 4vw;
	padding: 10vw;
	}
}

#decisive div div h3 {
	margin: 0 0 .5em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .15em;
	}
@media screen and (max-width:768px){
#decisive div div h3 {
	font-size: 18px;
	}
}
@media screen and (max-width:767.98px){
#decisive div div h3 {
	font-size: 5vw;
	}
}

#decisive div div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#decisive div div h3 span {
	width: 40px;
	height: 40px;
	line-height: 40px;
	}
}

#decisive div div p {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:768px){
#decisive div div p {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#decisive div div p {
	font-size: 4vw;
	}
}

#decisive div div a {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	padding: 5px 10px;
	color: #fff;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}

#decisive div div a:hover {
	background: #0055bb;
	}

#decisive div div a:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}

#decisive div h4 {
	margin: 0 0 1em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#decisive div h4 {
	font-size: 3vw;
	}
}
@media screen and (max-width:767.98px){
#decisive div h4 {
	font-size: 4.5vw;
	}
}

/* #method */
#method {
	padding: 100px 4vw;
	background: url(../img/bg_coach.jpg) center center;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#method {
	padding: 20vw 4vw;
	}
}

#method h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#method h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#method h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#method h2:after {
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}

#method h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .1em;
	text-indent: .1em;
	}
@media screen and (max-width:767.98px){
#method h2 span {
	font-size: 3.3vw;
	}
}

#method p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#method p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#method p.intro {
	font-size: 16px;
	}
#method p.intro br {
	display: none;
	}
}

#method div div {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 1em;
	padding: 0;
	border: 1px solid #003399;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#method div div {
	margin: 0 auto 4vw;
	padding: 0;
	}
}

#method div div h3 {
	margin: 0;
	padding: 10px 5px 10px 65px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .15em;
	background: #001E45;
	}
@media screen and (max-width:768px){
#method div div h3 {
	padding: 14.5px 5px 14.5px 65px;
	font-size: 18px;
	}
}
@media screen and (max-width:767.98px){
#method div div h3 {
	padding: 14.5px 5px 14.5px 55px;
	font-size: 5vw;
	}
}

#method div.expert div h3 {
	padding: 10px 5px 10px 20px;
	}

#method div div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 56px;
	height: 56px;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 56px;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#method div div h3 span {
	width: 40px;
	height: 40px;
	line-height: 40px;
	}
}

#method div div p {
	display: block;
	padding: 20px;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#method div div p {
	font-size: 4vw;
	}
}

#method div div:nth-of-type(1) p {
	padding-bottom: 0;
	}

#method div div ul {
	display: block;
	padding: 20px;
	}

#method div div:nth-of-type(1) ul {
	padding-top: 0;
	}

#method div div li {
	display: block;
	padding: 0 0 0 1em;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	text-indent: -1em;
	}

#method div div li:before {
	content: "・";
	}

#method div.expert .column {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border: 0;
	box-shadow: none;
	}

#method div.expert .column div {
	display: block;
	padding: 20px 20px 20px 0;
	border: 0;
	box-shadow: none;
	}
@media screen and (max-width:767.98px){
#method div.expert .column div {
	width: 100%;
	padding: 4vw;
	}
}

#method div.expert .column div.pic {
	display: block;
	width: 230px;
	margin: 0;
	padding: 30px 0 30px 30px;
	border: 0;
	box-shadow: none;
	}
@media screen and (max-width:767.98px){
#method div.expert .column div.pic {
	width: 100%;
	padding: 4vw 4vw 0;
	}
}

#method div.expert .column div.pic img {
	display: block;
	width: 200px;
	}
@media screen and (max-width:767.98px){
#method div.expert .column div.pic img {
	width: 100%;
	}
}

#method div.expert .column div {
	display: block;
	width: 700px;
	}
@media screen and (max-width:1024px){
#method div.expert .column div {
	width: 650px;
	}
}
@media screen and (max-width:768px){
#method div.expert .column div {
	width: 460px;
	padding: 20px 0 0 10px;
	}
}
@media screen and (max-width:767.98px){
#method div.expert .column div {
	width: 100%;
	padding: 4vw;
	}
}

#method div.expert .column div p {
	display: block;
	padding: 0;
	font-size: 16px;
	}
@media screen and (max-width:768px){
#method div.expert .column div p {
	font-size: 14px;
	}
}

#method div h4 {
	margin: 0;
	padding: 5px 0 0 0;
	font-size: 23px;
	font-weight: 500;
	line-height: 2em;
	}
@media screen and (max-width:1024px){
#method div h4 {
	font-size: 20px;
	}
}
@media screen and (max-width:768px){
#method div h4 {
	font-size: 14px;
	}
}
@media screen and (max-width:767.98px){
#method div h4 {
	margin: 0 0 .5em;
	font-size: 4.5vw;
	line-height: 1.5em;
	}
}

/* #roadmap */
#roadmap {
	padding: 100px 4vw;
	background: url(../img/bg_blue.jpg) center center;
	}
@media screen and (max-width:767.98px){
#roadmap {
	padding: 20vw 4vw;
	}
}

#roadmap h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#roadmap h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#roadmap h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 1.5em;
	}
}

#roadmap h2:after {
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#roadmap h2:after {
	bottom: 30%;
	}
}

#roadmap h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .1em;
	text-indent: .1em;
	}
@media screen and (max-width:767.98px){
#roadmap h2 span {
	font-size: 4vw;
	}
}

#roadmap p.intro {
	display: block;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#roadmap p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#roadmap p.intro {
	font-size: 13px;
	}
}
@media screen and (max-width:767.98px){
#roadmap p.intro {
	font-size: 16px;
	text-align: left;
	}
#roadmap p.intro br {
	display: none;
	}
}

#roadmap h3 {
	position: relative;
	margin: 0 0 1em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .25em;
	text-indent: .25em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#roadmap h3 {
	font-size: 22px;
	}
}
@media screen and (max-width:767.98px){
#coach h3 {
	font-size: 4vw;
	letter-spacing: .15em;
	}
}

#roadmap dl {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 1em;
	padding: 0 50px;
	}
@media screen and (max-width:767.98px){
#roadmap dl {
	padding: 0;
	}
}

#roadmap dl dt {
	display: block;
	display: flex;
	width: 30%;
	align-items: center;
	margin: 0 auto 1em;
	padding: 10px;
	border: 1px solid #003399;
	background: #020F24;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#roadmap dl dt {
	width: 100%;
	margin: 0 auto;
	padding: 4vw;
	}
}

#roadmap dl dt h4 {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	
	}

#roadmap dl dd {
	position: relative;
	display: block;
	width: 70%;
	margin: 0 auto 1em;
	padding: 10px;
	border: 1px solid #003399;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#roadmap dl dd {
	width: 100%;
	margin: 0 auto 30px;
	padding: 4vw;
	}
}

#roadmap dl dd:after {
	position: absolute;
	left: 29%;
	bottom: -24px;
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	color: #fff;
	content: "\f054" !important;
	font-family: FontAwesome;
	rotate: 90deg;
	}
@media screen and (max-width:767.98px){
#roadmap dl dd:after {
	left: 49%;
	bottom: -28px;
	}
}

#roadmap dl dd:last-child:after {
	display: none;
	}

#roadmap dl dd ul {
	display: block;
	}

#roadmap dl dd li {
	display: block;
	}

#roadmap dl dd li:before {
	content: "・";
	}

#roadmap div div h3 {
	margin: 0 0 .5em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .15em;
	}
@media screen and (max-width:767.98px){
#roadmap div div h3 {
	font-size: 5vw;
	}
}

#roadmap div div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#roadmap div div h3 span {
	width: 40px;
	height: 40px;
	line-height: 40px;
	}
}

#roadmap div div p {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#roadmap div div p {
	font-size: 4vw;
	}
}

#roadmap div div a {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	padding: 5px 10px;
	color: #fff;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}

#roadmap div div a:hover {
	background: #0055bb;
	}

#roadmap div div a:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}

#roadmap div h4 {
	margin: 0 0 1em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#roadmap div h4 {
	font-size: 3vw;
	}
}
@media screen and (max-width:767.98px){
#roadmap div h4 {
	font-size: 4.5vw;
	}
}

/* #course */
#course {
	padding: 100px 4vw;
	background: url(../img/bg_course.jpg) center top no-repeat #fff;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#course {
	padding: 20vw 4vw;
	}
}

#course h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .5em;
	text-indent: .5em;
	text-align: center;
	}
@media screen and (max-width:768px){
#course h2 {
	font-size: 24px;
	letter-spacing: .25em;
	text-indent: .25em;
	}
}
@media screen and (max-width:767.98px){
#course h2 {
	font-size: 5vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 2em;
	}
}

#course h2:after {
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}

#course p {
	margin: 0 0 1.5em;
	font-size: 24px;
	text-align: center;
	}
@media screen and (max-width:768px){
#course p {
	font-size: 16px;
	}
}
@media screen and (max-width:767.98px){
#course p {
	font-size: 4vw;
	}
}

#course p span {
	display: block;
	font-size: 14px;
	}
@media screen and (max-width:768px){
#course p span {
	font-size: 12px;
	}
}

#course div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 50px;
	}

#course div.fee {
	margin: 0 auto 1em;
	}

#course div div {
	display: block;
	width: 48%;
	margin: 0;
	padding: 70px 10px 30px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	}
@media screen and (max-width:767.98px){
#course div div {
	width: 100%;
	margin: 0 0 2em;
	}
}

#course div div h3 {
	position: relative;
	display: block;
	margin: 0 0 1em;
	font-size: 32px;
	font-weight: 500;
	line-height: 1em;
	text-align: center;
	}
@media screen and (max-width:1024px){
#course div div h3 {
	font-size: 26px;
	}
}
@media screen and (max-width:768px){
#course div div h3 {
	font-size: 24px;
	}
}
@media screen and (max-width:767.98px){
#course div div h3 {
	font-size: 6vw;
	}
}

#course div div h3 span {
	position: absolute;
	left: 0px;
	bottom: -30px;
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 300;
	}

#course div div p.txt1 {
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#course div div p.txt1 {
	font-size: 12px;
	}
}
@media screen and (max-width:767.98px){
#course div div p.txt1 {
	font-size: 3.5vw;
	}
}

#course div div p.txt2 {
	display: block;
	height: 4em;
	font-size: 14px;
	font-weight: 300;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#course div div p.txt2 {
	margin: 0 0 4em;
	font-size: 12px;
	}
}
@media screen and (max-width:767.98px){
#course div div p.txt2 {
	font-size: 3vw;
	}
}

#course div.fee div p {
	color: #003399;
	font-size: 26px;
	font-weight: 600;
	}

#course .guarantee {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px;
	background: #003399;
	}

#course .guarantee h3 {
	display: block;
	width: 380px;
	color: #fff;
	font-size: 30px;
	line-height: 1.25em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#course .guarantee h3 {
	width: 40%;
	font-size: 30px;
	}
}
@media screen and (max-width:768px){
#course .guarantee h3 {
	font-size: 20px;
	}
}
@media screen and (max-width:767.98px){
#course .guarantee h3 {
	width: 100%;
	padding: 1.5em 0 1em;
	font-size: 20px;
	}
#course .guarantee h3 br {
	display: none;
	}
}

#course .guarantee p {
	display: block;
	margin: 0;
	padding: 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	text-align: left;
	}
@media screen and (max-width:1100px){
#course .guarantee p {
	width: 60%;
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#course .guarantee p {
	font-size: 10px;
	}
}
@media screen and (max-width:767.98px){
#course .guarantee p {
	width: 100%;
	padding: 0 4vw 4vw;
	font-size: 12px;
	}
#course .guarantee p br {
	display: none;
	}
}

/* #faq */
#faq {
	padding: 100px 4vw;
	background: url(../img/bg_blue.jpg) center center;
	}
@media screen and (max-width:767.98px){
#faq {
	padding: 20vw 4vw;
	}
}

#faq h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	text-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:1100px){
#faq h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#faq h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 1.5em;
	}
}

#faq h2:after {
	position: absolute;
	left: 50%;
	bottom: 0%;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	box-shadow: 0 1px 2px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#faq h2:after {
	}
}

#faq h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .1em;
	text-indent: .1em;
	}
@media screen and (max-width:767.98px){
#faq h2 span {
	font-size: 4vw;
	}
}

#faq p.intro {
	display: block;
	width: fit-content;
	margin: 0 auto 2em;
	color: #fff;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#faq p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#faq p.intro {
	font-size: 13px;
	}
}
@media screen and (max-width:767.98px){
#faq p.intro {
	font-size: 16px;
	text-align: left;
	}
#faq p.intro br {
	display: none;
	}
}

#faq dl {
	position: relative;
	flex-wrap: wrap;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 1em;
	padding: 0 50px;
	}
@media screen and (max-width:767.98px){
#faq dl {
	padding: 0;
	}
}

#faq dl dt {
	position: relative;
	display: block;
	align-items: center;
	margin: 0;
	padding: 10px 10px 10px 40px;
	color: #fff;
	line-height: 2em;
	border: 1px solid #003399;
	background: #003399;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#faq dl dt {
	width: 100%;
	margin: 0 auto;
	padding: 4vw 10vw;
	}
}

#faq dt:before {
	position: absolute;
	left: 20px;
	top: 10px;
	display: block;
	color: #fff;
	content: "Q";
	}
@media screen and (max-width:767.98px){
#faq dt:before {
	left: 4vw;
	top: 4vw;
	}
}

#faq dt:after {
	position: absolute;
	right: 0;
	top: 0;
	width: 52px;
	height: 52px;
	display: block;
	content: "＋";
	line-height: 52px;
	text-align: center;
	}

#faq dt.active:after {
	content: "−";
	}

#faq dl dt h4 {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	
	}

#faq dl dd {
	position: relative;
	display: none;
	margin: 0 auto 1em;
	padding: 10px 10px 10px 40px;
	line-height: 2em;
	border: 1px solid #003399;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,.8);
	}
@media screen and (max-width:767.98px){
#faq dl dd {
	width: 100%;
	margin: 0 auto 30px;
	padding: 4vw 4vw 4vw 10vw;
	}
}

#faq dl dd:before {
	position: absolute;
	left: 20px;
	top: 10px;
	display: block;
	color: #003399;
	content: "A";
	}
@media screen and (max-width:767.98px){
#faq dl dd:before {
	left: 4vw;
	top: 4vw;
	}
}

#faq dl dd ul {
	display: block;
	}

#faq dl dd li {
	display: block;
	}

#faq dl dd li:before {
	content: "・";
	}

#faq div div h3 {
	margin: 0 0 .5em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: .15em;
	}
@media screen and (max-width:767.98px){
#faq div div h3 {
	font-size: 5vw;
	}
}

#faq div div h3 span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#faq div div h3 span {
	width: 40px;
	height: 40px;
	line-height: 40px;
	}
}

#faq div div p {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#faq div div p {
	font-size: 4vw;
	}
}

#faq div div a {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	padding: 5px 10px;
	color: #fff;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}

#faq div div a:hover {
	background: #0055bb;
	}

#faq div div a:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}

#faq div h4 {
	margin: 0 0 1em;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:768px){
#faq div h4 {
	font-size: 3vw;
	}
}
@media screen and (max-width:767.98px){
#faq div h4 {
	font-size: 4.5vw;
	}
}







/* #trial */
#trial {
	padding: 100px 0;
	}
@media screen and (max-width:767.98px){
#trial {
	padding: 20vw 0;
	}
}

#trial h2 {
	position: relative;
	margin: 0 0 1.5em;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	}
@media screen and (max-width:768px){
#trial h2 {
	font-size: 24px;
	}
}
@media screen and (max-width:767.98px){
#trial h2 {
	font-size: 5vw;
	letter-spacing: .1em;
	text-indent: .1em;
	line-height: 1.5em;
	}
}

#trial h2:after {
	position: absolute;
	left: 50%;
	bottom: -.5em;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}

#trial .intro {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: flex-start;
	background: url(../img/bg_blue.jpg) center center;
	background-size: cover;
	}

#trial .intro .txt {
	width: 50%;
	padding: 5vw 0 0 4vw;
	color: #fff;
	}
@media screen and (max-width:767.98px){
#trial .intro .txt {
	width: 100%;
	padding: 4vw;
	}
}

#trial .intro .txt h3 {
	display: block;
	margin: 0 0 1.5vw;
	font-size: 1.5vw;
	}
@media screen and (max-width:767.98px){
#trial .intro .txt h3 {
	margin: 0 0 1em;
	font-size: 5vw;
	line-height: 2em;
	text-align: justify;
	}
}

#trial .intro .txt p {
	display: block;
	margin: 0 0 1.5em;
	font-size: 1vw;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#trial .intro .txt p {
	font-size: 4vw;
	text-align: justify;
	}
#trial .intro .txt p br {
	display: none;
	}
}

#trial .intro .txt p.important {
	font-weight: 600;
	font-size: 1.3vw;
	}
@media screen and (max-width:767.98px){
#trial .intro .txt p.important {
	font-size: 4.5vw;
	}
}

#trial .intro img {
	display: block;
	width: 50%;
	}
@media screen and (max-width:767.98px){
#trial .intro img {
	width: 100%;
	}
}

#trial .feature .txt {
	width: 60%;
	padding: 5vw 0 0 4vw;
	}
@media screen and (max-width:767.98px){
#trial .feature .txt {
	width: 100%;
	padding: 4vw;
	}
}

#trial .feature {
	padding: 30px 0;
	background: #EFF4FF;
	}

#trial .feature .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
	max-width: 80vw;
	margin: 0 auto;
	}

#trial .feature .txt h3 {
	display: block;
	margin: 0 0 1.5vw;
	font-size: 1.5vw;
	}
@media screen and (max-width:767.98px){
#trial .feature .txt h3 {
	margin: 0 0 1em;
	font-size: 5vw;
	line-height: 2em;
	text-align: justify;
	}
}

#trial .feature .txt p {
	display: block;
	margin: 0 0 1.5em;
	font-size: 1.2vw;
	line-height: 2em;
	}
@media screen and (max-width:767.98px){
#trial .feature .txt p {
	font-size: 4vw;
	text-align: justify;
	}
#trial .feature .txt p br {
	display: none;
	}
}

#trial .feature .txt p span {
	font-weight: 600;
	}

#trial .feature img {
	display: block;
	width: 40%;
	}
@media screen and (max-width:767.98px){
#trial .feature img {
	width: 100%;
	}
}

#trial .step {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
	}
@media screen and (max-width:767.98px){
#trial .step {
	padding: 4vw;
	}
}

#trial .step h4 {
	display: block;
	margin: 0 0 20px;
	padding: 15px 0;
	color: #fff;
	font-size: 24px;
	line-height: 1em;
	text-align: center;
	background: #003399;
	}
@media screen and (max-width:767.98px){
#trial .step h4 {
	font-size: 5vw;
	}
}

#trial .step p.anshin {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	}

#trial .step p.anshin {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 0 20px;
	}

#trial .step p.anshin img {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 1em 0 0;
	}

#trial .step ol {
	display: block;
	}

#trial .step ol li {
	position: relative;
	display: block;
	margin: 0 0 10px;
	padding: 20px 20px 20px 40px;
	background: #EFF4FF;
	border: 1px solid #003399;
	}
@media screen and (max-width:767.98px){
#trial .step ol li {
	padding: 4vw 0 4vw 40px;
	}
}

#trial .step ol li span {
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	text-align: center;
	background: #003399;
	}

#trial .step h5 {
	display: block;
	font-size: 20px;
	}
@media screen and (max-width:767.98px){
#trial .step h5 {
	font-size: 4.5vw;
	}
}

#trial .step p {
	display: block;
	font-size: 16px;
	line-height: 1.5em;
	}
@media screen and (max-width:767.98px){
#trial .step p {
	font-size: 4vw;
	}
}

#trial .step p.notice {
	display: block;
	font-size: .8em;
	text-align: right;
	}


/* #trial .bt_cv */
#trial .bt_cv {
	width: 100%;
	padding: 10px 4vw;
	}

#trial .bt_cv a {
	position: relative;
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 30px 110px 30px 30px;
	color: #000;
	font-size: 36px;
	line-height: 2em;
	text-align: center;
	background-image: linear-gradient(#ffc300, #fecc19 50%, #ebbb1c 50%, #ffd900);
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a {
	width: 100%;
	padding: 10px 63px 10px 20px;
	}
}
#trial .bt_cv a:hover {
	background-image: linear-gradient(#ffc300, #ffdf6d 50%, #ffd136 50%, #ffbb04);
	}

#trial .bt_cv a:after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: block;
	width: 100px;
	height: 150px;
	content: "";
	background: url(../img/icon_coach.png) center center no-repeat;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a:after {
	width: 53px;
	height: 80px;
	}
}

#trial .bt_cv a span.cv1 {
	display: block;
	padding-bottom: 5px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv1 {
	font-size: 3vw;
	letter-spacing: 0;
	}
}

#trial .bt_cv a span.cv1 span {
	position: relative;
	left: auto;
	top: auto;
	display: inline;
	font-size: 27.5px;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv1 span {
	font-size: 4vw;
	}
}

#trial .bt_cv a span.cv2 {
	display: block;
	font-size: 36px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:768px){
#trial .bt_cv a span.cv2 {
	font-size: 24px;
	}
}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv2 {
	font-size: 3.5vw;
	letter-spacing: 0;
	}
}

#trial .bt_cv a span.cv3 {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 10px;
	line-height: 1.5em;
	text-align: left;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv3 {
	max-width: 80%;
	font-size: 2vw;
	}
}

#trial .bt_cv a span.cv3 span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv3 span {
	font-size: 2vw;
	}
}

#trial .bt_cv a span.cv3 span span {
	display: inline;
	font-size: 10px;
	font-weight: 300;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv3 span span {
	font-size: 1.5vw;
	}
}

#trial .bt_cv a span.cv3 img {
	display: block;
	float: right;
	height: 30px;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv3 img {
	height: 25px;
	}
}

#trial .bt_cv a span.cv4 {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:767.98px){
#trial .bt_cv a span.cv4 {
	font-size: 5vw;
	}
}

#trial .bt_cv a span.cv4 span {
	font-size: 10px;
	font-weight: 300;
	}

#trial .bt_cv a span.cv2:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}



/* #counseling */
#counseling {
	padding: 100px 4vw;
	background: url(../img/bg_counseling.jpg) center center;
	background-size: cover;
	}
@media screen and (max-width:767.98px){
#counseling {
	padding: 20vw 4vw;
	}
}

#counseling h2 {
	position: relative;
	margin: 0 0 1.5em;
	color: #000;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	text-align: center;
	line-height: 2em;
	}
@media screen and (max-width:1100px){
#counseling h2 {
	font-size: 26px;
	}
}
@media screen and (max-width:767.98px){
#counseling h2 {
	font-size: 6vw;
	letter-spacing: .1em;
	text-indent: .1em;
	}
}

#counseling h2:after {
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 280px;
	height: 3px;
	background: #003399;
	}

#counseling h2 span {
	display: block;
	font-size: 24px;
	letter-spacing: .1em;
	text-indent: .1em;
	}
@media screen and (max-width:767.98px){
#counseling h2 span {
	font-size: 3vw;
	}
}

#counseling p.intro {
	display: block;
	margin: 0 auto 2em;
	color: #000;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width:1100px){
#counseling p.intro {
	font-size: 14px;
	}
}
@media screen and (max-width:768px){
#counseling p.intro {
	font-size: 13px;
	}
}
@media screen and (max-width:767.98px){
#counseling p.intro {
	font-size: 16px;
	text-align: left;
	}
}

#counseling h3 {
	position: relative;
	margin: 0 0 1em;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	}
@media screen and (max-width:1100px){
#counseling h3 {
	font-size: 22px;
	}
}
@media screen and (max-width:767.98px){
#coach h3 {
	font-size: 5vw;
	letter-spacing: .15em;
	}
}

#counseling h3 img {
	display: block;
	height: 60px;
	margin: 0 auto 10px;
	}

#counseling .inner {
	position: relative;
	width: fit-content;
	margin: 0 auto;
	}

#counseling .inner h4 {
	color: #000;
	font-size: 18px;
	text-align: left;
	}

#counseling .inner h4 {
	margin: 0 0 1em;
	color: #000;
	font-size: 18px;
	}

#counseling .inner ul {
	display: block;
	margin: 0 0 1em;
	}

#counseling .inner li {
	display: block;
	padding: .5em 0 .5em 1em;
	color: #000;
	font-size: 16px;
	text-indent: -1em;
	}

#counseling .inner li:before {
	content: "・";
	}

#counseling .inner p {
	color: #000;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width:768px){
#counseling .inner p {
	font-size: 15px;
	}
}

/* #counseling .bt_cv */
#counseling .bt_cv {
	width: 100%;
	padding: 30px 0 0 0;
	}

@media screen and (max-width:767.98px){
#counseling .bt_cv h3 {
	font-size: 4vw;
	}
}

#counseling .bt_cv a {
	position: relative;
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 10px 0;
	color: #fff;
	font-size: 36px;
	line-height: 2em;
	text-align: center;
	background: #003399;
	transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a {
	padding: 10px 0 0;
	}
}
#counseling .bt_cv a:hover {
	background: #0066bb;
	}

#counseling .bt_cv a span.cv1 {
	display: block;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv1 {
	font-size: 3vw;
	}
}

#counseling .bt_cv a span.cv1 span {
	position: relative;
	left: auto;
	top: auto;
	display: inline;
	font-size: 27.5px;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv1 span {
	font-size: 4vw;
	}
}

#counseling .bt_cv a span.cv2 {
	display: block;
	font-size: 36px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv2 {
	font-size: 5vw;
	}
}

#counseling .bt_cv a span.cv3 {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 10px;
	line-height: 1.5em;
	text-align: left;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv3 {
	max-width: 85%;
	font-size: 2vw;
	}
}

#counseling .bt_cv a span.cv3 span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv3 span {
	font-size: 2vw;
	}
}

#counseling .bt_cv a span.cv3 span span {
	display: inline;
	font-size: 10px;
	font-weight: 300;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv3 span span {
	font-size: 1.5vw;
	}
}

#counseling .bt_cv a span.cv3 img {
	display: block;
	float: right;
	height: 30px;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv3 img {
	height: 25px;
	}
}

#counseling .bt_cv a span.cv4 {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1em;
	}
@media screen and (max-width:767.98px){
#counseling .bt_cv a span.cv4 {
	font-size: 5vw;
	}
}

#counseling .bt_cv a span.cv4 span {
	font-size: 10px;
	font-weight: 300;
	}

#counseling .bt_cv a span.cv2:before {
	content: "\f054" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
	}