@charset "UTF-8";
/*--------------------------------------------------

カラー設定
濃いブルー　　　　　　　　　#0020FF
薄いブルー　　　　　　　　　#0093FF


グラデーション
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: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../images/page_backimage.jpg);
	/*バックグラウンドカラー設定*/
	scroll-behavior: smooth;
	/*スムーズにスクロールする*/
	height: 100%;
}
body {
	/*フッターを常に最下部に表示させる用*/
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	
	font-size: 15px;
	/*デフォルトフォントサイズ16px*/
	font-size: 1.5rem;
	color: #363636;
	/*デフォルトフォントカラー#363636*/
	line-height: 1.5em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
	color: #EE00B4;
}
/*外部リンクアイコン*/
.icon_link1 {
	width: 15px;
	filter: brightness(0) saturate(100%) invert(23%) sepia(94%) saturate(7256%) hue-rotate(306deg) brightness(97%) contrast(109%);
}
.icon_link0 {
	filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(21%) hue-rotate(253deg) brightness(108%) contrast(106%);
}
/*パソコン非表示*/
.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;
}

/*------------------------------------------------------------------------------------
ヘッダーブロック
------------------------------------------------------------------------------------*/
header {
	margin: 0;
	padding: 16px;
	width: 100%;
	overflow: hidden;
	background-image: url("../images/header_backimage.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0px 6px 6px 0px rgba(213,218,232,0.50);
	position: relative;
	z-index: 100;
}
header .header_block {
	margin: 0 auto;
	max-width: 1080px;
	text-align: center;
}
header .header_block img {
	width: 50%;
	max-width: 50%;
	vertical-align: top;
}
@media screen and (max-width: 420px) {
	header {
		padding: 4px;
	}
	header .header_block img {
		width: 70%;
		max-width: 80%;
	}
}
/*------------------------------------------------------------------------------------
コンテンツブロック
------------------------------------------------------------------------------------*/
.contents_wrapper {
	
}
.contents_wrapper .contents_container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	background-color: #F1F4FB;
}
.contents_wrapper .contents_container .side {
	display: block;
	width: 300px !important;
	height: 100%;
	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%;
	padding-right: 10px;
}
@media screen and (max-width: 795px) {
	.contents_wrapper .contents_container .main {
		
	}
}
.main_backboad {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: #F6F7FB;/*#F1F4FB*/
}
.contents {
	margin-bottom: 40px;
	padding-left: 15px;
}
.item_wrapper {
	padding: 0 1em;
}
/*------------------------------------------------------------------------------------
フッターブロック
------------------------------------------------------------------------------------*/
footer {
	width: 100%;
	margin-top: auto;
}
.footer_info {
	display: block;
	max-width: 100%;
	height: auto;
	padding: 20px;
	overflow: hidden;
	background-color: #EEEEEE;
}
.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: #005EBB;
	color: white;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	overflow: hidden;
}
.copyright p {
	padding: 0 10px;
}
.footer_box1 {
	margin: 10px;
	width: 320px;
}
.info_midashi {
	margin-bottom: 10px;
	font-size: 1.7rem;
	font-weight: bold;
	color: white;
	padding: 5px 10px;
	max-width: 100%;
	background-color: #D10043;
}
.info_name {
	max-width: 100%;
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: 1px solid #D10043;
}
/*------------------------------------------------------------------------------------
タイトル見出し
------------------------------------------------------------------------------------*/
.h1_wrapper {
	display: flex;
	margin: 20px 20px 0 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 120px;
	position: relative;
	background-image: url("../images/H1_title.jpg");
	background-size: cover;
	background-repeat: no-repeat;/*画像が繰り返すのを防ぐ*/
}

 
.h1_wrapper h1 {
	margin: 0;
	position: relative;
	font-size: 26px;
	color: #010101;
	line-height: 1.2em;
	text-shadow: 0 0 10px #FFF;
	z-index: 100;
}

