/* CSS Document */

#note dl
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;

}

#note dl dt
{
	margin: 0px;
	list-style-type: none;
	color: #e60012;
	border: 3px solid #e60012;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	position: relative;
	background-color: #FFF;
}

#note dl dt:nth-of-type(2)
{
	color: #006529;
	border: 3px solid #006529;
}

#note dl dt:nth-of-type(3)
{
	color: #0b308e;
	border: 3px solid #0b308e;
}

#note dl dt:nth-of-type(4)
{
	color: #7f1084;
	border: 3px solid #7f1084;
}


#note dl dt h3
{
	font-family: "Zen Antique", serif;
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 20px;
	text-align: justify;
}

#note dl dt a
{
	color: #6CF;
	text-decoration: underline;
	padding-right: 4px;
	padding-left: 4px;
}

#note dl dt a:before
{
	font-family: "Font Awesome 6 Free";
	content: '\f14c';
	font-weight: 900;
	margin-right: 0px;
}

#note dl dt p:last-child
{
	margin: 0px;
}

#note dl dt .img
{
	margin: 0px;
	clear: none;
	float: none;
	position: absolute;
	right: 0px;
	bottom: -4px;
}

#note dl dt:nth-of-type(1) .img
{
	right: 10px;
	bottom: 10px;
}

#note dl dt:nth-of-type(2) p:nth-of-type(1)
{
	margin-bottom: 50px;
}

#note dl dt:nth-of-type(2) .img
{
	right: 10px;
}

#note dl dt:nth-of-type(3) p:nth-of-type(2)
{
	width: 54%;
}


#note dl dt:nth-of-type(4) h3
{
	font-size: 34px;
	line-height: 1.2;
}

#note dl dt:nth-of-type(4) p
{
	width: 64%;
}

#contact_tel h2:before
{
	content: '\f2a0';
}

#contact_tel .tel_box
{
	color: var(--base-color01);
	max-width: 910px;
	padding: 20px;
	border: 6px solid var(--base-color01);
	position: relative;
	margin-right: auto;
	margin-left: auto;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	margin-bottom: 30px;
	background-color: #FFF;
}

#contact_tel .tel_box h3
{
	font-family: "Zen Antique", serif;
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 20px;
}

#contact_tel .tel_box .img
{
	position: absolute;
	right: 20px;
	bottom: -2px;
}

#contact_tel .tel_box  a
{
	font-size: 80px;
	line-height: 1;
	display: block;
	color: var(--tel-color);
	font-weight: bold;
	pointer-events:none;
}

#contact_tel .tel_box small
{
	font-size: 32px;
	line-height: 1.2;
	display: block;
	font-weight: bold;
}


@media screen and (min-width:1920px)
{

}

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


}



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

#note dl dt h3,
#note dl dt:nth-of-type(4) h3
{
	font-size: 28px;
	line-height: 1.2;
}


#note dl dt:nth-of-type(1) .img
{
	width: 40%;
}

#note dl dt:nth-of-type(2) p:nth-of-type(1)
{
	margin-bottom: 1em;
}

#note dl dt:nth-of-type(2) p:nth-of-type(2)
{
	width: 60%;
}

#note dl dt:nth-of-type(2) .img
{
	width: 32%;
}

#note dl dt:nth-of-type(3) p:nth-of-type(2)
{
	width: 60%;
}


#note dl dt:nth-of-type(3) .img
{
	width: 36%;
	bottom: 30px;
}

#note dl dt:nth-of-type(4) .img
{
	width: 32%;
}

#note dl dt:nth-of-type(4) p
{
	width: 66%;
}




}


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

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

#note dl dt .img
{
	position: relative;
	left: auto !important;
	top: auto !important;
	right: auto !important;
	bottom: auto  !important;
	margin-bottom: 20px;
	text-align: center !important;
	width: auto !important;
}

#note dl dt p
{
	width: auto !important;
}

#note dl dt:nth-of-type(1) ul
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e60012;
	padding-top: 20px;
}

#contact_tel .tel_box .img
{
	width: 40%;
	right: 10px;
	bottom: -2px;
}

#contact_tel .tel_box h3
{
	font-size: calc(100vw * (30 / 768));
	line-height: 1.2;
	margin-bottom: 0px;
}
#contact_tel .tel_box a
{
	font-size: calc(100vw * (60 / 768));
	line-height: 1.2;

}

#contact_tel .tel_box small
{
	font-size: calc(100vw * (24 / 768));
	line-height: 1.2;

}


}


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

#note dl dt h3,
#note dl dt:nth-of-type(4) h3
{
	font-size: calc(100vw * (30 / 768));
	line-height: 1.2;
}

#note dl dt:nth-of-type(1) ul
{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e60012;
	padding-top: 20px;
}


#note dl dt .img
{
	position: relative;
	left: auto !important;
	top: auto !important;
	right: auto !important;
	bottom: auto  !important;
	margin-bottom: 20px;
	text-align: center !important;
	width: auto !important;
}

#note dl dt p
{
	width: auto !important;
}

#contact_tel .tel_box .img
{
	width: 40%;
	right: 10px;
	bottom: -2px;
}

#contact_tel .tel_box h3
{
	font-size: calc(100vw * (30 / 768));
	line-height: 1.2;
	margin-bottom: 0px;
}
#contact_tel .tel_box a
{
	font-size: calc(100vw * (60 / 768));
	line-height: 1.2;

}

#contact_tel .tel_box small
{
	font-size: calc(100vw * (24 / 768));
	line-height: 1.2;

}


}

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

#note dl dt h3,
#note dl dt:nth-of-type(4) h3
{
	font-size: calc(100vw * (50 / 768));
	line-height: 1.2;
}


#note dl
{
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}

#note dl dt
{
	padding: 10px;
}



#contact_tel .tel_box
{
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	padding: 10px;
}

#contact_tel .tel_box .img
{
	width: 30%;
}


}