@charset "utf-8";

/* ========== すべて共通 ========== */
html, body {
	font-size: 16px;
	font-family: sans-serif;
	color: #393939;
	/* background: #f3e8ff;*/
	background: #ffffff;
}
body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}
p, td, th, li {
	line-height: 1.8;
}
img {
	width: 100%;
	height: auto;
}
a {
	color: #709a00;
}
a:hover {
	color: #95cd00;
}
a:active {
	color: #4b6700;
}
.img-responsive {
	text-align: center;
	display: block;
	max-width: 75%;
	height: auto;
	margin: auto;
}
/* 共通の見出し */
main h1 {
	margin-bottom: 1rem;
	border-bottom: 1px dashed #c84040;
	font-weight: normal;
	font-size: 1.6rem;
}

.container {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
/*	max-width: 1000px; */
}
@media screen and (min-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ========== ヘッダー ========== */
header {
	background: #5896ce;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	padding: 10px 0;
	width: 50px;
	height: 37px;
}
.header-title {
	color: #fff;
	margin-left: 1rem;
	font-size: 1.2rem;
	z-index: 70;
}
.header-phone {
	color: #000;
	margin-left: 1rem;
	font-size: 1.2rem;
}

.header-phone_d img{
	display: none;
}
.header-phone_m img{
/*	padding-left: 0px;
	margin-left: -10px;
	padding-right: 0px;
	padding-top: 10px;
	padding-bottom: 0px;
	height: 60px;
	width: 60px;*/
	display: none;
}

.header-line_d img{
	display: none;
}
.header-line_m img{
	padding-left: 10px;
	padding-right: 10px;
	margin-left: -10px;
	padding-top: 10px;
	padding-bottom: 0px;
	height: 50px;
	width: 50px;
}

.header-phone_m:hover{
	opacity:0.7;
}
.header-line_d:hover{
	opacity:0.7;
}
.header-line_m:hover{
	opacity:0.7;
}


.menu-btn {
	padding: 10ps 10px 0 10px;
	border: 1px solid #fff;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	background: url(../images/hamburger.png) no-repeat center center;
	background-size: contain;
	z-index: 90;
}

#menu-btn-check {
	display: none;
}
.menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 80;
    background-color: #003366;
	transition: all 0.5s;
	clear: both;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
#menu-btn-check:checked ~ .menu-content {
    right: 0;/*メニューを画面内へ*/
}



@media screen and (min-width: 768px) {
	.header-logo {
		padding: 10px 0 10px 0;
		margin: 10px 0 10px 0;
		width: 60px;
		height: 46px;
	}
	.menu-btn {
		display: none;
	}
	.header-inner {
		justify-content: flex-start;
	}
	.header-title {
		font-size: 2rem;
	}
	.header-phone {
		font-size: 2rem;
	}
	.header-phone_d img{
		display: block;
		padding-left: 10px;
		padding-top: 10px;
		padding-bottom: 0px;
		height: 100px;
	}
	.header-phone_m img{
		display: none;
	}
	.header-line_d img{
		display: block;
		/*padding-left: 10px;*/
		padding-top: 10px;
		padding-bottom: 0px;
		height: 60px;
	}
	.header-line_m img{
		display: none;
	}
}

/* ========== ナビゲーション ========== */
nav {
	background: #a9a9a9;
}
.navbar {
	display: none !important;
	list-style-type: none;
}
.navbar a {
	display: block;
	padding: 0.6rem 0;
	color: #fff;
	text-decoration: none;
}
.navbar a:hover {
	background: #c84040;
}

@media screen and (min-width: 768px) {
	.navbar {
		display: flex !important;
	}
	.navbar li {
		flex: 1 1 auto;
		text-align: center;
	}
	.navbar a.nav-current {
		background: #c84040;
	}
}

/* ========== メインエリア基本レイアウト ========== */
main {
	padding-top: 50px;
	padding-bottom: 50px;
	/* background: #f3e8ff; */
	background: #ffffff;
}

