@charset "utf-8";
/* CSS Document */

/* 印刷用css */
@media print {
	html {
		zoom: 0.6;
	}

	header {
		position: absolute !important;
	}

	#mv .shindan_btn {
		animation: none !important;
	}
}

/* iOS Safariの自動検出リンク対策 */
a[x-apple-data-detectors] {
	color: inherit !important;
	text-decoration: none !important;
}

body {
	background-color: #365cb2;
}

body,
button {
	font-family: "Zen Kaku Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック";
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
	color: #071533;
}

* {
	vertical-align: top;
	box-sizing: border-box;
	word-break: break-all;
}

a {
	color: #071533;
	text-indent: 0;
	text-decoration: underline;
}

a:hover,
button:hover {
	text-decoration: none;
}

a.honbun {
	display: none;
}

.sp {
	display: none;
}

img {
	max-width: 100%;
}

.font_en {
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 400;
	letter-spacing: .04em;
}

.font_title {
	font-family: "M PLUS 1 Code", monospace;
	font-weight: 500;
}

@media screen and (max-width: 800px) {

	body,
	button {
		font-size: 14px;
	}
}

/*=====================================================================================
***************************************************************************************

　　header

***************************************************************************************
=====================================================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;

	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 auto;

	transition: all 0.3s ease;
}

.logo_area {
	margin-top: 30px;
	margin-left: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	align-items: flex-start;
}

header h1,
header h2,
.hamburger_inbox h1 {
	font-size: 0;
}

/* 右側要素 */
.right_area {
	display: flex;
	align-items: center;
}

.right_area_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
	padding: .2em 1em 0;
	height: 45px;
	transition: .3s;
}

.right_area_btn.mitaiken {
	background: #f36938;
	line-height: 1.2;
}

.right_area_btn.mypage {
	background: #365cb2;
	margin-left: 20px;
}

.right_area_btn:hover {
	transform: scale(1.1);
}

.search_menu_area {
	display: flex;
	align-items: center;
	background: #f1ad4b;
	padding: 23px 25px;
	margin-left: 30px;
}

/* サイト内検索 */
.search_menu_area span {
	padding-top: .2em;
}

.search_container {
	padding-right: 20px;
	margin-right: 20px;
	border-right: solid 1px #071533;
}

.search_container a {
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
	column-gap: 6px;
	transition: .3s;
}

header .site_search_box {
	position: absolute;
	right: 20px;
	top: -80px;
	width: 285px;
	transition: 0.8s;
}

.site_search_box.open {
	top: 90px;
	transition: 0.8s;
}

.site_search_box input[type="text"] {
	margin-top: 0;
	border: none;
	font-size: 16px;
	padding: 15px 0 15px 25px;
	border-radius: 25px;
	width: 100%;
}

.site_search_box .search_icon {
	position: absolute;
	right: 10px;
	top: 8px;
	padding: .5em 1em;
	background: #f1ad4b;
	font-size: 13px;
	border-radius: 20px;
	border: none;
	cursor: pointer;
}

.site_search_box form {
	position: relative;
}

.search_sp {
	display: none;
}

/* ハンバーガーメニュー内 */
.hamburger_btn {
	display: flex;
	align-items: center;
	gap: 5px 10px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .3s;
}

.hamburger_icon {
	width: 24px;
	height: 21px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger_line {
	width: 100%;
	height: 3px;
	background: #071533;
	transition: all 0.3s ease;
}

.hamburger_btn.active .hamburger_line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger_btn.active .hamburger_line:nth-child(2) {
	opacity: 0;
}

.hamburger_btn.active .hamburger_line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.hamburger_inbox {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	padding-top: 250px;
	background: #234083;
	transition: right 1s cubic-bezier(0.6, -0.28, 0.74, 0.05);
	z-index: 9;
	overflow-y: auto;
}

body.menu-open {
	overflow: hidden;
}

.hamburger_inbox.active {
	right: 0;
	transition: right 1s cubic-bezier(0.18, 0.54, 0.17, 1.22);
}

.hamburger_inbox .search_container {
	display: none;
}

.hamburger_inbox h1 {
	display: none;
}

.hamburger_inbox .mypage {
	display: none;
}

.menu_header_items {
	display: none;
	flex-wrap: wrap;
	gap: 15px 4%;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #FFFFFF;
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}

.menu_header_items .mypage {
	max-width: 240px;
	margin-left: 0;
}

.menu_header_items .site_search_box {
	max-width: 340px;
}

.menu-search .search-label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
}

.menu-items {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding-bottom: 50px;
}

