@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;
	--transition: transform .6s cubic-bezier(.19,1,.22,1);
}

header.is-fix {
	position: fixed;
	transform: translate3d(0,-100%,0);
}

header.is-hide {
	transform: translate3d(0,-100%,0);
	transition: var(--transition);
}

header.is-show {
	transition: var(--transition);
	transform: translate3d(0,0,0);
}

header .logo {
	width: 320px;
}

header .logo a:hover { opacity:1 }

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

.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;
}

.h_search {
	width: 164px;
	margin-left: 24px;
}

.search_box {
	position: relative;
}

.search_box input[type="text"] {
	width: 100%;
	height: 40px;
	padding: 0 20px;
	font-size: 1.4rem;
	font-weight: 400;
	color: #3B3E44;
	line-height: 40px;
	background: #f7f7f7;
	border: solid 1px #d6d9de;
	border-radius: 360px;
}

.search_box input::-webkit-input-placeholder {
	font-size: 1.4rem!important;
}

.search_box input:-ms-input-placeholder {
	font-size: 1.4rem!important;
}

.search_box input::-moz-placeholder {
	font-size: 1.4rem!important;
}

.search_box .icon {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}

.btn_gnavi {
	display: none;
}

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

#gnavi.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin-top: 0;
	padding-left: 220px;
	background: #fff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
	z-index: 5000;
}

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

#gnavi.fixed .logo {
	display: block;
	position: absolute;
	top: 0;
	left: 30px;
}

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

#gnavi.fixed .gnavi_list {
	height: 80px;
}

.gnavi_list > li {
	padding-bottom: 2px;
	text-align: center;
	font-size: 1.7rem;
	color: #fff;
	line-height: 52px;
	background: #0063b6;
	border-right: solid 1px #277ac0;
	transition: .3s;
}

#gnavi.fixed .gnavi_list > li {
	position: relative;
	font-weight: 500;
	color: #0163B6;
	line-height: 78px;
	background: #fff;
	border-right: none;
}

#gnavi.fixed .gnavi_list > li.current { color:#129CD8; }

#gnavi.fixed .gnavi_list > li::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 66px;
	background: #fff;
	transition: .3s;
	z-index: 0;
}

.gnavi_list > li:nth-child(2) { width:17%; }
.gnavi_list > li:nth-child(3) { width:11%; }
.gnavi_list > li:nth-child(4) { width:10%; }
.gnavi_list > li:nth-child(5) { width:11%; }
.gnavi_list > li:nth-child(6) { width:12%; }
.gnavi_list > li:nth-child(7) { width:15%; }
.gnavi_list > li:nth-child(8) { width:11%; }
.gnavi_list > li:nth-child(9) { width:13%; }

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

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

.gnavi_list > li .drop_switch { cursor:pointer; }

.gnavi_list > li .drop_switch span {
	display: inline-block;
	position: relative;
	padding-right: 25px;
	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.fixed .gnavi_list > li .drop_switch span::before,
.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.fixed .gnavi_list > li.current .drop_switch span::before { background-image:url(../common_img/drop_lblue.png); }

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

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

.gnavi_list .drop_inner.fit {
	height: calc(100vh - 140px);
}

#gnavi.fixed .gnavi_list .drop_inner {
	top: 80px;
}

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

.gnavi_list .inner {
	display: flex;
	width: 1380px;
	line-height: 2;
}

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

.gnavi_list .inner .title {
	width: 220px;
	font-size: 2.2rem;
	font-weight: 700;
}

.gnavi_list .inner .title.ex { width:320px; }

.gnavi_list .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 .inner .title a:hover span { background-image:url(../common_img/arrow_link_lblue.png); }

.gnavi_list .inner .content {
	width: calc(100% - 220px);
	padding-left: 55px;
	border-left: solid 1px #d9d9d9;
}

.gnavi_list .inner .content.ex { width:calc(100% - 320px); }

.gnavi_list .inner .content .box {
	margin-bottom: 40px;
}

.gnavi_list .inner .content .box.left {
	float: left;
	width: calc((100% - 55px) / 2);
}

.gnavi_list .inner .content .box.right {
	float: right;
	width: calc((100% - 55px) / 2);
}

.gnavi_list .inner .content .head {
	margin-bottom: 20px;
	padding-bottom: 5px;
	font-size: 2rem;
	font-weight: 700;
	color: #1D1E20;
	border-bottom: solid 1px #d9d9d9;
}

.gnavi_list .inner .content .list {
	float: left;
	width: 300px;
	margin-right: 55px;
}

.gnavi_list .inner .content .list:last-child { margin-right:0; }
.gnavi_list .inner .content .list:nth-child(2) { width:calc(100% - 710px); }

.gnavi_list .inner .content .nlist {
	display: flex;
	flex-wrap: wrap;
}

.gnavi_list .inner .content .nlist li {
	padding-right: 60px;
}

.gnavi_list .inner .content .nlist li a,
.gnavi_list .inner .content .hlink a {
	display: block;
	position: relative;
	margin-bottom: 10px;
	padding-left: 24px;
	font-size: 1.8rem;
	font-weight: 700;
}

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

.gnavi_list .inner .content .nlist li a:hover::before,
.gnavi_list .inner .content .hlink a:hover::before { background:#129CD8; }

.gnavi_list .inner .content .hlink span {
	padding-right: 20px;
	background-image: url(../common_img/icon_lock_blue.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 16px;
	transition: .3s;
}

.gnavi_list .inner .content .hlink a:hover span { background-image:url(../common_img/icon_lock_lblue.png); }

.gnavi_list .inner ul.left {
	float: left;
	width: 280px;
}

.gnavi_list .inner ul.right {
	float: right;
	width: calc(100% - 335px);
}

.gnavi_list .inner .mlist li a {
	display: block;
	position: relative;
	padding: 0 0 2px 24px;
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 50px;
	border-bottom: dotted 1px #0163B6;
}

.gnavi_list .inner .mlist li a::before {
	content: '';
	position: absolute;
	top: 25px;
	left: 8px;
	width: 8px;
	height: 1px;
	background: #0163b6;
}

.gnavi_list .inner .mlist li a:hover::before { background:#129CD8; }

.gnavi_list .inner .mlist li a .stxt {
	font-size: 1.3rem;
	font-weight: 400;
}

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

	.gnavi_list .inner { width:100%; }

}

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

	.gnavi_list .inner .content .list {
		width: calc((100% - 55px) / 2);
	}
	.gnavi_list .inner .content .list:nth-child(2) { width:calc((100% - 55px) / 2); margin-right:0; }

	.gnavi_list .inner ul.left, .gnavi_list .inner ul.right {
		float: none;
		width: 100%;
	}

}

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

	.gnavi_list > li { font-size:1.35rem; }

}

/*
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: 2rem;
	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,
#snavi .box > ul > li > .sub li a .lock::after, #snavi .box > ul > li > .sub 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 > .sub li a .lock::after, #snavi .box > ul > li > .sub li a .exlink::after { right:20px; }

#snavi .box > ul > li > a .lock::after, #snavi .box > ul > li > .sub li a .lock::after { background:url(../common_img/icon_lock.png) center center / 16px no-repeat; }
#snavi .box > ul > li > a .exlink::after, #snavi .box > ul > li > .sub 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 40px 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;
}

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

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

/* ▼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.ex li {
	flex: 1;
	width: calc((100% - 32px) / 3);
}

.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 .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: 2.2rem;
	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 .outlink {
	display: inline-block;
	padding-right: 42px;
	background: url(../common_img/icon_link.png) right 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;
}

/* ▼DATA LIST▼ */
.data_search {
	position: relative;
	margin-bottom: 70px;
}

.data_search input[type="text"] {
	padding: 0 60px 0 20px;
	color: #3B3E44;
	background: #f7f7f7;
	border: solid 1px #d6d9de;
	border-radius: 10px;
	caret-color: #999;
}

.data_search input[type="text"]:focus {
	border: solid 1px #d6d9de;
}

.data_search .icon {
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 30px;
	height: 30px;
	background: url(../common_img/icon_search.png) center center / 30px no-repeat;
	transform: translateY(-50%);
	cursor: pointer;
}

.data_list {
	padding-bottom: 40px;
}

.data_list dl {
	margin-bottom: 30px;
}

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

.data_list dt {
	position: relative;
	margin-bottom: 25px;
	padding-left: 28px;
	font-size: 2rem;
	font-weight: 700;
}

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

.data_list dd a {
	display: block;
	position: relative;
	padding: 28px 64px 30px 30px;
	font-size: 1.8rem;
	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);
}

.data_list dd a:hover { color:#0063b6; }

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

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

	.data_list dd a { font-size:1.8rem; }

}

/* ▼THEME LIST▼ */
.theme_list {
	padding-bottom: 20px;
}

.theme_list dl {
	margin-bottom: 40px;
}

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

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

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

.theme_list .txt {
	margin-bottom: 25px;
	font-size: 1.8rem;
	font-weight: 500;
}

.theme_list .tbl01 {
	margin-bottom: 25px;
}

.theme_list .tbl01 th, .theme_list .tbl01 td {
	padding: 22px 16px;
	font-size: 1.5rem;
	line-height: 1.5;
}

.theme_list .list li a {
	display: block;
	position: relative;
	margin-bottom: 16px;
	padding: 30px 64px 32px 80px;
	font-size: 1.8rem;
	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);
}

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

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

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

