@charset "utf-8";
/*======================================
ベース共有
========================================*/
:root{
	--ttl_color: #086a7a;
	--ttl_color2: #1da9c0;
	--footer_color: #f8f6f0;
	--color_red: #cc0000;
	--color_blue: #3257B8;
	--color_orange: #ff6900;
	--color_halfgray: #a1a1a1;
	--color_yell: #ffe036;
}

/*--------------------
reset
--------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

body{
	line-height:1;
	width:100%;
	word-wrap:break-word;/*URL等の長英文の折り返し*/
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	/*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;*/
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, th{
	font: inherit;
}

ul, ol{
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
 image-rendering: -webkit-optimize-contrast;/*縮小時の画像ボケ軽減*/
}

table{
	border-collapse:collapse;
	border-spacing:0;
}

input, textarea, select, button{
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, select{
	vertical-align: middle;
}

button{
	cursor: pointer;
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

sub, sup{
	font-size: 65%;
}
sub{
	vertical-align: bottom;
}
sup{
	vertical-align: top;
}

.text_center{
	text-align: center;
}
.text_left{
	text-align: left;
}
.text_right{
	text-align: right;
}

.font_size_l{
	font-size: 1.25em;
}
.font_size_s{
	font-size: 0.85em;
}

.font_red{
	color: var(--color_red);
}
.font_blue{
	color: var(--color_blue);
}

.flex{
	display: flex;
}
.flex_between{
	display: flex;
	justify-content: space-between;
}
.flex_center{
	display: flex;
	justify-content: center;
}
.flex_wrap{
	flex-wrap: wrap;
}
.align_start{
	align-items: flex-start;
}
.align_center{
	align-items: center;
}

.li_indent05 > li,
.text_indent05{
	text-indent: -0.5em;
	padding-left: 0.5em;
}
.li_indent1 > li,
.text_indent1{
	text-indent: -1em;
	padding-left: 1em;
}
.li_indent1_5 > li,
.text_indent1_5{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.li_indent2 > li,
.text_indent2{
	text-indent: -2em;
	padding-left: 2em;
}
.li_indent2_5 > li,
.text_indent2_5{
	text-indent: -2.5em;
	padding-left: 2.5em;
}
.li_indent3 > li,
.text_indent3{
	text-indent: -3em;
	padding-left: 3em;
}

.li_indent4 > li,
.text_indent4{
	text-indent: -4em;
	padding-left: 4em;
}

.mgn_t05{
	margin-top: 0.5em;
}
.mgn_t1{
	margin-top: 1em;
}
.mgn_t2{
	margin-top: 2em;
}
.mgn_t3{
	margin-top: 3em;
}
.mgn_t4{
	margin-top: 4em;
}
.mgn_b05{
	margin-bottom: 0.5em;
}
.mgn_b1{
	margin-bottom: 1em;
}
.mgn_b2{
	margin-bottom: 2em;
}
.mgn_b3{
	margin-bottom: 3em;
}
.mgn_b4{
	margin-bottom: 4em;
}
.mgn_l05{
	margin-left: 0.5em;
}
.mgn_l1{
	margin-left: 1em;
}
.mgn_l2{
	margin-left: 2em;
}
.mgn_l3{
	margin-left: 3em;
}
.mgn_l4{
	margin-left: 4em;
}
.mgn_r05{
	margin-right: 0.5em;
}
.mgn_r1{
	margin-right: 1em;
}
.mgn_r2{
	margin-right: 2em;
}
.mgn_r3{
	margin-right: 3em;
}
.mgn_r4{
	margin-right: 4em;
}

.pdd_l1{
	padding-left: 1em;
}

.p_line p{
	margin-bottom: 0.75em;
}
.p_line p:last-of-type{
	margin-bottom: 0;
}

a{
	color: #3887bb;
}

/***ボタン***/
.btn_normal{
	font-weight: bold;
	text-align: center;
	margin: 1em 0;
	border-radius: 0.25em;
	box-shadow: 0 4px 2px 0 rgba(60,30,30,0.35);
	transition: transform 0.25s,box-shadow 0.25s;
}
.btn_normal a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	height: 100%;
	padding: 1em 2em 1em 1em;
	border: solid 0.12em #ededed;
	border-radius: 0.25em;
	position: relative;
	transition: background 0.5s;
}
.btn_normal a::after{
	content: '';
	display: block;
	width: 0.75em;
	height: 1em;
	clip-path: polygon(0 0,4px 0,100% 50%,4px 100%,0 100%,calc(100% - 4px) 50%);
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
}

.btn_normal:hover{
	transform: translateY(4px);
	box-shadow: 0 0 0 0 transparent;
}
.btn_normal a:hover::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.25);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/***end ボタン***/

.othersite{
	margin: 0 0.2em;
	padding-left: 1.5em;
	background-image: url("/cmn/img/arrow_othersite.png");
	background-repeat: no-repeat;
	background-position: left 0.25em center;
}

.linkArrow{
	display: inline-block;
	margin: 0 0.2em;
	padding-left: 0.75em;
	background-image: url("/cmn/img/linkarrow.png");
	background-repeat: no-repeat;
	background-position: left center;
}

.icon_pdf{
	display: inline-block;
	padding: 0 2.5em 0 0.5em;
	background-image: url("/cmn/img/icon_pdf.jpg");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

.marker{
	background-image: linear-gradient(to top,var(--color_yell) 0,var(--color_yell) 0.5em,transparent 0.5em);
}

/*youtube埋め込み*/
.in_youtube{
	aspect-ratio: 560 / 315;
	width: 100%;
	max-width: 800px;
	margin: 2em auto;
}
.in_youtube iframe{
	width: 100%;
	height: 100%;
}

/*****
表組のスクロール
*****/
.scroll_wrap{}
.scroll_table{}
.scroll_table table{}

/*--------------------
ヘッダー
--------------------*/
#header_wrap{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1em;
}
.header_inner #logo_main{}


/*--------------------
メインコンテンツ
--------------------*/
#main_content{
	overflow: hidden;
}

