@charset 'utf-8';
/* =============================================================
common.css の打ち消し
================================================================ */
/*見出し*/
.lessonHeader h1, .lessonWrapper h1,
.lessonHeader h2, .lessonWrapper h2,
.lessonHeader h3, .lessonWrapper h3,
.lessonHeader h4, .lessonWrapper h4,
.lessonHeader h5, .lessonWrapper h5,
.lessonHeader h6, .lessonWrapper h6{
	color: var(--dark-brown);
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
	position: initial;
	border-bottom: none;
	line-height: initial;
}
.lessonHeader h1::after, .lessonWrapper h1::after{
	position: initial;
	z-index: initial;
	bottom: initial;
	left: initial;
	width: initial;
	height: initial;
	content: none;
	background:none;
}
.lessonHeader .container h2, .lessonWrapper .container h2,
.lessonHeader .container h3, .lessonWrapper .container h3,
.lessonHeader .container h4, .lessonWrapper .container h4{
	letter-spacing :initial;
	line-height: initial;
	margin: 0;
	padding: 0;
	border: none;
}
/*段落・リスト・テーブル*/
.lessonHeader p, .lessonWrapper p,
.lessonHeader li, .lessonWrapper li,
.lessonWrapper table{
	line-height: initial;
	letter-spacing : initial;
}
.lessonWrapper table{
	font-size: initial;
}

/* =============================================================
フォント設定
================================================================ */
.lessonHeader,
.lessonWrapper{
	font-size: 16px;
	color: var(--dark-brown);
}

