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


/*--Layout-----------------------------------------------------------*/
html, body {
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

html {
	width: 100%;
	font-size: 62.5%;/*pxだと10px;*/
	overflow-y: scroll;
}


body {
	background-color: #c0e2f0;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	width: 100%;
	margin: 0;
	padding: 0;
}

/*--Reset-----------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

a:hover {
	text-decoration: none;
}

img {
	border: none;
	vertical-align: middle;
}
ul,ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

header, nav, section, footer, article, aside, hgroup, figure {
	display: block;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

/*--見出し-----------------------------------------------------------*/
h1 {
	width: 100%;
	color: #111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 3.2rem;
	font-weight: bold;
	letter-spacing: 0.5rem;
	text-align: center;
	margin: 3rem auto 3rem;
	-webkit-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	-moz-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	-ms-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
}

h2 {
	font-size: 2.6rem;
}

h2.red {
	width: 30rem;
	border: 3px solid #e95464;
	border-radius: 2rem;
	color: #e95464;
	padding: 0.8rem 2rem 1rem;
	margin: 2rem auto;
}

h2.schedule {
	background-color: #e3f1fc;
	line-height: 1.6;
	border-top: solid 5px #70bde0;
	border-bottom: solid 5px #70bde0;
	padding: 1rem 1.5rem;
	margin: 0 auto 3rem;
}

h2.workshop {
	color: #1280b3;
	font-size: 2.4rem;
}

h2.workshop img {
	width: 7rem;
	padding: 0 1.5rem 0.5rem ;
}

@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
h1 {
	font-size: 3rem;
}
}

@media screen and (max-width: 520px) {
	h1 {
		font-size: 2.6rem;
		margin: 1rem auto 1rem;
	}
	
	h2 {
		font-size: 2.2rem;
	}
	
	h2.red {
		width: 80%;
		border: 3px solid #e95464;
		border-radius: 2rem;
		color: #e95464;
		padding: 0.8rem 2rem 1rem;
		margin: 2rem auto;
	}

h2.workshop {
	font-size: 2.2rem;
}

	h2.workshop img {
		width: 6rem;
		padding: 0 1.5rem 0.5rem ;
	}
}





/* 文字 */
p {
	margin: 0 0 1.2em;
}

p.space {
	margin: 0 0 1.6em;
}

p.nounderspace {
	margin: 0;
}


span.small {
	font-size: smaller;
}
/*--ヘッダー-----------------------------------------------------------*/
header {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: 7rem;
	background-color: #007bbb;
	border: none;
	margin: 0 auto 3rem;
	padding: 0;
}

header .sns img {
	width: 6rem;
	height: auto;
	padding: 0 1.5rem;
}

header div.name {
	width: 23rem;
	font-family: "Noto Serif JP", serif;
	font-size: 3.8rem;
	font-weight: bold;
	letter-spacing: 0.3rem;
	padding: 0 1rem 0.3rem 2rem;
}

header div.name a {
	color: #fff;
	text-decoration: none;
}


.Toggle{
 display: none;
}

@media screen and (max-width : 1100px ){

	header {
	flex-direction: row-reverse;
	justify-content: flex-end;
		width: 100%;
		margin: 0;
		}

	header div.name {
	padding: 0 0 0.3rem 0;
		margin: 0 auto;
		}


/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 3.4rem;
    height: 3.4rem;
    cursor: pointer;
    z-index: 300;
	right: 1.5rem;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 4rem;
    border-bottom: solid 0.5rem #2ca9e1;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top: 0.5rem;
}
 .Toggle span:nth-child(2) {
    top: 1.6rem;
}
 .Toggle span:nth-child(3) {
    top: 2.7rem;
}
.Toggle.active span:nth-child(1) {
    top: 1.5rem;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 1.5rem;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
	
}



@media screen and (max-width: 550px) {
/* 900pxまでの幅の場合に適応される */
	header {
		width: 100%;
		height: 6rem;
		border-width: 0.2rem 0;
		margin: 0;
		}

	header .sns img {
		width: 4.4rem;
		padding: 0 0.8rem;
		margin: 0;
		}

	header div.name {
		width: 60%;
		font-size: 3.4rem;
		padding: 0 0 0.3rem 1rem;
		}

}


@media screen and (max-width: 400px) {
	header .sns img {
		width: 4.2rem;
		}

	header div.name {
		font-size: 3.2rem;
		padding: 0 0 0.3rem 0.6rem;
		}
}
/*--メニュー-----------------------------------------------------------*/
nav {
	width: 80rem;
	margin: 0 auto;
}

