/* CSS Document */

article section
{
	position: relative;
}

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

article section .body
{
	position: static;

}

article section .text
{
	width: 48%;
	margin-right: 0px;
	margin-left: auto;
	min-height: calc(50vw * (400 / 960));
}

article section:nth-of-type(2n) .text
{
	margin-right: auto;
	margin-left: 0px;
}

article section h2
{
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: var(--base-color01);
	padding-bottom: 10px;
	text-indent: -1.6em;
	padding-left: 1.6em;
}

article section h2:before
{
	color: var(--base-color01);
}

article section:nth-of-type(1) h2:before{	content: '\f059';}
article section:nth-of-type(2) h2:before{	content: '\f57e';}
article section:nth-of-type(3) h2:before{	content: '\f043';}
article section:nth-of-type(4) h2:before{	content: '\f1b9';}
article section:nth-of-type(5) h2:before{	content: '\f5bd';}
article section:nth-of-type(6) h2:before{	content: '\f494';}

article section .photo
{
	position: absolute;
	left: 0px;
	top: 60px;
}

article section:nth-of-type(2n) .photo
{
	right:0px;
	left: auto;
}

article section .photo img
{
	width: 49vw;
	height:auto;
}


article .next_link
{
	padding-top: 60px;
}

article .next_link a big:after
{
	font-family: "Font Awesome 6 Free";
	content: '\f1b9';
	font-weight: 900;
	margin-left: 10px;
}


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

}

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


}



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

article section .photo
{
	top: 40px;
}

}


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

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

article section .text
{
	margin: auto;
	width: auto;
}

article section .photo
{
	position: static;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

article section:nth-of-type(2n) .photo
{
	float: right;
	margin-right: 0px;
	margin-left: 20px;
}


}


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

article section .text
{
	margin: auto;
	width: auto;
}

article section .photo
{
	position: static;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

article section:nth-of-type(2n) .photo
{
	float: right;
	margin-right: 0px;
	margin-left: 20px;
}

.next_link
{
	padding-top: 0px !important;
}


}

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

article section h2
{
	font-size: 21px;
	line-height: 1.2;
}

article section .photo
{
	position: static;
	float: none;
	margin-right: auto;
	margin-bottom: 20px;
	text-align: center;
	clear: both;
	padding: 0px !important;
	margin-top: 0px;
	margin-left: 0px !important;
}

article section .photo img
{
	width: auto;
	height:auto;
}



}