@charset "utf-8";

/*
GLOBAL
***************************************************************************/
html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
}

html.scale_down { zoom:0.675; }

body {
	width: 100%;
	height: auto;
	text-align: left;
	font-style: normal;
	font-size: 1.8rem;
	font-weight: 400;
	color: #3B3E44;
	line-height: 1.8;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1rem;
	background: #fff;
	caret-color: transparent;
}

body.form_complete { min-height:100vh; }

/* ▼CONTAINER CONTROL▼ */
.base_box {
	position: relative;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	z-index: 5;
}

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

	.base_box {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

}

.pc_disp { display:block; }
.sp_disp { display:none; }

/*
DEFAULT
***************************************************************************/
body,
h1,h2,h3,h4,h5,h6,p,div,
ul,ol,li,dl,dt,dd,
form,fieldset,legend,pre,blockquote,main,
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	word-wrap: break-word;
	font-feature-settings: "palt";
	backface-visibility: hidden;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: #1D1E20;
	line-height: 1.5;
	letter-spacing: 0.05rem;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	overflow: hidden;
}

iframe { border:none; }

li {
	list-style-type: none;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

th {
	text-align: left;
	font-weight: 500;
}

/* ▼LINK▼ */
a {
	color: #0163B6;
	text-decoration: none;
	outline: none;
	transition: .3s;
}

a.txt_link { color:#0163B6; text-decoration:underline; }
a.txt_link:hover { color:#129CD8; text-decoration:none; }

/* ▼IMG▼ */
img, input[type="image"] {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
}

button, input[type="submit"] {
	padding: 0;
	vertical-align: middle;
	font-family: "Noto Sans JP", sans-serif;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	transition: .3s;
}

.img_frame {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	transition: .3s;
}

.hover_zoom a .img { overflow:hidden; }

.hover_zoom a:hover { opacity:1; }

.hover_zoom a:hover .img_frame {
	transform: scale(1.1);
}

/*
HEADER
***************************************************************************/
header {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 86px;
	padding: 0 32px;
	background: #fff;
	z-index: 1000;
}

header .logo {
	width: 390px;
}

header .logo a:hover { opacity:1 }

.hnavi_list {
	display: flex;
	justify-content: flex-end;
	width: calc(100% - 520px);
}

.hnavi_list li a {
	margin-right: 24px;
	font-size: 1.6rem;
	color: #1D1E20;
}

.hnavi_list li a:hover { text-decoration:underline; }

.lang_ctl {
	display: flex;
	align-items: center;
	width: 128px;
}

.lang_ctl li {
	width: 50%;
	text-align: center;
	font-size: 1.4rem;
	font-family: "Roboto", sans-serif;
}

.lang_ctl li.active {
	background: #F0F6FB;
}

.lang_ctl li a {
	display: block;
	color: #1D1B20;
	line-height: 40px;
	border: solid 1px #D6DADE;
}

.lang_ctl li a:hover { color:#0163B6; }

.lang_ctl li:first-child a {
	border-radius: 4px 0 0 4px;
}

.lang_ctl li:last-child a {
	border-left: none;
	border-radius: 0 4px 4px 0;
}

.lang_ctl li.active span {
	display: inline-block;
	padding-left: 22px;
	background: url(../common_img/icon_chk.png) left center / 18px no-repeat;
}

.btn_gnavi {
	display: none;
}

/*
GNAVI
***************************************************************************/
#gnavi {
	margin-top: 86px;
}

#gnavi.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin-top: 0;
	z-index: 5000;
}

#gnavi .logo, .gnavi_close, .gnavi_slist {
	display: none;
}

.gnavi_list {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 70px;
}

.gnavi_list > li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 100%;
	padding-bottom: 2px;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.35;
	background: #0063b6;
	border-right: solid 1px #277ac0;
	transition: .3s;
}

.gnavi_list > li:last-child { border-right:none; }

.gnavi_list > li:hover, .gnavi_list > li.active { color:#0163B6; background:#BEE3F3; }

.gnavi_list > li .drop_switch {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.gnavi_list > li .drop_switch span {
	display: inline-block;
	position: relative;
	padding-right: 24px;
	z-index: 1;
}

.gnavi_list > li .drop_switch span::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	margin-top: -8px;
	background-image: url(../common_img/drop_white.png);
	background-position:  center center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.gnavi_list > li:hover .drop_switch span::before,
.gnavi_list > li.active .drop_switch span::before {
	background-image: url(../common_img/drop_blue.png);
}

.gnavi_list > li.active .drop_switch span::before { transform:rotate(-180deg); }

.gnavi_list .drop_inner {
	display: none;
	position: fixed;
	top: 156px;
	left: 0;
	width: 100%;
	height: calc(100vh - 156px);
	padding: 40px;
	text-align: left;
	line-height: 1.8;
	background: #fff url(../common_img/pc/gnavi_bg.jpg) center top repeat-x;
	overflow-y: auto;
	z-index: 5001;
}

#gnavi.fixed .gnavi_list .drop_inner { top:70px; height:calc(100vh - 70px); }

.gnavi_list .drop_inner a:hover { color:#129CD8; }

.gnavi_list .drop_inner .title {
	margin-bottom: 55px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.8;
}

.gnavi_list .drop_inner .title span {
	padding-right: 30px;
	background-image: url(../common_img/arrow_link_blue.png);
	background-position: right calc(50% + 2px);
	background-repeat: no-repeat;
	background-size: 26px;
	transition: .3s;
}

.gnavi_list .drop_inner .title a:hover span { background-image:url(../common_img/arrow_link_lblue.png); }

.gnavi_list .drop_inner .drop_list .drop {
	margin-bottom: 40px;
}

.gnavi_list .drop_inner .drop_title {
	margin-bottom: 25px;
	padding-bottom: 8px;
	font-size: 2rem;
	font-weight: 700;
	color: #1D1E20;
	border-bottom: solid 1px #d9d9d9;
}

.gnavi_list .drop_inner .drop_list .drop ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 50px;
}

.gnavi_list .drop_inner .drop_list .drop li { width:calc((100% - 50px) / 2); }
.gnavi_list .drop_inner .drop_list .drop ul.wide li { width:100%; }

.gnavi_list .drop_inner .drop_list .drop li a {
	display: block;
	position: relative;
	margin-bottom: 10px;
	padding-left: 24px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}

.gnavi_list .drop_inner .drop_list .drop li a::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 5px;
	height: 10px;
	background: #0163b6;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.gnavi_list .drop_inner .drop_list .drop li a:hover::before { background:#129CD8; }

/*
SNAVI
***************************************************************************/
#snavi {
	float: right;
	width: 290px;
	padding: 16px 0;
	background: #fff;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16), 0 6px 10px 0 rgba(0, 0, 0, 0.08);
}

#snavi.sticky {
	position: sticky;
	top: 120px;
}

#snavi .head_link {
	margin: 0 16px 16px;
}