nav ul {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
}

nav ul li {
	text-align: center;
}
nav ul li a {
	display: block;
	color: #ebf6f7;
	font-size: 2rem;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.8;
	letter-spacing: 0.2rem;
	text-decoration: none;
	border-right: 0.1rem solid #d8e9f0;
	padding: 0 1.5rem 0.2rem;
}

nav ul li a:hover {
	color: #eee;
	background-color: #19448e;
}

nav ul li.end a {
	border-right: none;
}


/*ナビゲーション部分*/
@media screen and (max-width : 1100px ){
/* 1100pxまでの幅の場合に適応される */
	nav {
		position: fixed;
		width: 100%;
		height: calc(100% - 7rem);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		top: 7rem;
		text-align: center;
		margin: 0 0 2rem;
		padding: 0;
		background-color: rgba(216,233,240,0.9);
		-webkit-transition: .35s ease;
		transition: .35s ease;/*滑らかに表示*/
		-webkit-transform: translateX(105%);/*画面より100%外へ押し出し非表示にさせる*/
		transform: translateX(105%);
 
		/*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
		}
	
	nav ul {
		flex-direction: column;
		justify-content: flex-start;
		}

	nav ul li {
		width: 100%;
		text-align: center;
		}

	nav ul li a {
		display: block;
		width: 100%;
		color: #222;
		font-size: 2rem;
		border-right: none;
		border-bottom: 0.1rem dotted #2ca9e1;
		padding: 0.8rem 0;
		}

	nav ul li a.bottom {
		border: none;
		}
	
	nav ul li a:hover{
		background-color:rgba(0,0,0,0.5);
		color: #eee;
		}
	
	nav ul li.menu-bottom {
		padding-bottom:30px;
		margin-bottom:30px
		}

/*OPEN時の動き*/
nav.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
 
}

	nav {
		z-index: 300;
	}
	
	.Toggle {
		z-index: 400;
	}

}


@media screen and (max-width: 550px) {
	nav {
		height: calc(100% - 6rem);
		top: 6rem;
		}
	nav ul li a {
		display: block;
		width: 100%;
		color: #222;
		font-size: 2.2rem;
		}

}


/*--メインコンテンツ-----------------------------------------------------------*/
article {
	width: 100rem;
	font-size: 3rem;
	text-align: center;
	flex: none;
	margin: 0 auto 3rem;
}

@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
article {
	width: 100%;
	margin: 0;
	padding: 0 1.5rem;
}

}

@media screen and (max-width: 550px) {
/* 550pxまでの幅の場合に適応される */
article {
	margin: 0 auto;
	padding: 0 0.6rem;
}

}


/*--フッター-----------------------------------------------------------*/
footer {
	width: 100%;
	color: #007bbb;
	font-size: 1.6rem;
	text-align: center;
	margin: auto;
	padding: 20px 10px;
}

footer.top {
	color: #eee;
	background-color: #007bbb;
}

@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
footer {
	position: absolute;
	width: 100%;
	font-size: 1.2rem;
	font-weight: normal;
	margin: 0;
	padding: 2rem 0;
}

}


/*--TOP-----------------------------------------------------------*/
body.top {
	background-color: #007bbb;
}
/* header top */
header.top {
	background-color: #007bbb;
	background-image: none;
	justify-content: center;
	border: none;
	margin: 0 auto;
}

header .top-sns img {
	width: 10rem;
	height: auto;
	padding: 0 3rem;
}

header.top nav {
	display: none;
}

@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
header.top {
	width: 100%;
	height: 7rem;
}

header.top nav {
	display: block;
}
}

@media screen and (max-width: 550px) {
header.top {
	height: 6rem;
}

header .top-sns img {
	width: 7rem;
	padding: 0 2rem;
}
}

