@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　　　　　#0062ad
ボタンブルー　　　　　　　　#0200BE
送信ボタン　　　　　　　　　#00A9BC
ミント　　　　　　　　　　　#A2E8F1
グリーン　　　　　　　　　　#75BC00
オレンジ　　　　　　　　　　#F4A43B
ピンク　　　　　　　　　　　#F43BD2

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/


/*------------------------------------------
html
------------------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	/* 10pxが1remとなる様に調整*/
	/*background-color: #ebf6f7;*/
	/*バックグラウンドカラー設定*/
	scroll-behavior: smooth;
	/*スムーズにスクロールする*/
}
body {
	margin: 0;
	font-size: 15px;
	/*デフォルトフォントサイズ15px*/
	font-size: 1.5rem;
	color: #363636;
	/*デフォルトフォントカラー#363636*/
	line-height: 1.7em;
	font-family: "BIZ UDPGothic", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
	color: #0002EE;
}
/*外部リンクアイコン*/
.icon_link0 {
	filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(7492%) hue-rotate(336deg) brightness(81%) contrast(102%);
}
.icon_link1 {
	filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(5325%) hue-rotate(245deg) brightness(80%) contrast(146%);
	width: 15px;
}
.icon_link2 {
	filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(5325%) hue-rotate(245deg) brightness(80%) contrast(146%);
	width: 20px;
}
/*パソコン非表示*/
.pc_none {
	display: none;
}
@media screen and (max-width: 795px) {
	.pc_none {
		display: block;
	}
}
.tb_none {
	display: none;
}
@media screen and (max-width: 420px) {
	.tb_none {
		display: block;
	}
}
/*改行禁止*/
.nowrap {
	white-space: nowrap;
}
/*マージン・パディングリセット*/
.margin_none {
	margin: 0;
}
.padding_none {
	padding: 0;
}
/*------------------------------------------------------------------------------------
ヘッダーブロック
------------------------------------------------------------------------------------*/
header {
	margin: 0;
	padding: 16px;
	width: 100%;
	overflow: hidden;
	background-color: #0062ad;
	/*background: linear-gradient(0deg, #E0EAEB, #EBF6F7);*/
	position: relative;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(100, 100, 100, 0.6); 
}
header .header_block {
	margin: 0 auto;
	max-width: 1080px;
	text-align: center;
}
header .header_block img {
	width: 85%;
	max-width: 85%;
	vertical-align: top;
}
@media screen and (max-width: 420px) {
	header {
		padding: 4px;
	}
	header .header_block img {
		width: 70%;
		max-width: 80%;
	}
}
/*------------------------------------------------------------------------------------
コンテンツブロック
------------------------------------------------------------------------------------*/
.contents_wrapper {
	background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url("../images/back-image.jpg"), linear-gradient(#d2e8f5);
	background-size: 100% auto;
	background-positon: left top;
	background-repeat: no-repeat;
}
.contents_wrapper .contents_container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	background-color: #E5F7FE;
}
.contents_wrapper .contents_container .side {
	display: block;
	width: 300px !important;
	margin: 0;
}
@media screen and (max-width: 795px) {
	.contents_wrapper .contents_container .side {
		display: none;
	}
}
.contents_wrapper .contents_container .main {
	display: block;
	flex: 1;
	width: 100%;
}
@media screen and (max-width: 795px) {
	.contents_wrapper .contents_container .main {
		
	}
}
.main_backboad {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: #F7F9F9;
}
.contents {
	margin-bottom: 40px;
	padding-left: 15px;
}
.item_wrapper {
	padding: 0 1em;
}
/*------------------------------------------------------------------------------------
フッターブロック
------------------------------------------------------------------------------------*/
.footer_info {
	display: block;
	max-width: 100%;
	height: auto;
	padding: 20px;
	overflow: hidden;
	background-color: #EFEEE6;
}
.footer_info .footer_wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.copyright {
	display: inline-block;
	width: 100%;
	height: auto;
	min-height: 50px;
	background-color: #0062ad;
	color: white;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	overflow: hidden;
}
.copyright p {
	padding: 0 10px;
}
.footer_box1 {
	margin: 10px;
	width: 330px;
}
.info_midashi {
	margin-bottom: 10px;
	font-size: 1.7rem;
	font-weight: 600;
	color: #0200BE;
	padding: 5px 10px;
	max-width: 100%;
	position: relative;
}
.info_midashi::after {
	position: absolute;
	content: "";

}
.info_name {
	margin-bottom: 20px;
	padding: 6px 0;
	max-width: 100%;
	padding-left: 20px;
	font-size: 1.6rem;
	font-weight: 600;
	border-bottom: 1px solid #0900BC;
	position: relative;
}
.info_name::after {
	position: absolute;
	content: "";

}
.address {
	font-size: 14px;
	padding-left: 10px;
}
/*------------------------------------------------------------------------------------
タイトル見出し
------------------------------------------------------------------------------------*/
.h1_wrapper {
	display: block;
	position: relative;
	width: 100%;
	height: 120px;
	background: url("../images/h1_image.jpg");
	background-repeat: no-repeat;
	background-color: #EEF5F0;
	overflow: hidden;
}
.h1_wrapper::before, .h1_wrapper::after {
	position: absolute;
    content: '';
}
.h1_wrapper::before {

}
.h1_wrapper::after {

}

