@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	各固定ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	body直下にid名「wrapper」のdivがあります。
	こちらには、固定ページごとに異なるclass名(post-〇)が付与されますので、
	ご活用ください。
	
	【例】
	<body>
	<div id="wrapper" class="post-2 page type-page status-publish has-post-thumbnail hentry">

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ================================================================================

	レイアウト

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper{
	}

	main.outer_wrap {
		position: relative;
		max-width: none;
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 110px 0 120px;
		margin: 0 auto;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wrapper {
	}

	main.outer_wrap {
		position: relative;
		width: 100%;
		min-height: 50vh;
		padding: 12vw 0 13vw;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		padding: 0 4vw;
	}
}






/* ================================================================================

	メイン画像

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.m-cate_wrap {
		position: relative;
		background-color: #f5f5f5;
		width: auto;
		height: 26vw;
	}
	.m-cate_wrap_in {
		display: table;
		background: url(../img/main_cate.jpg) center top no-repeat;
		background-size: cover;
		width: 100%;
		height: 100%;
		padding: 4.16vw 0 0;
	}
	.m-cate_wrap_in h2 {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		font-size: 3vw;
		font-weight: 600;
		letter-spacing: 0.05em;
		line-height: 1;
	}
}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.m-cate_wrap {
		position: relative;
		background-color: #f5f5f5;
		width: auto;
		height: 50vw;
	}
	.m-cate_wrap_in {
		display: table;
		background: url(../img/main_cate.jpg) center top no-repeat;
		background-size: cover;
		width: 100%;
		height: 100%;
	}
	.m-cate_wrap_in h2 {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		font-size: 8vw;
		font-weight: 600;
		letter-spacing: 0.05em;
		line-height: 1;
	}

}





/* ================================================================================

	マージンボックス

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 120px;
	}
	.top_middle {
		margin-top: 80px;
	}
	.top_short {
		margin-top: 40px;
	}
	.top_vshort {
		margin-top: 20px;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 120px;
	}
	.bottom_middle {
		margin-bottom: 80px;
	}
	.bottom_short {
		margin-bottom: 40px;
	}
	.bottom_vshort {
		margin-bottom: 20px;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 120px;
		margin-bottom: 120px;
	}
	.both_middle {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.both_short {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.both_vshort {
		margin-top: 20px;
		margin-bottom: 20px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 16vw;
	}
	.top_middle {
		margin-top: 12vw;
	}
	.top_short {
		margin-top: 8vw;
	}
	.top_vshort {
		margin-top: 4vw;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 16vw;
	}
	.bottom_middle {
		margin-bottom: 12vw;
	}
	.bottom_short {
		margin-bottom: 8vw;
	}
	.bottom_vshort {
		margin-bottom: 4vw;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 16vw;
		margin-bottom: 16vw;
	}
	.both_middle {
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
	.both_short {
		margin-top: 8vw;
		margin-bottom: 8vw;
	}
	.both_vshort {
		margin-top: 4vw;
		margin-bottom: 4vw;
	}

}




/* ================================================================================

	パディングボックス

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 120px;
	}
	.p_top_middle {
		padding-top: 80px;
	}
	.p_top_short {
		padding-top: 40px;
	}
	.p_top_vshort {
		padding-top: 20px;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 120px;
	}
	.p_bottom_middle {
		padding-bottom: 80px;
	}
	.p_bottom_short {
		padding-bottom: 40px;
	}
	.p_bottom_vshort {
		padding-bottom: 20px;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.row_middle {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.row_short {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.row_vshort {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 16vw;
	}
	.p_top_middle {
		padding-top: 12vw;
	}
	.p_top_short {
		padding-top: 8vw;
	}
	.p_top_vshort {
		padding-top: 4vw;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 16vw;
	}
	.p_bottom_middle {
		padding-bottom: 12vw;
	}
	.p_bottom_short {
		padding-bottom: 8vw;
	}
	.p_bottom_vshort {
		padding-bottom: 4vw;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 16vw;
		padding-bottom: 16vw;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
	.row_middle {
		padding-top: 12vw;
		padding-bottom: 12vw;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
	.row_short {
		padding-top: 8vw;
		padding-bottom: 8vw;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
	.row_vshort {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}





/* ================================================================================

	共通見出し

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* ページh2見出し */
	.title_cate_h2 {
		margin-bottom: 40px!important;
	}
	.title_cate_h2 h2 {
		position: relative;
		text-align: center;
		font-size: 1.1em;
		font-weight: 300;
		line-height: 1 !important;
		padding: 0 0 1.4em 0 !important;
	}
	.title_cate_h2 h2 span {
		display: block;
		font-size: 2em;
		font-weight: 700;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
	}
	.title_cate_h2 h2:after {
		position: absolute;
		bottom: 0;
		left: 50%;
		margin: 0 0 0 -27px;
		content: "";
		display: block;
		width: 54px;
		height: 3px;
	}


	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		/*border-top: 4px solid;*/
		padding: 25px 0 16px !important;
	}
	.h2_cate h2 {
		font-size: 28px;
		font-weight: 500;
		text-align: center;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double;
		padding: 0 0 8px 0 !important;
	}
	.h3_cate h3 {
		font-size: 22px;
		font-weight: 500;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		line-height: 1.4!important;
	}
	
}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* ページh2見出し */
	.title_cate_h2 {
		margin-bottom: 6vw!important;
	}
	.title_cate_h2 h2 {
		position: relative;
		text-align: center;
		font-size: 1em;
		font-weight: 300;
		line-height: 1 !important;
		padding: 0 0 1.6em 0 !important;
	}
	.title_cate_h2 h2 span {
		display: block;
		font-size: 2em;
		font-weight: 700;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		letter-spacing: 0.1em;
	}
	.title_cate_h2 h2:after {
		position: absolute;
		bottom: 0;
		left: 50%;
		margin: 0 0 0 -4.2vw;
		content: "";
		display: block;
		width: 8.4vw;
		height: 2px;
	}

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		/*border-top: 3px solid;*/
		padding: 4vw 1vw 3vw 1vw !important;
	}
	.h2_cate h2 {
		font-size: 4.9vw;
		font-weight: 500;
		text-align: center;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		line-height: 1.4!important;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px double;
		padding: 0 0 1vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 3.9vw;
		font-weight: 400;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		line-height: 1.4!important;
		letter-spacing: 0;
	}

}