.theme_list .list li .lock_link {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-left: 10px;
	vertical-align: -3px;
	background: url(../common_img/icon_lock.png) center center / 22px no-repeat;
}

.theme_list .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;
}

/* ▼FLOATING▼ */
.floating_bnr {
	display: none;
	position: fixed;
	top: 50%;
	right: 15px;
	width: 375px;
	transform: translateY(-50%);
	z-index: 2000;
}

.floating_bnr a {
	display: flex;
	padding: 20px;
	font-size: 1.4rem;
	color: #3B3E44;
	background: #fff;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16);
}

.floating_bnr .img {
	width: 110px;
}

.floating_bnr .content {
	width: calc(100% - 110px);
	padding-left: 16px;
}

.floating_bnr .title {
	margin-bottom: 8px;
	font-size: 2rem;
	font-weight: 600;
	color: #0163B6;
	line-height: 1.4;
	font-family: "Noto Serif JP";
	letter-spacing: 0.05rem;
}

.floating_bnr .list dl {
	display: flex;
	align-items: center;
	line-height: 1.65;
}

.floating_bnr .list dt {
	width: 45px;
	font-size: 1.2rem;
}

.floating_bnr .list dd {
	width: calc(100% - 45px);
	font-size: 1.3rem;
	color: #000;
}

.floating_bnr .close {
	display: block;
	position: absolute;
	top: -12px;
	right: -12px;
	width: 24px;
	height: 24px;
	background: url(../common_img/bnr_close.png) no-repeat;
	cursor: pointer;
	z-index: 2001;
}

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

#topimg .bg_inner {
	position: relative;
	width: 1440px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

#topimg .bg_inner::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: 0;
}

#topimg .sec_inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1270px;
	height: 100%;
	margin: 0 auto;
	padding-bottom: 15px;
	z-index: 1;
}

#topimg .title_box {
	width: calc(100% - 560px);
	padding-right: 70px;
}

#topimg .title_box .title {
	margin-bottom: 25px;
	font-size: 3.2rem;
	color: #3B3E44;
	line-height: 1.8;
	font-family: "Noto Serif JP", sans-serif;
}

#topimg .title_box .txt {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.15rem;
}

#topimg .title_box .line_break {
	display: block;
}

#topimg .top_slide {
	position: relative;
	width: 560px;
	z-index: 5;
}

#topimg .slick-track {
	display: flex;
}

#topimg .box {
	position: relative;
}

#topimg .box::before {
	content: '';
	position: absolute;
	bottom: -15px;
	right: -15px;
	width: 100%;
	height: 100%;
	background: rgba(48, 79, 140, 0.80);
	background-blend-mode: multiply;
	z-index: 1;
}

#topimg .box .inner {
	position: relative;
	width: 100%;
	height: 440px;
	padding: 40px;
	background: #fff;
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
	z-index: 2;
}

#topimg .box .title {
	display: inline-block;
	position: absolute;
	top: 16px;
	left: -40px;
	height: 68px;
	padding: 10px 22px 2px;
	font-size: 2.8rem;
	font-weight: 500;
	color: #fff;
	font-family: "Noto Serif JP", sans-serif;
	background: #129dd8;
	z-index: 10;
}

#topimg .box .title::after {
	content: '';
	position: absolute;
	top: 68px;
	left: 0;
	width: 40px;
	height: 15px;
	background: #07597e;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	z-index: 10;
}

#topimg .box .img {
	margin-bottom: 15px;
}

#topimg .box .img img { width:100%; }

#topimg .box .txt {
	margin-bottom: 5px;
}

#topimg .box .link {
	text-align: right;
}

#topimg .pager {
	position: absolute;
	bottom: -55px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 5;
}

#topimg .pager li {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 16px;
	vertical-align: middle;
}

#topimg .pager li button {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: #D6DADE;
	border-radius: 50%;
}

#topimg .pager li.slick-active button {
	background: #E97500;
}

#topimg .btn_ctl { display:none; }

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

	#topimg .bg_inner {
		width: auto;
	}

	#topimg .sec_inner {
		width: auto;
		margin: 0 90px;
	}

	#topimg .title_box {
		padding-right: 50px;
	}

	#topimg .pager li {
		width: 16px;
		height: 16px;
		margin: 0 12px;
	}

}

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

	#topimg .title_box .title .line_break {
		display: inline;
	}

}
/*
@media screen and (max-width: 1280px){

	#topimg .sec_inner {
		margin: 0 60px;
	}

	#topimg .title_box .title {
		font-size: 2.8rem;
	}

	#topimg .title_box .txt {
		font-size: 1.6rem;
	}

	#topimg .box .title {
		height: 60px;
		font-size: 2.4rem;
	}

	#topimg .box .title::after {
		top: 60px;
	}

	#topimg .box .txt {
		font-size: 1.6rem;
	}

}

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

	#topimg .sec_inner {
		margin: 0 40px;
	}

	#topimg .title_box .title {
		font-size: 2.4rem;
	}

	#topimg .title_box .txt {
		font-size: 1.4rem;
	}

	#topimg .box .txt {
		font-size: 1.4rem;
	}

}
*/
/* ▼INFO▼ */
.top_info {
	padding: 100px 0;
}

.top_info .sort_list {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 2px;
	border-top: solid 1px #d6d9de;
	border-bottom: solid 1px #d6d9de;
}

.top_info .sort_list li {
	position: relative;
	width: 20%;
	text-align: center;
	line-height: 70px;
	transition: .3s;
	cursor: pointer;
}

.top_info .sort_list li:hover { font-weight:700; color:#0163B6; }

.top_info .sort_list li.active {
	font-weight: 700;
	color: #0163B6;
}

.top_info .sort_list li.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #0163B6;
	z-index: 2;
}

.top_info .sort_content.scroll_box::-webkit-scrollbar-track {
	background: transparent;
}

.top_info .sort_content.scroll_box::-webkit-scrollbar-thumb {
	background: transparent;
}

.gecko .top_info .sort_content.scroll_box {
	scrollbar-color: transparent transparent;
}

.top_info .sort_content a {
	display: block;
	position: relative;
	padding: 15px 40px 15px 0;
	color: #1D1E20;
	border-bottom: dashed 1px #D6DADE;
}

.top_info .sort_content a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-image: url(../common_img/arrow_link.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px;
	transition: .3s;
	opacity: 0.4;
}

.top_info .sort_content a:hover::after {
	background-image: url(../common_img/arrow_blue.png);
	opacity: 1;
}

.top_info .sort_content .head {
	margin-bottom: 8px;
}

.top_info .sort_content .head .date {
	letter-spacing: 0.05rem;
}

.top_info .sort_content .cat {
	display: inline-block;
	margin-left: 18px;
	padding: 0 12px 2px;
	font-size: 1.6rem;
	line-height: 28px;
	border-radius: 2px;
}

