@charset "utf-8";
/* CSS Document */

/*青#034AA6、緑#067302、黄#D9B504、橙薄#F28705、橙濃#F27405*/

/* =============== 全体共通 =============== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Zen Maru Gothic', sans-serif;
}

html {
 scroll-behavior: smooth;
}
body {
	background-color: #fff;
	color: #311;
	line-height: 1.8;
}
section {
	padding: 40px 1rem 20px; 
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

li {
	list-style-type: none;
}


header {
	height: 160px;
	background-image:linear-gradient(90deg,#034AA6,#034AA600);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99999;
}
h2, .nayami-h2 {
	font-family: 'Yusei Magic', sans-serif;
	font-weight: bold;
	text-align: center;
	font-size: 130%;
	margin: 40px 0px;
}


/* ========= ナビゲーションメニュー ========= */
nav {
	padding: 10px 10px 0px 10px;
}
nav li {
	margin-bottom: 10px;
}
nav a {
	color: #fff;
	font-weight: bold;
	border-bottom: 2.5px dashed #113311;
	padding: 10px 15px 5px 15px;
}

nav a:hover {
	background-color: #296BC0;
	border-radius: 5px;
}

/*====== aside 申し込みボタン======*/
aside {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 99999;
}

aside a {
	display: block;
	margin: 0px auto 20px auto;
	background-color: #F3C846;
	border-radius: 1rem;
	border: 2.5px dashed #113311;
	box-shadow: 0px 0px 0px 7px #F3C846;
	padding: 0.7rem 0.5rem;
	font-weight: 900;
}

aside img {
	height: 1.7rem;
	margin-left: 2px;
	vertical-align: bottom;
}



/* =============== トップ =============== */
.top {
	margin-top: 180px;
	margin-bottom: 100px;
	position: relative;
	background-color: #fff;
	height: 70vh;
}
.top-right {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
}
.top-right img {
	height: 100%;
}
/*.top .logo {*/
.top .logo img {
	display:block; 

	position: absolute;
	top: 40px;
	left: 20px;
	max-width: 90vw;
	max-height: 40%;/*効いてない*/
}

.top ul {
	position: absolute;
	bottom: 10px;
	left: 40px;
	width: 250px;
	max-width: 70vw;
	max-height: 50%;
	display: flex;
}
.top .li-1 {
	margin-right: 10px;
}
.top .pr-ga { 
	display: block;
}


/*============ 授業の特徴 ============*/

.point li {
	background: #d6ebff;
	border: 2px dashed #fff;
	box-shadow: 0px 0px 0px 10px #d6ebff;
	margin: 3rem 0;
	padding: 2rem 1.5rem;
	text-align: center;
}


.point li img {
	width:600px;
}
.point-tab {
	display: block;
	margin-top: 10px;
	width: 120px;
	color: #fff;
	background-color: #D9B504;
	border-radius: 15px;
	text-align: center;
	padding: 8px 15px;
}
.point-h3 {
	display: block;
	max-width: 100%;
	margin: 10px auto;
	color: #034AA6;
	font-family: 'Yusei Magic', sans-serif;
	font-size: 120%;
}
.point-text {
	max-width: 600px;
	margin: 0px auto;
}
.point-text p {
	text-align: justify;
}


h2 .nayami-h2 {
	background: linear-gradient(transparent 70%, #a7d6ff 70%);
}


/*============ 利用者の声 ============*/
.question {
	padding: 40px 19px;
    margin: 100px 0;
    color: #2c2c2f;
    background: #ffffcc;
    border-top: solid 5px #F28705;
    border-bottom: solid 5px #F28705;
}
.q {
	color: #fff;
	background-color: #067302;
	border-radius: 5px;
	padding: 4px 15px;
	margin-right: 15px;
}
.a {
	color: #fff;
	background-color: #034AA6;/*#F27405;*/
	border-radius: 5px;
	padding: 4px 15px;
	margin-right: 15px;
}
.question li {
	margin-bottom: 2rem;
}
.question p {
	margin-bottom: 1rem;
	line-height: 2;
	padding-left: 3.7rem;
	text-indent: -3.7rem;
}

/*============ コース紹介 ============*/
.course {
	padding: 1rem 1rem;
    margin: 100px 0;
		/*background: -webkit-repeating-linear-gradient(-45deg, #ffffcc, #ffffcc 3px,#f4e290 3px, #f4e290 7px);
    background: repeating-linear-gradient(-45deg, #ffffcc, #ffffc2 3px,#f4e290 3px, #f4e290 7px);*/
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}
.course li {
	margin: 20px 20px;
}
.course p {
	text-align: end;
}

footer {
	color: #fff;
	background-color: #034AA6;
	padding: 20px 20px 0px 20px;
}
footer ul {
	font-size: 80%;
	margin-left: 1rem;
	margin-bottom: 100px;
}
footer .copy {
	text-align:  center;
}




/*==========タブレット対応（600px以上）==========*/
@media(min-width:600px) {
/*ナビゲーション*/
	header {
		height: 60px;
		background-image:linear-gradient(180deg,#034AA6,#034AA6);
/*		background-image:linear-gradient(180deg,#034AA6,#034AA600);*/
	}
	
	nav ul {
		display: flex;
		justify-content: space-around;
		max-width: 1025px;
		margin: 0px auto;
		padding: 10px 10px;
	}
	
	aside {
		right: 20px;
		bottom: 20px;
		top: inherit;
	}
	
	aside ul {
		display: flex;
	}
	aside a {
		margin-left: 20px;
	}
	aside span {
		display: block;
		font-size: 140%;
	}
/**/
	h2 {
		font-size: 200%;
	}
	.point-h3 {
		font-size: 150%;
	}
	
/*トップ　タブレット*/
	.top {
		margin-top: 65px;
		height: 90vh;
		max-width: 1025px;
	}
	.top .logo img {
		max-width: 70vw;
		max-height: 40%;
	}
	.top ul {
		left: 80px;
		width: 300px;
		max-width: 50vw;
		max-height: 40%;
	}
	.top .li-1 {
		margin-right: 20px;
	}
	
	.nayami .inner {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
	.question .inner {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	
	
/*コース　タブレット*/
	.course ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.course li {
		margin: 10px;
		width: 45%;/*2つ並*/
	}
	.course .inner {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
	.course .inner-p {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
	footer .inner {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
}
/*==========PC対応（1025px以上）==========*/
@media(min-width:1025px) {

/*誘導ボタンのサイズ変更*/
	aside a {
    	width: 170px;
    	text-align: center;
		margin-left: 40px;
	}
	
/*トップ　PC*/
	.top,.point .inner {
		max-width: 1025px;
		margin-left: auto;
		margin-right: auto;
	}
	.top .logo img {
		left: -20px;
		width:650px;
		max-width: 70vw;
		max-height: 45%;
	}
	.top ul {
		width: 400px;
		max-height: 40%;
	}
	
	.top .li-1 {
		margin-right: 40px;
	}
	
	
/*授業の特徴PC*/
	.point li {
	padding: 2rem 3rem;
	text-align: center;
	display: flex;
}


	.point li img {
		width: 500px;
	}

	.point-text {
		max-width: 370px;
		margin: 0px 0px 0px auto;
	}
	.point-text h3 {
		text-align: left;
	}
	.point-h3 {
		font-size: 120%;
	}

	
	
	
/*コース　PC*/
	.course li {
		width: 30%;/*3つ並*/
	}
	.course ul {
		max-width: 1440px;
		margin-left: auto;
		margin-right: auto;
	}
}