/* =============================================================
ボタンリンク設定
================================================================ */
/*Bootstrap上書き*/
.lessonWrapper .btn{
	border-radius: 0;
	border:none;
}
/* カラー設定
---------------------------------------------------------------- */
/*hover時のtransition設定*/
.btn:hover{
	transition: .2s;
}
/*btn-primary*/
.btn.btn-primary{
	background-color: var(--dark-brown);
	color: var(--white);
}
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus{
	background-color: var(--dark-brown-cwh20);
	color: var(--white);
}
/*btn-default*/
.btn.btn-default{
	background-color: var(--light-brown);
	color: var(--dark-brown);
}
.btn.btn-default:hover,
.btn.btn-default:active,
.btn.btn-default:focus{
	background-color: var(--dark-brown);
	color: var(--white);
}
/*btn-secondary*/
.btn.btn-secondary{
	background-color: var(--grayish-green);
	color: var(--dark-brown);
}
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus{
	background-color: var(--light-brown-cbr20);
	color: var(--dark-brown);
}
/*btn-join*/
.btn.btn-join{
	background-color: var(--dark-green);
	color: var(--white);
}
.btn.btn-join:hover,
.btn.btn-join:active,
.btn.btn-join:focus{
	background-color: var(--dark-green-cwh20);
	color: var(--white);
}
/*btn-trial*/
.btn.btn-trial{
	background-color: var(--shima-orange);
	color: var(--white);
}
.btn.btn-trial:hover,
.btn.btn-trial:active,
.btn.btn-trial:focus{
	background-color: var(--shima-orange-cwh20);
	color: var(--white);
}
/*btn-kids キッズテーマカラー*/
.btn.btn-kids{
	background-color: var(--vivid-green);
	color: var(--white);
}
.btn.btn-kids:hover,
.btn.btn-kids:active,
.btn.btn-kids:focus{
	background-color: var(--vivid-green-cwh20);
	color: var(--white);
}
/*btn-oll オンラインレッスンテーマカラー*/
.btn.btn-oll{
	background-color: #00AFE1;
	color: #FFF;
}
.btn.btn-oll:hover,
.btn.btn-oll:active,
.btn.btn-oll:focus{
	background-color: #8880FF;
	color: #FFF;
}
/* btn-trial こども向け（イラスト付き）
---------------------------------------------------------------- */
body.kids .btn.btn-trial{
	position: relative;
}
body.kids .btn.btn-trial::before{
	content: '';
	background-image: url('/lesson/img/btn-trial_kids_illsut_boy.png');
	left: 0;
}
body.kids .btn.btn-trial::after{
	content: '';
	background-image: url('/lesson/img/btn-trial_kids_illsut_girl.png');
	right: 0;
}
body.kids .btn.btn-trial::before,
body.kids .btn.btn-trial::after{
	display: block;
	position: absolute;
	bottom: 0;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (max-width: 340px){
	body.kids .btn.btn-trial::before{ left: -12px; }
	body.kids .btn.btn-trial::after{ right: -12px; }
}

/* .btn-aboutCovid コロナ関連対応案内リンク
---------------------------------------------------------------- */
.btn.btn-aboutCovid{
	background: var(--white) url(/lesson/img/icon-arrow_right.svg) right 15px center / 9px 9px no-repeat;
	border: 1px solid var(--dark-brown);
	border-radius: 5px;
	color: var(--dark-brown);
	padding-right: 32px;
	padding-left: 32px;
	white-space: normal;
	word-break: keep-all;
}
.btn.btn-aboutCovid:hover {
	background-color: var(--grayish-green);
	transition: .2s;
}

/* サイズ設定
---------------------------------------------------------------- */
/*通常*/
.btn.btn-block{
	max-width: 400px;
	margin: 0 auto;
}
/*btn-lg*/
.btn.btn-block.btn-lg{
	max-width: 510px;
}

/* ボタン用ブロック要素
---------------------------------------------------------------- */
/*1列の場合*/
.btnBlock{
	padding-left:20px;
	padding-right:20px;
}
/*2列横並びの場合*/
.btnBlock-multiple{
	padding-left:20px;
	padding-right:20px;
}

/* =============================================================
テキストリンク設定
================================================================ */
/*テキストリンク用ブロック要素*/
.txtLink{
	line-height: 1.3;
	text-align: center;
	margin-top: 30px;
}
/*リンク設定*/
.txtLink a{
	color: var(--dark-brown);
	border-bottom:1px solid var(--dark-brown);
	margin: 0 auto;
}
.txtLink a:hover,
.txtLink a:focus{
	text-decoration: none;
	border-bottom: none;
}
.txtLink a:after{
	content: '\f101';
	font-family: FontAwesome;
}
/*リンク内の改行*/
.txtLink a span{
	display: inline-block;
}

/* =============================================================
注釈テキスト・リスト
================================================================ */

/* 注釈テキスト
---------------------------------------------------------------- */
p.note{
	line-height: 1.5;
	text-indent: -1em;
	padding-left: 1em;
}
p.note:before{
	content:'※';
}
p.note strong{
	font-weight: bold;
}
/* 注釈リスト
---------------------------------------------------------------- */
ul.notes{
	list-style-type: none;
	margin:0;
	padding:0;
}
ul.notes > li{
	line-height: 1.5;
	text-indent: -1em;
	padding-left: 1em;
}
ul.notes > li:before{
	content:'※';
}
ul.notes strong{
	font-weight: bold;
}

/* =============================================================
その他共通スタイル
================================================================ */
/*スクリーンリーダーで読み上げ可能な非表示要素(.hide-element)*/
.hide-element {
	width: 0 !important;
	height: 0 !important;
	position: absolute !important;
	z-index: 0 !important;
	clip: rect(0 0 0 0) !important;
}
/*見出し代わりのワンセンテンスの段落(p.subHead)*/
p.subHead{
	text-align: center;
}
/*ページ概要・説明文(.summary)*/
.summary{
	max-width: 700px;
	margin:0 auto;
	padding-bottom: 20px;
}
/*段落*/
.summary p + p{
	margin-top: 1em;
}
/*テキストリンク*/
.summary p a{
	color: var(--dark-brown);
	text-decoration: underline;
}
.summary p a:hover,
.summary p a:focus{
	text-decoration: none;
}
/*バナーブロック(bnBlock)*/
.bnBlock a:hover,
.bnBlock a:focus{
	opacity: .8;
	transition: .2s;
}
/*flex*/
.flex{
	display: flex;
	flex-wrap: wrap;
	margin-left: 0;
	margin-right: 0;
}
/* =============================================================
ヘッダー全体
================================================================ */
header{
	background-color: var(--white);
}

/* =============================================================
ヘッダー：サイトタイトル（島村楽器）
================================================================ */
.siteTitle{
	background-color: var(--wihte);
}
.siteTitle p{
	height: 60px;
	margin:0;
}
.siteTitle p a{
	display: block;
	overflow: hidden;
	height: 100%;
	text-align: center;
}
.siteTitle p a img{
	width: auto;
	height: 100%;
}

/* =============================================================
ヘッダー：音楽教室ヘッダー
================================================================ */
/*全体*/
.lessonHeader{
	background-color: var(--dark-brown);
	position: relative;
	width: 100%;
	box-shadow: 0 3px 3px rgba(var(--black-rgb),.3);
	z-index: 998;
}
/*固定*/
.lessonHeader.fixed{
	position: fixed;
	top: 0;
	left: 0;
}

/* ナビゲーションバー（タイトル＋メニュー開閉ボタン）
---------------------------------------------------------------- */
.lessonNavBar{
	position: relative;
	max-width: 1150px;
	margin: 0 auto;
}

/* タイトル（島村楽器の音楽教室／島村楽器のオンラインレッスン）
---------------------------------------------------------------- */
.lessonNavBar > p,
.lessonNavBar > h1{
}
.lessonNavBar > p a,
.lessonNavBar > h1 a{
	display: block;
	overflow: hidden;
	height: 100%;
	box-sizing: border-box;
	padding-left: 12px;
}

/* メニュー開閉ボタン
---------------------------------------------------------------- */
.lessonNavBar .lessonNavBtn {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: inherit;
	border: 0;
	padding: 0;
	margin: 0;
}
.lessonNavBar .lessonNavBtn:hover,
.lessonNavBar .lessonNavBtn:focus{
	cursor: pointer;
}
.lessonNavBar .lessonNavBtn:focus{
	outline: 5px auto -webkit-focus-ring-color;
}
.lessonNavBar .lessonNavBtn p{
	height: 100%;
	text-align: center;
}

/* メニュー本体
---------------------------------------------------------------- */
/*全体*/
nav.lessonNavMenu{
	display: none;
	background: rgba( var(--dark-brown-rgb), .98);
	position: absolute;
	width: 100%;
	opacity: .95;
	color: var(--white);
	z-index: 500;
}
/*リスト設定*/
nav.lessonNavMenu > ul{
	list-style-type: none;
}
/*リンク設定*/
nav.lessonNavMenu a{
	color: var(--white);
}
nav.lessonNavMenu a:hover,
nav.lessonNavMenu a:focus{
	color: var(--white);
}
/*リンク設定-メイン*/
nav.lessonNavMenu > ul > li > a{
	display: block;
	border-bottom: 1px solid var(--light-brown);
}
nav.lessonNavMenu > ul > li > a[href^="/"] {
	position: relative;
	padding-right: 0.75em;
}
nav.lessonNavMenu > ul > li > a[href^="/"]::after {
	display: block;
	font-family: FontAwesome;
	content: "\f105";
	font-size: 110%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
nav.lessonNavMenu > ul > li > a:hover,
nav.lessonNavMenu > ul > li > a:active,
nav.lessonNavMenu > ul > li > a:focus {
	text-decoration: none;
}
nav.lessonNavMenu > ul > li > a[href^="/"]:hover,
nav.lessonNavMenu > ul > li > a[href^="/"]:active,
nav.lessonNavMenu > ul > li > a[href^="/"]:focus {
	text-decoration: underline;
}
@media screen and (min-width: 992px){
	nav.lessonNavMenu > ul > li > a{
		font-size: 125%;
	}
}
@media screen and (min-width:641px) and (max-width: 991px){
	nav.lessonNavMenu > ul > li > a{
		font-size: 115%;
	}
}
/*リンク設定-サブ*/
nav.lessonNavMenu > ul > li.hasSubMenu ul{
	list-style-type: none;
	padding: 0;
}
nav.lessonNavMenu > ul > li.hasSubMenu ul li a:before{
	display: inline-block;
	content: '\f105';
	font-family: FontAwesome;
	margin-right: .5em;
}

/* =============================================================
ビジュアルヘッダー(.emergencyList)
※背景写真つきのページ見出し
================================================================ */
ul.emergencyList{
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
}
.lessonWrapper > ul.emergencyList:first-child{
	box-shadow: 0 0 20px rgba(var(--black-rgb),.2);
}
ul.emergencyList li + li{
	border-top: 1px solid var(--white);
}
/*リンク設定*/
ul.emergencyList li > a,
ul.emergencyList li > p{
	display: flex;
	max-width: 1140px;
	align-items: center;
	font-size: 88%;
	line-height: 1.4;
	margin: 0 auto;
	padding: 10px;
}
ul.emergencyList li > p{
	cursor: default;
}
ul.emergencyList li > a:before,
ul.emergencyList li > p:before{
	display: block;
	font-family: FontAwesome;
	font-size: 130%;
	margin-right: 10px;
}
ul.emergencyList li > a:after{
	display: block;
	content: '\f054';
	font-family: FontAwesome;
	font-size: 80%;
	background-color: rgba(var(--white-rgb),.5);
	border-radius: 2px;
	line-height: 1;
	margin-left: 10px;
	padding: .4em .4em .3em .5em;
}
/*ホバー設定*/
ul.emergencyList li > a:hover,
ul.emergencyList li > a:focus{
	text-decoration: none;
	opacity: .5;
	transition: .2s;
}


/* =============================================================
メインビジュアル・ビジュアルヘッダー直後のコンテンツ部分(.contents)
================================================================ */
/*全体*/
.lessonWrapper .contents{
	background-color: var(--white);
}

/* =============================================================
色付きメインセクション(section.main)
================================================================ */
/*全体*/
section.main{
	background-color: var(--creamy-brown);
	padding-left: 20px;
	padding-right: 20px;
}
section.main > *:last-child{
	margin-bottom: 0;
}
section.main > .btnBlock{
	padding-left: 0;
	padding-right: 0;
}
section.main > .btnBlock:last-child{
	padding-bottom: 0;
}
/*見出し*/
section.main h2{
	text-align: center;
	font-weight: bold;
}
section.main h2 span{
	display: inline-block;
}
section.main h2.hide + *{
	margin-top: 0;
}
/*別の色でカバーしたエリア*/
section.main .covered{
	background-color: var(--pale-brown);
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 20px;
	padding-right: 20px;
}
section.main .covered > *{
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}
section.main .covered:last-child{
	margin-bottom: 0;
	margin-bottom: 0;
}
section.main .covered + .covered{
	margin-top: 1px;
}

/* =============================================================
メインビジュアル直後の通常コンテンツ(.mainView)
================================================================ */
/*全体*/
.mainView{
	background-color: var(--white);
	padding-left: 20px;
	padding-right: 20px;
}
/*見出し*/
.mainView h2{
	max-width: 700px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}
.mainView h2 span{
	display: inline-block;
}
/*本文*/
.mainView p{
	max-width: 700px;
	font-size: 87%;
	line-height: 2;
	margin:0 auto;
}
.mainView p span{
	display: inline-block;
}
/*フォントサイズ調整*/
@media screen and (min-width: 641px){
	/*見出し*/
	.mainView h2{ font-size: 162%; }
}
@media screen and (min-width: 415px) and (max-width: 640px){
	/*見出し*/
	.mainView h2{ font-size: 110%; }
	/*本文*/
	.mainView p{ font-size: 87%; }
}

/* =============================================================
交互にレイアウトが変わるコンテンツ(alternateView)
================================================================ */
/*交互の背景色*/
.alternateView > div:nth-of-type(odd){
	background-color: var(--creamy-brown);
}
.alternateView > div:nth-of-type(even){
	background-color: var(--creamy-calm-green);
}
/*レイアウト*/
.alternateView > div{
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
	align-items: center;
}
/*見出し*/
.alternateView > div h3{
	line-height: 1.4;
	text-align: center;
}
.alternateView > div h3 span{
	display: inline-block;
}
@media screen and (min-width: 1200px){
	.alternateView > div h3{
		margin-bottom: 2em;
	}
}
@media screen and (max-width: 1199px){
	.alternateView > div h3{
		margin-top: 1.5em;
		margin-bottom: 1em;
	}
}
/*本文*/
.alternateView > div p{
	line-height: 1.6;
	margin-bottom: .5em;
}
/*画像*/
.alternateView > div figure img{
	display: block;
	width: 100%;
	height: auto;
}

/* =============================================================
英語つき見出しのコンテンツ(highlightView)
================================================================ */
/*全体*/
.highlightView{
}


/* =============================================================
動画サムネイルリンク(movie-thumbnail-link)
================================================================ */
/*リンク本体*/
a.movie-thumbnail-link{
	display: block;
	position: relative;
	overflow: hidden;
}
/*再生ボタンフィルター*/
a.movie-thumbnail-link:before{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	color: #FFF;
	content: "\e072";
	font:normal 400 50px/1 "Glyphicons Halflings";
	filter: drop-shadow(0 0 10px #000);
	opacity: 1;
	transition: .1s;
}
a.movie-thumbnail-link:hover:before,
a.movie-thumbnail-link:focus:before{
	opacity: 0;
	transition: .1s;
}
/*画像*/
a.movie-thumbnail-link img{
	width: 100%;
	height: auto;
	margin:0;
}

/*直後の要素の余白調整*/
a.movie-thumbnail-link + a.btn{
	margin-top: 1em;
}

/* =============================================================
吹き出し型タブメニュー(nav.bubbleTab)
================================================================ */
/*全体*/
nav.bubbleTab{
	position: relative;
	z-index: 10;
	background-color: var(--grayish-green);
}
/*背景色*/
nav.bubbleTab.activeFirst:before{
	left:0;
	background-color: var(--dark-brown);
}
nav.bubbleTab.activeLast:after{
	right:0;
	background-color: var(--dark-brown);
}
nav.bubbleTab:before,
nav.bubbleTab:after{
	content:'';
	position: absolute;
	top:0;
	height: 100%;
	width: 50%;
	z-index: 11;
}
/*レイアウト設定*/
nav.bubbleTab ul{
	position: relative;
	z-index: 12;
	width: 100%;
	display: flex;
	justify-content: space-between;
	max-width: 1140px;
	list-style-type: none;
	margin:0 auto;
	padding: 0;
}
nav.bubbleTab ul li{
	width: 100%;
	text-align: center;
}
nav.bubbleTab ul li a,
nav.bubbleTab ul li p{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 60px;
	line-height: 1.2;
}
/*カーソルの設定*/
nav.bubbleTab ul li[data-status=active] p{
	cursor: default;
}
nav.bubbleTab ul li[data-status=inactive] p{
	cursor: pointer;
}
/*吹き出し三角形*/
nav.bubbleTab ul li:after{
	position: absolute;
	z-index: 12;
	content: '';
	display: inline-block;
	border-width: 11px 7px 0 7px;
	border-color: transparent;
	border-style: solid;
}
/*リンク時の文字指定*/
nav.bubbleTab ul li:hover a,
nav.bubbleTab ul li:focus a{
	text-decoration: none;
}
/*色設定-通常*/
nav.bubbleTab ul li > *{
	background-color: var(--grayish-green);
	color: var(--dark-brown);
}
nav.bubbleTab ul li:after{
	border-top-color: var(--grayish-green);
}
/*色設定-ホバー*/
nav.bubbleTab ul li:hover a,
nav.bubbleTab ul li:focus a,
nav.bubbleTab ul li:hover p,
nav.bubbleTab ul li:focus p{
	background-color: var(--light-brown);
	color: var(--wihte);
	transition: .2s;
}
nav.bubbleTab ul li:hover:after,
nav.bubbleTab ul li:focus:after{
	border-top-color: var(--light-brown);
	transition: .2s;
}
/*色設定-アクティブ*/
nav.bubbleTab ul li[data-status=active] a,
nav.bubbleTab ul li[data-status=active] p{
	background-color: var(--dark-brown);
	color: var(--white);
}
nav.bubbleTab ul li[data-status=active]:after{
	border-top-color: var(--dark-brown);
}

/* =============================================================
ブロック型メニューリスト(ul.blockMenu)
================================================================ */
/*全体*/
ul.blockMenu{
	display: grid;
	max-width: 1040px;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
}
/*リンク設定-レイアウト*/
ul.blockMenu li,
ul.blockMenu li a{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	line-height: 1.2;
	text-align: center;
}
ul.blockMenu li a{
	width: 100%;
	height: 100%;
}
ul.blockMenu li > span,
ul.blockMenu li a > span{
	display: inline-block;
}
/*リンク設定-色*/
ul.blockMenu li,
ul.blockMenu li a{
	background-color: var(--light-brown);
	color: var(--dark-brown);
}
ul.blockMenu li:hover,
ul.blockMenu li:focus,
ul.blockMenu li a:hover,
ul.blockMenu li a:focus{
	background-color: var(--dark-brown);
	color: var(--white);
	text-decoration: none;
	transition: .2s;
}
/*リンク設定-色(白地ver)*/
ul.blockMenu-white li,
ul.blockMenu-white li a{
	background-color: var(--white);
	color: var(--dark-brown);
}
ul.blockMenu-white li:hover,
ul.blockMenu-white li:focus,
ul.blockMenu-white li a:hover,
ul.blockMenu-white li a:focus{
	background-color: var(--dark-brown-o20);
	color: var(--dark-brown);
	text-decoration: none;
}
/*リンク設定-新窓アイコン*/
ul.blockMenu li a i.fa-external-link{
	display: inline-block;
	position: absolute;
	font-size: 70%;
	margin-left: .5em;
}

/* =============================================================
イラスト＋文字メニューリスト(ul.illustMenu)
================================================================ */
/*全体*/
ul.illustMenu{
	display: grid;
	max-width: 1040px;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
}
@media screen and (min-width: 1040px){
	ul.illustMenu{
		grid-template-columns: repeat(3, 1fr);
		row-gap: 20px;
		grid-row-gap: 20px;
		column-gap: 25px;
		grid-column-gap: 25px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1039px){
	ul.illustMenu{
		grid-template-columns: repeat(2, 1fr);
		row-gap: 20px;
		grid-row-gap: 20px;
		column-gap: 25px;
		grid-column-gap: 25px;
	}
}
@media screen and (max-width: 767px){
	ul.illustMenu li{
		font-size: 87%;
		margin-bottom: 20px;
	}
}
/*リンク設定*/
ul.illustMenu li a{
	position: relative;
	display: flex;
	line-height: 1.2;
	width: 100%;
	height: 75px;
	background-color: var(--white);
	color: var(--dark-brown);
	border-radius: 5px;
	border: 1px solid var(--dark-brown);
}
ul.illustMenu li a:hover,
ul.illustMenu li a:focus{
	background-color: var(--grayish-green);
	color: var(--dark-brown);
	text-decoration: none;
	transition: .2s;
}
/*画像*/
ul.illustMenu li a > img{
	display: block;
	width: 90px;
	height: 90px;
	position: relative;
	top: -17px;
	margin-left: 10px;
	margin-right: 10px;
}
/*コース名*/
ul.illustMenu li a > span{
	display: block;
	align-self: center;
	font-weight: bold;
}
/*コース名(ヤマハの場合)*/
ul.illustMenu li a > span:first-child{
	padding-left: 10px;
}
/*リンク設定-新窓アイコン*/
ul.illustMenu li a i.fa-external-link{
	display: inline-block;
	font-size: 70%;
	margin-left: .5em;
}

/* =============================================================
拠点一覧(.shopList)
================================================================ */
/*全体*/
.shopList{
}
/*見出し(エリア)*/
.shopList h2{
}
/*見出し(都道府県)*/
.shopList h3{
	max-width: 1040px;
	font-weight: bold;
	color: var(--shima-orange);
	border-left: 4px solid var(--shima-orange);
	line-height: 1.5;
	margin:3em auto 1em auto;
	padding-left:.5em;
}
/*店舗リスト*/
.shopList ul{
	max-width: 1040px;
	list-style-type: none;
	margin:0 auto;
	padding: 0;
}
/*リンク設定*/
.shopList ul li a{
	overflow: hidden;
	display: block;
	width: 100%;
	font-weight: bold;
	line-height: 1.3;
	background-color: var(--white);
	color: var(--dark-brown);
	border:1px solid var(--dark-brown);
	border-radius: 5px;
	padding: .5em .75em;
}
.shopList ul li a:hover,
.shopList ul li a:focus{
	background-color: var(--dark-brown-o20);
	text-decoration: none;
	transition: .2s;
}
/*店舗名*/
.shopList ul li a p.shpName{
	display: inline-block;
	line-height: inherit;
}
/*サロン・スクール*/
.shopList ul li a p.crsType{
	float: right;
	display: flex;
}
.shopList ul li a p.crsType span{
	display: inline-block;
	width: 5em;
	background-color: var(--grayish-green);
	color: var(--dark-brown);
	text-align: center;
	font-size: 80%;
	line-height: 1.5;
	margin-left: .5em;
	margin-top: .2em;
}
/*お知らせ*/
.shopList ul li p.note{
	color: var(--shima-orange);
	margin-top: .3em;
}

/* =============================================================
絞り込みリスト(#narrowList)
================================================================ */
#narrowList .narrowed{
	display: none;
}
#narrowList .narrowed .btnBlock:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
}

/* =============================================================
右下固定体験レッスン申し込みボタン(#trialBtn)
================================================================ */
/*全体*/
#trialBtn{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 400;
}
/*コース詳細＆体験レッスン申し込みページでは表示しない*/
body.course #trialBtn,
body.trial #trialBtn{
	display: none;
}
/* リンクボタン設定
---------------------------------------------------------------- */
/*共通*/
#trialBtn a{
	display: block;
	text-align: center;
	line-height: 1.2;
}
#trialBtn a span{
	display: inline-block;
}
#trialBtn a:hover,
#trialBtn a:focus{
	text-decoration: none;
	transition: .2s;
}
/*キッズ以外の場合*/
body:not(.kids) #trialBtn a{
	background-color: var(--shima-orange);
	color: var(--white);
	border-radius: 5px 0 0 5px;
	box-shadow: 0 2px 2px rgba(var(--black-rgb),.45);
}
body:not(.kids) #trialBtn a:hover,
body:not(.kids) #trialBtn a:focus{
	background-color: var(--shima-orange-cwh20);
	color: var(--white);
}

