@charset 'UTF-8';
/* =====================================
弦交換プラン
/repair/chgstr/
========================================*/

/*色定義
----------------------------------------*/
:root {
	--chgstr-orange: #EB5405;
	--chgstr-deluxe-dark: #253;
	--chgstr-deluxe-base: #083;
	--chgstr-deluxe-pale: #EBF4EB;
	--chgstr-economy-dark: #158;
	--chgstr-economy-base: #217ABE;
	--chgstr-economy-pale: #E9EEF8;
	--chgstr-standard-dark: #A00;
	--chgstr-standard-base: #CD3844;
	--chgstr-standard-pale: #FDEDE3;
}

/*プラン用カラー設定class
----------------------------------------*/
/*背景色（濃）*/
.bg-economy-base{ background-color: var(--chgstr-economy-base); }
.bg-standard-base{ background-color: var(--chgstr-standard-base); }
.bg-deluxe-base{ background-color: var(--chgstr-deluxe-base); }
/*背景色（淡）*/
.bg-economy-pale{ background-color: var(--chgstr-economy-pale); }
.bg-standard-pale{ background-color: var(--chgstr-standard-pale); }
.bg-deluxe-pale{ background-color: var(--chgstr-deluxe-pale); }
/*文字色*/
.text-economy{ color: var(--chgstr-economy-dark); }
.text-standard{ color: var(--chgstr-standard-dark); }
.text-deluxe{ color: var(--chgstr-deluxe-dark); }

/*セクション共通設定
----------------------------------------*/
/*上下余白*/
#chgstr > section > .container-fluid{
	padding: 80px 0;
}
#content section{
	margin-bottom: initial;
}

/*背景塗りつぶし用(.bg-fill-xxx)*/
#chgstr .container-fluid{
	background-color: var(--white);/*デフォルトは白*/
}
#chgstr .container-fluid.bg-fill-color{
	background-color: var(--in-all-whitish);
}
#chgstr .container-fluid.bg-fill-mono{
	background-color: var(--pale-gray);
}

/*セクション区切り用(.hr-shadow)*/
#chgstr .container-fluid.hr-shadow{
	box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.05);
}

/*共通設定
----------------------------------------*/
/*文字色を黒に*/
#chgstr h3.headlines{
	color: var(--black);
}
/*ちょっとリッチな見出し*/
#chgstr .headlines.hl-rich{
	display: flex;
	align-items: center;
	justify-content: center;
}
#chgstr .headlines.hl-rich span{
	display: inline-block;
	padding-bottom: 15px;
	border-bottom: 8px solid var(--in-all-light);
}

