@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;
		/* max-width: 1920px; 固定幅レイアウト時 */
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 80px 0;
		margin: 0 auto;
	}

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

	/* 英語表記 */

	.en {
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		font-weight: 500;
		line-height: 1;
	}

	/* セクションタイトル */
	.section_title_text {
		font-size: 2.25em;
		display: inline-block;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		margin: 0 auto;
		padding: 10px 50px;
		position: relative;
	}
	.section_title_text::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: #000;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.section_title {
		position: relative;
		text-align: center;
	}
	.section_title::before {
		content: "";
		display: block;
		width: 100%;
		height: 0.5px;
		background-color: #E3CC63;
		position: absolute;
		top: 50%;
		left: 0;
		z-index: -1;
	}
	.section_title_text.en {
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		font-weight: 500;
	}
	.en {
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		font-weight: 500;
		line-height: 1;
	}

	/* 線なしセクションタイトル */
	.section_title2 {
		text-align: center;
	}
	.section_title_text2 {
		font-size: 2.25em;
		display: inline-block;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		margin: 0 auto;
		padding: 10px 50px;
		position: relative;
	}

	/* ボタン */
	.more {
		margin-top: 25px;
		text-align: center;
	}
	.more_left {
		margin-top: 25px;
	}
	.more_btn {
		min-width: 260px;
		display: inline-block;
		position: relative;
	}
	.more_btn a{
		padding: 18px;
		display: inline-block;
		min-width: 260px;
		border: 0.5px solid #fff;
		color: #fff;
		text-align: center;
	}
	.more_btn a::before{
		content: '';
		/*絶対配置で下線の位置を決める*/
	  	position: absolute;
		bottom:50%;
		right: -40px;
		/*下線の形状*/    
		width: 90px;
		height: 0.5px;
	  	background:#fff;
		/*アニメーションの指定*/
		transition: all .3s;
	}
	
	.more_btn a::after{
		content: '';
		position: absolute;
		bottom: 50%;
		right: -40px;
		height: 8px;
		width: 17px;
		clip-path: polygon(0 0, 100% 100%, 0 100%);
		background: #fff;
		transition: all .3s;
	}
	
	
	/*hoverした際の移動*/
	.more_btn a:hover::before{
		right: -50px;
	}
	
	.more_btn a:hover::after{
		right: -50px;
	}

}



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

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

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

	/* セクションタイトル */
	.section_title_text {
		font-size: 6.93vw;
		display: inline-block;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		margin: 0 auto;
		padding: 10px;
		position: relative;
	}
	.section_title_text::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: #000;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.section_title {
		position: relative;
		text-align: center;
	}
	.section_title::before {
		content: "";
		display: block;
		width: 100%;
		height: 0.5px;
		background-color: #E3CC63;
		position: absolute;
		top: 50%;
		left: 0;
		z-index: -1;
	}
	.section_title_text.en {
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		font-weight: 500;
	}
	.en {
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		font-weight: 500;
		line-height: 1;
	}

	/* 線なしセクションタイトル */
	.section_title2 {
		text-align: center;
	}
	.section_title_text2 {
		font-size: 6.93vw;
		display: inline-block;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		margin: 0 auto;
		padding: 10px;
		position: relative;
	}

	/* ボタン */
	.more {
		margin-top: 25px;
		text-align: center;
	}
	.more_left {
		margin-top: 25px;
		text-align: center;
	}
	.more_btn {
		min-width: 260px;
		display: inline-block;
		position: relative;
	}
	.more_btn a{
		padding: 18px;
		display: inline-block;
		min-width: 260px;
		border: 0.5px solid #fff;
		color: #fff;
		text-align: center;
	}
	.more_btn a::before{
		content: '';
		/*絶対配置で下線の位置を決める*/
	  	position: absolute;
		bottom:50%;
		right: -40px;
		/*下線の形状*/    
		width: 90px;
		height: 0.5px;
	  	background:#fff;
		/*アニメーションの指定*/
		transition: all .3s;
	}
	
	.more_btn a::after{
		content: '';
		position: absolute;
		bottom: 50%;
		right: -40px;
		height: 8px;
		width: 17px;
		clip-path: polygon(0 0, 100% 100%, 0 100%);
		background: #fff;
		transition: all .3s;
	}
	
	
	/*hoverした際の移動*/
	.more_btn a:hover::before{
		right: -50px;
	}
	
	.more_btn a:hover::after{
		right: -50px;
	}

	.page-profile main.outer_wrap,
	.page-english main.outer_wrap,
	.page-deutsch main.outer_wrap,
	.page-discography main.outer_wrap,
	.page-event main.outer_wrap,
	.page-voice main.outer_wrap,
	.page-contact main.outer_wrap,
	.page-blog main.outer_wrap
	 {
		padding: 0;
	}
}





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

	メイン画像

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