.menu-item_main {
	display: flex;
	gap: 20px 2%;
	flex-wrap: wrap;
}

.menu-item {
	text-align: left;
	text-decoration: none;
	color: #fcffee;
	display: flex;
	align-items: center;
}

.menu-item_main .menu-item {
	width: 32%;
	font-size: 25px;
	font-weight: bold;
	border-bottom: solid 1px #fcffee;
	padding: 0 .2em .8em .5em;
}

.menu-item_main .menu-item:hover {
	color: #f36938;
}

.menu-item_special {
	display: flex;
	gap: 20px 2.6%;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #f36938;
	padding: 50px 40px 45px;
	margin: 40px 0;
}

.menu-item_special .menu-item {
	width: 23%;
	font-size: 20px;
	line-height: 1.2;
	border-bottom: solid 1px #fcffee;
	padding: 0 .2em .8em .5em;
}

.menu-item_special .menu-item:hover {
	color: #f1ad4b;
}

.menu-item_special .menu-item .menu_icon path {
	fill: #f1ad4b;
}

.menu-item_sub {
	display: flex;
	gap: 1em 2.5em;
	flex-wrap: wrap;
}

.menu-item_sub .menu-item .menu_icon path {
	fill: #2379c2;
}

.menu-item_sub .menu-item:hover {
	color: #2379c2;
}

/* ホバーの話 */
.search_container a:hover,
.hamburger_btn:hover {
	color: #2379c2;
}

@media screen and (max-width: 1060px) {
	.menu-item_main .menu-item {
		font-size: 20px;
	}

	.menu-item_special .menu-item {
		font-size: 18px;
	}
}

@media screen and (max-width: 960px) {
	.menu-item_special .menu-item {
		width: 48%;
	}
}

@media screen and (max-width: 839px) {
	.menu-item_main .menu-item {
		width: 100%;
	}
}

@media screen and (max-width: 549px) {
	.menu-item_special {
		padding: 35px 25px 30px;
	}

	.menu-item_special .menu-item {
		width: 100%;
	}
}

@media screen and (max-width: 1250px) {
	.search_container {
		display: none;
	}

	.hamburger_inbox .search_container {
		display: block;
	}

	.menu_header_items {
		display: flex;
	}
}

@media screen and (max-width: 1100px) {
	.right_area_btn.mypage {
		display: none;
	}

	.hamburger_inbox .mypage {
		display: flex;
	}
}

@media screen and (max-width: 820px) {
	h1 {
		display: none;
	}

	.hamburger_inbox h1 {
		display: block;
	}

	.logo_area {
		width: 25%;
		margin-top: 15px;
		margin-left: 20px;
	}

	h2 .sp {
		display: block;
	}

	h2 .pc {
		display: none;
	}

	h2 img {
		max-width: 100%;
		width: 100%;
	}

	.right_area_btn {
		font-size: 13px;
	}

	.right_area_btn.mitaiken img {
		display: none;
	}

	.search_menu_area {
		padding: 10px 16px;
		margin-left: 10px;
	}

	.search_menu_area span {
		padding-top: 0;
	}

	.hamburger_btn {
		flex-direction: column;
		font-size: 12px;
	}
}

@media screen and (max-width: 600px) {
	.logo_area {
		width: auto;
	}

	h2 img {
		max-width: 124px;
	}

	.hamburger_inbox {
		padding: 150px 0 100px;
	}
}

/*=====================================================================================
***************************************************************************************

　　中ページタイトル

***************************************************************************************
=====================================================================================*/
#head_mv {
	background: url(../img/common/head_mv_bg.jpg) no-repeat top/cover;
	color: #fcffee;
	padding: 270px 0 100px;
	margin-bottom: 80px;
}

#head_mv .head_mv_in {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px 10px;
}

#head_mv h3 {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
	margin-bottom: .3em;
}

#head_mv h3 span {
	font-size: 30px;
	color: #f36938;
	margin-bottom: .2em;
	display: block;
}

#head_mv p {
	text-align: left;
	font-weight: 500;
}

#head_mv .pankuzu {
	font-size: 14px;
	text-align: right;
}

#head_mv .pankuzu a {
	color: #fcffee;
	text-decoration: underline;
}

@media screen and (max-width: 820px) {
	#head_mv h3 {
		font-size: 35px;
	}

	#head_mv h3 span {
		font-size: 20px;
	}

	#head_mv {
		padding: 180px 0 50px;
	}
}