#snavi .head_link a {
	display: block;
	position: relative;
	padding: 24px 40px 24px 24px;
	font-size: 1.8rem;
	font-weight: 400;
	color: #fff;
	background: #0063b6;
}

#snavi .head_link a:hover { background:#129CD8; }

#snavi .head_link a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background: url(../common_img/arrow_white.png) center center / 24px no-repeat;
}

#snavi.sticky .scroll_box {
	height: calc(100vh - 320px);
}

#snavi.sticky .scroll_box::-webkit-scrollbar-track {
	background: #fff;
}

.gecko #snavi.sticky .scroll_box {
	scrollbar-color: #c4c4c2 #fff;
}

#snavi .box {
	width: 254px;
	margin-left: 16px;
}

#snavi .box .title {
	padding: 20px 0;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1D1E20;
	line-height: 1.5;
	border-top: solid 1px #D6DADE;
	border-bottom: solid 1px #D6DADE;
}

#snavi .box .mtitle {
	position: relative;
	padding: 16px 0 16px 24px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #1D1E20;
	line-height: 1.5;
	border-bottom: solid 1px #D6DADE;
}

#snavi .box .mtitle::before {
	content: '';
	position: absolute;
	top: 27px;
	left: 8px;
	width: 5px;
	height: 5px;
	background: #1D1E20;
	border-radius: 50%;
}

#snavi .box > ul {
	margin: 0 16px;
}

#snavi .box > ul > li > .head,
#snavi .box > ul > li > a {
	display: block;
	box-sizing: border-box;
	position: relative;
	min-height: 70px;
	padding: 20px 30px 20px 0;
	font-size: 1.6rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	border-bottom: solid 1px #D6DADE;
}

#snavi .box > ul > li:last-child > a { border-bottom:none; }
#snavi .box:last-child > ul > li:last-child > a { border-bottom:solid 1px #D6DADE; }

#snavi .box > ul > li.active > .head {
	padding: 20px 0;
	font-weight: 700;
	color: #0163B6;
}

#snavi .box > ul > li > .disp_switch { cursor:pointer; }

#snavi .box > ul > li.active > a,
#snavi .box > ul > li > a:hover { color:#0163B6; }

#snavi .box > ul > li > .head::after,
#snavi .box > ul > li > a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-image: url(../common_img/drop_blue.png);
	background-position: center center;
	background-size: 20px;
	background-repeat: no-repeat;
}

#snavi .box > ul > li.active > .head::after { display:none; }

#snavi .box > ul > li > .head.opened::after { transform:rotate(-180deg); }
#snavi .box > ul > li > a::after { transform:rotate(-90deg); }

#snavi .box > ul > li > a .lock, #snavi .box > ul > li > a .exlink {
	display: inline-block;
	position: relative;
	padding-right: 24px;
}

#snavi .box > ul > li > a .lock::after, #snavi .box > ul > li > a .exlink::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	opacity: 0.8;
}

#snavi .box > ul > li > a .lock::after { background:url(../common_img/icon_lock.png) center center / 16px no-repeat; }
#snavi .box > ul > li > a .exlink::after { background:url(../common_img/icon_link.png) center center / 16px no-repeat; }

#snavi .box > ul > li > .inner {
	display: none;
}

#snavi .box > ul > li > .sub li a {
	display: block;
	position: relative;
	padding: 16px 20px 16px 30px;
	font-size: 1.4rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	background: #fafafa;
	border-bottom: 1px dotted #D6DADE;
}

#snavi .box > ul > li.active > .sub li a {
	color: #0163B6;
	background: #f1f6fc;
}

#snavi .box > ul > li > .sub li a::before {
	content: '';
	position: absolute;
	top: 26px;
	left: 10px;
	width: 8px;
	height: 1px;
	background: #1D1E20;
}

#snavi .box > ul > li.active > .sub li a::before {
	background: #0163B6;
}

/*
CONTENTS
***************************************************************************/
#contents {
	position: relative;
	z-index: 1;
}

#contents > .sec_inner {
	padding: 60px 0;
}

/* ▼PAGE TITLE▼ */
#page_title {
	background: url(../common_img/pc/ptitle_bg.jpg) center center / cover no-repeat;
}

#page_title > .base_box {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	padding: 65px 0;
}

#page_title .title {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 600;
	font-family: "Noto Serif JP";
	letter-spacing: 0.15rem;
}

/* ▼PAGE NAVI▼ */
.pnavi {
	padding: 15px 0;
}

.pnavi ul {
	display: flex;
	flex-wrap: wrap;
}

.pnavi li {
	position: relative;
	margin-right: 12px;
	padding-right: 20px;
	font-size: 1.6rem;
}

.pnavi li a { color:#1D1E20; text-decoration:underline; }

.pnavi li::after {
	content: '＞';
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 1rem;
	color: #1D1E20;
	transform: translateY(-50%) scale(0.6,1.2);
}

.pnavi li:last-child::after { display:none; }

/* ▼ANCHOR▼ */
.anc_list {
	display: flex;
	gap: 16px;
}

.anc_list li {
	flex: auto;
}

.anc_list li a {
	display: block;
	box-sizing: border-box;
	position: relative;
	height: 96px;
	padding-top: 20px;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	color: #0163B6;
	white-space: nowrap;
	background: #FFF;
	border-radius: 6px;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16), 0 6px 10px 0 rgba(0, 0, 0, 0.08);
	transition: .3s;
}

.anc_list li a:hover { color:#129cd8; }

.anc_list li a::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	width: 32px;
	height: 32px;
	margin-left: -16px;
	background-image: url(../common_img/drop_blue.png);
	background-position: center center;
	background-size: 32px;
	background-repeat: no-repeat;
	transition: .3s;
}

.anc_list li a:hover::after { background-image:url(../common_img/drop_lblue.png); }

/* ▼LINK LIST▼ */
.list_head .sub {
	margin-top: 5px;
	font-size: 1.6rem;
}

.list_head.ex .sub { margin-top:0; }

.list_head .sub .lock {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 0 3px;
	vertical-align: -2px;
	background: url(../common_img/icon_lock.png) center center / 18px no-repeat;
}

.link_list {
	padding-bottom: 40px;
}

.link_list .box {
	padding: 60px 0;
	border-bottom: solid 1px #D6DADE;
}

.link_list .box:last-child { padding-bottom:20px; border-bottom:none; }

.link_list .sec_title {
	margin-bottom: 0;
}

.link_list nav {
	margin-top: 72px;
}

.link_list .head a {
	display: block;
	position: relative;
	margin-bottom: 24px;
	padding-left: 32px;
	font-size: 2.4rem;
	font-weight: 700;
}

.link_list .head a:hover { color:#129CD8; }

.link_list .head a::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 12px;
	width: 7px;
	height: 14px;
	background: #0163b6;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	transition: .3s;
}

.link_list .head a:hover::before { background:#129CD8; }

.link_list .title {
	position: relative;
	margin-bottom: 25px;
	padding-left: 24px;
	font-size: 2.6rem;
	font-weight: 700;
	color: #1D1E20;
	line-height: 1.5;
}

.link_list .title::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #1D1E20;
}