/* 下層画像 */
	.page-profile .main_cate,
	.page-english .main_cate,
	.page-deutsch .main_cate
	{
		background: url(../img/IMG_7344.jpg) right top / cover no-repeat;
	}
	.page-lesson .main_cate {
		background: url(../img/23660174_m.jpg) left top / cover no-repeat;
	}
	.page-discography .main_cate {
		background: url(../img/S__105021480_0.jpg) left bottom / cover no-repeat;
	}
	.page-event .main_cate {
		background: url(../img/23190257_m.jpg) center / cover no-repeat;
	}
	.page-voice .main_cate {
		background: url(../img/101C7322-BDF1-4064-A460-46D1300E9AB1.jpg) right top / cover no-repeat;
	}
	.page-contact .main_cate {
		background: url(../img/IMG_7343.jpg) center / cover no-repeat;
	}
	.main_cate {
		background: url(../img/25239756_m.jpg) center / cover no-repeat;
	}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.main_cate {
		position: relative;
		height: 70vh;
		min-height: 500px;
	}
	.main_cate_in {
		position: relative;
		height: 100%;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		font-size: 3.5em;
		position: absolute;
		top: 50%;
		left: 15%;
		transform: translateY(-40%);
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		text-shadow: #000 1px 0 10px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		height: 35vh;
	}
	.main_cate_in {
		position: relative;
		height: 100%;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		font-size: 7.47vw;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -30%);
		font-family: 'EB Garamond', serif;
		letter-spacing: 0.2em;
		text-shadow: #000 1px 0 10px;
	}
	.page-contact .main_cate {
		background: url(../img/IMG_7343.jpg) 74% top / cover no-repeat;
	}
	.page-profile .main_cate,
	.page-english .main_cate,
	.page-deutsch .main_cate
	{
		background: url(../img/IMG_7344.jpg) 96% -60% / cover no-repeat;
	}
}











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

	セクション

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

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

	/* 2カラム
	----------------------------------------------- */
	.col2_1,
	.col2_1_long,
	.col2_1_middle,
	.col2_1_short,
	.col2_1_vshort,
	.col2_1_mshort {
		margin-right: 20px;
	}
	.col2_2,
	.col2_2_long,
	.col2_2_middle,
	.col2_2_short,
	.col2_2_vshort,
	.col2_2_mshort {
		margin-left: 20px;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		margin-right: 20px;
	}
	.col3_2 {
		margin-left: 10px;
		margin-right: 10px;
	}
	.col3_3 {
		margin-left: 20px;
	}

	/* 3カラム画像トリミング */
	.col3_1 img,
	.col3_2 img,
	.col3_3 img {
		width: 100%;
		height: 209px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}

}




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

	/* 2カラム
	----------------------------------------------- */
	.col2_1 {
	}
	.col2_1_long {
		margin-top: 16vw;
	}
	.col2_1_middle {
		margin-top: 12vw;
	}
	.col2_1_short {
		margin-top: 8vw;
	}
	.col2_1_vshort {
		margin-top: 4vw;
	}
	.col2_1_mshort {
		margin-top: 3vw;
	}

	.col2_2 {
	}
	.col2_2_long {
		margin-top: 16vw;
	}
	.col2_2_middle {
		margin-top: 12vw;
	}
	.col2_2_short {
		margin-top: 8vw;
	}
	.col2_2_vshort {
		margin-top: 4vw;
	}
	.col2_2_mshort {
		margin-top: 3vw;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		margin-top: 0;
	}
	.col3_2,
	.col3_3 {
		margin-top: 12vw;
	}

	/* 3カラム画像トリミング */
	.col3_1 img,
	.col3_2 img,
	.col3_3 img {
		width: 100%;
		height: 61vw;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}

}





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

	マージンボックス

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

