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

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

article section:nth-of-type(2n)
{
	background-color: transparent;
}

section h2
{
	padding-left: 40px;
   	border-left: solid 10px var(--base-color01);
}

section .head_img
{
	background-color: var(--body-bg-color);
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
}

section .body_area
{
	display: flex;
	column-gap: 40px;
	align-items: flex-start;
}

section .body_area .photo
{
	flex-shrink: 0;
	position: sticky;
	top: 20px;
	bottom: auto;
}

section .body_area > .text h4
{
	margin-bottom: 0px;
}

section .body_area .box
{
	background-color: var(--body-bg-color);
	padding: 20px;
	margin-top: 20px;
}

section .body_area .text ul
{
	padding: 0px;
	margin: 0px;
}

section .body_area .text ul li
{
	line-height: 1.2;
	margin-bottom: 10px;
	list-style: none;
	position: relative;
	padding-left: 1em;
	text-indent: -1.2em;
	vertical-align: top;
}

section .body_area .text ul li::before
{
	font-family: "Font Awesome 6 Free";
	content: '\f0c8';
	font-weight: 900;
	margin-right: 10px;
	font-size: 10px;

}


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

}



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



}

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

section .body_area .photo
{
	width: calc(100vw * (750 / 1400));
}
}

/* タブレット以下 */
@media screen and (max-width: 1199px) 
{
section .body_area .photo
{
	width: 48%;
}
}

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

}

/* 縦置きの場合 */
@media (max-width: 1199px) and (orientation: portrait)
{
section h2
{
	padding-left: 20px;
}

}

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


}


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

section h2
{
	padding-left: 20px;
}
section .body_area
{
	column-gap: 20px;
}

}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{
section .body_area
{
	display: block;
}

section .body_area .photo
{
	margin-bottom: 20px;
	width: auto;
	position:static;
}


}