/* ================================================================================

	共通ボタン

================================================================================ */
.link_cate01 a {
	background-color: #ff8228;
	color: #ffffff;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* リンクボタン */
	.link_cate01 {
		text-align: center;
	}
	.link_cate01 li {
		text-align: center;
	}
	.link_cate01 a {
		position: relative;
		display: inline-block;
		padding: 1em 4em 0.8em;
		border: 1px solid;
		font-size: 1.3vw;
		font-weight: 500;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
		border-radius: 25px;
	}
	.link_cate01 a:after {
		position: absolute;
		content: ">";
		font-family: FontAwesome;
		right: 0.8em;
		top: 0.9em;
	}
	
	.btn-box01 .link_cate01 {
		text-align: right;
	}
	.btn-box02 .link_cate01 {
		text-align: left;
	}

}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* リンクボタン */
	.link_cate01 {
		text-align: center;
	}
	.link_cate01 a {
		position: relative;
		display: inline-block;
		width: 70%;
		padding: 1em 0 0.8em;
		border: 1px solid;
		font-size: 4vw;
		font-weight: 500;
		font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro", sans-serif;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
		border-radius: 25px;
	}
	.link_cate01 a:after {
		position: absolute;
		content: ">";
		font-family: FontAwesome;
		right: 0.8em;
		top: 1em;
	}
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここから各固定ページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ================================================================================

	共通設定

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.col3_box {
		margin-bottom: 6vw;
	}
}


/* ================================================================================

	代表紹介

================================================================================ */
.greeting_name p {
	font-size: 120%;
	font-weight: 500;
	line-height: 1.4!important;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.greeting_name {
		margin-top: 10px;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.greeting_name {
		margin-top: 1vw;
	}
}



/* ================================================================================

	ピアノレッスン

================================================================================ */
.txt_taiken p {
	color: #ff8228;
	text-align: center;
	font-weight: 700;
	line-height: 1.4!important;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.txt_taiken p {
		font-size: 24px;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.txt_taiken p {
		font-size: 4.5vw;
	}
}




/* ================================================================================

	リトミック

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.pillar_box {
		padding: 30px;
		border-radius: 15px;
	}
	.pillar_box h3 {
		text-align: center;
		font-size: 30px;
	}
	
	.pillar_text01 {
		min-height: 102px;
	}
	
	.pillar01 {
		background-color: #e7fede;
	}
	.pillar02 {
		background-color: #fdfede;
	}
	.pillar03 {
		background-color: #ffeaf9;
	}
	
	.end_text {
		text-align: center;
		color: #ff8228;
		font-weight: 700;
		font-size: 40px;
	}
	
	
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.pillar_box {
		padding: 8vw;
		border-radius: 15px;
	}
	.pillar_box h3 {
		text-align: center;
		font-size: 7vw;
	}
	
	.pillar_text01 {
	}
	
	.pillar01 {
		background-color: #e7fede;
	}
	.pillar02 {
		background-color: #fdfede;
	}
	.pillar03 {
		background-color: #ffeaf9;
	}
	
	.sp_blank {
		height: 6vw;
	}
	
	.end_text {
		text-align: center;
		color: #ff8228;
		font-weight: 700;
		font-size: 6vw;
	}
	
	
}




/* ================================================================================

	ブログ

================================================================================ */
.blog_title_link a {
	color: #ff8228;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

}





/* ================================================================================

	CONTACT

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.cate_contact_text {
		padding: 40px 80px;
		margin: 0 0 40px 0 !important;
		border: 1px solid #cccccc;
	}
	.cate_contact_text h3 {
		font-size: 18px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.cate_contact_text {
		padding: 4vw;
		margin: 0 0 6vw 0 !important;
		border: 1px solid #cccccc;
	}
	.cate_contact_text h3 {
		font-size: 4vw;
	}
}




/* ================================================================================

	電話番号

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.tel_box {
		background-color: #ff8228;
		text-align: center;
	}
	.tel_box a {
		color: #fff;
		font-weight: bold;
		font-size: 30px;
		pointer-events: none;
	}
	.tel_box a span {
		font-size: 55px;
	}
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.tel_box {
		background-color: #ff8228;
		text-align: center;
	}
	.tel_box a {
		color: #fff;
		font-weight: bold;
		font-size: 5vw;
	}
	.tel_box a span {
		font-size: 9vw;
	}
	
	.btn_submit {
		text-align: center;
		margin: 0 auto;
		width: 36vw;
	}
	
	
}