/* 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;
	}
	.top_mshort {
		margin-top: 10px;
	}

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

}



/* 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;
	}
	.top_mshort {
		margin-top: 3vw;
	}

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

}




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

	パディングボックス

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

/* 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_top_mshort {
		padding-top: 10px;
	}

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

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.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;
	}
	.row_mshort {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}


/* 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_top_mshort {
		padding-top: 3vw;
	}

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

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


	/* 背景色を伸ばす
	----------------------------------------------- */
	.row_sp {
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




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

	カラーボックス

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

/* カラー01 */
.row_c01 {
	background: url(../img/spacer.gif) center top / auto auto repeat ,#f5f5f5;
	color: inherit;
}

/* カラー02 */
.row_c02 {
	background: url(../img/spacer.gif) center top / auto auto repeat ,#444444;
	color: #ffffff;
}

/* ボーダー囲い色 */
.box_border {
	border-color: #cccccc;
}


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

	/* カラー01 */
	.row_c01 {
	}

	/* カラー02 */
	.row_c02 {
	}

	/* ボーダー囲い */
	.box_border {
		padding: 40px;
		border-style: solid;
		border-width: 4px;
	}
}



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

	/* カラー01 */
	.row_c01 {
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		border-style: solid;
		border-width: 4px;
	}
}




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

	見出し

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

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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		border-bottom: 3px solid;
		padding: 0 0 12px 0 !important;
	}
	.h2_cate h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h2_cate h2 {
		color: inherit;
	}
	.row_c02 .h2_cate h2 {
		color: #ffffff;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid;
		padding: 0 0 8px 0 !important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h3_cate h3 {
		color: inherit;
	}
	.row_c02 .h3_cate h3 {
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 1px dotted;
		padding: 0 0 8px 0 !important;
	}
	.h3_col3 h3 {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.4;
		color: inherit;
	}
	.row_c01 .h3_col3 h3 {
		color: inherit;
	}
	.row_c02 .h3_col3 h3 {
		color: #ffffff;
	}

}


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

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		border-bottom: 3px solid;
		padding: 0 0 2vw 0 !important;
	}
	.h2_cate h2 {
		font-size: 5.5vw;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h2_cate h2 {
		color: inherit;
	}
	.row_c02 .h2_cate h2 {
		color: #ffffff;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid;
		padding: 0 0 1.5vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h3_cate h3 {
		color: inherit;
	}
	.row_c02 .h3_cate h3 {
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 1px dotted;
		padding: 0 0 1vw 0 !important;
	}
	.h3_col3 h3 {
		font-size: 4vw;
		font-weight: 500;
		line-height: 1.4;
		color: inherit;
	}
	.row_c01 .h3_col3 h3 {
		color: inherit;
	}
	.row_c02 .h3_col3 h3 {
		color: #ffffff;
	}

}




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

	共通ボタン

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

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

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.link_common ul li {
		display: inline-block;
		font-size: 22px;
		letter-spacing: 0;
	}
	.link_common ul li:not(:first-child) {
		margin-left: 20px;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		background-color: #666666;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
	}
	.row_c01 .link_common ul li a {
	}
	.row_c02 .link_common ul li a {
		background-color: #ffffff;
		color: #444444;
	}

	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 10px;
		height: 15px;
		top: 50%;
		margin-top: -7px;
		right: 16px;
	}
	.row_c01 .link_common ul li a::after {
	}
	.row_c02 .link_common ul li a::after {
		background: url(../img/arrow2.png) center top / contain no-repeat;
	}
}


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

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
	}
	.link_common ul li:not(:first-child) {
		margin-top: 2vw;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		width: 80vw;
		background-color: #666666;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 0 0.9em;
		margin-left: auto;
		margin-right: auto;
	}
	.row_c01 .link_common ul li a {
	}
	.row_c02 .link_common ul li a {
		background-color: #ffffff;
		color: #444444;
	}

	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 2vw;
		height: 3vw;
		top: 50%;
		margin-top: -1.5vw;
		right: 3vw;
	}
	.row_c01 .link_common ul li a::after {
	}
	.row_c02 .link_common ul li a::after {
		background: url(../img/arrow2.png) center top / contain no-repeat;
	}
}





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

	ここから各固定ページ

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


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

	実績紹介部分

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