.top_info .sort_content .cat.news { color:#0163B6; background:#CAE5F0; }
.top_info .sort_content .cat.issue { color:#7333C6; background:#DDD3EC; }
.top_info .sort_content .cat.seminar { color:#056C4D; background:#B0E2D3; }
.top_info .sort_content .cat.other { color:#3B3E44; background:#D2D4D8; }

.top_info .sort_content .title {
	font-size: 1.8rem;
	font-weight: 500;
	transition: .3s;
}

.top_info .sort_content .title > span { color:#bb0a1a; }

.top_info .sort_content a:hover { color:#0163B6; }
.top_info .sort_content a:hover .title { color:#0163B6; text-decoration:underline; }

/* ▼ISSUE▼ */
.top_issue {
	padding: 100px 0 200px;
	background: url(../images/pc/issue_bg.jpg) center center / cover no-repeat;
}
/*
.top_issue .sec_inner {
	width: 1440px;
	margin: 0 auto;
}
*/
.top_issue .box {
	display: flex;
	align-items: flex-start;
	margin-bottom: 200px;
}

.top_issue .box:last-child { margin-bottom:0; }

.top_issue .box:nth-child(2n) { flex-direction:row-reverse; }

.top_issue .box .img {
	width: 732px;
}

.top_issue .box:nth-child(2n) .img {
	transform: translateY(100px);
}

.top_issue .box .img img { width:100%; }

.top_issue .box .content {
	width: 684px;
	padding: 64px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
}

.top_issue .box:nth-child(2n+1) .content {
	transform: translate(-100px, 100px);
}

.top_issue .box:nth-child(2n) .content {
	transform: translateX(100px);
}

.top_issue .sec_title {
	margin-bottom: 38px;
	text-align: left;
}

.top_issue .sec_title::before {
	left: 0;
	transform: translateX(0);
}

.top_issue .list li a {
	display: inline-block;
	position: relative;
	margin-bottom: 3px;
	padding-left: 25px;
	font-weight: 700;
}

.top_issue .list li a:hover {
	color: #129CD8;
	text-decoration: underline;
}

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

.top_issue .list li a::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 8px;
	width: 5px;
	height: 10px;
	background: #0163B6;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.top_issue .list li a:hover::before { background:#129CD8; }

.top_issue .btn {
	margin-top: 38px;
	text-align: right;
}
/*
@media screen and (max-width: 1120px){

	.top_issue {
		padding: 100px 0 140px;
	}

	.top_issue .box {
		margin-bottom: 150px;
	}

	.top_issue .box:nth-child(2n) .img {
		transform: translateY(60px);
	}

	.top_issue .box:nth-child(2n+1) .content {
		transform: translate(-60px, 60px);
	}

	.top_issue .box:nth-child(2n) .content {
		transform: translateX(60px);
	}

	.top_issue .box .content {
		padding: 48px;
		font-size: 1.6rem;
	}

	.top_issue .list li a::before {
		top: 10px;
	}

	.top_issue .sec_title {
		margin-bottom: 30px;
		font-size: 3rem;
	}

}
*/
/* ▼SUPPORT▼ */
.top_support {
	padding: 100px 0;
}

.top_support .menu {
	margin-bottom: 15px;
	padding-bottom: 115px;
	background: url(../images/pc/support_bg.jpg) center bottom no-repeat;
}

.top_support .menu .box {
	float: left;
	width: calc((100% - 48px) / 3);
	margin-right: 24px;
}

.top_support .menu .box:nth-child(3n) { margin-right:0; }

.top_support .menu .box a {
	display: block;
	padding: 32px;
	text-align: center;
	color: #3B3E44;
	background: #fff;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.top_support .menu .box a:hover {
	color: #0163B6;
	box-shadow: 0 0 20px 0 #A9CFEE;
}

.top_support .menu .box .img {
	width: 154px;
	margin: 0 auto 32px;
}

.top_support .menu .box .img img { width:100%; }

.top_support .menu .box .title {
	margin-bottom: 16px;
	font-size: 3rem;
	font-weight: 500;
	color: #1D1E20;
	transition: .3s;
}
/*
@media screen and (max-width: 1020px){

	.top_support .menu .box .title {
		font-size: 2.8rem;
	}

}
*/
.top_support .menu .box a:hover .title { color:#0163B6; }

.top_support .menu .box .txt {
	margin-bottom: 32px;
}

.top_support .menu .box a:hover .link01 { color:#129CD8; text-decoration:underline; }
.top_support .menu .box a:hover .link01 span { background-image: url(../common_img/arrow_lblue.png); }

@media screen and (min-width: 1440px){

	.top_support .menu {
		background: url(../images/pc/support_bg.jpg) center bottom / 100% no-repeat;
	}

}

.top_support .issue {
	margin-bottom: 65px;
}

.top_support .issue .title {
	margin-bottom: 32px;
	padding-left: 50px;
	font-size: 2.6rem;
	background: url(../common_img/icon_search.png) left calc(50% + 1px) / 40px no-repeat;
}

.top_support .issue dl {
	float: left;
	width: calc((100% - 72px) / 4);
	margin-right: 24px;
}

.top_support .issue dl:nth-child(4n) { margin-right:0; }

.top_support .issue dt {
	margin-bottom: 15px;
}

.top_support .issue dt a {
	display: block;
	position: relative;
	padding: 178px 10px 25px;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	color: #0163B6;
	line-height: 1.5;
	background-color: #F0F6FB;
	background-position: center 32px;
	background-repeat: no-repeat;
	background-size: 130px;
}

.top_support .issue dl:nth-child(1) dt a { background-image:url(../images/pc/issue_icon01.png); }
.top_support .issue dl:nth-child(2) dt a { background-image:url(../images/pc/issue_icon02.png); }
.top_support .issue dl:nth-child(3) dt a { background-image:url(../images/pc/issue_icon03.png); }
.top_support .issue dl:nth-child(4) dt a { background-image:url(../images/pc/issue_icon04.png); }

.top_support .issue dt a:hover { background-color:#C7E4FE; }

.top_support .issue dt a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: #0063b6;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
/*
@media screen and (max-width: 1280px){

	.top_support .issue dt a {
		font-size: 2rem;
	}

	.top_support .issue dd {
		font-size: 1.6rem;
	}

}

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

	.top_support .issue dt a {
		font-size: 1.7rem;
	}

}
*/
.top_support .guide .title {
	margin-bottom: 32px;
	padding-left: 45px;
	font-size: 2.6rem;
	background: url(../common_img/icon_guide.png) left calc(50% + 1px) / 32px no-repeat;
}

.top_support .guide li {
	float: left;
	width: calc((100% - 48px) / 3);
	margin-right: 24px;
}

.top_support .guide li:nth-child(3n) { margin-right:0; }
/*
@media screen and (max-width: 1240px){

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

	.top_support .guide li:nth-child(2n) { margin-right:0; }
	.top_support .guide li:nth-child(3n) { margin-top:24px; }

}
*/
.top_support .guide li a {
	display: block;
	position: relative;
	padding-left: 75px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 96px;
	background-color: #fff;
	background-position: 32px center;
	background-repeat: no-repeat;
	background-size: 26px;
	border: solid 1px #BBB;
}

.top_support .guide li:nth-child(1) a { background-image:url(../images/pc/guide_icon01.png); }
.top_support .guide li:nth-child(2) a { background-image:url(../images/pc/guide_icon02.png); }
.top_support .guide li:nth-child(3) a { background-image:url(../images/pc/guide_icon03.png); }

.top_support .guide li a:hover {
	color: #0163B6;
	border: solid 1px #fff;;
	box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.20);
}

.top_support .guide li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: url(../common_img/arrow_blue.png) center center / 20px no-repeat;
}

/* ▼BUSINESS▼ */
.top_business {
	padding: 100px 0;
	background: url(../images/pc/business_bg.jpg) center center / cover no-repeat;
}

.top_business .sec_title {
	font-weight: 500;
	color: #fff;
}

.top_business .sec_title::before { background:#fff; }

.top_business .sec_txt {
	margin-bottom: 56px;
	text-align: center;
	color: #fff;
}

.top_business .box {
	display: flex;
	margin-bottom: 16px;
	padding: 40px;
	background: #fff;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}

.top_business .box:last-child { margin-bottom:0; }

.top_business .box .img {
	width: 258px;
}

.top_business .box .content {
	width: calc(100% - 258px);
	margin-top: 5px;
	padding-left: 32px;
}

.top_business .box .title {
	margin-bottom: 12px;
	font-size: 3rem;
	font-weight: 500;
}

.top_business .box .txt {
	margin-bottom: 16px;
}

.top_business .box .link {
	text-align: right;
}

/*
ABOUT(01)
***************************************************************************/
.about_sec {
	padding: 60px 0;
}

.about_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

.about_content .htitle_box {
	margin-bottom: 15px;
}

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

.about_content .box_list > .box:last-child {
	border-bottom: none;
}

.about_content .box_list > .box > .sec_title {
	margin-bottom: 50px;
	font-size: 2.8rem;
}

.about_content .box_list > .box > .sec_title::before {
	width: 48px;
}

.about_content .business_list {
	padding-top: 65px;
}

.about_content .business_list > .box {
	margin-bottom: 40px;
}

.about_content .business_list > .box .box_title {
	position: relative;
	padding: 34px 40px 36px 36px;
	font-size: 2.8rem;
	font-weight: 500;
	background: #FFF;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16), 0 6px 10px 0 rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

.about_content .business_list > .box .box_title::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	width: 4px;
	height: calc(100% - 16px);
	background: linear-gradient(180deg, #0163B6 0%, #129CD8 100%);
}

.about_content .business_list > .box .box_title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background: url(../common_img/arrow_link_blue.png) center center / 48px no-repeat;
	transform: rotate(90deg);
}

.about_content .business_list > .box .box_title.opened::after { transform:rotate(-90deg); }

.about_content .business_list > .box .inner {
	display: none;
	padding: 50px 0 20px;
}

.about_content .business_list > .box .sbox {
	padding: 40px 0;
	border-bottom: solid 1px #D6DADE;
}

.about_content .business_list > .box .sbox:first-child { padding-top:0; }
.about_content .business_list > .box .sbox:last-child { padding-bottom:0; border-bottom:none; }

.about_content .business_list > .box .sbox .title03 {
	margin-bottom: 25px;
}

.about_content .business_list > .box .img {
	margin-bottom: 40px;
}

.about_content .business_list > .box .img img { max-width:100%; }

.about_content .business_list > .box .dbox {
	padding: 32px;
	border: solid 1px #D6DADE;
}

.about_content .business_list > .box .dbox dt {
	position: relative;
	margin-bottom: 24px;
	padding-bottom: 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	border-bottom: solid 1px #D6DADE;
}

.about_content .business_list > .box .dbox dt a {
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 28px;
	text-align: right;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	background: url(../common_img/arrow_link_blue.png) right calc(50% + 1px) / 20px no-repeat;
}

.about_content .business_list > .box .dbox dd {
	font-size: 1.6rem;
	color: #3B3E44;
}

.about_content .business_list > .box .dbox li {
	margin-bottom: 16px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}

.about_content .business_list > .box .lbox {
	padding: 32px;
	border: solid 1px #D6DADE;
}

.about_content .business_list > .box .lbox.list02 li {
	margin-bottom: 16px;
	line-height: 1.5;
}

.about_content .business_list > .box .link {
	text-align: center;
}

.about_content .business_list > .box .link a {
	display: inline-block;
	padding: 0 32px 2px;
	color: #fff;
	line-height: 58px;
	background: #0163B6;
	border-radius: 4px;
}

.about_content .business_list > .box .link a:hover { background:#129CD8; }

.about_content .business_list > .box .link a > span {
	padding-right: 32px;
	background: url(../common_img/arrow_white.png) right calc(50% + 0.5px) / 24px no-repeat;
}

.about_content .business_list > .box .link a .exlink {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: 10px;
	vertical-align: -1px;
	background: url(../common_img/icon_link_white.png) center center / 18px no-repeat;
}

.about_content .business_list > .box .box_close {
	margin-top: 40px;
	padding-top: 40px;
	text-align: center;
	border-top: solid 1px #D6DADE;
}

.about_content .business_list > .box .box_close .btn {
	display: inline-block;
	padding: 0 48px 2px;
	font-weight: 500;
	color: #0163B6;
	line-height: 48px;
	border: solid 1px #0163B6;
	border-radius: 4px;
	cursor: pointer;
}

.about_content .business_list > .box .box_close .btn span {
	display: inline-block;
	position: relative;
	padding-right: 28px;
}

.about_content .business_list > .box .box_close .btn span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	margin-top: -11px;
	background: url(../common_img/drop_blue.png) center center / 24px no-repeat;
	transform: rotateX(-180deg);
}

.about_content .nbox_list .nbox {
	margin-bottom: 40px;
}

.about_content .nbox_list > .nbox:last-child { margin-bottom:0; }

.about_content .nbox_list > .nbox > .title {
	position: relative;
	margin-bottom: 25px;
	padding-left: 1.5em;
	font-size: 2rem;
	font-weight: 500;
}

.about_content .nbox_list > .nbox > .title::before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
}

.about_content .nbox_list > .nbox:nth-child(1) > .title::before { content:'1.'; }
.about_content .nbox_list > .nbox:nth-child(2) > .title::before { content:'2.'; }
.about_content .nbox_list > .nbox:nth-child(3) > .title::before { content:'3.'; }
.about_content .nbox_list > .nbox:nth-child(4) > .title::before { content:'4.'; }
.about_content .nbox_list > .nbox:nth-child(5) > .title::before { content:'5.'; }

.about_content .map {
	margin-bottom: 10px;
}

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

.about_content .map_link {
	padding-right: 22px;
	text-align: right;
	background: url(../common_img/icon_link_blue.png) right center / 16px no-repeat;
}

/*
CONCEPT(02)
***************************************************************************/
.concept_sec {
	padding: 60px 0;
}

.concept_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

.concept_content .htitle_box {
	margin-bottom: 15px;
}

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

.concept_content .box_list > .box:last-child {
	border-bottom: none;
}

.concept_content .box_list > .box > .sec_title {
	margin-bottom: 50px;
	font-size: 2.8rem;
}

.concept_content .box_list > .box > .sec_title::before {
	width: 48px;
}

.concept_content .box_list > .box .box01 {
	font-size: 1.6rem;
}

.concept_content .box_list > .box .img img { max-width:100%; }

.concept_content .nbox_list .nbox {
	padding: 40px 0;
	border-bottom: 1px solid #D6DADE;
}

.concept_content .nbox_list > .nbox:last-child { padding-bottom:0; border-bottom:none; }

.concept_content .nbox_list .nbox .ntitle {
	position: relative;
	margin-bottom: 30px;
	padding: 14px 25px 16px 32px;
	font-size: 2.2rem;
	font-weight: 500;
	color: #fff;
	background: #0163B6;
}

.concept_content .nbox_list .nbox .ntitle::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	width: 6px;
	height: calc(100% - 16px);
	background: rgba(255,255,255,0.9);
}

.concept_content .nbox_list > .nbox > .title03 {
	margin-bottom: 30px;
}

.concept_content .cbox_list > .box01 {
	margin-bottom: 25px;
}

.concept_content .cbox_list > .box01:last-child { margin-bottom:0; }

.concept_content .cbox_list > .box01 dt {
	position: relative;
	margin-bottom: 25px;
	padding: 0 0 16px 1.2em;
	font-size: 2.4rem;
	font-weight: 700;
	color: #0163B6;
	border-bottom: solid 1px #b1b5b9;
}

.concept_content .cbox_list > .box01 dt::before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
}

.concept_content .cbox_list > .box01:nth-child(1) dt::before { content:'1.'; }
.concept_content .cbox_list > .box01:nth-child(2) dt::before { content:'2.'; }
.concept_content .cbox_list > .box01:nth-child(3) dt::before { content:'3.'; }
.concept_content .cbox_list > .box01:nth-child(4) dt::before { content:'4.'; }
.concept_content .cbox_list > .box01:nth-child(5) dt::before { content:'5.'; }

.concept_content .sbox_list .sbox {
	margin-bottom: 40px;
}

.concept_content .sbox_list .sbox:last-child { margin-bottom:0; }

.concept_content .sbox_list .sbox .stitle {
	margin-bottom: 20px;
	font-size: 2rem;
	color: #0163B6;
}

.concept_content .abox {
	padding: 32px;
	background: #f1f6fc;
}

.concept_content .abox > .title {
	margin-bottom: 24px;
	padding-bottom: 16px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	color: #0163B6;
	line-height: 1.5;
	border-bottom: solid 1px #b1b6ba;
}

.concept_content .abox .word_list {
	margin-top: 24px;
}

.concept_content .abox .word_list dl {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.concept_content .abox .word_list dl:last-child { margin-bottom:0; }

.concept_content .abox .word_list dt {
	width: 120px;
	padding-bottom: 2px;
	text-align: center;
	line-height: 48px;
	border: solid 1px #3B3E44;
}

.concept_content .abox .word_list dd {
	width: calc(100% - 120px);
	padding: 9px 0 0 16px;
}

.concept_content .abox .list06 li { font-weight:500; }

.concept_content .abox .list06 > li:before { top:12px; }
.concept_content .box02 .list06 > li:before { top:12px; }

.concept_content .abox .list06.ex li {
	position: relative;
	margin-bottom: 50px;
	font-weight: 700;
}

.concept_content .abox .list06.ex li:last-child { margin-bottom:0; }

.concept_content .abox .list06.ex li:first-child::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	background: url(../common_img/icon_equal.png) center center / 20px no-repeat;
}

.concept_content .abox .img {
	text-align: center;
}

.concept_content .abox .img img { max-width:100%; }

.concept_content .abox .txt_list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.concept_content .abox .txt_list li {
	width: calc((100% - 16px) / 2);
	padding: 24px;
	background: #fff;
	border-radius: 8px;
}

/*
ISSUE(03)
***************************************************************************/
.issue_sec {
	padding: 60px 0;
}

.issue_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

.issue_content .hbox {
	padding: 56px 24px;
}

.issue_content .hbox.blue { background:#a0d6ee; }
.issue_content .hbox.green { background:#d2edce; }

.issue_content .hbox .title {
	margin-bottom: 56px;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 600;
	font-family: "Noto Serif JP";
}

.issue_content .hbox .tbl th, .issue_content .hbox .tbl td {
	vertical-align: middle;
	text-align: center;
	line-height: 1.5;
}

.issue_content .hbox .tbl th.ex, .issue_content .hbox .tbl td.ex { line-height:1.1; }
.issue_content .hbox .tbl th .sub, .issue_content .hbox .tbl td .sub { font-size:1.4rem; }

.issue_content .hbox .tbl th {
	padding: 12px 0;
	font-weight: 400;
	color: #fff;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #b7bbbe;
}

.issue_content .hbox.blue .tbl th { background:#0063b6; }
.issue_content .hbox.green .tbl th { background:#309326; }

.issue_content .hbox .tbl td {
	padding: 12px 14px;
	background: #fff;
	border-right: solid 1px #b7bbbe;
	border-bottom: solid 1px #b7bbbe;
}

.issue_content .hbox.blue .tbl th:first-child,
.issue_content .hbox.blue .tbl td:first-child { border-left:solid 1px #0063b6; }
.issue_content .hbox.green .tbl th:first-child,
.issue_content .hbox.green .tbl td:first-child { border-left:solid 1px #309326; }

.issue_content .hbox.blue .tbl th:last-child,
.issue_content .hbox.blue .tbl td:last-child { border-right:solid 1px #0063b6; }
.issue_content .hbox.green .tbl th:last-child,
.issue_content .hbox.green .tbl td:last-child { border-right:solid 1px #309326; }

.issue_content .hbox.blue .tbl tr:last-child td { border-bottom:solid 1px #0063b6; }
.issue_content .hbox.green .tbl tr:last-child td { border-bottom:solid 1px #309326; }

.issue_content .hbox .tbl td.head {
	font-weight: 500;
	background: #f1f2f4;
}

.issue_content .hbox .stxt {
	text-align: center;
	font-size: 1.6rem;
	color: #3B3E44;
}

.issue_content .hbox .stxt a { text-decoration:underline; }
.issue_content .hbox .stxt a:hover { text-decoration:none; }

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

.issue_content .box:last-child {
	padding-bottom: 100px;
	border-bottom: none;
}

.issue_content .sec_title {
	margin-bottom: 64px;
	font-size: 2.8rem;
}

.issue_content .sec_title::before {
	width: 48px;
}

.issue_content.green .sec_title::before {
	background: linear-gradient(90deg, #5DBA86 0%, #C0E5D0 100%);
}

.issue_content .pref_tbl th, .issue_content .pref_tbl td {
	vertical-align: middle;
	line-height: 1.5;
	border: solid 1px #B8BBBE;
}

.issue_content .pref_tbl th {
	padding: 25px 0;
	text-align: center;
	font-weight: 500;
	background: #fafafa;
}

.issue_content.green  .pref_tbl th {
	background: #eaf8e7;
}

.issue_content .pref_tbl .first th {
	padding: 12px 20px;
	background: #f1f2f4;
}

.issue_content.green .pref_tbl .first th {
	font-weight: 400;
	color: #fff;
	background: #309326;
}

.issue_content .pref_tbl th.pref { width:calc((100% / 3) * 0.4); }
.issue_content .pref_tbl th.price { width:calc((100% / 3) * 0.6); }

.issue_content .pref_tbl .sum th {
	background: #f1f2f4;
}

.issue_content.green .pref_tbl .sum th {
	font-weight: 400;
	color: #fff;
	background: #309326;
}

.issue_content .pref_tbl td {
	padding: 25px 20px;
	text-align: right;
	background: #fff;
}

.issue_content .pref_tbl td.blank { height:8px; padding:0; }

.issue_content .punf_box {
	display: flex;
	align-items: center;
}

.issue_content .punf_box .img {
	width: 162px;
}

.issue_content .punf_box .img img {
	width: 100%;
	box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
}

.issue_content .punf_box .file_list {
	width: calc(100% - 162px);
	padding-left: 40px;
}

/*
RESEARCH(04)
***************************************************************************/
.research_sec {
	padding: 60px 0;
}

.research_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

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

.research_content .sec:last-child {
	padding-bottom: 100px;
	border-bottom: none;
}

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

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

.research_content .sec_title {
	margin-bottom: 64px;
	font-size: 2.8rem;
}

.research_content .sec_title::before {
	width: 48px;
}

/*
SEMINAR(05)
***************************************************************************/
.seminar_sec {
	padding: 60px 0;
}

.seminar_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

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

.seminar_content .sec:last-child {
	padding-bottom: 100px;
	border-bottom: none;
}

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

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

.seminar_content .sec_title {
	margin-bottom: 64px;
	font-size: 2.8rem;
}

.seminar_content .sec_title::before {
	width: 48px;
}

.seminar_sec .venue_img {
	margin: 10px 0 30px;
}

.seminar_sec .venue_img img { max-width:100%; }

.seminar_sec .venue_list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
	margin-bottom: 40px;
}

.seminar_sec .venue_list.mini {
	gap: 0 20px;
	width: 500px;
}

.seminar_sec .backnumber_list .venue_list {
	margin: 20px 145px 30px;
}

.seminar_sec .venue_list dl {
	width: calc((100% - 24px) / 2);
	text-align: center;
}

.seminar_sec .venue_list dt img { width:100%; }

.seminar_sec .venue_list dd {
	padding: 16px 0;
	font-size: 2rem;
	font-weight: 500;
}

.seminar_sec .backnumber_list .venue_list dd {
	padding: 12px 0;
	font-size: 1.6rem;
}

.seminar_sec .target_list {
	margin-bottom: 40px;
	padding: 24px;
	background: #fff;
	border: solid 1px #D6DADE;
}

.seminar_sec .target_list .title {
	margin-bottom: 24px;
	padding-bottom: 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	border-bottom: solid 1px #D6DADE;
}

.seminar_sec .backnumber_list .target_list .title {
	font-size: 1.8rem;
}

.seminar_sec .target_list li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 25px;
	font-weight: 500;
	line-height: 1.5;
}

.seminar_sec .backnumber_list .inner .target_list li {
	padding: 0 0 0 25px;
	font-size: 1.6rem;
	border-bottom: none;
}

.seminar_sec .target_list li:last-child { margin-bottom:0; }

.seminar_sec .target_list li::before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	color: #0163B6;
}

.seminar_sec .target_list li:nth-child(1)::before { content:'1.'; }
.seminar_sec .target_list li:nth-child(2)::before { content:'2.'; }
.seminar_sec .target_list li:nth-child(3)::before { content:'3.'; }
.seminar_sec .target_list li:nth-child(4)::before { content:'4.'; }
.seminar_sec .target_list li:nth-child(5)::before { content:'5.'; }
.seminar_sec .target_list li:nth-child(6)::before { content:'6.'; }
.seminar_sec .target_list li:nth-child(7)::before { content:'7.'; }
.seminar_sec .target_list li:nth-child(8)::before { content:'8.'; }
.seminar_sec .target_list li:nth-child(9)::before { content:'9.'; }

.seminar_sec .info_tbl th, .seminar_sec .info_tbl td {
	padding: 16px 24px;
	vertical-align: middle;
	line-height: 1.3;
	border: solid 1px #B8BBBE;
}

.seminar_sec .info_tbl.mini th, .seminar_sec .info_tbl.mini td {
	padding: 16px;
	font-size: 1.4rem;
}

.seminar_sec .info_tbl th {
	text-align: center;
	font-weight: 500;
	background: #f1f2f4;
}

.seminar_sec .info_tbl td {
	background: #fff;
}

.seminar_sec .backnumber_ctl {
	height: 42px;
	margin-bottom: 40px;
}

.seminar_sec .backnumber_list .info_tbl td { padding:16px; }

.seminar_sec .backnumber_list .memo {
	margin: 5px 0 30px;
	font-size: 1.6rem;
}

/*
INVESTOR(07)
***************************************************************************/
.investor_sec {
	padding: 60px 0;
}

.investor_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

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

.investor_content .sec:last-child {
	padding-bottom: 100px;
	border-bottom: none;
}

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

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

.investor_content .sec_title {
	margin-bottom: 64px;
	font-size: 2.8rem;
}

.investor_content .sec_title::before {
	width: 48px;
}

.investor_sec .finance_list {
	display: flex;
	align-items: center;
}

.investor_sec .finance_list .img {
	width: 360px;
	text-align: center;
	background: #fff;
	border: solid 1px #d6dade;
	box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
}

.investor_sec .finance_list .file_list {
	width: calc(100% - 360px);
	padding-left: 45px;
}

.investor_sec .material_list {
	padding: 32px 24px 24px;
	background: #f0f6fb;
}

.investor_sec .material_list .area_select {
	position: relative;
	width: 272px;
	height: 64px;
	margin-bottom: 24px;
}

.investor_sec .material_list .current_select {
	position: relative;
	padding: 0 12px 2px;
	line-height: 60px;
	background: #fff;
	border: solid 2px #B8BBBE;
	border-radius: 4px;
	z-index: 501;
}

.investor_sec .material_list .current_select.opened { border:solid 2px #129cd8; }

.investor_sec .material_list .current_select::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 5px;
	margin-top: -2.5px;
	background: #656565;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.investor_sec .material_list .current_select.opened::after { transform:rotateX(-180deg); }

.investor_sec .material_list .area_list {
	display: none;
	position: absolute;
	top: 64px;
	left: 0;
	width: 100%;
	background: #FFF;
	border-radius: 4px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16), 0 0 8px 0 rgba(0, 0, 0, 0.32);
	z-index: 500;
}

.investor_sec .material_list .area_list .scroll_box {
	height: calc(100vh - 300px);
	padding: 10px 0;
}

.investor_sec .material_list .area_list li {
	padding: 0 16px;
	line-height: 44px;
	cursor: pointer;
}

.investor_sec .material_list .area_list li:hover { background:#f0f6fb; }

.investor_sec .material_list .mbox:not(:first-child) { display:none; }

.investor_sec .material_list .mbox .title {
	padding: 0 32px;
	font-size: 2.4rem;
	font-weight: 500;
	color: #fff;
	line-height: 80px;
	background: linear-gradient(133deg, #0163B6 29.81%, #129CD8 100%);
}

.investor_sec .material_list .mbox .content {
	padding: 32px;
	background: #fff;
}

.investor_sec .material_list .mbox .sbox {
	padding-bottom: 50px;
}

.investor_sec .material_list .mbox .sbox:last-child { padding-bottom:0; }

.investor_sec .material_list .mbox .stitle {
	margin-bottom: 24px;
	font-size: 2rem;
	font-weight: 700;
}

.investor_sec .material_list .mbox .scontent {
	padding: 0 16px;
}

.investor_sec .material_list .mbox dl {
	display: flex;
	padding: 20px 0;
	border-bottom: solid 1px #D6DADE;
}

.investor_sec .material_list .mbox dt {
	width: 150px;
}

.investor_sec .material_list .mbox dd {
	width: calc(100% - 150px);
}

.investor_sec .material_list .mbox .file_list {
	display: flex;
	gap: 24px;
	padding: 5px 0 24px;
}

.investor_sec .material_list .mbox .file_list li {
	width: calc((100% - 24px) / 2);
}

.investor_sec .material_list .mbox .file_list li a { margin-bottom:0; }

.investor_sec .backnumber_ctl {
	height: 42px;
	margin-bottom: 40px;
}

.investor_sec .backnumber_list .inner {
	padding: 24px 36px;
}

.investor_sec .backnumber_list .inner .sec:first-child {
	padding-top: 30px;
}

.investor_sec .backnumber_list .inner .sec:last-child {
	padding-bottom: 0;
}

.investor_sec .backnumber_list .inner .file_list li {
	padding: 0;
	background: none;
	border-bottom: none;
}

.investor_sec .backnumber_list .inner .file_list li a {
	color: #1D1E20;
	text-decoration: none;
}

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

.investor_sec .backnumber_list .inner .area_list li {
	font-weight: 400;
	border-bottom: none;
}

.investor_sec .backnumber_list .inner .material_list {
	padding: 0 0 24px;
}

.investor_sec .inv_tbl th, .investor_sec .inv_tbl td {
	padding: 20px 24px;
	vertical-align: middle;
	font-size: 1.6rem;
	line-height: 1.5;
	border: solid 1px #B8BBBE;
}

.investor_sec .inv_tbl th {
	text-align: center;
	font-weight: 500;
	background: #f1f2f4;
}

.investor_sec .inv_tbl td {
	background: #fff;
}

.investor_sec .backnumber_list .inner .inv_tbl {
	margin: 15px 0;
}

.investor_sec .backnumber_list .inner .ir_list {
	padding-top: 10px;
}

.investor_sec .ir_list .box {
	margin-bottom: 20px;
	padding: 40px 30px 45px;
	font-size: 1.6rem;
	background: #fff;
	border-bottom: none;
}

.investor_sec .ir_list .title01 {
	margin-bottom: 25px;
}

.investor_sec .ir_list .catch {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #0163B6;
	line-height: 1.75;
}

.investor_sec .ir_list .list dl {
	margin-bottom: 20px;
}

.investor_sec .ir_list .list dl:last-child { margin-bottom:0; }

.investor_sec .ir_list .list dt {
	margin-bottom: 10px;
	font-weight: 700;
}

.investor_sec .ir_list .list dd {
	margin-left: 1.4em;
}

/*
OTHER
***************************************************************************/
.other_sec {
	padding: 20px 0 60px;
	font-size: 1.6rem;
	color: #1D1E20;
}

.other_sec .htitle_box {
	margin-bottom: 15px;
}

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

.other_sec .box_list > .box:last-child {
	border-bottom: none;
}

.other_sec .box_list > .box > .sec_title {
	margin-bottom: 50px;
	font-size: 2.8rem;
}

.other_sec .box_list > .box > .sec_title::before {
	width: 48px;
}

.other_sec .title01 {
	margin-bottom: 15px;
	font-size: 1.8rem;
}

.other_sec .title01::before { top:10px; }

.other_sec .title03 {
	margin-bottom: 30px;
}

.rlink_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
}

.rlink_list li { width:100%; }
.rlink_list.pc_col2 li { width:calc((100% - 30px) / 2); }
.rlink_list.pc_col3 li { width:calc((100% - 60px) / 3); }
.rlink_list.pc_col4 li { width:calc((100% - 90px) / 4); }
.rlink_list.pc_col5 li { width:calc((100% - 120px) / 5); }
.rlink_list.pc_col6 li { width:calc((100% - 150px) / 6); }
.rlink_list.pc_col7 li { width:calc((100% - 180px) / 7); }
.rlink_list.pc_col8 li { width:calc((100% - 210px) / 8); }

.rlink_list li a {
	display: inline-block;
	padding-left: 22px;
	font-size: 1.6rem;
	font-weight: 500;
	white-space: nowrap;
	background: url(../common_img/arrow_blue.png) left center / 16px no-repeat;
}

/*
FAQ
***************************************************************************/
.faq_list .box {
	margin-bottom: 24px;
	padding: 24px;
	border: solid 1px #D6DADE;
}

.faq_list .box:last-child { margin-bottom:0; }

.faq_list .box .title {
	position: relative;
	padding: 0 50px 0 36px;
	font-size: 2rem;
	line-height: 1.65;
	cursor: pointer;
}

.faq_list .box .title::before {
	content: 'Q';
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 2.4rem;
	font-weight: 900;
	color: #0163B6;
	line-height: 1;
	font-family: "Noto Serif JP";
}

.faq_list .box .title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	background: url(../common_img/arrow_link_blue.png) center center / 40px no-repeat;
	transform: rotate(90deg);
}

.faq_list .box .title.opened::after { transform:rotate(-90deg); }

.faq_list .box .inner {
	display: none;
	position: relative;
	margin-top: 18px;
	padding: 18px 0 0 36px;
	border-top: dashed 1px #9d9ea1;
}

.faq_list .box .inner::before {
	content: 'A';
	position: absolute;
	top: 22px;
	left: 2px;
	font-size: 2.4rem;
	font-weight: 900;
	color: #E97500;
	line-height: 1;
	font-family: "Noto Serif JP";
}

/*
STATISTIC
***************************************************************************/
.statistic_list {
	padding: 45px 0;
}

.statistic_list .backnumber_ctl {
	margin-bottom: 60px;
}

.statistic_list .cat_select {
	width: 320px;
}

.statistic_list .cat_select dt {
	margin-bottom: 8px;
	font-size: 1.6rem;
}

.statistic_list .backnumber_ctl ul { margin-top:20px; }

.statistic_head {
	position: relative;
	min-height: 28px;
	margin-bottom: 20px;
	padding-right: 120px;
}

.statistic_head .cat_list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.statistic_head .cat_list li {
	display: inline-block;
	padding: 0 12px 2px;
	font-size: 1.6rem;
	color: #fff;
	line-height: 28px;
	border-radius: 2px;
}

.statistic_head .cat_list li.cat01 { background:#5746A2; }
.statistic_head .cat_list li.cat02 { background:#455BB5; }
.statistic_head .cat_list li.cat03 { background:#1466AC; }
.statistic_head .cat_list li.cat04 { background:#A26D3E; }
.statistic_head .cat_list li.cat05 { background:#B3872E; }
.statistic_head .cat_list li.cat06 { background:#B15557; }
.statistic_head .cat_list li.cat07 { background:#8abd42; }
.statistic_head .cat_list li.cat08 { background:#4ab58a; }
.statistic_head .cat_list li.cat09 { background:#525061; }
.statistic_head .cat_list li.cat10 { background:#b55cac; }
.statistic_head .cat_list li.cat11 { background:#b57748; }
.statistic_head .cat_list li.cat12 { background:#5a96ad; }
.statistic_head .cat_list li.cat13 { background:#b05f82; }
.statistic_head .cat_list li.cat14 { background:#64a369; }
.statistic_head .cat_list li.cat15 { background:#ab6459; }
.statistic_head .cat_list li.cat16 { background:#505394; }
.statistic_head .cat_list li.cat17 { background:#5fa2b3; }
.statistic_head .cat_list li.cat18 { background:#876551; }

.statistic_head .link {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	font-size: 1.6rem;
	font-weight: 500;
	color: #0163B6;
	line-height: 28px;
	transition: .3s;
	cursor: pointer;
}

.statistic_head .link > span {
	display: inline-block;
	padding-right: 26px;
	background: url(../common_img/icon_modal.png) right calc(50% + 1px) / 20px no-repeat;
}

.statistic_head .link:hover { opacity:0.7; }

.statistic_list .backnumber_list .set { margin-bottom:50px; }

.statistic_list .backnumber_list .txt { padding:32px 60px 32px 20px; }

.statistic_list .excel_list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 10px 0 20px;
}

.statistic_list .file_list {
	padding: 10px 0 20px;
}

.statistic_list .backnumber_list .inner li {
	padding: 0;
	font-weight: 400;
	line-height: 1.8;
	background: none;
	border: none;
}

.statistic_list .backnumber_list .inner li a {
	color: #1D1E20;
	text-decoration: none;
}

.statistic_list .excel_list li {
	width: calc((100% - 32px) / 3);
}

.statistic_list .excel_list li a {
	display: block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	font-size: 1.6rem;
	background: #fff;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08), 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.statistic_list .excel_list li a:hover { color:#0163B6; opacity:1; }

.statistic_list .excel_list li a > span {
	display: inline-block;
	padding-right: 32px;
	font-size: 1.8rem;
	font-weight: 500;
	background: url(../common_img/icon_excel.png) right center / 24px no-repeat;
}

/* ▼MODAL▼ */
.overlay_content.comment_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 1000px;
	min-height: calc(100vh - 200px);
	padding: 60px;
	background: #fff;
	border-radius: 20px;
}

.overlay_content.comment_box .title {
	margin-bottom: 24px;
	font-size: 2.6rem;
}

.overlay_content.comment_box .txt {
	margin-bottom: 60px;
}

.overlay_content.comment_box .modal_close_txt {
	width: 100px;
	margin: 0 auto;
	text-align: center;
	color: #0163B6;
	text-decoration: underline;
	cursor: pointer;
}

.overlay_content.comment_box .modal_close_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	font-size: 3rem;
	font-weight: 500;
	cursor: pointer;
}

/*
FORM
***************************************************************************/
.contact_sec {
	padding: 60px 0 100px;
}

.contact_sec .box_list > .box {
	margin-bottom: 64px;
}

.contact_sec .box_list > .box:last-child { margin-bottom:0; }

.contact_sec .title03 {
	margin-bottom: 40px;
}

.contact_sec .mtxt {
	margin-bottom: 12px;
	font-size: 1.8rem;
	color: #3B3E44;
}

.contact_sec .mtxt sup { color:#E97500; }

.contact_sec .form_box {
	margin-bottom: 50px;
	padding: 24px;
	background: #F0F6FB;
}

.contact_sec .form_box.error_txt { background:#F4EAEA; }

.contact_sec .ftxt {
	margin-top: 48px;
	text-align: center;
	font-size: 1.4rem;
	color: #3B3E44;
}

.contact_sec .ftxt a { text-decoration:underline; }

/* ▼STEP▼ */
.form_step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 540px;
	margin: 0 auto 40px;
}

.form_step::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #BDBDBD;
	z-index: 1;
}

.form_step li {
	position: relative;
	width: calc((100% - 160px) / 3);
	padding: 0 10px 0 50px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	color: rgba(29, 30, 32, 0.50);
	line-height: 38px;
	background: #fff;
	z-index: 10;
}

.form_step li.active { color:#0163B6; }

.form_step li::before {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 38px;
	height: 38px;
	padding-left: 2px;
	font-size: 1.6rem;
	color: #fff;
	line-height: 36px;
	background-color: rgba(29, 30, 32, 0.50);
	border-radius: 50%;
	transform: translateY(-50%);
}

.form_step li.active::before { background-color:#0163B6; }

.form_step li:nth-child(1)::before { content:'1'; }
.form_step li:nth-child(2)::before { content:'2'; }
.form_step li:nth-child(3)::before { content:'3'; }

.form_step li.done::before {
	content: ''!important;
	background-color: #0163B6;
	background-image: url(../common_img/icon_chk_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
}

/* ▼INPUT▼ */
.user_form > dl {
	display: flex;
	padding: 24px 0;
	border-bottom: solid 1px #D6DADE;
}

.user_form > dl:last-child { border-bottom:none; }

.user_form > dl > dt {
	position: relative;
	width: 280px;
	font-size: 2rem;
	font-weight: 700;
	color: #1D1E20;
	line-height: 64px;
}

.user_form > dl > dt sup { color:#E97500; }

.user_form.conf > dl > dt {
	line-height: 1.8;
}

.user_form > dl > dd {
	width: calc(100% - 280px);
	padding-right: 80px;
}

.user_form .sub_txt {
	margin: 16px 0 8px;
	font-size: 1.6rem;
	color: #3B3E44;
}

/* ▼CHECK, ERROR, THANKS▼ */
.pp_check {
	margin-bottom: 48px;
	text-align: center;
}

.pp_check li {
	display: inline-block;
}

.error_messe {
	font-weight: 700;
	color: #DB3A3A;
}

.comp_title {
	margin-bottom: 40px;
	padding-top: 30px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
}

.comp_txt {
	margin-bottom: 60px;
	text-align: center;
}

.comp_btn {
	width: 320px;
	margin: 0 auto;
}

.comp_btn a {
	display: block;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	color: #0163B6;
	line-height: 62px;
	background: #fff;
	border: solid 2px #0163B6;
	border-radius: 6px;
}

.comp_btn a:hover {
	color: #fff;
	background: #0163B6;
}

.comp_btn a span {
	display: inline-block;
	position: relative;
	padding-left: 30px;
}

.comp_btn a span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 24px;
	margin-top: -10px;
	background-image: url(../common_img/arrow_blue.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px;
	transform: rotate(-180deg);
	transition: .3s;
}

.comp_btn a:hover span::before { background-image:url(../common_img/arrow_white.png); }

/* ▼BUTTON▼ */
.form_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 40px;
}

.form_btn li { width:320px; }
.form_btn li .btn02 { box-sizing:border-box; width:100%; text-align:center; }
.form_btn li button { letter-spacing:0.05rem; }

.form_btn .back { cursor:pointer; }
.form_btn .back .btn02 { background:#B8BBBE; }
.form_btn .back.error { margin:0 auto; }

.form_btn #btn_disable .btn02 { background:#B8BBBE; cursor:default; }

.grecaptcha-badge { visibility:hidden; }

/*
SEARCH
***************************************************************************/
.search_sec {
	padding: 60px 0 100px;
}

.search_content {
	float: left;
	width: calc(100% - 290px);
	padding-right: 70px;
	color: #1D1E20;
}

.search_content.wide {
	float: none;
	width: 100%;
	padding-right: 0;
}

.search_content .htitle_box {
	margin-bottom: 80px;
}

.search_content .search_list {
	margin-bottom: 50px;
	padding: 24px;
	background: #F0F6FB;
}

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

.search_list .box:last-child { border-bottom:none; }

.search_list .box > dl {
	display: flex;
	align-items: center;
}

.search_list .box > dl.ex { align-items:flex-start; }

.search_list .box > dl > dt {
	width: 200px;
	font-size: 2rem;
	font-weight: 700;
}

.search_list .box > dl.ex > dt { line-height:64px; }

.search_list .box > dl > dd {
	width: calc(100% - 200px);
	padding-right: 60px;
}

.search_list.ex .box > dl > dd { padding-right:0; }

.search_list .box .sub_txt {
	margin-top: 10px;
	font-size: 1.6rem;
	color: #3B3E44;
}

.search_content .search_type {
	padding-top: 50px;
	text-align: center;
	border-top: solid 1px #D6DADE;
}

.search_content .search_type li {
	display: inline-block;
	margin: 0 15px;
}

.search_content .stxt {
	margin: 25px 0 50px;
	text-align: center;
	color: #000;
}

.search_content .btn {
	width: 320px;
	margin: 0 auto;
}

.search_content .btn button {
	display: block;
	width: 100%;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	font-weight: 400;
	color: #fff;
	line-height: 62px;
	background: #0163B6;
	border-radius: 6px;
}

.search_content .btn button:hover {
	background: #129CD8;
}

.search_content .btn button span {
	display: inline-block;
	padding-right: 30px;
	background: url(../common_img/icon_search_white.png) right center / 24px no-repeat;
}

.search_content .result_txt {
	margin-bottom: 50px;
	text-align: center;
	font-weight: 700;
}

.search_content .result_txt span {
	font-size: 2.2rem;
	color: #0163B6;
}

.result_list {
	margin-bottom: 50px;
}

.result_list .tbl th, .result_list .tbl td {
	vertical-align: middle;
	font-size: 1.4rem;
	line-height: 1.3;
	border: solid 1px #B8BBBE;
}

.result_list .tbl th {
	padding: 12px 0;
	text-align: center;
	font-weight: 500;
	background: #F1F2F4;
}

.result_list .tbl td {
	padding: 16px 12px;
}

.result_list .tbl a {
	text-decoration: underline;
}

.result_list .tbl a:hover {
	color: #129CD8;
	text-decoration: none;
}

.search_content .page_txt {
	margin-bottom: 25px;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
}

.search_content .page_txt .current { font-weight:700; }

.search_content .page_list {
	margin-bottom: 50px;
	text-align: center;
}

.search_content .page_list li {
	display: inline-block;
	width: 200px;
	font-weight: 500;
	color: #979B9E;
	line-height: 32px;
	border-left: solid 1px #D6DADE;
	border-right: solid 1px #D6DADE;
}

.search_content .page_list li.next { border-left:none; }
.search_content .page_list.num li.next { text-align:right; }

.search_content .page_list.num li { border:none; }

.search_content .page_list.num li {
	width: 48px;
	height: 48px;
	margin: 0 5px;
}

.search_content .page_list.num li.prev, .search_content .page_list.num li.next { width:100px; }

.search_content .page_list li a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	color: #0163B6;
}

.search_content .page_list.num li a { color:#1D1E20; }

.search_content .page_list li span {
	display: inline-block;
	position: relative;
}

.search_content .page_list.num li a, .search_content .page_list.num li .current, .search_content .page_list.num li .parts {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-bottom: 2px;
	font-size: 1.8rem;
}

.search_content .page_list.num li .current {
	font-weight: 400;
	color: #fff;
	background: #0163B6;
	border-radius: 2px;
}

.search_content .page_list.num li .parts { color:#000; }

.search_content .page_list.num li span.current::before, .search_content .page_list.num li span.parts::before {
	display: none;
}

.search_content .page_list.num li.prev { margin-right:20px; }
.search_content .page_list.num li.next { margin-left:20px; }

.search_content .page_list li.prev span { padding-left:28px; }
.search_content .page_list li.next span { padding-right:28px; }

.search_content .page_list li span::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 24px;
	height: 24px;
	margin-top: -10px;
	background-image: url(../common_img/arrow_link.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px;
}

.search_content .page_list li a span::before { background-image:url(../common_img/arrow_link_blue.png); }

.search_content .page_list li.prev span::before { left:0; transform:rotate(-180deg); }
.search_content .page_list li.next span::before { right:0; }

.search_content .page_list li a:hover { opacity:0.7; }

.search_content .link {
	text-align: center;
}

.search_content .link span {
	color: #0163B6;
	text-decoration: underline;
	cursor: pointer;
}

.search_more {
	width: 320px;
	margin: 0 auto 50px;
	padding-bottom: 2px;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	color: #0163B6;
	line-height: 62px;
	background; #fff;
	border: solid 2px #0163B6;
	border-radius: 6px;
	transition: .3s;
	cursor: pointer;
}

.search_more:hover {
	color: #fff;
	background: #0163B6;
}

.search_more span {
	display: inline-block;
	position: relative;
	padding-right: 32px;
}

.search_more span::before, .search_more span::after {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}

.search_more span::before {
	content: '';
	background: #fff;
	border: solid 2px #0163B6;
	border-radius: 50%;
	z-index: 1;
}

.search_more span::after {
	content: '＋';
	margin: -1px 2px 0 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #0163B6;
	line-height: 20px;
	z-index: 2;
}

.search_plus {
	display: none;
}

.search_delete {
	width: 200px;
	margin: 32px auto;
	padding-bottom: 2px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: #0163B6;
	line-height: 42px;
	background: transparent;
	border: solid 1px #0163B6;
	border-radius: 4px;
	transition: .3s;
	cursor: pointer;
}

.search_delete:hover {
	color: #fff;
	background: #0163B6;
}

.search_delete span {
	margin-left: 10px;
	vertical-align: -2px;
	font-size: 2.2rem;
	font-weight: 700;
}

.link_pdf {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	background: url(../common_img/icon_pdf.png) center center / 40px no-repeat;
}

/*
FNAVI
***************************************************************************/
#fnavi {
	padding: 100px 0 60px;
	background: #F0F6FB;
}

.fbnr_list {
	margin-bottom: 64px;
	text-align: center;
}

.fbnr_list li {
	display: inline-block;
	width: 233px;
	margin: 0 12px;
}

.fbnr_list li img { width:100%; }

.fbnr_list li a:hover { opacity:0.7; }

.fnavi_list > li {
	float: left;
	width: calc((100% - 112px) / 3);
	margin: 0 56px 40px 0;
}

.fnavi_list > li:nth-child(3n) { margin-right:0; }

.fnavi_list .title a {
	display: block;
	position: relative;
	margin-bottom: 16px;
	padding: 0 30px 8px 0;
	font-size: 1.8rem;
	font-weight: 500;
	color: #1D1E20;
	letter-spacing: 0;
	border-bottom: 1px solid #D6DADE;
}

.fnavi_list .title a:hover {
	color: #0163B6;
}

.fnavi_list .title a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	margin-top: -15px;
	background: url(../common_img/arrow_link.png) center center / 24px no-repeat;
	opacity: 0.8;
}

.fnavi_list .list li a {
	display: block;
	position: relative;
	margin-bottom: 5px;
	padding-left: 12px;
	font-size: 1.8rem;
	color: #3B3E44;
}

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

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

.fnavi_list .list li a::before {
	content: '-';
	position: absolute;
	top: -1px;
	left: 0;
}

.fnavi_list .sub {
	padding: 0 0 5px 25px;
}

.fnavi_list .sub li a { padding-left:16px; }

.fnavi_list .sub li a::before { content:'--'; }

.fnavi_list .list li span {
	padding-right: 20px;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 16px;
}

.fnavi_list .list li span.lock_link { background-image:url(../common_img/icon_lock.png); }
.fnavi_list .list li span.other_link { background-image:url(../common_img/icon_link.png); }

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

footer .sec_inner {
	width: 1320px;
	margin: 0 auto;
}

footer .info {
	float: left;
	width: calc(100% - 380px);
}

footer .info .logo {
	float: left;
	width: 160px;
	margin-right: 120px;
}

footer .info .txt {
	float: left;
	width: calc(100% - 280px);
	padding-right: 60px;
}

footer .info .txt .parts { margin-left:10px; }

.fnavi_slist {
	margin-top: 30px;
}

.fnavi_slist li {
	display: inline-block;
}

.fnavi_slist li a {
	position: relative;
	padding: 0 16px;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 0.15rem;
}

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

.fnavi_slist li:first-child a { padding-left:0; }

.fnavi_slist li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 25px;
	margin-top: -12.5px;
	background: rgba(255, 255, 255, 0.30);
}

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

footer .contact {
	float: right;
	width: 380px;
	font-size: 1.6rem;
}

footer .contact .txt {
	margin-bottom: 16px;
}

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

footer .copy .parts { margin-left:5px; }

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;
}

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

	footer .sec_inner {
		width: auto;
		margin: 0 60px;
	}

}
/*
@media screen and (max-width: 1180px){

	footer .info {
		float: none;
		width: 100%;
	}

	footer .contact {
		float: none;
		width: 100%;
		margin-top: 40px;
	}

}
*/
/*
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;
	max-width: calc(100vw - 160px);
	height: 100%;
	padding: 80px 0;
}

.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;
}

/* ▼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 2px;
	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 {
	position: relative;
	margin-bottom: 70px;
	padding-bottom: 24px;
	text-align: center;
	font-size: 3.6rem;
	font-weight: 600;
	font-family: "Noto Serif JP", sans-serif;
	letter-spacing: 0.15rem;
}

.sec_title.left { text-align:left; }

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

.sec_title.left::before {
	left: 0;
	transform: translateX(0);
}

.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; }

.htitle_box {
	margin-bottom: 80px;
	padding: 40px 0;
	font-weight: 600;
	color: #1D1E20;
	line-height: 1.8;
	font-family: "Noto Serif JP";
	border-top: solid 2px #D6DADE;
	border-bottom: solid 2px #D6DADE;
}

.htitle_box .head {
	position: relative;
	margin-bottom: 5px;
	padding-left: 26px;
	font-size: 2.8rem;
}

.htitle_box .head::before {
	content: '';
	position: absolute;
	top: 26px;
	left: 0;
	width: 18px;
	height: 2px;
	background: #0063b6;
}

.htitle_box .title {
	font-size: 3.6rem;
	font-weight: 600;
}

.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: 18px;
	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 .txt .lock {
	padding-right: 42px;
	background: url(../common_img/icon_lock_black.png) right center / 24px no-repeat;
}

.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;
	margin: 0 auto;
}

.file_list.side {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.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;
}

.file_list li a .icon_lock {
	display: inline-block;
	padding-right: 30px;
	background: url(../common_img/icon_lock.png) right center / 22px 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.2em;
}

.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 > li:before {
	font-weight: 700;
}

.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.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: 10px;
	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;
}

/* ▼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;
}

/* ▼SORTABLE TABLE▼ */
.sorttable_list .tbl_box {
	position: relative;
	margin-bottom: 25px;
}

.sorttable_list .tbl_box:last-child { margin-bottom:0; }

.sorttable_list .tbl_box .join_data {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 76px;
	left: 0;
	width: 15%;
	height: calc(100% - 76px);
	text-align: center;
	line-height: 1.3;
}

.sortable_table th, .sortable_table td {
	vertical-align: middle;
	line-height: 1.3;
	border: solid 1px #B8BBBE;
}

.sortable_table th {
	height: 76px;
	padding: 0 22px;
	text-align: center;
	font-weight: 700;
	background: #f1f2f4;
}

.sortable_table.small th {
	height: 64px;
	padding: 0 10px;
	font-size: 1.3rem;
}

.sortable_table td {
	padding: 24px 22px;
	background: #fff;
}

.sortable_table.small td {
	padding: 20px 10px;
	font-size: 1.4rem;
}

.sortable_table.join_on td:first-child { border-top:none; border-bottom:none; }
.sortable_table.join_on tr:last-child td:first-child { border-bottom:solid 1px #B8BBBE; }

.sort_ctl {
	display: inline-block;
	padding-left: 30px;
	background: url(../common_img/icon_sort.png) left center / 23px no-repeat;
	cursor: pointer;
}

a.sort_ctl, a.sort_ctl:hover {
	color: #1D1E20!important;
	text-decoration: none!important;
}

.sortable_table.small .sort_ctl {
	padding-left: 24px;
	background: url(../common_img/icon_sort.png) left center / 20px no-repeat;
}

.icon_sort {
	display: inline-block;
	width: 23px;
	height: 23px;
	margin: 0 8px 0 4px;
	background: url(../common_img/icon_sort.png) center center / 23px no-repeat;
	transform: translateY(5px);
}

/* ▼MAP▼ */
.map_filelist {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 30px 40px;
	min-height: 940px;
	padding: 40px;
	background: #f7f8f8 url(../common_img/map.png) center 25px / 740px no-repeat;
}

.map_filelist .txt {
	margin-bottom: 10px;
	font-weight: 500;
	line-height: 1.5;
}

.map_filelist ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.map_filelist li a {
	display: inline-block;
	padding: 0 15px 2px;
	font-weight: 500;
	line-height: 42px;
	white-space: nowrap;
	background: #fff;
	border: solid 1px #b8bbbe;
	border-radius: 6px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}

/* ▼MOVIE▼ */
.movie_intro {
	padding: 60px 0;
	border-bottom: solid 1px #D6DADE;
}

.movie_intro .list_head {
	margin-bottom: 40px;
}

.movie_list > dl {
	margin-bottom: 30px;
}

.movie_list > dl:last-child { margin-bottom:0; }
.backnumber_list .movie_list > dl:last-child { margin-bottom:30px; }

.movie_list > dl > dt {
	position: relative;
	margin-bottom: 16px;
	padding-left: 20px;
	font-size: 2rem;
	font-weight: 500;
	color: #1D1E20;
	line-height: 1.5;
}

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

.movie_list > dl > dd > a {
	display: block;
	position: relative;
	padding: 30px 80px 32px 120px;
	font-size: 1.8rem;
	font-weight: 700;
	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;
}

.movie_list > dl > dd > a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 40px;
	width: 44px;
	aspect-ratio: 44 / 31;
	background: url(../common_img/icon_movie.png) center center / 44px no-repeat;
	transform: translateY(-50%);
}

.movie_list > dl > dd > a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	background: url(../common_img/arrow_link_blue.png) center center / 40px no-repeat;
}

.movie_list > dl > dd .title {
	margin-bottom: 8px;
}

.movie_list > dl > dd .stxt {
	font-size: 1.6rem;
	font-weight: 500;
}

.movie_list > dl > dd .title > span {
	display: inline-block;
	padding-right: 24px;
	background: url(../common_img/icon_lock.png) right center / 18px no-repeat;
	transition: .3s;
}

.movie_list > dl > dd > a:hover { color:#0163B6; }
.movie_list > dl > dd > a:hover .title > span { background:url(../common_img/icon_lock_blue.png) right center / 18px no-repeat; }

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.pc_iblock, .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; }

.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; }

/* ▼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; }
