@charset "utf-8";
#TESTDISPLAY{
	font-size: 250%;
	color: #123456;
}
@media (max-width: 449px)
{
	#TESTDISPLAY{
		background-color: aliceblue;
	}
}
@media (min-width: 450px) and (max-width: 767px)
{
	#TESTDISPLAY{
		background-color: greenyellow;
	}
}
@media (min-width: 768px)
{
	#TESTDISPLAY{
		background-color: peachpuff;
	}
}
/*
最大449pxで読み込み
max-width: 449px
最小450pxかつ最大768pxで読み込み
min-width: 420px and max-width: 768px
最小769pxで読み込み
min-width: 768px
@media (max-width: 449px)
{}
@media (min-width: 450px) and (max-width: 767px)
{}
@media (min-width: 768px)
{}
*/

/* デバッグCopilotさん提供
* {
    outline: 1px solid rgba(255,0,0,0.2);
}
*/

/* ↓Copilotさん提供 */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 400;
}
/* 背景固定は擬似要素でやる */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url(../img/topBGI_2.jpg); /* ←ピアノ写真 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
/* ↑Copilotさん提供 */



/* スマホ想定 */
@media (max-width: 449px)
{
	h1
	{
		width: 100%;
		font-size: 28px;
		color: rgba(217, 149, 24, 0.5);
	}
	h1 a
	{
		text-decoration: none;
		background-color:rgba(255, 255, 255, 0.5);
		color: rgba(53, 45, 5, 0.79);
	}

	#h1Hide{
		display: inline;
	}

		.pianoSchool{
		text-align: right;
		font-size: 22px;
	}
	.catchCopy{
		max-width: 400px;
		width: 90%;
		min-width: 300px;
		margin: 5px auto;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		border-radius: 10px;
		background-color: #fff;
	}
	.phrase{
		font-size: 18px;
	}

	#conceptBox{
		font-size: 20px;
		font-weight: bold;
		text-align: center;
	}

	header{
		max-width: 400px;
		width: 90%;
		min-width: 300px;
		margin: 8px auto 5px auto;
		background-color:rgba(255, 255, 255, 0.7);
		border-radius: 10px;
		padding: 7px;
	}
	header h2{
		font-size: 20px;
		border-radius: 10px;
	}
	article h2{
		font-size: 20px;
		border-radius: 10px;
	}
	#shortcutLi{
		margin-left: -28px;
	}
	#shortcutLi li{
		list-style-type: none;
	}
	h3{
		padding-left: 40px;
	}
	p{
		padding-left: 12px;
	}
	#contact h3{
		padding-left: 0px;
	}

	div.is-auth{
		margin: 3px auto 3px auto;
		border: 1px solid #123456;
		border-radius: 10px;
		background-color:rgba(255, 255, 255, 0.99);
		padding: 2px;
		text-align: center;
		color: #333;
		font-size: 14px;
	}
	div.is-auth a{
		color: #333;
		text-decoration: underline;
	}

	article{
		max-width: 400px;
		width: 90%;
		min-width: 300px;
		margin: 15px auto 5px auto;
		background-color:rgba(255, 255, 255, 0.7);
		border-radius: 10px;
		padding: 7px;
	}
	div.updateTime{
		font-size: 18px;
		text-align: right;
	}
	article div.is-owner{
		margin: 3px auto 3px auto;
		border: 1px solid rgba(53, 45, 5, 0.79);
		border-radius: 10px;
		background-color:rgba(255, 255, 255, 0.30);
		padding: 3px;
		text-align: center;
		color: #333;
		font-size: 12px;
	}
	article div.is-owner p{
		margin: 0;
		padding: 0;
	}
	article div.is-owner p a{
		margin: 2px 0 2px 0;
		padding: 0;
		text-decoration: underline;
	}
	article a{
		color: #6666dd;
		text-decoration: underline;
	}
	.part1,
	.part2{
		font-size: 18px;
	}
	p.articleDetail{
		text-align: right;
		font-size: 18px;
	}
	p.articleDetail a{
		font-weight: bold;
		color: #6666dd;
		text-decoration: underline;
	}
	div.aticleImg{
		width: 100%;
		text-align: center;
	}
	div.aticleImg img{
		display: inline;
	}
	div.pagination{
		max-width: 400px;
		width: 90%;
		min-width: 300px;
		margin: 3px auto 3px auto;
		border-radius: 15px;
		background-color:rgba(192, 192, 192, 0.95);
		padding: 2px;
		text-align: center;
		font-size: 18px;
	}
	div.pagination a{
		color: #fdfdfd;
	}
	#pageingSeparate{
		display: inline;
	}


	/* Youtubeのレスポンシブ化 Copilotより */
	.youtube-wrap {
		position: relative;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		aspect-ratio: 16 / 9;
	}
	.youtube-wrap iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	#returnArticleList{
		text-align: right;
	}
	#contact{
		text-align: center;
	}
	#ccPict{
		float: left;
	}
	#ccName{
		font-size: 18px;
		font-weight: bold;
	}
	#yyPict{
		float: left;
	}
	#yyName{
		font-size: 32px;
		font-weight: bold;
	}
/*
	dl.fee{}
*/
	dl.fee dt{
		margin-left: 15px;
		padding: 5px;
	}
	dl.fee dd{
		margin-left: 25px;
		padding: 5px;
	}
	dl.fee dd li{
		list-style-type: none;
	}
	#official_line{
		display: inline;
		text-align: center;
		max-width: 200px;
	}
	#contact h3{
		margin-top: 8px;
	}

	/* 求人ページ */
	/*
	#jobCondition
	*/
	#jobCondition dl{
		width: 95%;
		margin: 0 auto 10px 25px;
	}
	#jobCondition dl dt{
		margin-left: 15px;
		padding: 5px;
		font-weight: 800;
		text-align: left;
	}
	#jobCondition dl dt:not(:first-of-type){
		margin-top: 15px;
	}
	#jobCondition dl dd{
		margin-left: 25px;
		padding: 5px;
	}
	footer {
		margin: 3px auto 3px auto;
		padding: 2px; 
		border-radius: 15px;
		width: 100%;
		background-color:rgba(192, 192, 192, 0.8);
		font-size: 10px;
		text-align: center;
	}

}