.h1_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	/*background-color: white;*/
}
 
.h1_flex h1 {
	margin: 0;
	position: relative;
	font-size: 24px;
	color: #363636;
	line-height: 1.2em;
	z-index: 100;
}


h2 {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding: 16px 20px 16px 50px;
	border-bottom: 2px solid #FFD572;
	overflow: hidden;
	font-size: 22px;
}
h2::before {
	position: absolute;
	content: "";
	width: 30px;
	height: calc(30px * sqrt(3) / 2);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background-color: #56E2E1;
	top: 0;
	left: 0;
}
h2::after {
	position: absolute;
	content: "";
	width: 40px;
	height: calc(40px * sqrt(3) / 2);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background-color: rgba(154,181,243,0.70);
	top: 8px;
	left: 2px;
}
h3 {
	position: relative;
	width: 100%;
	padding: 8px 0 8px 20px;
	background-color: #EFEFF4;
	border-left: 20px solid #0062ad;
	font-size: 18px;
	color: #0062ad;
}
h3::before {
	position: absolute;
	content: "";

}
h4 {
	position: relative;
	width: 100%;
	padding: 8px 0 8px 20px;
	border-bottom: 4px solid #D1DEDF;
	font-size: 17px;
	color: #0062ad;
}
h4::before {
	position: absolute;
	content: "";
	width: 20%;
	border-bottom: 4px solid #0062ad;
	left: 0;
	bottom: -4px;
}