.link_list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.link_list li {
	width: calc((100% - 24px) / 2);
}

.link_list li a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	min-height: 116px;
	padding: 0 64px 0 36px;
	font-size: 1.8rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	background: #FFF;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16), 0 6px 10px 0 rgba(0, 0, 0, 0.08);
}

.link_list li a:hover { color:#0163B6; }

.link_list li a::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	width: 4px;
	height: calc(100% - 16px);
	background: linear-gradient(180deg, #015092 0%, #0d7bac 100%);
}

.link_list li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 8px;
	width: 48px;
	height: 48px;
	background: url(../common_img/arrow_link_blue.png) center center / 48px no-repeat;
	transform: translateY(-50%);
}

.link_list li .lock {
	padding-left: 42px;
	background: url(../common_img/icon_lock_black.png) left center / 26px no-repeat;
}

.link_list li .sub {
	display: inline-block;
	margin-right: 16px;
	padding: 0 10px 2px;
	vertical-align: middle;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 32px;
	border: solid 1px #3B3E44;
	border-radius: 4px;
}

/*
TOP
***************************************************************************/
/* ▼TOPIMG▼ */
#topimg {
	position: relative;
	height: 600px;
	background: url(../images/pc/topimg_bg.jpg) center center / cover no-repeat;
	overflow: hidden;
}

#topimg::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 747px;
	height: 600px;
	background: url(../images/pc/topimg_map.png) no-repeat;
	transform: translateY(-50%);
	z-index: 1;
}

#topimg .base_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	text-align: center;
}

#topimg .title {
	margin: 0 -5px 20px;
	font-size: 3.2rem;
	color: #3B3E44;
	font-family: "Noto Serif JP", sans-serif;
}

#topimg .title_box .txt {
	font-size: 1.8rem;
	font-weight: 500;
	color: #3B3E44;
}

/* ▼INTRO▼ */
.top_intro {
	padding: 100px 0;
}

.top_intro .list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.top_intro .list .box {
	width: calc((100% - 50px) / 2);
	background: #F0F6FB;
}

.top_intro .list .box .title_box {
	position: relative;
	width: 100%;
	height: 290px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.top_intro .list .box:nth-child(1) .title_box { background-image:url(../images/intro_img01.jpg); }
.top_intro .list .box:nth-child(2) .title_box { background-image:url(../images/intro_img02.jpg); }
.top_intro .list .box:nth-child(3) .title_box { background-image:url(../images/intro_img03.jpg); }
.top_intro .list .box:nth-child(4) .title_box { background-image:url(../images/intro_img04.jpg); }

.top_intro .list .box .title_box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 28.45%, #707070 100%);
	mix-blend-mode: multiply;
	z-index: 1;
}

.top_intro .list .box .title_box .title {
	position: absolute;
	bottom: 30px;
	left: 24px;
	width: calc(100% - 48px);
	font-size: 2.8rem;
	font-weight: 500;
	color: #fff;
	font-family: "Noto Serif JP", sans-serif;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	z-index: 10;
}

.top_intro .list .box .content {
	padding: 32px;
	line-height: 1.5;
}

.top_intro .list .box .txt {
	margin-bottom: 32px;
}

.top_intro .list .box .btn {
	width: 200px;
	margin: 0 auto;
}

/* ▼LINK▼ */
.top_link {
	padding: 100px 0;
	background: url(../common_img/pc/link_bg.jpg) center center / cover no-repeat;
}

.top_link ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 32px;
}

.top_link li {
	width: calc((100% - 32px) / 2);
}

.top_link li a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 104px;
	padding: 0 60px 0 100px;
	font-size: 2.4rem;
	font-weight: 500;
	color: #1D1E20;
	background-color: #fff;
	background-position: 32px center;
	background-repeat: no-repeat;
	background-size: 48px;
}

.top_link li:nth-child(1) a { background-image:url(../common_img/icon_data.png); }
.top_link li:nth-child(2) a { background-image:url(../common_img/icon_links.png); }

.top_link li a:hover { color:#0163B6; }

.top_link li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 32px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background: url(../common_img/arrow_blue.png) center center / 24px no-repeat;
}

/*
ARTICLE
***************************************************************************/
.article_content {
	float: left;
	width: calc(100% - 290px);
	padding: 0 70px 60px 0;
	color: #1D1E20;
}

.article_content.wide {
	float: none;
	width: 100%;
	padding: 0 0 60px;
}

.article_content .sec_list > .sec {
	margin-bottom: 60px;
}

.article_content .sec_list > .sec:last-child { margin-bottom:0; }

.article_content .box_list > .box {
	margin-bottom: 65px;
	padding-bottom: 65px;
	border-bottom: 1px solid #D6DADE;
}

.article_content .box_list > .box:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.article_content .img_list.type01 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.article_content .img_list.type01 dl {
	width: calc((100% - 80px) / 3);
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.65;
}

.article_content .img_list.type01 dt {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.article_content .city_list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
}

.article_content .city_list li {
	width: calc((100% - 120px) / 5);
	font-size: 1.3rem;
}

.article_content .city_list li .uline {
	text-decoration: underline;
}

.article_content .map iframe {
	display: block;
	width: 100%;
	height: 360px;
	border: none;
}

/*
FNAVI
***************************************************************************/
#fnavi {
	padding: 100px 0;
	font-weight: 500;
	background: #F0F6FB;
}

#fnavi a { color:#1D1E20; }
#fnavi a:hover { color:#0163B6; }

.fnavi_list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 0;
	margin-bottom: 60px;
}

.fnavi_list li:nth-child(2n+1) { width:45%; }
.fnavi_list li:nth-child(2n) { width:55%; }

.fnavi_slist {
	position: relative;
	text-align: center;
	line-height: 1;
}

.fnavi_slist::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	margin-left: -5px;
	height: 100%;
	background: #1D1E20;
}

.fnavi_slist li {
	display: inline-block;
}

.fnavi_slist li a {
	padding: 0 24px;
	color: #1D1E20;
}

/*
FOOTER
***************************************************************************/
footer {
	position: relative;
	padding: 60px 0;
	color: #fff;
	background: #0063b6;
}

footer .info {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
}

footer .info .logo {
	width: 50%;
}

footer .info .txt {
	width: 50%;
	line-height: 1.5;
}

footer .copy {
	padding-top: 24px;
	text-align: center;
	line-height: 1.5;
	border-top: 1px solid rgba(29, 30, 32, 0.30);
}

footer .copy small { font-size:1.2rem; }

footer .btn_ptop {
	display: none;
	position: fixed;
	top: auto;
	bottom: 25px;
	right: 25px;
	z-index: 10;
}

footer .btn_ptop.fit {
	position: absolute;
	top: -30px;
	bottom: auto;
}

/*
OVERLAY WINDOW
***************************************************************************/
.overlay_window {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	z-index: 10000;
	overflow: auto;
}