@media screen and (max-width: 600px) {
	#head_mv {
		background: url(../img/common/head_mv_bg_sp.jpg) no-repeat top/cover;
		padding: 130px 0 30px;
		margin-bottom: 40px;
	}

	#head_mv .head_mv_in {
		flex-direction: column;
		align-items: flex-start;
	}
}

/*=====================================================================================
***************************************************************************************

　　footer

***************************************************************************************
=====================================================================================*/
footer {
	background-color: #0e2352;
	padding: 80px 0 30px;
	text-align: left;
	color: #fcffee;
	margin-top: 150px;
}

footer .box {
	max-width: 1230px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 30px 5%;
}

footer .left_box {
	width: 40%;
}

footer .left_box a {
	display: block;
}

footer .left_box p {
	font-size: 20px;
	margin-top: 1.5em;
}

footer .left_box p span {
	font-size: 14px;
	display: block;
	margin-top: .4em;
}

footer .right_box {
	font-size: 14px;
}

footer .right_box li {
	margin-top: .5em;
}

footer .right_box li:nth-of-type(2) .menu_icon path {
	fill: #2aba6f;
}

footer .right_box li:nth-of-type(3) .menu_icon path {
	fill: #466ec8;
}

footer .right_box li:nth-of-type(4) .menu_icon path {
	fill: #eb739c;
}

footer .right_box li a {
	text-decoration: none;
	color: #fcffee;
}

footer .contact {
	width: 100%;
	font-size: 22px;
}

footer .contact a {
	padding: .4em;
}

footer .btn_arrow_right a::after {
	background: url(../img/common/contact_icon.svg);
}

footer small {
	display: block;
	text-align: center;
	margin-top: 50px;
}

footer .right_box li a .menu_icon {
	width: 18px;
}

@media screen and (max-width: 1050px) {
	footer .left_box {
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	footer {
		padding-top: 50px;
		margin-top: 50px;
	}

	footer .left_box p {
		font-size: 16px;
	}

	footer .right_box {
		width: 100%;
	}

	footer small .sp {
		display: block;
	}
}

/*=====================================================================================
***************************************************************************************

　　ページトップに戻るボタン

***************************************************************************************
=====================================================================================*/
/* ボタンのスタイル */
.scroll_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	/* 初期状態は非表示 */
	background-color: #000;
	color: #fff;
	text-align: center;
	line-height: 50px;
	/* ボタンの高さと揃える */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 18px;
	text-decoration: none;
	/* 下線を消す */
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	opacity: 0;
	/* 初期状態で透明 */
	transition: opacity 0.5s ease-in-out;
	/* フェードイン/アウトのアニメーション */
}

.scroll_top:hover {
	background-color: #444;
}

/*=====================================================================================
***************************************************************************************

　　CMS

***************************************************************************************
=====================================================================================*/
/*=============== cmsページ以外でも使用出来る共通css ===============*/
.width90 {
	width: 90%;
	margin: 0 auto;
}

.max_w1400 {
	max-width: 1400px;
}

.max_w1200 {
	max-width: 1200px;
}

.max_w1000 {
	max-width: 1000px;
}

.max_w800 {
	max-width: 800px;
}

.bg_color {
	background-color: #fcffee;
}

/*ボタン矢印　左右*/
.btn {
	background-color: #fcffee;
	border-radius: 100px;
	text-align: center;
	max-width: 280px;
	width: 100%;
	font-weight: 600;
	transition: .3s;
}

.btn a {
	text-decoration: none;
	display: block;
	padding: 1em .5em;
	position: relative;
}

.btn:hover {
	transform: scale(1.1);
}

.btn_arrow_left a::after,
.btn_arrow_right a::after {
	position: absolute;
	content: "";
	background: url(../img/common/btn_arrow_blue.svg) no-repeat;
	width: 35px;
	height: 35px;
	margin: auto;
}

.btn_arrow_right a::after {
	inset: 0 12px 0 auto;
}

.btn_arrow_left a::after {
	inset: 0 auto 0 12px;
	transform: scale(-1, 1);
}


.title_menu {
	text-align: left;
	font-weight: 500;
	display: flex;
	align-items: center;
	column-gap: 4px;
}

.menu_icon {
	width: 22px;
	/* 一旦基準 */
	height: auto;
	/* 縦横比を保つ */
}

.menu_icon path {
	fill: #f36938;
	/* 通常時の色 */
}

