@charset "UTF-8";
/*====================================================================
　全体設定
====================================================================*/
body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #666;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	overflow-x: hidden;
}

.clearfix::after {
	clear: both;
	content: " ";
	display: block;
}

a {
	color: #0c6bb0;
}

.small {
	font-size: 12px;
}

.sp {
	display: block;
}

@media screen and (max-width: 768px) {
.sp {
	display: none;
}
}

/*--------------------枠--------------------*/
.wrapper {
	box-sizing: border-box;
	margin: 0 auto;
	min-width: 1000px;
	width: 1000px;
}

.waku {
	background: #fff;
	padding: 20px;
	border: 4px solid #dcdcdc;
	margin: 30px 180px;
	text-align: left;
}

@media screen and (max-width: 1000px) {
.wrapper {
	min-width: 100%;
	width: 100%;
	padding: 0 3%;
}
}

@media screen and (max-width: 768px) {
.waku {
	margin: 30px auto;
}
}
/*--------------------見出し--------------------*/
/*h2 {
	color: #046603;
	font-size: 20px;
	font-weight: bold;
}*/

/*--------------------ボタン--------------------*/
.button a {
	background: #90b656;
	color: #fff;
	border-radius: 100vw;
	display: inline-block;
	font-weight: bold;
	font-size: 20px;
	padding: 12px 32px;
	margin: 30px auto 20px;
	text-decoration: none;
	text-align: center;
	transition: all .5s ease-out;
}

.button a:hover {
	background: #046603;
	color: #fff;
}

@media screen and (max-width: 480px) {
.button a {
	font-size: 14px;
}
}

/*--------------------アニメーション用--------------------*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}



/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	box-sizing: border-box;
	min-width: 1000px;
	width: 100%;
	background: #fff;
	filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	transition: all .5s ease-out;
}

header .logo a {
	font-size: 0px;
	display: block;
	background: url(../img/logo.png) no-repeat center center / 100% auto;
	width: 253px;
	height: 68px;
	transition: all .3s ease-out;
}

header .logo a:hover {
	opacity: 0.6;
}

.nav_list {
	box-sizing: border-box;
}

header ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

header li {
	margin: 0 8px;
}

header li a {
	color: #046603;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	transition: all .3s ease-out;
}

header li a:hover {
	opacity: 0.6;
}

.nav_button {
	cursor: pointer;
	display: none;
	width: 50px;
	background: none;
	border: none;
}

.nav_button span {
	display: inline-block;
	background: #046603;
	border-radius: 100vw;
	height: 4px;
	width: 50px;
	transition: all .3s ease-out;
}

.nav_button.active span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotateZ(45deg);
}

.nav_button.active span:nth-of-type(2) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotateZ(-45deg);
}

@media screen and (max-width: 1000px) {
header {
	min-width: 100%;
}
header li {
	margin: 0 3px;
}
}

@media screen and (max-width: 768px) {
header {
	height: 15vw;
}
header .logo a {
	margin-top: 3vw;
	background: url(../img/logo.png) no-repeat center center / 100% auto;
	width: 25vw;
	height: 10vw;
}
.nav_list {
	display: none;
	background: #fff;
	height: 100vh;
	width: 100%;
	padding: 5vw;
	position: fixed;
	top: 15vw;
	left: 0;
	z-index: 9999;
}
.nav_list.close {
	display: none;
}
.nav_list.open {
	display: block;
}
header ul {
	display: block;
}
header li {
	border-bottom: 1px solid #eee;
}
header li a {
	color: #333;
	display: block;
	padding: 3vw;
}
header li a::before {
	content: "-";
	display: inline-block;
	margin-right: 1em;
}
header li a:hover {
	background: #fafafa;
	color: #046603;
}
.nav_button {
	display: block;
}
}



/*====================================================================
　ページトップ
====================================================================*/
.pagetop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9998;
}

.pagetop a {
	display: block;
	border: 2px solid #fff;
	background: #90b656;
	border-radius: 100vw;
	font-size: 30px;
	color: #fff;
	opacity: 0.6;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	transition: all .3s ease-out;
}

.pagetop a:hover {
	opacity: 1;
}



/*====================================================================
　フッター設定
====================================================================*/
footer {
	min-width: 1000px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
footer {
	min-width: 100%;
}
}

@media screen and (max-width: 768px) {
}

.footer_link {
	padding: 20px 0;
}