.overlay_outbox {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.overlay_frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.overlay_content {
	display: none;
	position: relative;
	max-height: 100vh;
}

.overlay_content .zoom_img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay_content .zoom_img img {
	width: auto;
	height: 100%;
}

.modal_close {
	position: fixed;
	top: 5px;
	right: 5px;
	width: 80px;
	height: 80px;
	background: url(../common_img/btn_close.png) center center / 80px no-repeat;
	cursor: pointer;
	z-index: 1001;
}

.modal_switch, .modal_switch span {
	cursor: pointer;
	transition: .3s;
}

/*
SCROLL
***************************************************************************/
.scroll_box { overflow-y:auto; }

.scroll_box::-webkit-scrollbar {
	width: 8px;
}

.scroll_box::-webkit-scrollbar-track {
	background: #e6e6e1;
}

.scroll_box::-webkit-scrollbar-thumb {
	background: #c4c4c2;
}

.gecko .scroll_box {
	scrollbar-width: 8px;
	scrollbar-color: #c4c4c2 #e6e6e1;
}

/*
PARTS
***************************************************************************/
/* ▼BOX▼ */
.box01 {
	padding: 32px;
	border: solid 1px #D6DADE;
}

.box01.blue {
	background: #F0F6FB;
	border: none;
}

.box02 {
	padding: 40px;
	border: solid 6px #b8e3f4;
}

.list_box {
	padding: 32px;
	background: #F0F6FB;
}

.list_box > li {
	position: relative;
	padding-left: 1.2em;
}

.list_box > li:before {
	content: '';
	position: absolute;
	top: 13px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #1e1e20;
}

/* ▼TEXT▼ */
.txt01 {
	text-align: center;
}

.txt01 > span {
	display: inline-block;
	padding: 0 30px 2px;
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
	line-height: 76px;
}

.txt01.blue > span { background:#129dd8; }

/* ▼BUTTON▼ */
.btn01 {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2.4rem;
	color: #fff;
	line-height: 82px;
	background: #e97400;
	transition: .3s;
	cursor: pointer;
}

.btn01:hover { background:#E09345; }

.btn01 span {
	display: inline-block;
	padding-left: 55px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 30px;
}

.btn01 span.mail { background-image:url(../common_img/icon_mail.png); }

.btn02 {
	display: inline-block;
	padding: 0 30px 4px;
	color: #fff;
	line-height: 54px;
	background: #0063b6;
	border-radius: 4px;
}

.btn02.large {
	padding: 0 40px 2px;
	font-size: 2rem;
	line-height: 62px;
	border-radius: 6px;
}

.btn02:hover { background:#129CD8; }

.btn02 > span {
	padding-right: 30px;
	background: url(../common_img/arrow_white.png) right calc(50% + 1px) / 22px no-repeat;
}

.btn02 .extra {
	padding-right: 24px;
	background: url(../common_img/icon_link_white.png) right center / 18px no-repeat;
}

.btn_article_search {
	display: block;
	width: 320px;
	margin: 0 auto;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	color: #fff;
	line-height: 64px;
	background: #0063b6;
	border-radius: 4px;
}

.btn_article_search:hover { background:#129CD8; }

.btn_article_search > span {
	display: inline-block;
	position: relative;
	padding: 0 30px 0 25px;
}

.btn_article_search > span::before, .btn_article_search > span::after {
	content: '';
	position: absolute;
	top: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	transform: translateY(-50%);
}

.btn_article_search > span::before {
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url(../common_img/icon_lock_white.png);
	background-size: 16px;
}

.btn_article_search > span::after {
	right: 0;
	width: 24px;
	height: 24px;
	background-image: url(../common_img/icon_search_white.png);
	background-size: 24px;
}

.link01 {
	font-size: 1.6rem;
	font-weight: 500;
	color: #0163B6;
	letter-spacing: 0.25rem;
}

.link01:hover {
	color: #129CD8;
	text-decoration: underline;
}

.link01 span {
	padding-right: 22px;
	background-image: url(../common_img/arrow_blue.png);
	background-position: right calc(50% + 1px);
	background-repeat: no-repeat;
	background-size: 18px;
	transition: .3s;
}

.link01:hover span { background-image: url(../common_img/arrow_lblue.png); }

.link_file {
	padding-left: 58px;
	line-height: 46px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 46px;
}

.link_file.pdf { background-image:url(../common_img/icon_pdf.png); }
.link_file.excel { background-image:url(../common_img/icon_excel.png); }

.link_file a { text-decoration:underline; }
.link_file a:hover { color:#129CD8; text-decoration:none; }

/* ▼CATCH, TITLE, TEXT▼ */
.sec_title {
	margin-bottom: 60px;
	padding: 40px 0;
	font-size: 3rem;
	font-weight: 600;
	color: #1D1E20;
	line-height: 1.8;
	font-family: "Noto Serif JP";
	letter-spacing: 0.15rem;
	border-top: solid 2px #D6DADE;
	border-bottom: solid 2px #D6DADE;
}

.box_title {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 30px;
	font-size: 2.4rem;
	font-weight: 600;
	font-family: "Noto Serif JP", sans-serif;
	letter-spacing: 0.1rem;
}

.box_title::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 5px;
	background: linear-gradient(90deg, #0163B6 0%, #129CD8 100%);
}

.head_title {
	margin-bottom: 40px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
	font-family: "Noto Serif JP", sans-serif;
	letter-spacing: 0.15rem;
}

.head_title span {
	display: inline-block;
	position: relative;
	padding: 0 40px;
}

.head_title span::before, .head_title span::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 25px;
	height: 1px;
	background: #1D1E20;
}

.head_title span::before { left:0; }
.head_title span::after { right:0; }



.title01 {
	position: relative;
	padding-left: 20px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
}

.title01::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #1D1E20;
}

.title01.pc_size18::before { top:10px; }
.title01.c_blue::before { background:#0163B6; }

.title01 .sub {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	text-align: right;
	font-size: 1.6rem;
	font-weight: 400;
	color: #3B3E44;
	transform: translateY(-50%);
}

.title02 {
	padding: 16px 8px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.15rem;
	border-bottom: 1px dotted rgba(29, 30, 32, 0.30);
}

.title03 {
	position: relative;
	padding-left: 28px;
	font-size: 2.4rem;
	font-weight: 700;
}

.title03::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 0;
	width: 18px;
	height: 2px;
	background: #0163B6;
}

.catch01 {
	padding: 8px 0 8px 35px;
	font-size: 3.2rem;
	font-weight: 700;
	color: #0163B6;
	line-height: 1.5;
	font-family: "Noto Serif JP";
	border-left: solid 6px #0163B6;
}

/* ▼BACKNUMBER▼ */
.backnumber_ctl {
	position: relative;
}

.backnumber_ctl ul {
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 0;
	width: 250px;
	transform: translateY(-50%);
}

.backnumber_ctl li {
	width: 50%;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	color: #1D1B20;
	line-height: 40px;
	background: #fff;
	border: solid 1px #D6DADE;
	cursor: pointer;
}

.backnumber_ctl li.opened {
	font-weight: 500;
	background: #F0F6FB;
}

.backnumber_ctl li:first-child {
	border-radius: 4px 0 0 4px;
}

.backnumber_ctl li:last-child {
	border-left: none;
	border-radius: 0 4px 4px 0;
}

.backnumber_ctl li.opened span {
	display: inline-block;
	padding-left: 22px;
	background: url(../common_img/icon_chk.png) left center / 18px no-repeat;
}

.backnumber_list .set {
	margin-bottom: 24px;
}

.backnumber_list .set:last-child { margin-bottom:0; }

.backnumber_list .txt {
	position: relative;
	padding: 32px 20px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	background: #fff;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08), 0 0 8px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
	z-index: 5;
}

.backnumber_list .txt::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url(../common_img/drop_blue.png) center center / 30px no-repeat;
}

.backnumber_list .txt.opened::after { transform:rotate(-180deg); }

.backnumber_list .inner {
	position: relative;
	padding: 24px;
	background: #f1f6fc;
	z-index: 1;
}

.backnumber_list > .inner { display:none; }
.backnumber_list > .set:not(:first-child) > .inner { display:none; }

.backnumber_list.type_gray .inner { background:#fafafa; }

.issue_content.green .backnumber_list .inner {
	background: #fafafa;
}

.backnumber_list .inner li {
	padding: 16px 0 16px 40px;
	font-weight: 500;
	line-height: 1.5;
	background-position: 5px center;
	background-size: 26px;
	background-repeat: no-repeat;
	border-bottom: 1px dotted rgba(29, 30, 32, 0.30);
}

.backnumber_list .inner li.excel { background-image:url(../common_img/icon_excel.png); }
.backnumber_list .inner li.pdf { background-image:url(../common_img/icon_pdf.png); }

.backnumber_list .inner li a {
	color: #0163B6;
	text-decoration: underline;
}

.backnumber_list .inner li a:hover {
	color: #129CD8;
	text-decoration: none;
}

.backnumber_list .inner .close {
	margin: 16px 0;
	text-align: center;
	font-weight: 500;
	color: #0163B6;
}

.backnumber_list .inner .close span {
	display: inline-block;
	position:relative;
	margin-right: 36px;
	text-decoration: underline;
	cursor: pointer;
}

.backnumber_list .inner .close span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -36px;
	width: 32px;
	height: 32px;
	margin-top: -15px;
	background: url(../common_img/drop_blue.png) center center / 32px no-repeat;
	transform: rotate(-180deg);
}

/* ▼FILE LIST▼ */
.file_list.mid {
	margin-right: 190px;
}

.file_list.reg {
	width: 540px;
	margin: 0 auto;
}

.file_list.small {
	width: 360px;
}

.file_list.side {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
}

.file_list.side li {
	width: calc((100% - 28px) / 2);
}

.file_list li a {
	display: flex;
	align-items: center;
	position: relative;
	height: 96px;
	margin-bottom: 16px;
	padding: 0 64px 0 80px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	background-color: #fff;
	background-position: 20px center;
	background-size: 46px;
	background-repeat: no-repeat;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08), 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.file_list li.ex a { font-size:1.8rem; }
.file_list.side li a { margin-bottom:0; }

.file_list li.excel a { background-image:url(../common_img/icon_excel.png); }
.file_list li.pdf a { background-image:url(../common_img/icon_pdf.png); }

.file_list li a:hover { color:#0063b6; }

.file_list li:last-child a { margin-bottom:0; }

.file_list li a .sub {
	font-size: 1.6rem;
}

.file_list li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url(../common_img/icon_download.png) center center / 30px no-repeat;
}

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

	.file_list li a { font-size:1.8rem; }

}

/* ▼ZOOM IMG▼ */
.zoom_list dl {
	margin-bottom: 40px;
}

.zoom_list dl:last-child { margin-bottom:0; }

.zoom_list dt {
	position: relative;
	margin-bottom: 16px;
	padding-left: 22px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

.zoom_list dt:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 10px;
	height: 10px;
	border: solid 2px #0163B6;
	border-radius: 50%;
}

.zoom_list dd {
	font-size: 1.4rem;
}

.zoom_list dd .thumb_img {
	position: relative;
	margin-bottom: 15px;
	cursor: pointer;
}

.zoom_list dd .thumb_img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	transition: .3s;
	opacity: 0;
	z-index: 1;
}

.zoom_list dd .thumb_img:hover::before { opacity:1; }

.zoom_list dd .thumb_img img { max-width:100%; }

.zoom_list dd .zoom_txt {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 78px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	transform: translate(-50%, -50%);
	transition: .3s;
	opacity: 0;
	z-index: 2;
}

.zoom_list dd .zoom_txt span {
	padding-left: 40px;
	background: url(../common_img/icon_zoom.png) left center / 30px no-repeat;
}

.zoom_list dd .thumb_img:hover .zoom_txt { opacity:1; }

/* ▼SWITCH▼ */
.switch_box .title {
	position: relative;
	padding: 32px 20px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
	background: #fff;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08), 0 0 8px 0 rgba(0, 0, 0, 0.16);
	cursor: pointer;
	z-index: 5;
}

.switch_box .title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url(../common_img/drop_blue.png) center center / 30px no-repeat;
}