/* カテゴリアイコン色 */
.works_icon span {
	background-color: #222222;
	color: #ffffff;
}


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

	.works_wrap {
		position: relative;
		width: 1000px;
		margin:0 auto;
	}
	.works_wrap ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.works_wrap > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		width: 320px;
		margin-left: 20px;
		font-size: 16px;
		letter-spacing: 0;
	}
	.works_wrap > ul > li:nth-of-type(3n+1) {
		margin-left: 0;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: absolute;
		top: 16px;
		left: 0px;
		z-index: 1;
	}
	.works_icon span,
	.works_icon a {
		position: relative;
		display: inline-block;
		padding: 0 0.5em 0.1em;
	}


	/* サムネイル画像 */
	.works_thumb img {
		width: 100%;
		height: 213px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 18px;
	}

}



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

	.works_wrap {
		position: relative;
		margin: 0 auto;
	}
	.works_wrap > ul {
	}
	.works_wrap > ul > li {
		position: relative;
		padding: 0;
	}
	.works_wrap > ul > li:not(:first-child) {
		margin-top: 6vw;
	}

	.works_wrap > ul > li > a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		
		border: 1px solid #cccccc;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: absolute;
		top: 4vw;
		left: 0px;
		z-index: 1;
	}
	.works_icon span,
	.works_icon a {
		display: inline-block;
		padding: 0 0.5em 0.1em;
	}


	/* サムネイル画像 */
	.works_thumb img {
		max-width: 100%;
		width: 100%;
		height: 62vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
		object-position: center top;
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 4vw;
	}

}





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

	プロフィールページ

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


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

	/* プロフィールSNSアイコン */
	.profile_sns_icons li {
		display: inline-block;
		margin-right: 25px;
	}
	.profile_sns_icons li img{
		width: 35px;
		height: auto;
	}
	.profile_sns_icons li:last-child {
		margin-right: 0px;
	}

	/* 名前 */
	.profile_name {
		font-size: 2em;
		margin-bottom: 25px !important;
		border-bottom: 0.5px solid #B67B03;
		padding-bottom: 10px;
	}
	.profile_name h2{
		font-weight: 500 !important;
		letter-spacing: 0.1em;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
	}
}



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

	/* プロフィールSNSアイコン */
	.profile_sns_icons {
		text-align: center;
	}
	.profile_sns_icons li {
		display: inline-block;
		margin-right: 25px;
	}
	.profile_sns_icons li img{
		width: 35px;
		height: auto;
	}
	.profile_sns_icons li:last-child {
		margin-right: 0px;
	}

	/* 名前 */
	.profile_name {
		font-size: 6vw;
		margin-bottom: 25px !important;
		text-align: center;
		padding-bottom: 10px;
		border-bottom: 0.5px solid #B67B03;
	}
	.profile_name h2{
		font-weight: 500 !important;
		letter-spacing: 0.1em;
		background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%); 
		background: -webkit-linear-gradient(270deg, #B67B03 0%, #DAAF08 45%, #FFF9E6 70%, #DAAF08 85%, #B67B03 90% 100%);
		-webkit-background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
	}
}





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

	レッスン ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.lesson_section {
		padding: 95px 20px;
		max-width: 800px;
		border: 0.5px solid #EBDB5C;
		margin: 0 auto;
		position: relative;
	}
	.lesson_section::before {
		content: "";
		width: 230px;
		height: 240px;
		background: url(../img/contact-kazari1.png) center / 100% no-repeat;
		position: absolute;
		top: -50px;
		left: -30px;
	}
	.lesson_section::after {
		content: "";
		width: 230px;
		height: 240px;
		background: url(../img/contact-kazari2.png) center / 100% no-repeat;
		position: absolute;
		bottom: -50px;
		right: -30px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.lesson_section {
		padding: 70px 20px;
		max-width: 800px;
		border: 0.5px solid #EBDB5C;
		margin: 0 auto;
		position: relative;
	}
	.lesson_section::before {
		content: "";
		width: 160px;
		height: 140px;
		background: url(../img/contact-kazari1.png) center / 100% no-repeat;
		position: absolute;
		top: -30px;
		left: -30px;
	}
	.lesson_section::after {
		content: "";
		width: 160px;
		height: 140px;
		background: url(../img/contact-kazari2.png) center / 100% no-repeat;
		position: absolute;
		bottom: -50px;
		right: -30px;
	}
}





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

	ディスコグラフィー ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.discography_name h2{
		font-size: 1.5em;
		font-weight: 500;
	}
	.discography_btn .more_left{
		margin-top: 0;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.discography_name h2{
		font-size: 4.8vw;
		font-weight: 500;
	}
	.discography_btn .more_left{
		margin-top: 0;
	}
	.col2_2_short.discography_btn {
		margin-top: 16vw;
	}
}





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

	コンサート／イベント ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.event_content {
		border-bottom: 0.5px solid #EBDB5C;
		position: relative;
	}
	.event_content > div > div > div{
		padding: 30px 20px !important;
	}
	.event_content::after {
		content: "";
		width: 100px;
		height: 80px;
		background: url(../img/contact-kazari2.png) center / 100% no-repeat;
		position: absolute;
		bottom: -20px;
		right: 0px;
	}
	.event_days {
		margin-bottom: 10px !important;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.event_content {
		border-bottom: 0.5px solid #EBDB5C;
		position: relative;
	}
	.event_content > div > div > div{
		padding: 30px 20px !important;
	}
	.event_content::after {
		content: "";
		width: 65px;
		height: 63px;
		background: url(../img/contact-kazari2.png) center / 100% no-repeat;
		position: absolute;
		bottom: -15px;
		right: 0px;
	}
	.event_days {
		margin-bottom: 10px !important;
	}

	.page-event .main_cate_in p {
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
}





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

	コンタクト ページ

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



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

	/* 個人情報テキスト */
	.privacy_title {
		font-size: 1.5em;
		border-bottom: 0.5px solid #fff;
		display: inline-block;
	}
	.privacy_title_wrap {
		text-align: center;
	}

	.privacy_text {
		text-align: center;
	}

	/* アコーディオン */
	/*ベース*/
	.privacy_toggle {
		display: none;
	}
	.privacy_Label {		/*タイトル*/
		padding: 1em;
		display: block;
		color: #5D4104;
		font-weight: bold;
		background: linear-gradient(0deg, #D0A900, #FFF9E6);
	}
	.privacy_Label::before{		/*タイトル横の矢印*/
		content:"";
		width: 6px;
		height: 6px;
		border-top: 2px solid #5D4104;
		border-right: 2px solid #5D4104;
		-webkit-transform: rotate(45deg);
		position: absolute;
		top:calc( 50% - 3px );
		right: 20px;
		transform: rotate(135deg);
	}
	.privacy_Label,
	.privacy_content {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translateZ(0);
		transition: all 0.3s;
	}
	.privacy_content {		/*本文*/
		height: 0;
		margin-bottom:10px;
		padding:0 20px;
		overflow: hidden;
		background-color: #fff;
		color: #000;
	}
	.privacy_toggle:checked + .privacy_Label + .privacy_content {	/*開閉時*/
		height: auto;
		padding:20px ;
		transition: all .3s;
	}
	.privacy_toggle:checked + .privacy_Label::before {
		transform: rotate(-45deg) !important;
	}

	/* プライバシーポリシーに同意する */
	.contact_f7_agree {
		text-align: center;
		margin-top: 6vw;
	}
	.contact_f7_agree .wpcf7-list-item {
		margin: 0;
	}

	/* 送信ボタン */
	.btn_submit {
		margin-top: 6vw;
	}
	.btn_submit input {
		padding: 15px 40px;
		min-width: 350px;
	}
	.contact_doui {
		text-align: center;
		margin-top: 40px;
	}
	.contact_doui a{
		color: #D0A900;
	}
	.contact_doui p{
		margin-top: 0 !important;
	}
	span.wpcf7-form-control.wpcf7-acceptance.optional {
		display: block;
		text-align: center;
	}
	.doui_btn {
		text-align: center;
	}
	}



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

	.page-contact .section_title_text.en {
		letter-spacing: 1px;
		line-height: 1.4;
	}  
	/* 個人情報テキスト */
	.privacy_title {
		font-size: 4.8vw;
		text-align: center;
		border-bottom: 0.5px solid #fff;
		line-height: 1.4;
	}

	.privacy_text {
		text-align: center;
	}

	/* アコーディオン */
	/*ベース*/
	.privacy_toggle {
		display: none;
	}
	.privacy_Label {		/*タイトル*/
		padding: 1em;
		display: block;
		color: #5D4104;
		font-weight: bold;
		background: linear-gradient(0deg, #D0A900, #FFF9E6);
	}
	.privacy_Label::before{		/*タイトル横の矢印*/
		content:"";
		width: 6px;
		height: 6px;
		border-top: 2px solid #5D4104;
		border-right: 2px solid #5D4104;
		-webkit-transform: rotate(45deg);
		position: absolute;
		top:calc( 50% - 3px );
		right: 20px;
		transform: rotate(135deg);
	}
	.privacy_Label,
	.privacy_content {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translateZ(0);
		transition: all 0.3s;
	}
	.privacy_content {		/*本文*/
		height: 0;
		margin-bottom:10px;
		padding:0 20px;
		overflow: hidden;
		background-color: #fff;
		color: #000;
	}
	.privacy_toggle:checked + .privacy_Label + .privacy_content {	/*開閉時*/
		height: auto;
		padding:20px ;
		transition: all .3s;
	}
	.privacy_toggle:checked + .privacy_Label::before {
		transform: rotate(-45deg) !important;
	}

/* 送信ボタン */
.btn_submit {
	margin-top: 6vw;
}
.btn_submit input {
	padding: 15px 40px;
	min-width: 350px;
}
.contact_doui {
	text-align: center;
	margin-top: 40px;
}
.contact_doui a{
	color: #D0A900;
}
.contact_doui p{
	margin-top: 0 !important;
}
span.wpcf7-form-control.wpcf7-acceptance.optional {
	display: block;
	text-align: center;
}
	.doui_btn {
		text-align: center;
	}
}


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

	アクセスページ

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

.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}


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



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