@media screen and (min-width: 768px) {
	main {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* ========== フッター ========== */
footer {
	background: #5896ce;
	font-size: 0.9rem;
	color: #fff;
}
.footer-container {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-nav {
	list-style-type: none;
}
.footer-nav2 {
	list-style-type: none;
	padding-top: 20px;
}
.footer-nav li {
	display: inline;
	padding: 0 1rem 0 0;
}
.footer-nav a {
	color: #fff;
	text-decoration: none;
}
.footer-nav a:hover {
	opacity: 0.5;
}
.footer-copyright {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-a {
	color: #95cd00;
}
.footer-a:hover {
	color: #709a00;
}

/* tel */
.footer-tel {
	color: #95cd00;
}
.footer-tel:hover {
	color: #709a00;
}

@media screen and (min-width: 768px) {
	.footer-tel {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: #ffffff;
	}
}


/* ========== index トップページ ========== */

/* キャッチコピー */
.home-maincopy {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}

.home-maincopy strong {
	color: #c84040;
}
.home-maincopy3 {
	text-align: center;
	font-size: 1.2rem;
}
.home-maincopy2 {
	text-align: left;
	list-style-type: none;
}
.home-maincopy4 {
	text-align: center;
	font-size: 1em;
}

.main_br {
	display: block;
}
.home-keyvisual img {
	padding : 10px;
}

.home-keyvisual2 img {
	padding : 0px;
	height: 240px;
	width: auto;
}


@media screen and (min-width: 768px) {
	.home-maincopy {
		font-size: 2.4rem;
	}
	.home-maincopy3 {
		font-size: 1.6rem;
	}
	.main_br {
		display: none;
	}
}

.home-color1 {
	color: #f8b173;
}
.home-color2 {
	color: #74b9d9;
}
.home-color3 {
	color: #8bca85;
}
.home-color4 {
	color: #f8817e;
}

/* 見出し */
.home-h2 {
	padding-bottom: 5px;
	margin: 30px 0 10px 0;
	color: #c84040;
	border-bottom: 1px dashed #c84040;
	font-size: 1.3rem;
}

/* お知らせ */
.home-news {
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	height: 80px;/*スクロールの高さ*/
	overflow-y: scroll;
}

/* コース紹介 */
.home-course {
	display: flex;
	flex-flow: column;
}
.home-course li {
	flex: 1 1 auto;
	margin: 0 2px 4px 2px;
	padding: 0px;
	/* border: solid 5px #fff; */
	list-style-type: none;
	background: #f3e8ff;
}
.home-course figure:hover {
	opacity: 0.5;
}
.home-course img{
	width: 300px;
	height: auto;
}
.home-course figcaption {
	padding: 15px 0;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}


/* ポイント紹介 */
.home-point {
	display: flex;
	flex-flow: row;
	justify-content: space-around;
}
.home-point-box {
	border: 1px solid #000;
	padding: 10px;
	margin: 10px;
	width: 45%;
}
.point {
	text-align: center;
	font-weight: bold;
	color: #FE8094;
	padding-bottom: 10px;
}



/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (min-width: 768px) {
	.home-course {
		flex-flow: row;
	}
	.home-course li {
		background: #fff;
	}
	.home-course img{
		max-width: 150px;
	}
}





/* ========== course コース紹介 ========== */
/* コース概要 */
.course-container {
	display: flex;
	flex-flow: column;
}

.course-text {
	text-align: center;
}

.course-text img {
	border-radius: 10px;
	width: 50%;
}
.course-h3 {
	margin: 30px 0 10px 0;
	color: #c84040;
	border-bottom: 1px dashed #c84040;
	font-size: 1.3rem;
}
.course-description {
	margin: 0 0 30px 0px;
	padding: 15px;
	background: #fff;
	background-size: 50px 50px;
	border-radius: 10px;
}
.course-h2 {
	font-size: 1.6em;
	margin-bottom: 0.1em;
}
.course-spec {
	list-style-type: none;
}
.course-label {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	margin-right: 0.1rem;
	border-radius: 3px;
	background: #c84040;
	font-size: 0.7rem;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.course-container {
		flex-flow: row;
	}
/*	.course-image {
		flex: 1 1 40px;
		margin-right: 20px;
	}*/
	.course-text {
		flex: 0 0 300px;
	}
	.course-description {
		flex: 1 1 auto;
	}
/*	.course-text img {
		border-radius: 10px;
		width: 60%;
	}*/
}






/* お申込みボタン */
.course-button {
	display: block;
	width: 300px;
	margin: 30px auto;
	padding: 1rem 0;
	background-color: #709a00;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
}
.course-button:hover {
	background-color: #95cd00;
	color: #fff;
}





/* ========== example 事例紹介 ========== */
/* コース紹介 */
.example-icon {
	display: flex;
	flex-flow: column;
}
.example-icon li {
	flex: 1 1 auto;
	margin: 0 2px 4px 2px;
	padding: 0px;
	/* border: solid 5px #fff; */
	list-style-type: none;
	/* background: #f3e8ff; */
}
.example-icon figure:hover {
	opacity: 0.5;
}
.example-icon img{
	width: 300px;
	height: auto;
}
.example-icon figcaption {
	padding: 15px 0;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}

/* コース概要 */
.example-container {
	display: flex;
	flex-flow: column;
}
.example-text {
	text-align: center;
}

.example-text img {
	border-radius: 10px;
	width: 50%;
}
.example-h3 {
	margin: 30px 0 10px 0;
/*	color: #c84040;
	border-bottom: 1px dashed #c84040; */
	font-size: 1.3rem;
}
.example-description {
	margin: 0 0 30px 0px;
	padding: 15px;
	background: #fff;
	background-size: 50px 50px;
	border-radius: 10px;
	text-indent: -1em;
}
.example-description ul{
	text-indent: 0em;
}
.example-h2 {
	font-size: 1.6em;
	margin-bottom: 0.1em;
}

.example-subtitle {
	font-size: 1.6em;
	margin-bottom: 0.1em;
}


/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (min-width: 768px) {
	.example-icon {
		flex-flow: row;
	}
	.example-container {
		flex-flow: row;
	}
	.example-text {
		flex: 0 0 300px;
	}
	.example-description {
		flex: 1 1 auto;
	}
}



/* ========== qanda よくある質問 ========== */
.q-and-a {
	margin-top: 1em;
	padding: 8px 0 0 30px;
}
.question {
	font-weight: bold;
	font-size: 1.6em;
	color: #6eba44;
	background-size: 40px 40px;
	text-indent: -1em;
}
.answer {
	margin-bottom: 2em;
	background-size: 40px 40px;
	font-size: 1.2em;
	text-indent: -1em;
/*	padding-left: 1em; */
}


/* ========== price 価格 ========== */
.price-h2 {
	padding-bottom: 5px;
	margin: 30px 0 10px 0;
	color: #c84040;
	border-bottom: 1px dashed #c84040;
	font-size: 1.6rem;
}



/* ========== contact お申し込み ========== */
.contact {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}
.contact p {
	margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
}
textarea {
	height: 200px;
	border: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
	input[type="text"],
	input[type="email"] {
		width: 50%;
	}
}

/* お申込みボタン */
input[type="submit"] {
	width: 300px;
	padding: 8px 0;
	background-color: #709a00;
	border: none;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
	.contact-tel {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: #000000;
	}
}


/* ========== whatsnew ========== */
.whatsnew-container {
	display: flex;
	flex-flow: column;
}

@media screen and (min-width: 768px) {
	.whatsnew-container {
		flex-flow: column;
	}
}




/* テキストバナー */

.text-banner-tel
{
	width: 50vw;
	height: 24px;
	position: fixed; /* バナーを固定位置に配置 */
	right: 0px; /* 右端から20ピクセルの位置に設置 */
	bottom: 0px; /* 下端から20ピクセルの位置に設置 */
	z-index: 9999; /* 他の要素より前面に表示 */
	background-color: #003366;
	color: #fff; /* テキストカラーを白に設定 */
	padding: 10px 5px 5px 5px;
	font-size: 16px; /* フォントサイズを16ピクセルに設定 */
	text-decoration: none; /* 下線をなくす */
	margin: 0;
	text-align: center;
}
.text-banner-tel:hover{
	opacity:0.7;
}


.text-banner-line
{
	width:50vw;
	height: 24px;
	position: fixed; /* バナーを固定位置に配置 */
	left: 0px; /* 右端から20ピクセルの位置に設置 */
	bottom: 0px; /* 下端から20ピクセルの位置に設置 */
	z-index: 9999; /* 他の要素より前面に表示 */
	background-color: #06c755;
	color: #fff; /* テキストカラーを白に設定 */
	padding: 10px 5px 5px 5px;
	font-size: 16px; /* フォントサイズを16ピクセルに設定 */
	margin: 0;
	text-align: center;
}
.text-banner-line:hover{
	opacity:0.7;
}

.text-banner
{
	width:100%;
	height: 48px;
	position: fixed; /* バナーを固定位置に配置 */
	left: 0px; /* 右端から20ピクセルの位置に設置 */
	bottom: 0px; /* 下端から20ピクセルの位置に設置 */
	z-index: 9999; /* 他の要素より前面に表示 */
	background-color: #ffffff;
	color: #000; /* テキストカラーを白に設定 */
	/*padding: 10px 5px 5px 5px;*/
	font-size: 16px; /* フォントサイズを16ピクセルに設定 */
	margin: 0;
	text-align: center;
	border-top: 2px solid #000;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.text-banner img{
	height: 60px;
	width: auto;
}
.text-banner-line_d img{
	height: 45px;
	width: auto;
	margin-bottom: -10px;
}

.text-banner-line_d:hover{
	opacity:0.7;
}

.text-banner-instagram img{
	height: 45px;
	width: auto;
	margin-bottom: -10px;
}

.text-banner-instagram:hover{
	opacity:0.7;
}


@media screen and (min-width: 768px) {
	.text-banner-tel {
		pointer-events: none;
		cursor: default;
		width:150px;
	}
	.text-banner-tel_d {
		pointer-events: none;
	}
	.text-banner-line
	{
		width:150px;
		left: auto;
		right: 0px; /* 右端から20ピクセルの位置に設置 */
		bottom: 38px; /* 下端から20ピクセルの位置に設置 */
	}
}