.switch_box .title.opened::after { transform:rotate(-180deg); }

.switch_box .inner {
	display: none;
	position: relative;
	padding: 24px;
	background: #f1f6fc;
	z-index: 1;
}

/* ▼ICON▼ */
.disp_switch .icon {
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

.disp_switch .icon:before, .disp_switch .icon:after {
	content: '';
	position: absolute;
	background: #232629;
}

.disp_switch .icon:before {
	top: 0;
	left: 50%;
	width: 3px;
	height: 100%;
	margin-left: -1.5px;
}

.disp_switch .icon:after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	margin-top: -1.5px;
}

.disp_switch.opened .icon:before { display:none; }

.down_arrow {
	width: 60px;
	margin: 10px auto;
	text-align: center;
}

/* ▼NOTICE LIST▼ */
.note_list > li {
	position: relative;
	padding-left: 1.2em;
	font-size: 1.4rem;
	color: #585858;
	line-height: 1.8;
}

.note_list > li:before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.note_list.center > li {
	padding-left: 0;
	text-align: center;
}

.note_list.center > li span {
	position: relative;
	padding-left: 1.2em;
}

.note_list.center > li:before { display:none; }

.note_list.center > li span:before {
	content: '※';
	position: absolute;
	top: -3px;
	left: 0;
}

/* ▼LIST▼ */
.li_pc_mb5 > li { margin-bottom:5px; }
.li_pc_mb10 > li { margin-bottom:10px; }
.li_pc_mb15 > li { margin-bottom:15px; }
.li_pc_mb20 > li { margin-bottom:20px; }
.li_pc_mb25 > li { margin-bottom:25px; }
.li_pc_mb30 > li { margin-bottom:30px; }