.footer_bt {
	background: #1c681b;
	padding: 15px 0;
	text-align: center;
}

/* コピーライト */
footer .copyright {
	color: #fff;
	font-size: 12px;
	margin: 0;
	padding: 7px;
}

@media screen and (max-width: 768px) {
.footer_bt .logo {
	width: 25%;
}
}

@media screen and (max-width: 480px) {
.footer_bt .logo {
	width: 30%;
}
}



/*====================================================================
　トップページ設定
====================================================================*/
/*--------------------メインビジュアル--------------------*/
.main_visual {
	color: #046603;
	font-weight: bold;
	text-align: center;
	margin-top: 98px;
	width: 100%;
}

.main_visual h1 {
	margin: 0;
	font-size: 30px;
}

.main_visual img {
	width: 100%;
}

@media screen and (max-width: 768px) {
.main_visual {
	margin-top: 15vw;
}
}

/*--------------------コンセプト--------------------*/
.top_concept {
	padding-top: 60px;
}

.top_concept_left img {
	float: right;
}

.top_concept_right {
	box-sizing: border-box;
	background-image: url(../img/top_concept_right_img1.jpg), url(../img/top_concept_right_img2.jpg);
	background-position: bottom left, bottom right;
	background-repeat: no-repeat, no-repeat;
	min-height: 200px;
	padding: 0 270px 0 100px;
	margin: 30px 0;
}

@media screen and (max-width: 768px) {
.top_concept_left img {
	width: 50%;
}
.top_concept_right {
	padding: 0 0 200px 0;
}
}

@media screen and (max-width: 480px) {
.top_concept_left img {
	float: none;
	padding: 0 5%;
	width: 90%;
}
.top_concept_right {
	background-size: 15% auto, 70% auto;
	padding: 0 0 40vw 0;
}
}

/*--------------------プロフィール--------------------*/
.top_profile {
	padding: 60px 0;
}

.top_profile_teacher {
	background: #f7f0e3;
}

.top_profile_teacher img {
	float: left;
	padding-right: 30px;
}

.top_profile_teacher_text {
	padding: 10px 30px 30px 30px;
}