/* =============================================================
上へ戻るボタン(#navPageTop)
================================================================ */
/*全体*/
#navPageTop{
	padding-top: 40px;
	padding-bottom: 40px;
}
.event + #navPageTop{
	background-color: var(--creamy-brown);
}
body.trial #navPageTop{
	background-color: var(--creamy-brown);
}
/*リンク*/
#navPageTop a{
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border:1px solid var(--dark-brown);
	background-color: var(--white);
	white-space: nowrap;
	color: transparent;
	position: relative;
	margin:0 auto;
}
#navPageTop a:before{
	display: block;
	content: '';
	width: 20%;
	height: 20%;
	position: absolute;
	top: 45%;
	left:40%;
	border-top:1px solid var(--dark-brown);
	border-right:1px solid var(--dark-brown);
	transform: rotate(-45deg);
}
#navPageTop a:hover,
#navPageTop a:focus{
	background-color: var(--reddish-pale-gray);
	transition: .2s;
}

/* =============================================================
スクールとサロンの違い(.school-salon-diff)
================================================================ */
/*リンク*/
.school-salon-diff .modalBtn{
	display: flex;
	justify-content: center;
	align-items: center;
}
.school-salon-diff .modalBtn .fa-question-circle{
	font-size: 150%;
	margin-right: .1em;
}
.school-salon-diff .modalBtn a{
	color: var(--dark-brown);
	text-decoration: underline;
}
.school-salon-diff .modalBtn a:hover,
.school-salon-diff .modalBtn a:focus{
	cursor: pointer;
	text-decoration: none;
}
/*ポップアップ-レイアウト調整*/
.school-salon-diff .modal-dialog{
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.school-salon-diff .modal-dialog .modal-content{
	max-width: 800px;
	width: 100%;
	margin-left: 20px;
	margin-right: 20px;
}
.school-salon-diff .modal-dialog .modal-body{
	position: relative;
}
/*ポップアップ-閉じるボタン*/
.school-salon-diff .modal-dialog .modal-body button.close{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 2em;
	color: var(--shima-orange);
	opacity: 1;
}
/*ポップアップ-定義リスト*/
.school-salon-diff .modal-dialog .modal-body dl dt{
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

/* =============================================================
スクール・サロン切り替えタブ(nav.switchType)
================================================================ */
/*全体*/
nav.switchType{
}
/*リスト設定*/
nav.switchType ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*リンク設定*/
nav.switchType ul li a{
	display: block;
	background-color: var(--grayish-green);
	color: var(--dark-brown);
	line-height: 3;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
nav.switchType ul li[data-status=inactive] a:hover,
nav.switchType ul li[data-status=inactive] a:focus{
	background-color: var(--grayish-green-cbr20);
	text-decoration: none;
	transition: .2s;
}
nav.switchType ul li[data-status=active] a{
	cursor: default;
	background-color: var(--light-brown);
	color: var(--dark-brown);
}


/* =============================================================
キャンペーン情報(.campaign)
================================================================ */
/*全体*/
.campaign{
	text-align: center;
}
/*見出し*/
.campaign > p{
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
}
/*リンクまとめ*/
@media screen and (min-width: 641px){
	.campaign > div{
		width: 640px;
		display: flex;
		flex-wrap:wrap;
		justify-content: space-around;
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px){
	.campaign a.campaign-link + a.campaign-link{
		margin-top: 40px;
	}
}
/*リンク*/
a.campaign-link{
	display: block;
	color: var(--dark-brown);
	line-height: 1.5;
}
/*リンク-画像*/
a.campaign-link img{
	max-width: 260px;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
a.campaign-link:hover img,
a.campaign-link:focus img{
	opacity: .8;
	transition: .2s;
}
/*リンク-文字*/
a.campaign-link span{
	display: block;
	font-size: 87%;
}
a.campaign-link span:first-of-type{
	font-weight: bold;
}

/* =============================================================
関連コンテンツバナー(.relate-contents)
================================================================ */
/*全体*/
.relate-contents{
	max-width: 1070px;
	margin: 0 auto;
}
.relate-contents .flex{
	justify-content: center;
}
.relate-contents .flex > div{
	margin-bottom: 15px;
}
@media screen and (max-width: 991px){
	.relate-contents .col-xs-12{
		max-width: 505px;
	}
}
/*リンク*/
.relate-contents a:hover,
.relate-contents a:focus{
	opacity: .8;
	transition: .2s;
}
/* =============================================================
音楽教室のイベント(.event)
================================================================ */
/*全体*/
.event{
	background-color: var(--creamy-green);
	padding-left: 20px;
	padding-right: 20px;
}
/*見出し*/
.event p{
	text-align: center;
	color: var(--dark-green);
	font-weight: bold;
	margin-bottom: 30px;
}
/*リスト*/
.event ul{
	max-width: 1040px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	grid-gap: 30px;
	list-style-type: none;
	margin: 0 auto;
	padding:0;
}
@media screen and (max-width: 999px){
	.event ul{
		max-width: 510px;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		grid-gap: 20px;
	}
}
/*リンク*/
.event ul li a{
	position: relative;
	display: block;
}
.event ul li a:after{
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(var(--white-rgb),.2);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.event ul li a:hover:after,
.event ul li a:focus:after{
	opacity: 1;
	transition: .2s;
}
/*バナー*/
.event ul li a img{
	width: 100%;
	height: auto;
}
/*直後のトップへ戻るボタン*/
.event+#navPageTop{
	background-color: var(--creamy-green);
}

/* =============================================================
トップページ用スタイル /lesson/index.html
================================================================ */

/* 教室を探す(section.top-search)
---------------------------------------------------------------- */
/*全体*/
section.top-search{
	background-color: var(--light-brown);
	text-align: center;
	padding:50px 40px;
}
/*見出し*/
section.top-search h2{
	font-weight: bold;
	margin-bottom: 30px;
}
/*リスト*/
section.top-search ul{
	list-style-type: none;
	margin:0 auto;
	padding:0;
}
section.top-search ul li{
	width: 100%;
	margin:0 auto;
}
/*ボタンリンク*/
section.top-search ul li a{
	display: block;
	background-color: var(--dark-brown);
	color: var(--white);
	border-radius: 5px;
}
section.top-search ul li a:hover,
section.top-search ul li a:focus{
	background-color: var(--dark-brown-cwh20);
	color: var(--white);
	text-decoration: none;
	transition: .2s;
}
@media screen and (min-width: 1141px){
	section.top-search ul{
		display: flex;
		justify-content: space-between;
		max-width: 1140px;
	}
	section.top-search ul li{
		max-width: 340px;
	}
}
@media screen and (max-width: 1140px){
	section.top-search ul li:not(:first-of-type){
		margin-top: 30px;
	}
}

/* 音楽教室とは・大人・こどもトップへの誘導(section.top-about)
---------------------------------------------------------------- */
/*全体*/
section.top-about{
	position: relative;
	padding: 50px 20px;
}
/*背景色*/
section.top-about:before{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	content: '';
	display: block;
	background-color: var(--creamy-brown);
	z-index: 10;
}
section.top-about > *{
	position: relative;
	z-index: 20;
}
/*見出し*/
section.top-about div h2.about{
	background-image: url(/lesson/img/top/letter-about.svg);
}
section.top-about div h2.adult{
	background-image: url(/lesson/img/top/letter-adult.svg);
}
section.top-about div h2.kids{
	background-image: url(/lesson/img/top/letter-kids.svg);
}
section.top-about div h2{
	font-weight: bold;
	background-position: right bottom;
	background-repeat: no-repeat;
}
/*画像*/
section.top-about div figure a{
	display: block;
	max-width: 510px;
	margin:0 auto;
}
section.top-about div figure a img{
	width: 100%;
	height: auto;
}
@media screen and (min-width: 1000px){
	/*背景色*/
	section.top-about:before{
		width: 100%;
	}
	/*各項目ごと*/
	section.top-about div{
		position: relative;
		overflow: hidden;
		max-width: 1140px;
		margin:0 auto;
	}
	/*画像*/
	section.top-about div figure a{
	}
	section.top-about div:nth-of-type(odd) figure{ float: right; }
	section.top-about div:nth-of-type(even) figure{ float: left; }
	/*見出し＆リンクボタン*/
	section.top-about div h2{
		position: absolute;
		width: 400px;
		bottom: 50px;
	}
	section.top-about div a.btn{
		position: absolute;
		bottom: 0;
	}
	section.top-about div:nth-of-type(odd) h2,
	section.top-about div:nth-of-type(odd) a.btn{
		right: 560px;
	}
	section.top-about div:nth-of-type(even) h2,
	section.top-about div:nth-of-type(even) a.btn{
		left: 560px;
	}
}
@media screen and (max-width: 999px){
	/*背景色*/
	section.top-about:before{
		width: 85%;
	}
	/*見出し*/
	section.top-about div h2{
		max-width: 510px;
		margin:0 auto 10px auto;
	}
	/*リンクボタン*/
	section.top-about div a.btn{
		margin-top: 40px;
	}
}

/* ピックアップ
---------------------------------------------------------------- */
/*全体*/
section.top-pickup{
	padding: 0 20px;
}
/*見出し*/
section.top-pickup h2{
	font-weight: bold;
	background-image: url(/lesson/img/top/letter-pickup.svg);
	background-repeat: no-repeat;
}
/*リスト*/
section.top-pickup ul{
	list-style-type: none;
	margin:0;
	padding:0;
}
/*リンク*/
section.top-pickup ul a{
	display: block;
	position: relative;
	background-color: var(--white);
	background-repeat: no-repeat;
	color: var(--dark-brown);
}
section.top-pickup ul a span{
	display: block;
}
section.top-pickup ul a span:first-of-type{
	font-weight: bold;
	padding: 15px 10px 10px 10px;
}
section.top-pickup ul a span:last-of-type{
	padding: 0 10px 15px 10px;
}
section.top-pickup ul a:hover,
section.top-pickup ul a:focus{
	color: var(--dark-brown);
	text-decoration: none;
	transition: .2s;
	opacity: .5;
}

/* お知らせ
---------------------------------------------------------------- */
/*全体*/
section.top-news{
	padding: 0 20px;
}
/*見出し*/
section.top-news h2{
	font-weight: bold;
	background-image: url(/lesson/img/top/letter-news.svg);
	background-repeat: no-repeat;
}
/*リスト*/
section.top-news ul{
	list-style-type: none;
	border-top: 1px solid var(--light-brown);
	margin:0;
	padding:0;
}
section.top-news ul li{
	border-bottom: 1px solid var(--grayish-green);
}
/*リンク*/
section.top-news ul a{
	display: block;
	position: relative;
	background-color: var(--white);
	background-image:url(/lesson/img/icon-arrow_right.svg);
	background-repeat: no-repeat;
	color: var(--dark-brown);
}
section.top-news ul a time{
	display: block;
	/*margin-bottom: .5em;*/
}
section.top-news ul a span{
	display: block;
}
section.top-news ul a:hover,
section.top-news ul a:focus{
	color: var(--dark-brown);
	text-decoration: none;
	transition: .2s;
	opacity: .5;
}

/* 音楽教室のイベント
---------------------------------------------------------------- */
/*全体*/
section.top-event{
	position: relative;
	padding:50px 20px;
}
/*背景色*/
section.top-event:before{
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	height: 100%;
	content: '';
	display: block;
	background-color: var(--creamy-green);
	z-index: 10;
}
/*見出し＆リスト共通*/
section.top-event > *{
	position: relative;
	z-index: 20;
	max-width: 1040px;
	margin: 0 auto;
}
/*見出し*/
section.top-event h2{
	color: var(--dark-green);
	font-weight: bold;
	line-height: 1;
	background-image: url(/lesson/img/top/letter-event.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}
/*リスト*/
section.top-event ul{
	list-style-type: none;
	padding:0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	grid-gap: 30px;
}
/*リンク*/
section.top-event ul li a{
	position: relative;
	display: block;
}
section.top-event ul li a:after{
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(var(--white-rgb),.2);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
section.top-event ul li a:hover:after,
section.top-event ul li a:focus:after{
	opacity: 1;
	transition: .2s;
}
/*バナー*/
section.top-event ul li a img{
	width: 100%;
	height: auto;
}
@media screen and (min-width: 1000px){
	/*背景色*/
	section.top-event:before{
		width: 80%;
	}
}
@media screen and (max-width: 999px){
	/*背景色*/
	section.top-event:before{
		width: 85%;
	}
	/*見出し＆リスト共通*/
	section.top-event > *{
		max-width: 510px;
	}
	section.top-event > ul{
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		grid-gap: 20px;
	}
}
/*緊急のお知らせ*/
section.top-event + ul.emergencyList{
	margin-top: 40px;
}

/* =============================================================
開講コース一覧(.crsList)
================================================================ */

/* スクール・サロン切り替え
---------------------------------------------------------------- */
nav.switchType{
	max-width: 1040px;
	margin:0 auto;
}

/* コースタイプ見出し
---------------------------------------------------------------- */
h3.crsType{
	display: block;
	max-width: 1040px;
	width: 100%;
	color: var(--dark-brown);
	line-height: 3;
	font-weight: bold;
	text-align: center;
	margin:0 auto;
}

/* コースリスト全体
---------------------------------------------------------------- */
.crsList{
	background-color: var(--light-brown);
	max-width: 1040px;
	margin:0 auto;
}
/* 通常リスト
---------------------------------------------------------------- */
.crsList ul{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	grid-column-gap: 30px;
	row-gap: 20px;
	grid-row-gap: 20px;
}
@media screen and (max-width: 860px){
	.crsList ul{
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 定義リスト
---------------------------------------------------------------- */
.crsList > dl{
	background-color: var(--white);
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(var(--black-rgb),0.15);
	margin: 0;
	padding:10px;
}
.crsList > dl > *:not(:last-child){
	margin-bottom: 10px;
}
/*開講曜日リスト*/
.crsList > dl dd ul{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	grid-gap: 2px;
	list-style-type: none;
	padding:0;
}
.crsList > dl dd ul li{
	background-color: var(--grayish-green);
	color: var(--white);
	line-height: 1.5;
	font-size: 87%;
}
.crsList > dl dd ul li[data-status=active]{
	background-color: rgba(var(--dark-brown-rgb),.75);
}
.crsList > dl dd ul li span{
	display: block;
	width: 1em;
	white-space: nowrap;
	overflow: hidden;
	margin:0 auto;
}
/*コース詳細リンクボタン*/
.crsList > dl dd a{
	display: block;
	background-color: var(--light-brown);
	color: var(--dark-brown);
	line-height: 2;
	text-align: center;
	border-radius: 2px;
	box-shadow: 0 1px 1px var(--dark-brown);
}
.crsList > dl dd a:hover,
.crsList > dl dd a:focus{
	background-color: var(--dark-brown);
	color: var(--white);
	text-decoration: none;
	transition: .2s;
}

/* =============================================================
入会のご案内ページ用
- /lesson/flow/index.html
- /lesson/flow/kids.html
================================================================ */
/*全体*/
section.flow{
	max-width: 700px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}
/*見出し*/
section.flow h2{
	font-weight: bold;
	text-align: center;
}
/*持ち物リスト*/
section.flow .bringItems{
	background-color: var(--creamy-calm-green);
	padding: 1em 2.5em 1em 2em;
	margin-top: 20px;
}
section.flow .bringItems ul{
	list-style-type: disc;
	padding-left: 22px;
}
section.flow .bringItems li{
	font-weight: bold;
}
section.flow .bringItems li small{
	font-size: 85%;
	font-weight: normal;
}
section.flow .bringItems li{
	margin-bottom: .75em;
}

/* =============================================================
各店舗ページ
================================================================ */
/*見出し*/
body.shopsrch section.main h2{
}

/* 新着情報 section#news
---------------------------------------------------------------- */
/*記事一覧*/
ul.entryList{
	list-style-type: none;
	max-width: 1040px;
	margin: 0 auto;
	padding-left: 0;
}
ul.entryList li{
	margin-bottom: 20px;
}
ul.entryList li a{
	display: block;
	background-color: var(--white);
	color: var(--dark-brown);
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	box-shadow: 0px 1px 5px rgba(var(--black-rgb),.15);
}
ul.entryList li > a{
	display: block;
	overflow: hidden;
	position: relative;
	background-color: #FFF;
	line-height: 1;
	padding: 15px 10px;
}
ul.entryList li > a figure.entryImage{
	width: 33%;
	min-height: 78px;
	float: left;
	margin-right: 10px;
}
ul.entryList li > a figure.entryImage img{
	max-width: 100%;
	height: auto;
	border:1px solid #EEE;
	box-sizing: border-box;
}
ul.entryList li > a span.entryTitle{
	word-break:break-all;
	display: block;
	width: 100%;
	color: #333;
	font-size: 81%;/*13px相当*/
	font-weight: bold;
	line-height: 1.5;
}
ul.entryList li > a time.entryDate{
	position: absolute;
	bottom: 15px;
	right: 10px;
	color: #999;
	font-size:75%;/*12px相当*/
}

/* 店舗詳細 section#shopinfo
---------------------------------------------------------------- */
/*店舗情報 ------------------------------ */
section#shopinfo address{
	max-width: 1040px;
	margin: 0 auto;
}
/*定義リスト*/
section#shopinfo address dl{
	display: flex;
	flex-wrap: wrap;
}
section#shopinfo address dl > *{
	border-bottom: 1px solid var(--light-brown);
	padding-top:30px;
	padding-bottom:30px;
}
/*定義リスト-内容*/
section#shopinfo address dl dt{
	color: var(--shima-orange);
	font-weight: bold;
}
/*地図を開くリンクボタン*/
section#shopinfo address dl dd a.mapBtn{
	display: block;
	background-color: var(--white);
	color: var(--orange-brown);
	line-height: 1;
	border: 1px solid var(--orange-brown);
	border-radius: 5px;
	padding:10px;
}
section#shopinfo address dl dd a.mapBtn:hover,
section#shopinfo address dl dd a.mapBtn:focus{
	background-color: var(--creamy-beige);
	color: var(--orange-brown);
	transition: .2s;
}

/*アクセス方法 ------------------------------ */
/*共通*/
section#shopinfo .access > *{
	max-width: 1040px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/*見出し*/
section#shopinfo .access h3{
	font-weight: bold;
}
section#shopinfo .access h4{
	font-weight: bold;
	color: var(--shima-orange);
	border-left: 4px solid var(--shima-orange);
	line-height: 1.5;
	margin-top:2em;
	margin-bottom:1em;
	padding-left:.5em;
}
/*テーブル*/
section#shopinfo .access table tr th,
section#shopinfo .access table tr td{
	border:2px solid var(--light-brown);
	padding:.4em 1em;
}
section#shopinfo .access table tr th{
	background-color: var(--light-brown);
}
section#shopinfo .access table tr td{
	background-color: var(--white);
}


