#h1_area
{
	background-image: url(images/h1_bg_pc.jpg);
}

/* 縦置きの場合 */
@media (orientation: portrait)
{
#h1_area
{
	background-image: url(images/h1_bg_sp.jpg);
}
}

section h2,
section .text p,
section .tel_box,
section .tel_box p
{
	text-align: center;
}

section .text
{
	margin-bottom: 30px;
}

section .tel_box a
{
	font-size: 48px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	background-color: var(--link-color);
	pointer-events: none;
	display: inline-block;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 40px;
	margin-bottom: 10px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	position: relative;

}

section .tel_box a::before
{
	font-family: "Font Awesome 6 Free";
	content: '\f2a0';
	font-weight: 900;
	margin-right: 20px;
}


/* 画面が2画面分になったとき */
@media screen and (min-width:1920px)
{

}



/* PCのみ設定  768 以上*/
@media screen and (min-width:1200px)
{



}

/* デフォルトサイズ以下 */
@media screen and (max-width: 1399px) 
{


}

/* タブレット以下 */
@media screen and (max-width: 1199px) 
{



}

/* 横置きの場合 */
@media (max-width: 1199px) and (orientation: landscape)
{
}

/* 縦置きの場合 */
@media (max-width: 1199px) and (orientation: portrait)
{


}



/* タブレットレイアウト : 768 px ～ 959 px */
@media screen and (min-width:768px) and (max-width:1199px)
{


}


/* スマホ設定  767 以下*/
@media screen and (max-width:767px)
{

section .comment_box .body
{
    column-gap: 20px;
}


}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{

section .text p
{
	text-align: justify;
}

section .tel_box a
{
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	pointer-events: auto;
	display: inline-block;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;

}

section .tel_box a::before
{
	margin-right: 10px;
}

}