.list01 > li:last-child,
.list02 > li:last-child,
.list03 > li:last-child,
.list04 > li:last-child,
.list05 > li:last-child,
.list06 > li:last-child {
	margin-bottom: 0;
}

.list01 > li {
	position: relative;
	padding-left: 1.1em;
}

.list01 > li:before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.list02 > li {
	position: relative;
	padding-left: 20px;
}

.list02 > li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	border: solid 2px #0163B6;
	border-radius: 50%;
}

.list03 > li {
	position: relative;
	padding-left: 24px;
}

.list03.number_plus > li { padding-left:2.2em; }
.list03.number_circle > li { padding-left:1.2em; }
.list03.kana > li { padding-left:30px; }

.list03 > li:before {
	position: absolute;
	top: 0;
	left: 0;
}

.list03.number.blue > li:before { color:#0163B6; }

.list03 > li:nth-child(1):before { content:'a.'; }
.list03 > li:nth-child(2):before { content:'b.'; }
.list03 > li:nth-child(3):before { content:'c.'; }
.list03 > li:nth-child(4):before { content:'d.'; }
.list03 > li:nth-child(5):before { content:'e.'; }
.list03 > li:nth-child(6):before { content:'f.'; }
.list03 > li:nth-child(7):before { content:'g.'; }
.list03 > li:nth-child(8):before { content:'h.'; }
.list03 > li:nth-child(9):before { content:'i.'; }
.list03 > li:nth-child(10):before { content:'j.'; }

.list03.number > li:nth-child(1):before { content:'1.'; }
.list03.number > li:nth-child(2):before { content:'2.'; }
.list03.number > li:nth-child(3):before { content:'3.'; }
.list03.number > li:nth-child(4):before { content:'4.'; }
.list03.number > li:nth-child(5):before { content:'5.'; }
.list03.number > li:nth-child(6):before { content:'6.'; }
.list03.number > li:nth-child(7):before { content:'7.'; }
.list03.number > li:nth-child(8):before { content:'8.'; }
.list03.number > li:nth-child(9):before { content:'9.'; }
.list03.number > li:nth-child(10):before { content:'10.'; }

.list03.number_plus > li:nth-child(1):before { content:'（1）'; }
.list03.number_plus > li:nth-child(2):before { content:'（2）'; }
.list03.number_plus > li:nth-child(3):before { content:'（3）'; }
.list03.number_plus > li:nth-child(4):before { content:'（4）'; }
.list03.number_plus > li:nth-child(5):before { content:'（5）'; }
.list03.number_plus > li:nth-child(6):before { content:'（6）'; }
.list03.number_plus > li:nth-child(7):before { content:'（7）'; }
.list03.number_plus > li:nth-child(8):before { content:'（8）'; }
.list03.number_plus > li:nth-child(9):before { content:'（9）'; }
.list03.number_plus > li:nth-child(10):before { content:'（10）'; }

.list03.number_circle > li:nth-child(1):before { content:'①'; }
.list03.number_circle > li:nth-child(2):before { content:'②'; }
.list03.number_circle > li:nth-child(3):before { content:'③'; }
.list03.number_circle > li:nth-child(4):before { content:'④'; }
.list03.number_circle > li:nth-child(5):before { content:'⑤'; }
.list03.number_circle > li:nth-child(6):before { content:'⑥'; }
.list03.number_circle > li:nth-child(7):before { content:'⑦'; }
.list03.number_circle > li:nth-child(8):before { content:'⑧'; }
.list03.number_circle > li:nth-child(9):before { content:'⑨'; }
.list03.number_circle > li:nth-child(10):before { content:'⑩'; }
.list03.number_circle > li:nth-child(11):before { content:'⑪'; }
.list03.number_circle > li:nth-child(12):before { content:'⑫'; }
.list03.number_circle > li:nth-child(13):before { content:'⑬'; }
.list03.number_circle > li:nth-child(14):before { content:'⑭'; }
.list03.number_circle > li:nth-child(15):before { content:'⑮'; }

.list03.kana > li:nth-child(1):before { content:'ア）'; }
.list03.kana > li:nth-child(2):before { content:'イ）'; }
.list03.kana > li:nth-child(3):before { content:'ウ）'; }
.list03.kana > li:nth-child(4):before { content:'エ）'; }
.list03.kana > li:nth-child(5):before { content:'オ）'; }
.list03.kana > li:nth-child(6):before { content:'カ）'; }
.list03.kana > li:nth-child(7):before { content:'キ）'; }
.list03.kana > li:nth-child(8):before { content:'ク）'; }
.list03.kana > li:nth-child(9):before { content:'ケ）'; }
.list03.kana > li:nth-child(10):before { content:'コ）'; }

.list04 > li {
	position: relative;
	padding-left: 1.2em;
}

.list04 > li:before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.list05 > li {
	display: inline-block;
	margin-right: 20px;
}

.list05 > li.ex {
	text-decoration: underline;
}

.list06 > li {
	position: relative;
	padding-left: 1.2em;
}

.list06 > li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #1e1e20;
}

/* ▼DL▼ */
.dlist01 dt {
	margin-bottom: 24px;
	padding-bottom: 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	border-bottom: solid 1px #D6DADE;
}

.dlist02 {
	padding: 16px 0;
	border-bottom: solid 1px #D6DADE;
}

.dlist02:first-child { padding-top:0; }
.dlist02:last-child { padding-bottom:0; border-bottom:none; }

.dlist02 dt {
	position: relative;
	margin-bottom: 8px;
	padding-left: 1.5em;
	font-size: 1.8rem;
	font-weight: 700;
}

.dlist02 dt::before {
	position: absolute;
	top: 0;
	left: 0;
}