/* =============================================================
各コースページ /lesson/course/
================================================================ */
/*全体*/
body.course{
}

/* メインビジュアル＋見出しh1
---------------------------------------------------------------- */
/*全体*/
body.course .lessonWrapper .mainVisual{
}

/* 大人向け・こども向け切り替えリンク
---------------------------------------------------------------- */
body.course .switchAge{
}
body.course .switchAge a{
	display: block;
	background-color: var(--light-brown);
	color: var(--dark-brown);
	text-align: center;
	line-height: 2.4;
}
body.course .switchAge a:hover,
body.course .switchAge a:focus{
	background-color: var(--dark-brown);
	color: var(--white);
	transition: .2s;
	text-decoration: none;
}

/* コース説明文
---------------------------------------------------------------- */
body.course section.summary{
	padding: 50px 20px;
}

/* レッスン内容・料金
---------------------------------------------------------------- */
/*全体*/
body.course section.crsDetail{
	max-width: 1040px;
	margin:0 auto;
	box-sizing: content-box;
}
/*スクールとサロンの違い*/
body.course section.crsDetail .school-salon-diff{
	margin-top: 0;
}
/*見出し*/
body.course section.crsDetail h2{
}
/*注釈リスト*/
body.course section.crsDetail p.note,
body.course section.crsDetail ul.notes{
	font-size: 75%;
	margin-top: 20px;
}
/*スクール・サロン全体*/
body.course section.crsDetail .crsDetail-sc,
body.course section.crsDetail .crsDetail-sa{
	background-color: var(--light-brown);
}
body.course section.crsDetail .crsDetail-sc > .btnBlock:last-child,
body.course section.crsDetail .crsDetail-sa > .btnBlock:last-child{
	margin-bottom: 0;
}
/*グレードなし
------------------------------------------------- */
/*全体*/
body.course section.crsDetail div .noGrade{
	background-color: var(--white);
	border-radius: 5px;
}
/*料金表*/
.noGrade .class_fee{
	margin-top: 50px;
}
/*グレードあり
------------------------------------------------- */
/*全体*/
@media screen and (min-width: 920px){
	body.course section.crsDetail div .grade{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		row-gap: 0;
		grid-row-gap: 0;
		column-gap: 30px;
		grid-column-gap: 30px;
		align-items: start;
	}
}
/*各グレード*/
body.course section.crsDetail div .grade > div{
	background-color: var(--white);
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(var(--black-rgb),0.15);
}
/*各グレード-ヘッダー*/
.gradeHeader{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius:5px;
}
.gradeHeader.open{
	border-radius: 5px 5px 0 0;
}
.gradeHeader:hover,
.gradeHeader:focus{
	cursor: pointer;
	background-color: var(--dark-brown-o20);
	transition: .2s;
}
/*テキスト部分*/
.gradeHeader .gh_text {
	width: 100%;
}
.gradeHeader .gh_text h4{/*級数*/
	line-height: 1;
	font-weight: bold;
}
.gradeHeader .gh_text p{/*級の説明文*/
	line-height: 1;
	margin-top: 1em;
}
/*開閉ボタン*/
.gradeHeader .gh_btn{
	position: relative;
	width:1em;
	height:1em;
	/*	color: rgb(0,0,0,0);*/
	color: transparent;
	white-space: nowrap;
	overflow: hidden;
}
.gradeHeader .gh_btn:after,
.gradeHeader .gh_btn:before{
	position: absolute;
	top:0;
	left:.5em;
	content:'';
	display:block;
	width:1px;
	height:100%;
	background-color: var(--dark-brown);
}
.gradeHeader.open .gh_btn:after{
	height: 0;
}
.gradeHeader .gh_btn:before{
	transform:rotate(90deg);
}
/*各グレード-コンテンツ*/
.gradeBody{
	display: none;
	background-color: var(--white);
	border-radius: 0 0 5px 5px;
}
/*レッスン内容・料金共通
------------------------------------------------- */
/*見出し*/
.class_text h4,
.class_fee h4{
	font-weight: bold;
	line-height: 1;
	border-bottom: 2px solid var(--light-brown);
	margin-bottom: 1em;
	padding-bottom: .75em;
}
.class_text h4:not(:first-of-type),
.class_fee h4:not(:first-of-type){
	margin-top: 50px;
}
/*レッスン内容
------------------------------------------------- */
/*全体*/
.class_text{
	margin-bottom: 20px;
}
.class_text > *:last-child{
	margin-bottom: 0;
}
/*見出し*/
.class_text > h5{
	font-size: 87%;
	font-weight: bold;
	margin-bottom: .5em;
}
.class_text > h5:not(:first-of-type){
	margin-top: 1.5em;
}
/*段落*/
.class_text > p:not(.note){
	font-size: 87%;
	line-height: 1.6;
	margin-bottom: .25em;
}
.class_text > p:not(.note) + ul:not(.notes){
	margin-top: 1em;
}
/*リスト*/
.class_text > ul:not(.notes),
.class_text > ol:not(.notes){
	font-size: 87%;
	margin-left: 0;
	padding-left: 1.25em;
}
.class_text > ul:not(.notes) li,
.class_text > ol:not(.notes) li{
	line-height: 1.8;
	margin-bottom: .25em;
}
.class_text > ul:not(.notes){ list-style-type: disc; }
.class_text > ol:not(.notes){ list-style-type: decimal; }
/*定義リスト*/
.class_text > dl{
	font-size: 87%;
	border:1px solid var(--light-brown);
	border-radius: 5px;
	margin-bottom: 20px;
}
.class_text > dl dt{
	background-color: var(--light-brown);
	color: var(--dark-brown);
	line-height: 1;
	padding:.5em 1em;
}
.class_text > dl dd{
	padding:.5em 1em;
}
.class_text > p + dl{
	margin-top: 1em;
}
/*定義リストの中身*/
.class_text > dl dd ul{
	padding-left: 1em;
	margin-bottom: 0;
}
.class_text > dl dd ul:not(:first-child){
	margin-top: .5em;
}