h2 {
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding: 15px 0 15px 40px;
	background: #2C2929;
	color: white;
}
h2::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 20px;
	height: 100%;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background-color: #D10043;
}
h3 {
	width: 100%;
	padding: 8px 0 8px 20px;
	background-color: #F2F2F7;
	border-left: 10px solid #D10043;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
h4 {
	position: relative;
	width: 100%;
	padding-left: 10px;
	padding-bottom: 4px;
	font-size: 16px;
	color: #363636;
	border-bottom: 2px solid #9D9D9D;
}
h4::before {
	position: absolute;
	content: "";
	width: 30%;
	height: 2px;
	bottom: -2px;
	left: 0px;
	background-color: #D10043;
}

/*------------------------------------------------------------------------------------
段落
------------------------------------------------------------------------------------*/
.article1 {
	padding: 10px;
}
/*------------------------------------------------------------------------------------
ブロック
------------------------------------------------------------------------------------*/
.box1 {
	background: linear-gradient(to right, rgba(248,250,255,1.00), rgba(247,248,255,1.00));
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
.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: #F1F4FB;
}
.navi_block .navi {
	width: 100%;
}
.navi_block .navi ul {
	display: flex;
	flex-direction: column;
	gap: 3px;
	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: 56px;
/*	border-bottom: 1px solid #C0BDBE;*/
	transition: ease 0.3s;
	box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.navi_block .navi ul .navi_def::before, .navi_block .navi ul .navi_checked::before {
	
}
.navi_block .navi ul .navi_def::after, .navi_block .navi ul .navi_checked::after {

}
.navi_block .navi ul .navi_def:hover, .navi_block .navi ul .navi_checked:hover {
	background-color: #001F81;
	/*border-left: 8px solid #FF82CF;*/
	/*background: linear-gradient(125deg, #00041B, #D10043);*/
}
.navi_block .navi ul .navi_def:hover::before, .navi_block .navi ul .navi_checked:hover::before {
	background-color: #FF82CF;
}
.navi_block .navi ul .navi_def:hover::after, .navi_block .navi ul .navi_checked:hover::after {

}
.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;
	line-height: 1.2em;
	padding: 0 20px 0 40px;
	text-decoration: none;
}
.navi_def {
	background-color: #0F3DCB;
	
	/*border-left: 8px solid #CAD4FD;*/
	/*background: linear-gradient(125deg, #00041B, #00086F);*/
}
.navi_def::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #DBEFFF;
}
.navi_def::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	top: 0;
	left: 20px;
	background-color: #444444;
	
}
.navi_checked {
	background-color: #001F81;
	/*border-left: 8px solid #FFB819;*/
	/*background: linear-gradient(125deg, #00041B, #D10043);*/
}
.navi_checked::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #FFC100;

}
.navi_checked::after {
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	top: 0;
	left: 20px;
	background-color: #444444;

}
/*------------------------------------------------------------------------------------
スマホ・タブレットのナビゲーションボタン
------------------------------------------------------------------------------------*/
nav.globalMenuSp {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	color: #fff;
	background: #F2F2F2;
	text-align: center;
	transform: translateY(-100%);
	transition: all 0.6s;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
nav.globalMenuSp ul {
	background: #0F3DCB;
	/*background: linear-gradient(125deg, #00041B, #00086F);*/
	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: linear-gradient(125deg, #00041B, #D10043);*/
	background: #001F81;
}
nav.globalMenuSp ul li:active {
	/*background: linear-gradient(125deg, #00041B, #D10043);*/
	background: #001F81;
}
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: #001F81;
	/*background: linear-gradient(125deg, #00041B, #D10043);*/
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateY(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: #0039D1;
	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: #0039D1;
	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: 20px auto;
}
.btn_block2 {
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}
.btn_1, .btn_2 {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 46px;
	border-radius: 4px;
	background-color: #D10043;
	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;
}
@media (hover: hover) and (pointer: fine) {
	.btn_1:hover, .btn_2:hover {
		background-color: #F12F69;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media (hover: none) {
	.btn_1:active, .btn_2:active {
		background-color: #F12F69;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media screen and (max-width: 420px) {
	.btn_1, .btn_2 {
		font-size: 14px;
	}
}
.btn_1 a, .btn_2 a {
	display: block;
	width: 100%;
	color: white;
}
.btn_1 {
	width: 100%;
}
.btn_2 {
	width: 100%;
	max-width: 320px;
}
/*------------------------------------------------------------------------------------
枠
------------------------------------------------------------------------------------*/
.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;
}
.table_1 th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	color: white;
	text-align: justify;
	text-align-last: justify;
	width: 106px;
}
.table_1 td {
	background-color: #DADADA;
	padding: 10px;
}
.table_1_sp {
	display: none;
	width: 100%;
}
.table_2 {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_2 th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	color: white;
	text-align: left;
	width: 28px;
}
.table_2 td {
	background-color: #DADADA;
	padding: 10px;
}
.table_3 {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_3 th {
	background-color: #D10043;
	padding: 10px;
	color: white;
	font-weight: normal;
	text-align: center;
	width: 52px;
}
.table_3 td {
	background-color: #DADADA;
	padding: 10px;
}
.table_4 {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_4 th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	color: white;
	text-align: justify;
	text-align-last: justify;
	width: 138px;
}
.table_4 td {
	background-color: #DADADA;
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 420px) {
	.table_4 {
		display: none;
	}
}
.table_4_sp {
	width: 100%;
	table-layout: fixed;
	display: none;
}
.table_4_sp th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	color: white;
	text-align: center;
	width: 134px;
}
.table_4_sp td {
	background-color: #DADADA;
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 420px) {
	.table_4_sp {
		display: table;
	}
}
.table_5 {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_5 tr:first-child th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	color: white;
	text-align: center;
}
.table_5 th {
	background-color: #5A5A5A;
	color: white;
	font-size: 13px;
}
.table_5 td {
	background-color: #DADADA;
	padding: 10px;
	text-align: left;
}

.table_6 {
	width: 100%;
	display: table;
	table-layout: auto;
}
.table_6 tr:first-child th {
	background-color: #D10043;
	padding: 10px;
	font-weight: normal;
	font-size: 13px;
	color: white;
	text-align: center;
}
.table_6 th {
	background-color: #5A5A5A;
	padding: 0 4px;
	color: white;
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
}
.table_6 td {
	background-color: #DADADA;
	padding: 10px;
	text-align: left;
	font-size: 14px;
}
.table_6 th + td {
	text-align: center;
}
@media screen and (max-width: 420px) {
	.table_6 th {
		font-size: 12px;
	}
	.table_6 td {
		font-size: 13px;
	}
}


.table_3col {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_3col th {
	background-color: #D10043;
	padding: 0;
	font-weight: normal;
	color: white;
	text-align: center;
	line-height: 18px;
	width: 28px;
}
.table_3col td {
	background-color: #DADADA;
	padding: 10px;
}
@media screen and (max-width: 420px) {
	.table_3col {
		display: none;
	}
}
.table_3col_sp {
	width: 100%;
	display: none;
	table-layout: fixed;
}
.table_3col_sp th {
	background-color: #D10043;
	padding: 7px 0;
	font-weight: normal;
	color: white;
	text-align: center;
	width: 28px;
}
.table_3col_sp td {
	background-color: #DADADA;
	padding: 10px;
}
@media screen and (max-width: 420px) {
	.table_3col_sp {
		display: table;
	}
}

/*------------------------------------------------------------------------------------
リスト
------------------------------------------------------------------------------------*/
.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%;
}