/*ヘッダー
#chgstr-header
----------------------------------------*/
/*メインバナー*/
@media screen and (min-width: 641px){
	/*PC用バナーを角丸にする*/
	#chgstr-header img{
		border-radius: 20px;
	}
}
@media screen and (max-width: 640px){
	/*スマホ用バナーの左右余白を無くす*/
	#chgstr-header .container{
		padding-left: 0;
		padding-right: 0;
	}
}
/*リード文*/
#chgstr-header h2 + p{
	color: var(--black);
	font-weight: 700;
	line-height: 1.5;
	margin-top: 45px;
}
#chgstr-header h2 + p > span{
	display: inline-block;
}
@media screen and (min-width: 641px){ #chgstr-header h2 + p{ font-size: var(--32px); } }
@media screen and (max-width: 640px){ #chgstr-header h2 + p{ font-size: var(--24px); } }

/*弦交換プランとは？
#chgstr-about
----------------------------------------*/
.summary p{
	text-align: center;
	word-break: keep-all;
}

/*こんな人におすすめ！
#chgstr-recommend
----------------------------------------*/

/*絵文字＋吹き出しリスト全体*/
ul.emojiBubbles{
	display: grid;
	list-style-type: none;
	padding-left: 0;
}
@media screen and (min-width:1200px){
	ul.emojiBubbles{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width:1199px){
	ul.emojiBubbles{
		grid-template-rows: repeat(3, 1fr);
		gap: 30px;
	}
}
/*リスト1個分のサイズを設定*/
ul.emojiBubbles li{
	position: relative;
	aspect-ratio: 9 / 5;
	width: 100%;
	max-width: 360px;
	max-height: 200px;
	margin: 0 auto 45px;
}
/*吹き出し（SVG画像）*/
.bubble{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	z-index: 1;
}
/*絵文字*/
.emoji{
	display: block;
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 100%;
	height: 56px;
	font-size: 56px;
	font-family: 'Noto Color Emoji';
	line-height: 1;
	text-align: center;
	z-index: 2;
}
/*テキスト*/
.voice{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}
.voice p{
	color: var(--black);
	font-weight: 700;
	text-align: center;
	line-height: 1;
}

/*3つの料金プラン
#chgstr-plans
----------------------------------------*/

/*プランごとのカード
--------------------*/
/*全体*/
.chgstr-plan{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 30px;
	height: 100%;
	border-radius: 10px;
	padding-bottom: 30px;
}
@media screen and (max-width:767px){
	.chgstr-plan{
		max-width: 470px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width:530px) and (min-width:340px){
	.chgstr-plan{
		margin-left: 15px;
		margin-right: 15px;
	}
}

/*プラン名*/
h4.chgstr-plan-name{
	color:var(--white);
	font-size: var(--18px);
	font-weight: 700;
	text-align: center;
	padding: 15px;
	border-radius: 10px 10px 0px 0px;
}

/*料金情報*/
.chgstr-plan-value p{
	color: var(--black);
	line-height: 1;
	text-align: center;
}
.chgstr-plan-value .num{
	font-family: 'Titillium Web', sans-serif;
}
/*料金情報：アプリ会員料金*/
.chgstr-plan-value .member{
	margin-bottom: 15px;
}
.chgstr-plan-value .member > span:first-child{
	display: block;
	margin-bottom: .5em;
}
.chgstr-plan-value .member > span:last-child{
	text-indent: 1em;
	font-weight: 700;
}
.chgstr-plan-value .member > span:last-child .num{
	font-size: 400%;
	letter-spacing: -.02em;
}
.chgstr-plan-value .member > span:last-child .unit{
	font-size: 200%;
	margin-left: .1em;
}
/*料金情報：一般料金*/
.chgstr-plan-value .general{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5em;
}
.chgstr-plan-value .general > span:first-child{
	font-weight: 400;
}
.chgstr-plan-value .general > span:last-child .num{
	font-size: 110%;
}

/*実施するメニュー*/
ul.chgstr-plan-menu{
	display: grid;
	grid-gap: 10px;
	width: 100%;
	max-width: 300px;
	font-weight: 700;
	list-style-type: none;
	padding: 0 20px;
	margin: 0 auto;
}
ul.chgstr-plan-menu li{
	background-color: var(--white);
	color: var(--black);
	text-align: center;
	padding: 10px;
}
ul.chgstr-plan-menu li.additional{
	border: 3px solid var(--in-all-light);
}

/*注釈
--------------------*/
#chgstr-plans h3 + .flex + .note{
	margin-top: 30px;
}
@media screen and (max-width:530px){
	#chgstr-plans h3 + .flex + .note{
		margin-left: 15px;
		margin-right: 15px;
	}
}

/*各メニューについて
#chgstr-menus
----------------------------------------*/
/*シャドウが切れないようにする*/
#chgstr-menus .flex{
	overflow: initial;
}

/*メニューごとのカード
--------------------*/
/*全体*/
.chgstr-menu{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 360px;
	height: 100%;
	background-color: var(--white);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	margin: 0 auto;
	padding: 20px 20px 120px;
	gap: 20px;
}
@media screen and (max-width:390px) and (min-width:340px){
	.chgstr-menu{
		margin-left: 15px;
		margin-right: 15px;
	}
}

/*メニュー名*/
.chgstr-menu h4{
	color: var(--black);
	order: 2;
}
/*説明文*/
.chgstr-menu p{
	order: 3;
}
/*イメージ写真*/
.chgstr-menu figure{
	display: flex;
	flex-direction: column;
	gap: 20px;
	order: 1;
}
.chgstr-menu figure img{
	border-radius: 14px;
}
/*このメニューを実施するプラン*/
.chgstr-menu .apply-plans{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}
.chgstr-menu .apply-plans h5{
	font-size: var(--14px);
	text-align: center;
	border-top: 1px solid var(--bs-default-border);
	padding: 1em 0;
}
.chgstr-menu .apply-plans ul{
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style-type: none;
	margin-bottom: 20px;
	padding-left: 0;
}
.chgstr-menu .apply-plans ul li{
	font-size: var(--12px);
	font-weight: 700;
	padding: 8px 10px;
}
@media screen and (max-width:360px){
	.chgstr-menu .apply-plans ul li{
		padding: 6px;
	}
}

/*ご利用の流れ
#chgstr-flow
----------------------------------------*/

/*対象楽器・料金表
#chgstr-price
----------------------------------------*/

/*部門別ブロック
--------------------*/
@media screen and (max-width:540px){
	.instBlock{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*部門名
--------------------*/
/*見出し（ギター・弦楽器）*/
#chgstr-price .instBlock > h4{
	font-size: var(--24px);
	margin-bottom: 45px;
}
/*見出し直後のテキスト*/
#chgstr-price .instBlock > h4 + p{
	margin-bottom: 30px;
}

/*楽器ごとの料金表
--------------------*/
/*全体*/
.chgstr-price_values{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.chgstr-price_values dl{
	display: flex;
	flex-flow: column;
	margin-bottom: 0;
}
/*プラン名*/
.chgstr-price_values dt{
	padding: 10px;
}
/*金額*/
.chgstr-price_values dd{
	display: flex;
	flex-wrap: nowrap;
	line-height: 1.4;
	padding: 10px;
}
.chgstr-price_values dd span:first-child{
	font-size: var(--14px);
}
.chgstr-price_values dd span:last-child{
	font-weight: bold;
	text-align: right;
}
.chgstr-price_values dd.member span:last-child{
	color: var(--emphasis-red);
}
@media screen and (min-width: 768px){
	.chgstr-price_values dd{
		justify-content: space-between;
	}
}
@media screen and (max-width: 767px){
	.chgstr-price_values dd{
		flex-direction: column;
	}
}
/*枠線をつける*/
.chgstr-price_values dl:not(:last-of-type){
	border-right: 1px solid var(--bs-default-border);
}
.chgstr-price_values dd:not(:last-of-type){
	border-bottom: 1px solid var(--bs-default-border);
}
/*実施のないプラン*/
.chgstr-price_values dd.exclude_plan{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*Dept内バリエーションの区切りを見やすくする*/
#chgstr-price .panel-group-chunk .panel-default .panel-collapse > .panel-heading{
	border-top-width: 2px;
}

/*ご案内事項
--------------------*/
#chgstr-price .panel-warning{
	margin-top: 60px;
}


/*実施店舗一覧
#chgstr-shop
----------------------------------------*/
/*メッセージ*/
#chgstr-shop h3 + p{
	font-size: var(--18px);
	margin-bottom: 45px;
}
/*エリア名*/
.panel-group-chunk .panel .panel-heading h4{
	font-weight: normal;
}


/*利用上の注意点
#chgstr-notice
----------------------------------------*/
#chgstr-notice ul{
	padding-left: 1.5em;
}
#chgstr-notice ul li + li{
	margin-top: .75em;
}