/* text.css */
@charset "utf-8";


/* 見出しの設定
---------------------------------------- */
.section__head {
	width: 70%;
	margin: 100px auto;
}


/* strong部分の文字設定
---------------------------------------- */
strong {
	color: #3a4a92;
	font-size: 1.6rem;
	line-height: 50px;
}

/* catch__textの文字間 */
.catch__text {
	line-height: 30px;
}

/* strong部分の文字設定 SP表示
---------------------------------------- */
@media screen and (max-width:576px) { 
    /*　画面サイズが576pxまではここを読み込む　*/
	
	strong {
		font-size: 1.2rem;
	}
	
	.section__head--schedule {
		margin: 100px auto 40px;
	}
}



/* テキスト改行位置の調整（PC表示の時は改行をさせずスマホ画面の幅になったら改行位置を変更する指定）
---------------------------------------- */
.br__sp {
	display: none;
}

/* 改行位置の調整SP表示 */
@media screen and (max-width:576px) { 
    /*　画面サイズが576pxまではここを読み込む　*/
	
	.br__sp {
		display: inline;
	}
	
	.br__pc {
		display: none;
	}
}