.top_profile ul {
	list-style-type: none;
	margin: 30px 50px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

.top_profile li {
	box-sizing: border-box;
	padding: 5px;
	width: 25%;
}

.top_profile li img {
	box-sizing: border-box;
	background: #fff;
	padding: 5px;
	width: 100%;
	max-width: 180px;
	filter: drop-shadow(0 0 3px rgba(197,197,197,0.6));
}

@media screen and (max-width: 768px) {
.top_profile_teacher img {
	width: 40%;
}
}

@media screen and (max-width: 480px) {
.top_profile_teacher img {
	box-sizing: border-box;
	float: none;
	padding: 15px;
	width: 100%;
}
.top_profile_teacher_text {
	padding: 15px;
}
.top_profile ul {
	margin: 30px 15px;
}
.top_profile li {
	width: 50%;
}
}

/*--------------------受講の流れ--------------------*/
.top_flow {
	background: #fbfcec;
	padding: 60px 0;
	text-align: center;
}

.top_flow .wrapper {
	background-image: url(../img/bg_flow1.png), url(../img/bg_flow2.png);
	background-position: bottom left, bottom right;
	background-repeat: no-repeat, no-repeat;
}

.top_flow ul {
	list-style-type: none;
	margin: 40px 0;
	padding: 0;
}

.top_flow li {
	text-align: left;
	position: relative;
}

.top_flow li::before {
	content: "";
	display: block;
	height: 21px;
	width: 21px;
	background: url(../img/arrow.png) no-repeat center center / auto 100%;
	position: absolute;
	bottom: -30px;
	left: 8%;
}

.top_flow li:last-child::before {
	content: none;
}

.top_flow li + li {
	margin-top: 50px;
}

.top_flow li .flow_img {
	float: left;
	padding-right: 30px;
}

.top_flow .top_flow_text iframe {
	width: 560px;
	height: 315px;
	display: block;
}

.top_flow .top_flow_text a {
	display: inline-block;
	margin-bottom: 10px;
}

@media screen and (max-width: 830px) {
.top_flow .top_flow_text iframe {
	width: 60vw;
	height: 33.75vw;
}
}

@media screen and (max-width: 768px) {
.top_flow .wrapper {
	background-size: 10vw auto, 25vw auto;
	padding-bottom: 20vw;
}
.top_flow li::before {
	left: 47%;
}
.top_flow li .flow_img {
	float: none;
	display: block;
	padding: 0 0 10px 0;
	margin: 0 auto;
	width: 35%;
}
.top_flow .top_flow_text iframe {
	width: 80vw;
	height: 45vw;
	margin: 0 auto;
}
.top_flow .top_flow_text img {
	max-width: 100%;
}
}

/*--------------------ご入会--------------------*/
.top_join {
	padding: 60px 0;
	text-align: center;
}

.top_join .wrapper {
	background-image: url(../img/bg_join1.png), url(../img/bg_join2.png);
	background-position: top left, bottom right;
	background-repeat: no-repeat, no-repeat;
}

@media screen and (max-width: 768px) {
.top_join .wrapper {
	padding: 0 0 18vw 0;
	background-position: bottom left, bottom right;
	background-size: 22vw auto, 23vw auto;
}
}

@media screen and (max-width: 480px) {
.top_join .wrapper {
	padding: 0 0 30vw 0;
	background-size: 30vw auto, 35vw auto;
}
}

/*--------------------- オンラインレッスンのご案内 -------------------*/
.top_lesson {
	background: #f7f0e3;
	padding: 60px 0;
	text-align: center;
}

.top_lesson table {
	border-collapse: collapse;
	background: #fff;
	margin: 20px auto;
	width: 620px;
}

.top_lesson table th {
	color: #046603;
	padding: 10px;
}

.top_lesson table td {
	border-left: 2px dotted #046603;
	padding: 10px;
}

.top_lesson ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.top_lesson li {
	box-sizing: border-box;
	margin: 10px;
	text-align: center;
	width: 46%;
}

.top_lesson li div {
	border-radius: 10px;
	font-weight: bold;
	padding: 10px;
}

.top_lesson li:nth-of-type(1) div {
	border: 2px dotted #97bfde;
	background: #f6fbff;
	color: #6496c1;
}

.top_lesson li:nth-of-type(2) div {
	border: 2px dotted #dbacac;
	background: #fff6f6;
	color: #e8787e;
}

@media screen and (max-width: 768px) {
.top_lesson table {
	width: 90%;
}
.top_lesson table th,
.top_lesson table td {
	display: block;
}
.top_lesson table td {
	border-left: none;
	border-top: 2px dotted #046603;
}
.top_lesson li {
	width: 100%;
}
}

/*-------------------- オンラインレッスンで必要なものについて --------------------*/
.top_online {
	background: #f7f0e3;
	padding: 0 0 60px;
	text-align: center;
}

.top_online .wrapper {
	background: #fff;
	padding: 30px;
}



/*====================================================================
　お申込フォーム設定
====================================================================*/
.form {
	margin: 120px auto 30px;
}

.form h2 {
	padding: 10px;
	background: #e5eede;
	color: #157014;
	font-size: 16px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}

.form .button ul {
	list-style-type: none;
	margin: 30px 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.form .button li {
	padding: 0 10px;
}

.form .button li a {
	font-size: 16px;
	margin: 0;
	padding: 12px 18px;
}

.form table {
	box-sizing: border-box;
	border-collapse: collapse;
	margin: 20px 0;
	width: 100%;
}

.form table th {
	box-sizing: border-box;
	padding: 5px 1em;
	background: #e7dac2;
	border: 1px solid #996;
	color: #5a4c32;
	font-weight: normal;
	text-align: left;
	width: 180px;
}

.form table td {
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #996;
}

.form table td em {
	color: #933;
	font-size: 14px;
	font-style: normal;
}

.form .buttons {
	text-align: center;
}

.form #submit {
	width: 150px;
	height: 30px;
	line-height: 30px;
	margin: 0 10px;
	border: 1px solid #6c4e42;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #7f5c52;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.form #myreset {
	width: 150px;
	height: 30px;
	line-height: 30px;
	margin: 0 10px;
	border: 1px solid #a09695;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #e6dee0;
	color: #69605f;
	font-size: 16px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
.form {
	margin-top: 18vw;
}
.form table th,
.form table td {
	display: block;
	width: 100%;
}
}

@media screen and (max-width: 480px) {
.form .button ul {
	flex-wrap: wrap;
}
.form .button li {
	text-align: center;
	width: 90%;
}
.form .button li + li {
	margin-top: 10px;
}
}