/*料金表
------------------------------------------------- */
/*見出し*/
.class_fee h5{
	font-size: 87%;
	font-weight: bold;
	margin-bottom: .5em;
}
.class_fee h5:not(:first-of-type){
	margin-top:20px;
}
/*段落*/
.class_fee p{
	font-size: 87%;
}
.class_fee p + .table-responsive{
	margin-top: 15px;
}
/*テーブル-レスポンシブ設定*/
.class_fee .table-responsive.colNum1{
	max-width: 320px;
}
.class_fee .table-responsive.colNum2{
	max-width: 460px;
}
/*テーブル-本体*/
.class_fee table.table{
	line-height: 1.6;
}
.class_fee table.table th,
.class_fee table.table td{
	text-align: center;
	vertical-align: middle;
}
/*テーブル-サロン時間帯用*/
.class_fee table.table tr td span{
	display: block;
}
.class_fee table.table tr td span:first-of-type{
	font-weight: bold;
}
/*テーブル-入会金半額表示用*/
.class_fee table.table tr td del{
	display: block;
}
.class_fee table.table tr td ins{
	display: block;
	color:var(--vivid-red);
	text-decoration: none;
}

/* レッスン風景動画
---------------------------------------------------------------- */
/*全体*/
section.movie{
	max-width: 510px;
	padding:0 20px;
	box-sizing: content-box;
}
/*見出し*/
section.movie h2{
	font-weight: bold;
	max-width: 510px;
	margin:0 auto;
}
/*動画*/
section.movie > div{
	margin-top:30px;
}
/*サムネイル画像*/
section.movie > div a img{
	width: 100%;
	height: auto;
}