/* article top */
article.top {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	background-color: #c0e2f0;
	background-image: url("../img/top_hand2.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border: none;
	margin: 0 auto;
	padding: 2rem 2rem 2rem;
}

article.top div.top_logo {
	flex-basis: 46%;
	color: #19448e;
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	font-family: "Zen Antique", serif;
	font-size: 8rem;
	text-shadow: 0.6rem 0.4rem 1rem rgba(60,60,60,1);
	letter-spacing: 0.3rem;
	display: inline-block;
	margin: 0 auto 0;
	padding: 2rem 0;
}


@media screen and (max-width : 1100px ){
	article.top {
	justify-content: center;
	text-align: center;
	}
	
	article.top div.top_logo {
	flex-basis: 9%;
	font-size: 7rem;
	padding: 3rem 0;
	}


}

@media screen and (max-width: 550px) {
	article.top {
		background-size:contain;
	}
	
	article.top div.top_logo {
	font-size: 5rem;
	padding: 3rem 0;
	}
}

/* nav top */
nav.top-nav {
	flex-basis: 25%;
	vertical-align: top;
	margin: 0 auto;
}

nav.top-nav ul {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: column;
}

nav.top-nav ul li {
	width: 23rem;
	text-align: left;
}
nav.top-nav ul li a {
	display: block;
	color: #007bbb;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.3rem;
	border: 0.2rem solid #007bbb;
	border-radius: 1.2rem;
	margin: 1.5rem auto 1.5rem;
	padding: 1rem 1rem 1rem 2rem;
}
nav.top-nav ul li a:hover {
	color: #fff;
	background-color: rgba(44,169,225,0.3);
}


/*ナビゲーション部分*/
@media screen and (max-width : 1100px ){
	nav.top-nav {
		display: none;
		flex-basis: 0%;
		}
}


@media screen and (max-width: 550px) {
}

/*--プロフィール-----------------------------------------------------------*/
ul.profile {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	width: 100%;
	text-align: left;
	margin: 0 auto;
}

ul.profile li.img {
	width: 35rem;
	text-align: center;
}

ul.profile li.img img {
	width: 35rem;
	margin: 1rem auto;
	-webkit-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	-moz-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	-ms-filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
	filter:drop-shadow(6px 5px 3px rgba(0, 0, 0, 0.4));
}

ul.profile li.text {
	width: 65rem;
	text-align: left;
	padding: 0 2rem;
}

ul.profile li.text ul {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: column;
}

ul.profile li.text ul li{
	font-size: 1.7rem;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	padding-left: 1em;
	margin-bottom: 1em;
}

ul.profile li.text ul li.name {
	font-size: 3.4rem;
	font-weight: bold;
	font-family: "Noto Serif JP", serif;
	padding: 0 0 0 1.8rem;
	margin: 0;
}


ul.profile li.text ul li.name .small{
	font-size: 2.2rem;
}

ul.profile li.text ul li.item{
	padding-left: 0;
}

ul.profile li.text ul li.item ul.dot {
	list-style: disc;
	list-style-position: outside;
	font-size: 1.7rem;
	font-family: "Noto Sans JP", sans-serif;
	margin-left: 2em;
}

ul.profile li.text ul li.item ul.dot li{
	padding-left: 0;
	margin-bottom: 0.2rem;
}

@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
ul.profile li.img {
	width: 35%;
}

ul.profile li.img img {
	width: 100%;
	margin: 1rem auto;
}

ul.profile li.text {
	width: 65%;
	padding: 0 1.5rem;
}


ul.profile li.text p.name {
	font-size: 2.8rem;
}

}

@media screen and (max-width: 550px) {
ul.profile {
	flex-direction: column;
	width: 100%;
}
ul.profile li.img {
	width: 100%;
}

ul.profile li.img img {
	width: 80%;
	margin: 1rem auto;
}

ul.profile li.text {
	width: 100%;
	padding: 0 1rem;
}

ul.profile li.text p {
	font-size: 1.8rem;
	font-weight: 500;
}

ul.profile li.text ul li{
	font-size: 1.6rem;
}

ul.profile li.text ul li.name {
	font-size: 2.8rem;
	padding: 0 0 0 1.8rem;
}

ul.profile li.text ul li.name .small{
	font-size: 2rem;
}

ul.profile li.text ul li.item ul.dot {
	font-size: 1.6rem;
}
	
}


/*--スケジュール-----------------------------------------------------------*/
ul.schedule {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	width: 90%;
	text-align: left;
	margin: 0 auto;
}

ul.schedule li.img {
	width: 25rem;
	text-align: center;
}

ul.schedule li.img img {
	width: 20rem;
}

ul.schedule li.text {
	width: 65rem;
	text-align: left;
	padding: 0 2rem;
}

ul.schedule li.text ul {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: column;
}

ul.schedule li.text ul li {
	font-size: 1.7rem;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	padding-left: 1em;
	margin-bottom: 1em;
}

ul.schedule li.text ul li p {
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.2rem;
	text-align: left;
}

ul.schedule li.text ul li p.title {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0;
}

ul.schedule li.text ul li p.detail {
	margin: 0;
	padding: 0 0 1.2em 1.1em;
}



