@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	下層共通

//////////////////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

main > header {
	position: relative;
	padding: 8em 0;
	background-color: rgba(33,148,163,.1);
}

main > header .page_title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: 100%;
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
	font-size: 2.313em;
	color: #2194A3;
}

@media screen and (max-width: 767px){

main > header {
	padding: 4em 0;
}

main > header .page_title {
	font-size: 6.5vw;
}

}


/*------------------------------------------------------------------------------

	main

------------------------------------------------------------------------------*/

main > .site_column {
	margin-top: 5em;
}

@media screen and (max-width: 767px){

main > .site_column {
	margin-top: 3em;
}

}


/*	heading
------------------------------------------------------------------------------*/

main h2,
main h3,
main h4,
main h5,
main h6 {
	position: relative;
	margin-top: 2em;
	padding-top: 1em;
	font-weight: bold;
}

main h2 {
	margin-bottom: 1.5em;
	padding-bottom: .65em;
	border-bottom: 4px solid #2194A3;
	font-weight: bold;
	font-size: 1.688em;
}

main section:first-child h2 {
	margin-top: 0;
	padding-top: 0;
}

main h3 {
	padding: .25em 0 .25em .5em;
	border-left: .18em solid #29ABE2;
	color: #29ABE2;
	font-size: 1.250em;
}

main h4 {
	padding-top: 0;
	font-size: 1.125em;
}

@media screen and (max-width: 767px){

main h2 {
	margin-top: 5vw;
	font-size: 5vw;
}

main h3 {
	font-size: 4vw;
}

main h4 {
	font-size: 3.5vw;
}

}


/*	table
------------------------------------------------------------------------------*/

main table {
	margin: 1.5em 0;
}

main table th,
main table td {
	padding: 1em;
	border-top: 1px solid rgba(33,148,163,.5);
}

main table tr:last-child th,
main table tr:last-child td {
	border-bottom: 1px solid rgba(33,148,163,.5);
}


/* 黒矢印付ボタン
------------------------------------------------------------------------------*/

main .arrow_button {
	margin: 2em 0;
	text-align: center;
}

main .arrow_button a,
main .arrow_button em {
	position: relative;
	display: inline-block;
	width: 360px;
	padding: 1.5em;
	background-color: #29ABE2;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	line-height: 1;
	color: #FFF;
}

main .arrow_button em {
	background-color: #EEE;
	color: #CCC;
}

main .arrow_button a::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1.5em;
	width: .35em;
	content: url(../img/icon_arrow_w.svg);
}

@media screen and (max-width: 1000px){

main .arrow_button a {
	width: 40vw;
}

}

@media screen and (max-width: 767px){

main .arrow_button {
	margin: 1em 0;
}

main .arrow_button a {
	width: 100%;
}

}


/*------------------------------------------------------------------------------

	contents

------------------------------------------------------------------------------*/

main .photo {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

main .photo .text {
	width: 72%;
}

main .photo figure {
	width: 25%;
	margin: 0;
}

main .group {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

main .text {
	width: 47.5%;
}

main .text h3,
main .text h4 {
	margin-top: 0;
}

main .text table {
	margin: 0;
}

main .box {
	margin: 1em 0;
	padding: 1.5em 2em;
	border: 1px solid #CCC;
}

main .attention {
	position: relative;
	margin: 2em 0;
	padding: 3.5em 1.5em 1.5em;
	border: 2px solid rgba(217,0,0,1);
	color: rgba(217,0,0,1);
}

main .attention .title {
	position: absolute;
	left: -2px;
	top: -2px;
	padding: .5em 1em;
	background-color: rgba(217,0,0,1);
	font-weight: bold;
	color: #FFF;
}

@media screen and (max-width: 1200px){

main .photo {
	align-items: flex-start;
}

main .photo .text {
	width: 65%;
}

main .photo figure {
	width: 32%;
	margin-bottom: 1em;
}

}

@media screen and (max-width: 767px){

main .photo {
	flex-direction: group-reverse;
}

main .photo .text,
main .photo figure,
main .text {
	width: 100%;
}

main .text {
	margin-bottom: 5vw;
}

main .text:last-child {
	margin-bottom: 0;
}

main .group .arrow_button {
	margin-bottom: 0;
}

main .attention {
	padding-top: 11vw;
}

}