/******************************************************************************************/
/* 2026-05-02現在、タブレット用CSSがまだ入ってない！！ */
@media (min-width: 450px)
{
	h1
	{
		width: 100%;
		font-size: 36px;
		color: rgba(217, 149, 24, 0.5);
	}
	h1 a
	{
		text-decoration: none;
		background-color:rgba(255, 255, 255, 0.5);
		color: rgba(53, 45, 5, 0.79);
	}
		#h1Hide{
		display: none;
	}

		.pianoSchool{
		text-align: right;
		font-size: 16px;
	}
	.catchCopy{
		max-width: 800px;
		min-width: 400px;
		margin: 5px auto;
		text-align: center;
		font-size: 24px;
		font-weight: bold;
		border-radius: 10px;
		background-color: #fff;
	}
	.phrase{
		font-size: 22px;
	}

	.accentText{
		font-size: 120%;
		font-weight: bold;
	}
	#conceptBox{
		font-size: 24px;
		font-weight: bold;
		text-align: center;
	}

	header{
		max-width: 950px;
		min-width: 450px;
		margin: 8px auto 5px auto;
		background-color:rgba(255, 255, 255, 0.7);
		border-radius: 10px;
		padding: 7px;
	}
	header h2{
		font-size: 20px;
		border-radius: 10px;
	}


	h3{
		padding-left: 40px;
	}
	p{
		padding-left: 30px;
	}
	#contact h3{
		padding-left: 0px;
	}

	div.is-auth{
		margin: 3px auto 3px auto;
		border: 1px solid #123456;
		border-radius: 10px;
		background-color:rgba(255, 255, 255, 0.30);
		padding: 2px;
		text-align: center;
		color: #333;
		font-size: 14px;
	}
	div.is-auth a{
		color: #333;
		text-decoration: underline;
	}
	article{
		max-width: 950px;
		min-width: 450px;
		margin: 15px auto 5px auto;
		background-color:rgba(255, 255, 255, 0.7);
		border-radius: 10px;
		padding: 7px;
	}
	article h2{
		font-size: 26px;
		border-radius: 10px;
	}
	div.updateTime{
		font-size: 18px;
		text-align: right;
	}
	article div.is-owner{
		margin: 3px auto 3px auto;
		border: 1px solid rgba(53, 45, 5, 0.79);
		border-radius: 10px;
		background-color:rgba(255, 255, 255, 0.30);
		padding: 3px;
		text-align: center;
		color: #333;
		font-size: 12px;
	}
	article div.is-owner p{
		margin: 0;
		padding: 0;
	}
	article div.is-owner p a{
		margin: 2px 0 2px 0;
		padding: 0;
		text-decoration: underline;
	}
	article a{
		color: #6666dd;
		text-decoration: underline;
	}
	.part1,
	.part2{
		font-size: 18px;
	}
	p.articleDetail{
		text-align: right;
		font-size: 18px;
	}
	p.articleDetail a{
		font-weight: bold;
		color: #6666dd;
		text-decoration: underline;
	}
	div.aticleImg{
		width: 100%;
		text-align: center;
	}
	div.aticleImg img{
		display: inline;
	}
	div.pagination{
		max-width: 950px;
		min-width: 450px;
		margin: 3px auto 3px auto;
		border-radius: 15px;
		background-color:rgba(108, 108, 108, 0.8);
		padding: 2px;
		text-align: center;
		font-size: 18px;
	}
	div.pagination a{
		color: #fdfdfd;
	}
	#pageingSeparate{
		display: none;
	}


	/* Youtubeのレスポンシブ化 Copilotより */
	.youtube-wrap {
		position: relative;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		aspect-ratio: 16 / 9;
	}
	.youtube-wrap iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	#returnArticleList{
		text-align: right;
	}


	#contact{
		text-align: center;
	}

	#ccPict{
		float: left;
	}
	#ccName{
		font-size: 18px;
		font-weight: bold;
	}

	#yyPict{
		float: left;
	}
	#yyName{
		font-size: 32px;
		font-weight: bold;
	}

/*
	dl.fee{}
*/
	dl.fee dt{
		margin-left: 15px;
		padding: 5px;
	}
	dl.fee dd{
		margin-left: 25px;
		padding: 5px;
	}
	dl.fee dd li{
		list-style-type: none;
	}
	#official_line{
		display: inline;
		text-align: center;
		max-width: 200px;
	}
	#contact h3{
		margin-top: 8px;
	}

	/* 求人ページ */
	/*
	#jobCondition
	*/
	#jobCondition dl{
		width: 95%;
		margin: 0 auto 10px 25px;
	}
	#jobCondition dl dt{
		margin-left: 15px;
		padding: 5px;
		font-weight: 800;
		text-align: left;
		/*------------------------------------------------*/
	}
	#jobCondition dl dt:not(:first-of-type){
		margin-top: 15px;
	}
	#jobCondition dl dd{
		margin-left: 25px;
		padding: 5px;
	}

	footer {
		margin: 10px auto 5px auto;
		padding: 10px; 
		border-radius: 15px;
		width: 100%;
		background-color:rgba(192, 192, 192, 0.8);
		font-size: 10px;
		text-align: center;
	}

}