/*------------------------------------------------------------------------------------
段落
------------------------------------------------------------------------------------*/
.article1 {
	padding: 10px;
}
/*------------------------------------------------------------------------------------
ブロック
------------------------------------------------------------------------------------*/
.box1 {
	
}
.box2 {
	background: linear-gradient(to right, rgba(232,227,227,1.00), rgba(247,248,255,1.00));
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
/*------------------------------------------------------------------------------------
余白（margin,paddingなど）
------------------------------------------------------------------------------------*/
.space1 {
	margin: 0 0 20px 0;
	padding: 10px;
	width: 100%;
}
.space2 {
	margin: 0 0 20px 0;
	padding: 20px;
	width: 100%;
}
/*------------------------------------------------------------------------------------
ナビゲーションブロック
------------------------------------------------------------------------------------*/
.navi_block {
	width: 100%;
	margin: 0;
	padding: 20px;
	background-color: #E5F7FE;
}
.navi_block .navi {
	width: 100%;
}
.navi_block .navi ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.navi_block .navi ul .navi_def, .navi_block .navi ul .navi_checked {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 50px;
	transition: ease 0.3s;
	margin-bottom: 2px;
	/*clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);*/
}
.navi_block .navi ul .navi_def::before, .navi_block .navi ul .navi_checked::before {
	position: absolute;
	
}
.navi_block .navi ul .navi_def::after, .navi_block .navi ul .navi_checked::after {
	position: relative;
	right: 30px;
	content: "";
	width: 6px;
	height: 8px;
	background-color: #FBFF23;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	opacity: 1;
	transition: 0.3s all ease;
}
.navi_block .navi ul .navi_def:hover, .navi_block .navi ul .navi_checked:hover {
	background-color: #000069;
	/*background: linear-gradient(300deg, #0044AF 0%, #0044AF 50%, #040060 93%, #040060 100%);*/
}
.navi_block .navi ul .navi_def:hover::before, .navi_block .navi ul .navi_checked:hover::before {
	opacity: 1;
	right: 16px;
}
.navi_block .navi ul .navi_def:hover::after, .navi_block .navi ul .navi_checked:hover::after {
	opacity: 1;
	right: 20px;
}
.navi_block .navi ul .navi_def a, .navi_block .navi ul .navi_checked a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 14px;
	line-height: 1.2em;
	padding: 0 40px 0 20px;
	text-decoration: none;
}
.navi_def {
	background-color: #0200BE;
	/*background: linear-gradient(300deg, #226BDC 0%, #226BDC 50%, #0900BC 93%, #0900BC 100%);*/
}
.navi_def::after {
	
}
.navi_checked {
	background-color: #000069;
	/*background: linear-gradient(300deg, #0044AF 0%, #0044AF 50%, #040060 93%, #040060 100%);*/
}
.navi_checked::after {
	
}
/*------------------------------------------------------------------------------------
スマホ・タブレットのナビゲーションボタン
------------------------------------------------------------------------------------*/
nav.globalMenuSp {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	color: #fff;
	background: #E5F7FE;
	text-align: center;
	transform: translateX(100%);
	transition: all 0.6s;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
nav.globalMenuSp ul {
	background: #0200BE;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
nav.globalMenuSp ul li:hover {
	background-color: #000069;
	/*background: linear-gradient(300deg, #0044AF 0%, #0044AF 50%, #040060 93%, #040060 100%);*/
}
nav.globalMenuSp ul li:active {
	background-color: #000069;
	/*background: linear-gradient(300deg, #0044AF 0%, #0044AF 50%, #040060 93%, #040060 100%);*/
}
nav.globalMenuSp ul li a {
	display: block;
	color: white;
	padding: 1.4em 0;
	text-decoration: none;
}
nav.globalMenuSp ul li a:hover {
	color: white;
}
.mnav_def {
	background-color: none;
}
.mnav_checked {
	background-color: #000069;
	/*background: linear-gradient(300deg, #0044AF 0%, #0044AF 50%, #040060 93%, #040060 100%);*/
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateX(0%);
}
/*------------------------------------------------------------------------------------
ハンバーガーボタン（SP）
------------------------------------------------------------------------------------*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 200;
	right: 11px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	background-color: #0900BC;
	opacity: 0.6;
	border-radius: 8px;
}
@media screen and (min-width: 796px) {
	.hamburger {
		display: none;
	}
}
.hamburger span {
	display: block;
	position: absolute;
	width: 50%;
	height: 2px;
	left: 25%;
	background: white;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 15px;
}
.hamburger span:nth-child(3) {
	top: 20px;
}
.hamburger span:nth-child(4) {
	top: 18px;
	background: none;
	width: 100%;
	left: 0;
}
.hamburger span:nth-child(4)::after {
	content: "MENU";
	/*4つ目の要素のafterにMenu表示を指定*/
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
	/*ナビが開いている時のボタン*/
	top: 7px;
	left: 12px;
	transform: translateY(8px) rotate(-45deg);
	width: 40%;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	top: 21px;
	left: 12px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}
.hamburger.active span:nth-child(4)::after {
	content: "CLOSE";
	/*3つ目の要素のafterにCLOSE表示を指定*/
	color: #fff;
}
/*------------------------------------------------------------------------------------
ページトップボタン
------------------------------------------------------------------------------------*/
.page-top {
	/* buttonタグのリセットCSS */
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	/* ボタンの装飾 */
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background-color: #0900BC;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.page-top::before {
	content: "";
	width: 12px;
	height: 12px;
	margin-bottom: -6px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(-45deg);
}
.page-top:hover {
	transform: scale(1.1);
}
#page-top {
	opacity: 0.0;
	transition: ease .5s opacity;
}
#page-top.view {
	opacity: 1.0;
}
/*------------------------------------------------------------------------------------
ボタン
------------------------------------------------------------------------------------*/
.btn_block1 {
	margin: 40px auto;
}
.btn_block2 {
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}
.btn_1, .btn_2, .btn_pdf {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 46px;
	border-radius: 4px;
	background-color: #00A9BC;
	color: white;
	font-size: 15px;
	text-align: center;
	box-shadow: 0px 2px 0px rgba(73,96,86,0.30);
	top: 0px;
	transition: ease 0.3s;
}
.btn_1::after, .btn_2::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid white;
	border-right: 1px solid white;
	transform: rotate(45deg);
	top: calc(50% -4px);
	right: 16px;
}
.btn_pdf::after {
	position: absolute;
	content: "";
}
@media (hover: hover) and (pointer: fine) {
	.btn_1:hover, .btn_2:hover, .btn_pdf:hover {
		background-color: #008594;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 0px;
	}
}
@media (hover: none) {
	.btn_1:active, .btn_2:active, .btn_pdf:active {
		background-color: #008594;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 0px;
	}
}
@media screen and (max-width: 420px) {
	.btn_1, .btn_2, .btn_pdf {
		font-size: 14px;
	}
}
.btn_1 a, .btn_2 a, .btn_pdf a {
	display: block;
	width: 100%;
	color: white;
}
.btn_1 {
	width: 100%;
}
.btn_2, .btn_pdf {
	width: 100%;
	max-width: 320px;
}
.pdf_icon {
	width: 32px;
	vertical-align: top;
	position: absolute;
	top: 9px;
	right: 6px;
}
/*------------------------------------------------------------------------------------
枠
------------------------------------------------------------------------------------*/
.attention1 {
	width: 100%;
	background-color: #F7F7F7;
	border: 1px solid #EBEBEB;
	padding: 10px;
	text-align: justify;
}
/*------------------------------------------------------------------------------------
テーブル
------------------------------------------------------------------------------------*/
.table_container {
	margin: 10px 0 40px;
}
.tabel_title {
	color: #D10043;
	font-weight: 600;
}
.table_1 {
	width: 100%;
	display: table;
	table-layout: fixed;
	/*border-radius: 8px*/
}
/*角丸
.table_1 tr:first-child>*:first-child {
	border-radius: 8px 0 0 0;
}
.table_1 tr:first-child>*:last-child {
	border-radius: 0 8px 0 0;
}
.table_1 tr:last-child>*:first-child {
	border-radius: 0 0 0 8px;
}
.table_1 tr:last-child>*:last-child {
	border-radius: 0 0 8px 0;
}
*/
.table_1 th {
	background-color: #C3CCEE;
	padding: 10px;
	font-weight: 600;
	color: #363636;
	text-align: left;
}
.table_1 td {
	background-color: #EAEDED;
	padding: 10px;
}
@media screen and (max-width: 420px) {
	.table_1 {
		font-size: 0.8em;
	}
}