/* {{youtube-for-pc}}〜{{/youtube-for-pc}}
YouTube動画のサムネイルリンク
------------------------------*/
.embed-responsive.youtube-for-pc {
	color: transparent;/*一瞬URLが見えてしまうのを防ぐ*/
}
.embed-responsive.youtube-for-pc > a[href*=youtu]:before{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	color: #FFF;
	content: "\e072";
	font:normal 400 60px/1 "Glyphicons Halflings";
	filter: drop-shadow(0 0 10px #000);
	opacity: 1;
	transition: .1s;
}
.embed-responsive.youtube-for-pc > a[href*=youtu]:hover:before,
.embed-responsive.youtube-for-pc > a[href*=youtu]:focus:before{
	opacity: 0;
	transition: .1s;
}


/* =============================================================
大人・こどもブランディングページ
- /lesson/about/adult.html
- /lesson/about/kids.html
================================================================ */

/*ブランディング動画
---------------------------------------------------------------- */
/*全体*/
section.movie-branding{
	background-color: var(--creamy-calm-green);
}
/*見出し*/
section.movie-branding h2{
	font-weight: bold;
	margin-bottom: 1em;
}
section.movie-branding h2 + p{
	margin-bottom: 1em;
}
/*動画部分*/
section.movie-branding .flex{
	max-width: 610px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}
section.movie-branding .flex > div{
	font-size: 87%;
	width:290px;
}
section.movie-branding .flex > div h3{
	font-weight: bold;
	margin-bottom: 0.5em;
}