.dlist02.blue dt::before { color:#0163B6; }

.dlist02:nth-child(1) dt::before { content:'1.'; }
.dlist02:nth-child(2) dt::before { content:'2.'; }
.dlist02:nth-child(3) dt::before { content:'3.'; }
.dlist02:nth-child(4) dt::before { content:'4.'; }
.dlist02:nth-child(5) dt::before { content:'5.'; }

.dlist02 dd {
	padding-left: 1.5em;
	font-size: 1.6rem;
}

.dlist03 dl {
	display: flex;
	align-items: flex-start;
}

.dlist03 dt {
	width: 160px;
	font-weight: 700;
}

.dlist03 dd {
	width: calc(100% - 160px);
}

.dlist04 dl {
	display: flex;
	align-items: flex-start;
}

.dlist04 dt {
	width: 40%;
	font-weight: 700;
}

.dlist04 dd {
	width: 60%;
}

/* ▼TABLE▼ */
.tbl01 th, .tbl01 td {
	padding: 22px;
	vertical-align: middle;
	border: solid 1px #B8BBBE;
}

.tbl01 th {
	font-weight: 700;
	line-height: 1.3;
	background: #f1f2f4;
}

.tbl01.green th { background:#eaf8e7; }

.tbl01 td {
	background: #fff;
}

.tbl02 th, .tbl02 td {
	padding: 16px;
	vertical-align: middle;
	font-size: 1.4rem;
	border: solid 1px #B8BBBE;
}

.tbl02 th {
	font-weight: 700;
	line-height: 1.3;
	background: #f1f2f4;
}

.tbl02 td {
	background: #fff;
}

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.iblock { display:inline-block!important; }
.none { display:none!important; }

.posit_r { position:relative!important; }
.posit_a { position:absolute!important; }
.posit_f { position:fixed!important; }

.align_c { text-align:center!important; }
.align_r { text-align:right!important; }
.align_l { text-align:left!important; }

.disp_l { float:left!important; }
.disp_r { float:right!important; }

.va_top { vertical-align:top!important; }
.va_mid { vertical-align:middle!important; }
.va_btm { vertical-align:bottom!important; }

/* ▼width▼ */
.pc_w4per { width:4%; }
.pc_w5per { width:5%; }
.pc_w7per { width:7%; }
.pc_w8per { width:8%; }
.pc_w10per { width:10%; }
.pc_w12per { width:12%; }
.pc_w14per { width:14%; }
.pc_w15per { width:15%; }
.pc_w17per { width:17%; }
.pc_w18per { width:18%; }
.pc_w20per { width:20%; }
.pc_w22per { width:22%; }
.pc_w25per { width:25%; }
.pc_w28per { width:28%; }
.pc_w30per { width:30%; }
.pc_w35per { width:35%; }
.pc_w50per { width:50%; }
.pc_w55per { width:55%; }
.pc_w56per { width:56%; }
.pc_w60per { width:60%; }
.pc_w65per { width:65%; }
.pc_w70per { width:70%; }
.pc_w75per { width:75%; }
.pc_w80per { width:80%; }
.pc_w100per { width:100%!important; }

.pc_w90 { width:90px!important; }
.pc_w100 { width:100px!important; }
.pc_w120 { width:120px!important; }
.pc_w160 { width:160px!important; }
.pc_w200 { width:200px!important; }
.pc_w250 { width:250px!important; }
.pc_w320 { width:320px!important; }
.pc_w400 { width:400px!important; }
.pc_w500 { width:500px!important; }
.pc_w510 { width:510px!important; }
.pc_w580 { width:580px!important; }

.pc_h210 { height:210px!important; }

.zoom05 { zoom:0.5; }

/* ▼area▼ */
.pc_mb140 { margin-bottom:140px!important; }
.pc_mb120 { margin-bottom:120px!important; }
.pc_mb100 { margin-bottom:100px!important; }
.pc_mb95 { margin-bottom:95px!important; }
.pc_mb90 { margin-bottom:90px!important; }
.pc_mb85 { margin-bottom:85px!important; }
.pc_mb80 { margin-bottom:80px!important; }
.pc_mb75 { margin-bottom:75px!important; }
.pc_mb70 { margin-bottom:70px!important; }
.pc_mb65 { margin-bottom:65px!important; }
.pc_mb60 { margin-bottom:60px!important; }
.pc_mb55 { margin-bottom:55px!important; }
.pc_mb50 { margin-bottom:50px!important; }
.pc_mb45 { margin-bottom:45px!important; }
.pc_mb40 { margin-bottom:40px!important; }
.pc_mb35 { margin-bottom:35px!important; }
.pc_mb30 { margin-bottom:30px!important; }
.pc_mb25 { margin-bottom:25px!important; }
.pc_mb20 { margin-bottom:20px!important; }
.pc_mb15 { margin-bottom:15px!important; }
.pc_mb12 { margin-bottom:12px!important; }
.pc_mb10 { margin-bottom:10px!important; }
.pc_mb8 { margin-bottom:8px!important; }
.pc_mb5 { margin-bottom:5px!important; }
.pc_mb0 { margin-bottom:0!important; }

.pc_mlr115 { margin-left:115px!important; margin-right:115px!important; }
.pc_mlr100 { margin-left:100px!important; margin-right:100px!important; }
.pc_mlr80 { margin-left:80px!important; margin-right:80px!important; }
.pc_mlr75 { margin-left:75px!important; margin-right:75px!important; }
.pc_mlr70 { margin-left:70px!important; margin-right:70px!important; }
.pc_mlr60 { margin-left:60px!important; margin-right:60px!important; }
.pc_mlr55 { margin-left:55px!important; margin-right:55px!important; }
.pc_mlr50 { margin-left:50px!important; margin-right:50px!important; }
.pc_mlr45 { margin-left:40px!important; margin-right:45px!important; }
.pc_mlr40 { margin-left:40px!important; margin-right:40px!important; }
.pc_mlr35 { margin-left:35px!important; margin-right:35px!important; }
.pc_mlr30 { margin-left:30px!important; margin-right:30px!important; }
.pc_mlr25 { margin-left:25px!important; margin-right:25px!important; }
.pc_mlr20 { margin-left:20px!important; margin-right:20px!important; }
.pc_mlr15 { margin-left:15px!important; margin-right:15px!important; }
.pc_mlr10 { margin-left:10px!important; margin-right:10px!important; }
.pc_mlr5 { margin-left:5px!important; margin-right:5px!important; }
.pc_mlr-1 { margin-left:-1px!important; margin-right:-1px!important; }
.pc_mlr-5 { margin-left:-5px!important; margin-right:-5px!important; }
.pc_mlr-10 { margin-left:-10px!important; margin-right:-10px!important; }
.pc_mlr-20 { margin-left:-20px!important; margin-right:-20px!important; }
.pc_mlr-40 { margin-left:-40px!important; margin-right:-40px!important; }
.pc_mlr-50 { margin-left:-50px!important; margin-right:-50px!important; }
.pc_mlr-60 { margin-left:-60px!important; margin-right:-60px!important; }
.pc_mlr-90 { margin-left:-90px!important; margin-right:-90px!important; }
.pc_mlr_auto { margin-left:auto!important; margin-right:auto!important; }

.pc_mr50 { margin-right:50px!important; }
.pc_mr40 { margin-right:40px!important; }
.pc_mr30 { margin-right:30px!important; }
.pc_mr25 { margin-right:25px!important; }
.pc_mr20 { margin-right:20px!important; }
.pc_mr15 { margin-right:15px!important; }
.pc_mr10 { margin-right:10px!important; }
.pc_mr5 { margin-right:5px!important; }
.pc_mr0 { margin-right:0px!important; }
.pc_mr-5 { margin-right:-5px!important; }

.pc_ml80 { margin-left:80px!important; }
.pc_ml50 { margin-left:50px!important; }
.pc_ml40 { margin-left:40px!important; }
.pc_ml30 { margin-left:30px!important; }
.pc_ml20 { margin-left:20px!important; }
.pc_ml15 { margin-left:15px!important; }
.pc_ml10 { margin-left:10px!important; }
.pc_ml0 { margin-left:0px!important; }
.pc_ml-5 { margin-left:-5px!important; }
.pc_ml-10 { margin-left:-10px!important; }
.pc_ml-15 { margin-left:-15px!important; }
.pc_ml-20 { margin-left:-20px!important; }

.ml12em { margin-left:1.2em!important; }

.pc_mt90 { margin-top:90px!important; }
.pc_mt80 { margin-top:80px!important; }
.pc_mt70 { margin-top:70px!important; }
.pc_mt60 { margin-top:60px!important; }
.pc_mt55 { margin-top:55px!important; }
.pc_mt50 { margin-top:50px!important; }
.pc_mt45 { margin-top:45px!important; }
.pc_mt40 { margin-top:40px!important; }
.pc_mt30 { margin-top:30px!important; }
.pc_mt20 { margin-top:20px!important; }
.pc_mt15 { margin-top:15px!important; }
.pc_mt10 { margin-top:10px!important; }
.pc_mt5 { margin-top:5px!important; }
.pc_mt3 { margin-top:3px!important; }
.pc_mt0 { margin-top:0!important; }
.pc_mt-5 { margin-top:-5px!important; }
.pc_mt-10 { margin-top:-10px!important; }
.pc_mt-20 { margin-top:-20px!important; }
.pc_mt-40 { margin-top:-40px!important; }
.pc_mt-50 { margin-top:-50px!important; }
.pc_mt-80 { margin-top:-80px!important; }

.pc_pb100 { padding-bottom:100px!important; }
.pc_pb80 { padding-bottom:80px!important; }
.pc_pb30 { padding-bottom:30px!important; }
.pc_pb8 { padding-bottom:8px!important; }
.pc_pb5 { padding-bottom:5px!important; }
.pc_pb0 { padding-bottom:0!important; }

.pc_p20 { padding:20px!important; }
.pc_p15 { padding:15px!important; }
.pc_p10 { padding:10px!important; }

.pc_pt60 { padding-top:60px!important; }
.pc_pt50 { padding-top:50px!important; }
.pc_pt40 { padding-top:40px!important; }
.pc_pt30 { padding-top:30px!important; }
.pc_pt20 { padding-top:20px!important; }
.pc_pt5 { padding-top:5px!important; }

.pc_ptb20 { padding-top:20px!important; padding-bottom:20px!important; }
.pc_ptb15 { padding-top:15px!important; padding-bottom:15px!important; }
.pc_ptb5 { padding-top:5px!important; padding-bottom:5px!important; }
.pc_ptb0 { padding-top:0!important; padding-bottom:0!important; }

.pc_plr25 { padding-left:25px!important; padding-right:25px!important; }

/* ▼font▼ */
.bold { font-weight:900!important; }
.semibold { font-weight:700!important; }
.normal { font-weight:500!important; }
.itaric { font-style: italic!important; }

.pc_size10 { font-size:1rem!important; }
.pc_size11 { font-size:1.1rem!important; }
.pc_size12 { font-size:1.2rem!important; }
.pc_size13 { font-size:1.3rem!important; }
.pc_size14 { font-size:1.4rem!important; }
.pc_size16 { font-size:1.6rem!important; }
.pc_size17 { font-size:1.7rem!important; }
.pc_size18 { font-size:1.8rem!important; }
.pc_size19 { font-size:1.9rem!important; }
.pc_size20 { font-size:2.0rem!important; }
.pc_size22 { font-size:2.2rem!important; }
.pc_size24 { font-size:2.4rem!important; }
.pc_size30 { font-size:3.0rem!important; }
.pc_size32 { font-size:3.2rem!important; }
.pc_size36 { font-size:3.6rem!important; }
.pc_size40 { font-size:4.0rem!important; }
.pc_size48 { font-size:4.8rem!important; }

.c_blue { color:#0163B6!important; }
.c_orange { color:#E97500!important; }
.c_green { color:#2fcaae!important; }
.c_gray { color:#3B3E44!important; }
.c_black { color:#1D1E20!important; }

.lh2 { line-height:2!important; }
.lh18 { line-height:1.8!important; }
.lh16 { line-height:1.6!important; }
.lh15 { line-height:1.5!important; }

.indent01 {
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.indent02 {
	padding-left: 1.8em;
	text-indent: -1.8em;
}

/* ▼link▼ */
a.u_line, .u_line { text-decoration:underline!important; }
a.no_line { text-decoration:none!important; }

/* ▼frame▼ */
.img_frame01 { border:solid 1px #fff; }

/* ▼background▼ */
.bg_none { background:none!important; }
.bg_gray { background:#f1f2f4!important; }

/* ▼border▼ */
.border_none { border:none!important; }

/* ▼form▼ */
input[type="text"], input[type="file"], input[type="tel"], input[type="email"], input[type="url"], input[type="date"], input[type="password"], select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 64px;
	padding: 0 20px 2px;
	vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 400;
	color: #1D1E20;
	font-family: "Noto Sans JP", sans-serif;
	background: #fff;
	border: solid 2px #B8BBBE;
	border-radius: 4px;
	caret-color: #999;
}

textarea {
	display: block;
	width: 100%!important;
	min-height: 220px;
	padding: 15px 20px;
	line-height: 2;
}

input[type="text"]:focus, input[type="file"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
	border: solid 2px #129CD8;
	outline: none;
}

input[type="submit"]:focus, button:focus { outline:none; }

.select_box {
	position: relative;
}

.select_box::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 5px;
	margin-top: -2.5px;
	background: rgba(0,0,0,0.56);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 10;
}

.select_parts {
	display: inline-block;
	margin: 0 16px 0 8px;
	vertical-align: middle;
}

.select_parts .mini {
	margin-left: 15px;
	font-size: 1.6rem;
}

input::-webkit-input-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

input:-ms-input-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

input::-moz-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

textarea::-webkit-input-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

textarea:-ms-input-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

textarea::-moz-placeholder {
	font-size: 1.8rem!important;
	color: #999;
	font-weight: 400;
}

label { display:block; box-sizing:border-box; position:relative; width:100%; cursor:pointer; }

/* ▼original radio checkbox▼ */
input[type="radio"], input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin: -9px 0 0;
	vertical-align: middle;
	background: #fff;
	border: solid 2px rgba(0, 0, 0, 0.56);
	border-radius: 2px;
	cursor: pointer;
}

input[type="radio"] {
	width: 26px;
	height: 26px;
	margin: -13px 0 0;
	border-radius: 50%;
}

input[type="radio"]:after, input[type="checkbox"]:after {
	display: block;
	box-sizing: border-box;
	content: '';
	position: absolute;
	opacity: 0;
}

input[type="radio"]:after {
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	background: #129CD8;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

input[type="checkbox"]:after {
	top: -2px;
	left: -2px;
	width: 20px;
	height: 20px;
	background: #1976D2 url(../common_img/icon_chk_white.png) center center / 12px no-repeat;
	border: solid 2px #1976D2;
	border-radius: 2px;
}

.radio_list li label.active input[type="radio"]:after, input[type="checkbox"]:checked:after { opacity:1; }

.radio_list li label.active input[type="radio"] { border:solid 2px #129CD8; }

.radio_list li label { padding-left:36px; }
.chk_list li label { padding-left:32px; }