@media screen and (max-width: 600px) {
	.btn {
		font-size: 15px;
		max-width: 240px;
	}
}
.detail_page .content_box{
	padding: 80px 100px;
	text-align: left;
}
.topic_detail_content h1{
	color: #234083;
	margin-bottom: 40px;
	font-size: 40px;
}
.topic_detail_content h2,
.topic_detail_content h3{
	margin: 50px 0 20px;
	color: #234083;
	font-size: 26px;
}
.topic_detail_content h3{font-size: 20px;}
.topic_detail_content h3::before{
	content: "■";
	margin-right: 10px;
}
@media screen and (max-width: 1120px){.detail_page .content_box{padding: 5%;}}
@media screen and (max-width: 750px){
	.detail_page .content_box{padding: 20px;}
	.topic_detail_content h1{
		margin-bottom: 20px;
		font-size: 20px;
		display: block;
	}
	.topic_detail_content h2,
	.topic_detail_content h3{
		font-size: 20px;
		margin: 25px 0 15px;
	}
	.topic_detail_content h3{font-size: 17px;}
}
/*=カラム=*/
.detail_page .column1,
.column2 {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	row-gap: 40px;
	align-items: flex-start;
}

.detail_page .column_ch {
	width: calc(50% - 20px);
}

@media screen and (max-width: 750px) {
	.detail_page .column1 {
		flex-direction: column;
		row-gap: 15px;
	}

	.detail_page .column1 .column_ch {
		width: 100%;
	}

	.detail_page .column2 {
		column-gap: 8px;
	}

	.detail_page .column2 .column_ch {
		width: calc(50% - 4px);
	}
}

/*=表=*/
.detail_page table:not(.detail_page .corporate_box table) {
	box-sizing: border-box;
	border-collapse: collapse;
	margin-top: 50px;
	font-weight: 400;
}
.detail_page tr:not(.detail_page .corporate_box tr) {border-bottom: solid 1px #071533;}
.detail_page th:not(.detail_page .corporate_box th) {
	background-color: #e9eef3;
	padding: 20px;
	width: 180px;
}
.detail_page td:not(.detail_page .corporate_box td) {padding: 20px;}

@media screen and (max-width: 750px) {
	.detail_page table:not(.detail_page .corporate_box table) {
		margin-top: 30px;
		border-top: solid 1px #071533;
	}

	.detail_page th:not(.detail_page .corporate_box th) {
		padding: 10px;
		width: 100%;
		display: block;
	}

	.detail_page td:not(.detail_page .corporate_box td) {
		padding: 10px;
		display: block;
	}
}

/*=リスト=*/
.detail_page .topic_detail_content ol,
.detail_page .topic_detail_content ul, 
.detail_page .content_box ol,
.detail_page .content_box ul:not(.people ul) {
	counter-reset: item;
	padding-left: 0;
	margin-bottom: 40px;
	font-weight: 400;
}

.detail_page .topic_detail_content ol li,
.detail_page .topic_detail_content ul li,
.detail_page .content_box ol li,
.detail_page .content_box ul li:not(.people li) {
	list-style: none;
	counter-increment: item;
	padding-left: 1.2em;
	position: relative;
	margin-bottom: 11px;
}

.detail_page .topic_detail_content ul li::before,
.detail_page .content_box ul li:not(.people li)::before {
	content: "・";
	color: #365cb2;
	position: absolute;
	left: 0;
	top: 0;
}

.detail_page .topic_detail_content ol li::before,
.detail_page .content_box ol li::before {
	content: counter(item) ".";
	position: absolute;
	left: 0;
	top: 0;
	color: #365cb2;
	font-weight: bold;
}

@media screen and (max-width: 750px) {

	.detail_page .topic_detail_content ol,
	.detail_page .topic_detail_content ul,
	.detail_page .content_box ol,
	.detail_page .content_box ul {
		margin-bottom: 25px;
	}
}

/*==ページネーション==*/
.pagination {
	margin-top: 100px;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.pagination li {
	transition: .3s;
}

.pagination li .page-numbers,
.pagination .link_active a,
.pagination .current a {
	border: 1px solid #fcffee;
	font-size: 20px;
	padding: 13px;
	color: #365cb2;
	background-color: #fcffee;
	text-decoration: none;
}

.pagination .link_active a,
.pagination .current a {
	color: #fcffee;
	background-color: #365cb2;
}

.pagination li .page-numbers.dots {
	background-color: unset;
	border: none;
	color: #fcffee;
	padding: 0;
	cursor: pointer
}

.pagination li:hover {
	transform: scale(1.1);
}

@media screen and (max-width: 750px) {
	.pagination {
		margin-top: 60px;
	}

	.pagination li .page-numbers {
		font-size: 18px;
		padding: 10px;
	}
}