.section_wrap{
	padding: 6em 0;
}
.normal_section{
	font-size: clamp(1.3rem,1.8vw,1.8rem);
	line-height: 1.6;
	color: #333;
	width: 94%;
	max-width: 1000px;
	margin: 4em auto;
}

.section_wrap .normal_section:first-of-type{
	margin-top: 0;
}

/***タイトル***/
.ttl_type01{
	font-size: clamp(1.8rem,3.2vw,3.2rem);
	font-weight: bold;
	text-align: center;
	color: var(--ttl_color);
	margin-bottom: 1.5em;
	padding: 0 2em 0.25em 2em;
	border-bottom: solid 2px var(--ttl_color);
	position: relative;
}
.ttl_type01_icon{
	display: block;
	width: 1.6em;
	height: 1em;
	background-color: var(--ttl_color);
	clip-path: polygon(0 0,100% 0,50% 100%);
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.ttl_type01::before,
.ttl_type01::after{
	content: '';
	display: block;
	border: solid 1px var(--ttl_color);
	background-color: rgba(8,106,122,0.25);
	position: absolute;
}
.ttl_type01::before{
	width: 0.8em;
	height: 0.8em;
	bottom: 0.5em;
	right: 0.5em;
}
.ttl_type01::after{
	width: 0.5em;
	height: 0.5em;
	bottom: 0.2em;
	right: 0.2em;
}
.ttl_type02{
	font-size: clamp(1.6rem,2.6vw,2.6rem);
	color: var(--ttl_color2);
	margin: 3em 0 1em 0;
	padding: 0.5em 1em;
	background-color: #f2faff;
	position: relative;
}
.ttl_type02::before,
.ttl_type02::after{
	content: '';
	display: block;
	background-color: var(--ttl_color2);
	position: absolute;
}
.ttl_type02::before{
	width: 1em;
	height: 1em;
	clip-path: polygon(0 0,100% 0,0 100%);
	top: 0;
	left: 0;
}
.ttl_type02::after{
	width: 1.5em;
	height: 1.5em;
	clip-path: polygon(100% 0,100% 100%,0 100%);
	bottom: 0;
	right: 0;
}

.ttl_type03{
	font-size: clamp(1.5rem,2.4vw,2.4rem);
	font-weight: bold;
	color: var(--ttl_color2);
	margin: 2em 0 1em 0;
	border-bottom: solid 2px var(--ttl_color2);
}
.ttl_type04{
	font-size: clamp(1.4rem,2vw,2rem);
	font-weight: bold;
	color: var(--ttl_color2);
	margin: 2em 0 0.5em 0;
}

.normal_section .ttl_type02:first-of-type{
	margin-top: 0;
}

.ttl_old{
	margin-bottom: 1em;
	padding: 0.5em;
	background-color: #E1EEF6;
}
/***end タイトル***/



/*--------------------
フッター
--------------------*/
.footer{
	font-size: 1.4rem;
	border-top: solid 1px #ccc;
	background-color: var(--footer_color);
}
.footer .flink{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.flink li{}
.flink li a{
	color: #3887bb;
	text-decoration: none;
}
.flink li a::after{
	content: '';
	display: block;
	width: 0.5em;
	height: 0.75em;
	background-color: #aaa;
	clip-path: polygon(0 0,2px 0,100% 50%,2px 100%,0 100%,calc(100% - 2px) 50%);
}

#btn_page_top{
	display: none;
	font-size: 1.4rem;
	text-align: center;
	position: fixed;
	left: 0.5em;
}
#btn_page_top a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 1em;
	border-radius: 0.5em;
	background-color: rgba(0,0,0,0.8);
}