/*------------------------------------------------------------------------------------
リスト
------------------------------------------------------------------------------------*/
.list_1 {
	padding-left: 1.3em;
}
.list_1 li {
	margin-bottom: 20px;
}

/*------------------------------------------------------------------------------------
インデント
------------------------------------------------------------------------------------*/
.second_indent_1w {
	padding-left: 1em;
	text-indent: -1em;
}

/*------------------------------------------------------------------------------------
フォント
------------------------------------------------------------------------------------*/
.font_size_11 {
	font-size: 11px;
}
.font_size_12 {
	font-size: 12px;
}
.font_size_13 {
	font-size: 13px;
}
.font_size_14 {
	font-size: 14px;
}
.font_size_15 {
	font-size: 15px;
}
.font_size_16 {
	font-size: 16px;
}
.font_size_17 {
	font-size: 17px;
}
.font_size_18 {
	font-size: 18px;
}
.font_size_19 {
	font-size: 19px;
}
.font_size_20 {
	font-size: 20px;
}
.font_size_21 {
	font-size: 21px;
}
.font_size_22 {
	font-size: 22px;
}
.font_size_23 {
	font-size: 23px;
}
.font_size_240 {
	font-size: 24px;
}
.font_weight_300 {
	font-weight: 300;
}
.font_weight_400 {
	font-weight: 400;
}
.font_weight_500 {
	font-weight: 500;
}
.font_weight_600 {
	font-weight: 600;
}
.font_weight_700 {
	font-weight: 700;
}
.font_weight_800 {
	font-weight: 800;
}
/*------------------------------------------------------------------------------------
フォント色
------------------------------------------------------------------------------------*/
.fc_red {
	color: red;
}
/*------------------------------------------------------------------------------------
フォント装飾
------------------------------------------------------------------------------------*/
.underline {
	text-decoration: underline;
}
/*------------------------------------------------------------------------------------
揃え
------------------------------------------------------------------------------------*/
.text_align_left {
	text-align: left;
}
.text_align_right {
	text-align: right;
}
.text_align_center {
	text-align: center;
}
.text_align_justify {
	text-align: justify;
}
/*------------------------------------------------------------------------------------
マージン
------------------------------------------------------------------------------------*/
.margin_top_10 {
	margin-top: 10px;
}
.margin_top_20 {
	margin-top: 20px;
}
.margin_top_30 {
	margin-top: 30px;
}
.margin_top_40 {
	margin-top: 40px;
}
.margin_top_50 {
	margin-top: 50px;
}
.margin_top_60 {
	margin-top: 60px;
}
.margin_bottom_10 {
	margin-bottom: 10px;
}
.margin_bottom_20 {
	margin-bottom: 20px;
}
.margin_bottom_30 {
	margin-bottom: 30px;
}
.margin_bottom_40 {
	margin-bottom: 40px;
}
.margin_bottom_50 {
	margin-bottom: 50px;
}
.margin_bottom_60 {
	margin-bottom: 60px;
}
/*------------------------------------------------------------------------------------
幅
------------------------------------------------------------------------------------*/
.width_500px {
	max-width: 500px;
	width: 100%;
}
.width_850px {
	max-width: 850px;
	width: 100%;
}