@media screen and (max-width : 1100px ){
/* 900pxまでの幅の場合に適応される */
ul.schedule {
	width: 80%;
}
ul.schedule li.img {
	width: 25%;
}

ul.schedule li.img img {
	width: 100%;
	margin: 1rem auto;
}

ul.schedule li.text {
	width: 75%;
	padding: 0 1.5rem;
}


}

@media screen and (max-width: 550px) {
ul.schedule {
	flex-direction: column;
	width: 100%;
}
ul.schedule li.img {
	width: 100%;
}

ul.schedule li.img img {
	width: 70%;
	margin: 1rem auto;
}

ul.schedule li.text {
	width: 100%;
	padding: 0;
}

ul.schedule li.text p {
	font-size: 1.8rem;
	font-weight: 500;
}

ul.schedule li.text ul li{
	font-size: 1.6rem;
}
}

/*--稽古場-----------------------------------------------------------*/
li.class-text {
	width: 42rem;
	font-size: 2.2rem;
	text-align: left;
	margin: 0 auto;
}

ul.class {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	width: 40rem;
	text-align: left;
	margin: 0 auto 2px;
}

ul.class li.item{
	background-color: #70bde0;
	width: 50%;
	font-size: 2.2rem;
	padding: 1rem 2rem;
}

ul.class li.price{
	background-color: #e3f1fc;
	width: 50%;
	font-size: 2.2rem;
	padding: 1rem 2rem;
}

ul.class li.lesson {
	background-color: #e3f1fc;
	width: 100%;
	font-size: 2.2rem;
	text-align: center;
	padding: 1.2rem 2rem;
}

ul.class li.place {
	background-color: #e3f1fc;
	border-radius: 2rem;
	width: 100%;
	font-size: 1.8rem;
	text-align: center;
	padding: 1.8rem 2rem 2.2rem;
}

ul.class li.place p {
	font-size: 1.2em;
	line-height: 1.6;
}

ul.class li.place p.nomal {
	font-size: 1.1em;
}

@media screen and (max-width: 550px) {
	li.class-text {
		width: 96%;
		font-size: 1.8rem;
	}
	
	ul.class {
		width: 98%;
	}
	
	ul.class li.item, ul.class li.price, ul.class li.lesson {
		font-size: 1.8rem;
	}

	ul.class li.place {
		width: 80%;
		font-size: 1.6rem;
		margin: 0 auto;
	}

	ul.class li.place p {
		font-size: 1.2em;
	}

	ul.class li.place p.nomal {
		font-size: 1em;
	}
}

/*--ワークショップ-----------------------------------------------------------*/
li.worksohp-text {
	width: 95%;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.8;
	margin: 0 auto;
}


ul.worksohp-contents {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 95%;
	text-align: center;
	margin: auto;
}

ul.worksohp-contents li{
	font-size: 2.2rem;
	font-weight: 700;
}

ul.worksohp-contents li.large{
	font-size: 1.1em;
}

li.worksohp-text p.detail{
	font-size: 0.8em;
	font-weight: 500;
	margin: 2rem auto 0;
}

ul.worksohp {
	width: 45rem;
	text-align: left;
	margin: 0 auto 2px;
}

ul.worksohp li.proposal {
	background-color: #e3f1fc;
	width: 100%;
	font-size: 1.8rem;
	text-align: left;
	padding: 2rem 2rem;
	border-radius: 2rem;
}

ul.worksohp li.proposal p {
	font-size: 1.1em;
	line-height: 1.8;
}

@media screen and (max-width: 550px) {
	li.worksohp-text {
		width: 98%;
		font-size: 2rem;
		font-weight: 600;
		line-height: 1.6;
	}
	
	ul.worksohp-contents {
		flex-direction: column;
		align-items: stretch;
		width: 98%;
		margin: 1rem auto 1rem;
	}

	ul.worksohp-contents li{
		font-size: 2rem;
		font-weight: 700;
		margin: 0.2rem auto 0.2rem;
	}

	ul.worksohp-contents li.left {
		width: 88%;
		text-align: left;
	}

	ul.worksohp-contents li.right {
		width: 88%;
		text-align: right;
	}

	ul.worksohp-contents li.large{
		font-size: 0.8em;
	}

	li.worksohp-text p.detail{
		width: 90%;
		font-size: 0.8em;
		text-align: left;
	}

	ul.worksohp {
		width: 98%;
	}

	ul.worksohp li.proposal {
		font-size: 1.6rem;
	}
}
/*--ドロワーメニュー 背景固定-----------------------------------------------------------*/
html.is-fixed, html.is-fixed body {
	position: fixed;	/*動き固定*/
	z-index: -1;	/*奥行きを管理*/
	width: 100%;
	overflow-y: hidden;
}