/*****
コピーライト
*****/
.copyright{
	font-size: clamp(1rem,1vw,1.2rem);
	text-align: center;
	color: #fff;
	padding: 1em 0.5em;
	background-color: #4d4d4d;
}

/* ===========================================
	MediaQueries
=========================================== */
/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	html{
		font-size:62.5%;
	}
	
	.hidden_sp{
		display: none;
	}
	
	/*****
	表組のスクロール
	*****/
	.scroll_wrap{}
	.scroll_wrap::before,
	.scroll_wrap::after{
		content: '←スクロール→';
		display: block;
		text-align: center;
	}
	.scroll_table{
		width: 94%;
		margin: 0 auto;
		overflow-x: scroll;
	}
	
	.scroll_table::before{}
	.scroll_table::after{}
	.scroll_table table{
		width: 660px;
	}
	
	/*--------------------
	メインコンテンツ
	--------------------*/
	.section_wrap{
		padding: 4em 0;
	}
	.normal_section{
		margin: 3em auto;
	}
	
	/*--------------------
	フッター
	--------------------*/
	.footer .flink{
		padding-bottom: 25vw;
	}
	.flink li{
		border-bottom: solid 1px #ccc;
	}
	.flink li a{
		display: block;
		padding: 1em 2em 1em 0.5em;
		position: relative;
	}
	.flink li a::after{
		position: absolute;
		top: 50%;
		right: 0.5em;
		transform: translateY(-50%);
	}
	
	#btn_page_top{
		bottom: 10vh;
	}
	#btn_page_top a{}
}

/* PC----------------------------- */
@media screen and (min-width: 768px){
	html{
		font-size:62.5%;
	}
	
	.hidden_pc{
		display: none;
	}
	
	.flex_pc{
		display: flex;
	}
	.flex_between_pc{
		display: flex;
		justify-content: space-between;
	}
	.flex_center_pc{
		display: flex;
		justify-content: center;
	}
	.flex_wrap_pc{
		flex-wrap: wrap;
	}
	.align_start_pc{
		align-items: flex-start;
	}
	.align_center_pc{
		align-items: center;
	}
	
	/*--------------------
	ページヘッダー
	--------------------*/
	
	/*--------------------
	メインコンテンツ
	--------------------*/
	
	/*--------------------
	フッター
	--------------------*/
	.footer .flink{
		padding: 2em 0;
	}
	.flink li{
		display: inline-block;
		margin-right: 2em;
	}
	.flink li a{
		display: flex;
		align-items: flex-end;
	}
	.flink li a::after{
		margin-left: 0.5em;
	}
	
	#btn_page_top{
		bottom: 15vh;
	}
	#btn_page_top a{}
}