@charset "UTF-8";

/* =============================
	フェード
============================== */
body{
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.timeline-Header,
.timeline-Footer {
    display: none !important;;
}


/* =============================
	HEADER
============================== */

body {
	font-family: YakuHan, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: rgb(84, 84, 84);
}


/* =============================
	CONTENT COMMON
============================== */

#header h1 {
	display: inline-block;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.5rem;
	line-height: 1.0;
	text-align: center;
}
#header h1 img {
	width: 60%;
}
#header h1 a {
	color: rgb(84, 84, 84);
	line-height: 1.0;
	font-weight: 700;
}
#top #header h1 a {
	color: #fff;
}

#header .headArea {
	display: flex;
	justify-content: space-between;
	color: rgb(84, 84, 84);
}
#top #header .headArea {
	color: #fff;
}



#nav-drawer {
  position: absolute;
  padding: 5%;
  width: 90%;
  top:0;
  /*border-bottom: 1px solid #ccc;*/
}
#top #nav-drawer {
	border-bottom: none;
}

#top .news {
    padding: 50px 5% 0;
}


/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/

#nav-open {
	display: inline-block;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: rgb(84, 84, 84);
    display: block;
    content: '';
    cursor: pointer;
}
#top #nav-open span,
#top #nav-open span:before,
#top #nav-open span:after {
	   background: #fff;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 50%;/*右側に隙間を作る*/
    max-width: 330px;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
    padding: 5%;
}
#nav-content ul li {
	margin-bottom: 10px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content .button a {
	width: 90%;
	margin: 20px auto 0;
	padding: 5px 5%;
	font-size: 0.9rem;
}


article {
	width: 100%;
	margin: 0 auto;
}
#top section {
	padding: 50px 5%;
}
section {
	padding: 50px 5%;
}
section.first {
	padding: 130px 5% 50px;
}

section.news {
	padding: 30px 5% 0;
}
section.news dl {
	border-top: 1px dashed rgb(84, 84, 84);
	padding: 5px 0 ;
	font-size: 13px;
}
section.news dl:last-child  {
	border-bottom: 1px dashed rgb(84, 84, 84);
}

section p {
	margin-bottom: 1.5rem;
}

h2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size:28px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto 30px;
	/*width: 100px;*/
	border-bottom: 1px solid rgb(84, 84, 84);
	line-height: 1.4;
}
h2 span {
    font-size: 80%;
    font-family: YakuHan, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.button a {
	width: 80%;
	margin: 25px auto 0;
	text-align: center;
	padding: 10px 20px;
	border-radius: 50px;
	border: 1px solid rgb(84, 84, 84);
	font-size: 16px;
	font-weight: bold;
	display: block;
}

.adBox {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.adBox .map a {
	display: block;
	width: 80px;
	border-radius: 10px;
	text-align: center;
	background: rgb(84, 84, 84);
	color:#fff;
	vertical-align: middle;
	padding: 20px 0;
}
.access {
	font-size: 90%;
}

#footer .btmFooter {
	background-color:#A72E39;
	padding: 30px 5% 15px;
}
#footer .btmFooter ul {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}
#footer .btmFooter ul li {
	width: 50%;
}
#footer .btmFooter a {
	color: #fff;
	font-size: 12px;
}

#footer .btmFooter .copy {
	font-size: 10px;
	color: #fff;
	text-align: center;
	margin: 20px 0 0;
}


/*.kv {
   width: 100vw;
   height: auto;
   min-height: 100vh;
   background-size: cover;
   background-position: center;
   background-image: url('../images/kv.jpg');
}
*/

.kv img {
   width: 100%;
   height: auto;
}



h3 {
	font-size: 1.2rem;
	font-weight: bold;
}
h4 {
	font-size: 1.0rem;
	font-weight: bold;
}


/* =============================
	price
============================== */

#price .lesson_list {
	margin-bottom: 40px;
}
#price .lesson_list dt {
	font-weight: bold;
}
#price .price_list a {
	color: blue;
	text-decoration: underline;
}


/* =============================
	lesson
============================== */

#lesson .lesson_list {
	margin-bottom: 40px;
}
#lesson .lesson_list dt {
	font-weight: bold;
}
#lesson .table_res {
    margin-bottom: 30px;
}
#lesson a.blue {
    color: blue;
    text-decoration: underline;
}
#lesson .table_res th {
    width: 20%;
    vertical-align: top;
}


/* =============================
	coach
============================== */

#coach .name {
	font-weight: bold;
	font-size: 1.1rem;
}
#coach ul {
	margin-bottom: 20px;
}
#coach .coach_text img {
	width: 60%;
}


/* =============================
	RESPONSIVE
============================== */

@media (min-width: 751px) {

#wrapper,
#wrapper .bg-slider {
	max-width: 900px;
	margin: 0 auto;
}
#nav-drawer {
	max-width: 860px;
	margin: 0 auto;
	padding: 20px;
}

#header h1 {
	text-align: right;
}
#header h1 img {
	width: 30%;
}

}


