@charset "utf-8";
/* Copyright 2022 FSFIELD All Rights Reserved. */

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

パソコン、タブレット、スマートフォン（iPhone,Android) 共通

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ------------------------------------------------------------

basic

------------------------------------------------------------ */

*{font-family: 'Noto Sans JP', Meiryo, sans-serif;}

@media (-ms-high-contrast: none) {
	*{font-family: 'Noto Sans JP', Meiryo, sans-serif;}
}

html{
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body{
	background: #FFF;
	color: #1F1F1F;
	font-weight: 400;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
}

/* ------------------------------------------------------------

shortcodes

------------------------------------------------------------ */

/* font
---------------------------------------------- */
.normal{font-weight: normal !important;}
.bold{font-weight: bold !important;}
.italic{font-style: italic !important;}

/* display
---------------------------------------------- */
.none{display: none !important;}

/* margin
---------------------------------------------- */
.mb_none{margin-bottom: 0 !important;}


/* ------------------------------------------------------------

common

------------------------------------------------------------ */

.wrap_type01{padding: 110px 0 140px;}

.wrap_type02{padding-top: 110px;}

.wrap_type03{padding-bottom: 140px;}

.wrap_type04{
	max-width: 1320px;
    margin: 0 auto;
    padding: 150px 60px;
}

.wrap_type05{
	max-width: 1160px;
    margin: 0 auto;
    padding: 115px 30px 140px;
}

.wrap_type06{
	max-width: 1120px;
    margin: 0 auto;
    padding: 115px 60px 150px;
}

.wrap_type07{
	max-width: 960px;
	margin: 0 auto;
	padding: 65px 60px 150px;
}

/*--404ページ--*/	
.wrap_404{
	text-align: center;
	padding-top: 120px;
	margin-bottom: 160px;
}

.ttl_404{
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.txt_404{margin-bottom: 30px;}

/*--メール--*/	
.txt_mail::after{content: "@";}

/* リンク
---------------------------------------------- */
.link01{
	color: #1F1F1F;
	text-decoration: underline !important;
}

.link01:hover{text-decoration: none !important;}

.link_tel01{
	color: #1F1F1F;
	pointer-events: none;
}

.link_tab01{
	color: #1F1F1F;
	text-decoration: underline !important;
	background: url("../img/ico_tab02.png") no-repeat right center;
	background-size: 13px;
	padding-right: 15px;
}

.link_tab01:hover{text-decoration: none !important;}

.link_pdf01{
	display: inline-block;
	color: #1F1F1F;
	text-decoration: underline !important;
	background: url("../img/ico_pdf01.jpg") no-repeat left top 6px;
	background-size: 18px;
	padding-left: 24px;
}

.link_pdf01:hover{text-decoration: none !important;}

/* ページタイトル
---------------------------------------------- */
.wrap_pagettl{
	position: relative;
    display: flex;
    padding-top: 60px;
}

.pagettl_bg{
	position: absolute;
    top: 60px;
    left: 0;
    width: 90%;
    height: calc(100% - 60px);
    background: radial-gradient(circle at bottom , #465C8A 0%, #39496A 50%, #2e3649 100%);
    overflow: hidden;
}

.pagettl_bg::before,
.pagettl_bg::after{
	content: "";
	display: block;
	width: 1172px;
    height: 728px;
    background: url("../img/bg_pagettl01_pc.png");
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    mix-blend-mode: color-dodge;
    filter: brightness(1.25);
    pointer-events: none;
}

.pagettl_bg::before{
	top: -100px;
    margin-left: -1154px;
}

.pagettl_bg::after{
	top: -100px;
    margin-left: -157px;
}

.pagettl_inner{
	width: 38.2%;
    position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagettl_inner h2{
	color: #FFF;
    font-size: 4rem;
    font-family: "Noto Serif JP";
    padding-left: calc(5% * 100 / 38.2);
	padding-right: 20px;
    line-height: 1.1;
}

.pagettl_inner h2 .sub{
	font-size: 1.7rem;
	font-family: "Noto Serif JP";
	letter-spacing: 0.1em;
	display: block;
	padding-bottom: 10px;
}

.pagettl_inner h2 .txt_block{
	display: inline-block;
	font-family: "Noto Serif JP";
}

.pagettl_image{
	width: 61.8%;
    transform: translateY(-60px);
}

.pagettl_image img{
	width: 100%;
	height: auto;
    image-rendering: -webkit-optimize-contrast;
}

.pagettl_image img.sp{display: none;}

/* パンくずリスト
---------------------------------------------- */
.breadcrumb{
	position: absolute;
    bottom: 15px;
    left: 30px;
	width: calc(100% - 60px);
}

.breadcrumb ul{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 1.1;
}

.breadcrumb ul li{
	display: inline;
	vertical-align: middle;
	color: #A6B5D2;
	padding-left: 17px;
	font-size: 1.3rem;
	position: relative;
}
.breadcrumb ul li br{
	display: none;
}

.breadcrumb ul li::before{
	content: "";
    display: block;
    width: 4px;
    height: 5px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #FFF;
    position: absolute;
    top: 8px;
    left: 5px;
}

.breadcrumb ul li:first-child{padding-left: 0;}

.breadcrumb ul li:first-child::before{display: none;}

.breadcrumb ul li a{color: #A6B5D2;}

.breadcrumb ul li a:focus{outline: thin dotted #FFF;}

.breadcrumb ul li a:hover{color: #FFF;}

/* 見出し
---------------------------------------------- */
.heading01{
	position: relative;
	font-family: "Noto Serif JP";
	font-size: 3.4rem;
	line-height: 1.4;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.heading01::before{
	content: "";
	display: block;
	background: #CF0040;
	width: 30px;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -15px;
}

.heading01 span{
	font-family: "Noto Serif JP";
	display: inline-block;
}

/* ボタン
---------------------------------------------- */
.btn_type01 a{
	display: inline-block;
	width: 250px;
	line-height: 1;
	letter-spacing: 0.1em;
	padding: 21px 10px;
	color:#2D3548;
	text-align: center;
	border: 1px solid #CBCDD1;
	background: #FFF;
	border-radius: 5px;
}

.btn_type01 a:hover{opacity: .7;}

.btn_type02 a{
	display: inline-block;
	line-height: 1;
	padding: 21px 28px;
	color:#FFF;
	text-align: center;
	background: #CF0040;
	border-radius: 30px;
	font-size: 1.8rem;
}

.btn_type02 a:hover{background: #DD1A5E;}

.btn_viewmore a{
	font-size: 1.8rem;
    line-height: 1;
    color: #FFF;
    background: #2e3649;
    display: inline-block;
    position: relative;
    padding: 15px 20px 15px 55px;
    transition: padding .33s;
	border-radius: 48px;
}


.btn_viewmore a .arrow{
	position: absolute;
	top: 4px;
	left: 4px;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: #CF0040;
	display: block;
	transition:transform .33s, background-color .33s;
	transform: translate3d(0,0,0);
}

.btn_viewmore a .arrow::before{
	content: "";
	display: block;
	width: 7px;
	height: 10.9375px;
	clip-path: polygon(21.25% 0, 0 17%, 56.875% 50%, 0% 83%, 21.25% 100%, 100% 50%);
	-webkit-clip-path: polygon(21.25% 0, 0 17%, 56.875% 50%, 0% 83%, 21.25% 100%, 100% 50%);
	background-color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -5.46875px;
	margin-left: -2.5px;
	transition:background-color .33s;
}

.btn_viewmore a:hover{
	padding: 15px 55px 15px 20px;
}
.btn_viewmore a:hover .arrow{
	transform: translate3d(117px,0,0);
	background-color: #FFF;
}
.btn_viewmore a:hover .arrow::before{
	background-color: #CF0040;
}

/* リスト
---------------------------------------------- */
.list_type01 li{
	position: relative;
	padding-left: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.list_type01 li:last-of-type{margin-bottom: 0;}

.list_type01 li::before{
	content: "";
	display: block;
	background: #CF0040;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 9px;
	left: 0;
}

/* 記事
---------------------------------------------- */
.article{border-bottom: 1px solid #EBEBEB;}

.article:first-of-type{border-top: 1px solid #EBEBEB;}

.article a{
	display: flex;
	padding: 27px 0;
}
	
.article time{
	display: block;
	font-family: "Roboto";
	flex: none;
	width: 122px;
	font-size: 1.7rem;
	line-height: 1.1;
	letter-spacing: .05em;
	padding: 2px 0 0 0;
	color: #8E8E8E;
	word-wrap: break-word;
}

.article h3{
	line-height: 1.6;
	color: #222;
}

.article:hover h3{opacity: 0.7;}


/* ------------------------------------------------------------

header

------------------------------------------------------------ */

#wrap_top{
	font-size: 1.1rem;
	line-height: 1.5;
	color: #777;
	text-align: right;
}

.wrap_top_inner .cloned{display: none;}	

.wrap_top_inner h1{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding-right: 1em;
}
.wrap_top_inner h1 br{
	display: none;
}

#header{
	background: #FFF;
	padding: 0 198px 0 40px;
	position: relative;
	z-index: 2;
}

.header_inner{
	width: 100%;
	height: 87.91px;
	display: flex;
	justify-content: space-between;
	align-items: center;		
}

.h_logo{
	flex: none;
	display: flex;
    align-items: center;
}
.h_logo a{
	display: block;
	width: 92px;
}

.h_logo a img{
	width: 100%;
	height: auto;
}
.h_logo span{
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 2rem;
    padding-left: 1.5em;
}
.h_logo span br{display: none;}

.h_btn_apply,
.btn_menu,
.btn_close,
.m_logo{display: none;}

/* グローバルナビ
---------------------------------------------- */
.drawer{width: 100%;}
.nav_global{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav_global > ul{
	display: flex;
	justify-content: space-between;
}

.nav_global > ul:nth-of-type(1){
	width: 473px;
    padding: 0 40px;
    margin: 0 0 0 auto;
}

.nav_global > ul:nth-of-type(1) > li{
	font-weight: 700;
	font-size: 1.5rem;
	position: relative;
}

.nav_global > ul:nth-of-type(1) > li.tab a::after{
	content: "";
	display: inline-block;
	background: url("../img/ico_tab02.png") no-repeat 0 0;
	background-size: contain;
	width: 13px;
	height: 13px;
	margin: 0 0 -1px 5px;
}

.nav_global > ul:nth-of-type(1) > li > a{
	color: #1F1F1F;
	padding: 34px 0;
}

.nav_global > ul:nth-of-type(1) > li > a:hover{color: #CE003F;}
	
.nav_global > ul:nth-of-type(1) > li.g02::after{
	content: "";
	background: url("../img/ico_arrow01.png") no-repeat 0 0;
	background-size: contain;
	width: 12px;
	height: 8px;
	pointer-events: none;
	position: absolute;
	left: 50%;
	bottom: -15px;
	margin-left: -6px;
}

.nav_global > ul:nth-of-type(1) > li .sub{
	width: 150px;
	background: #2E3649;
	position: absolute;
	top: 58px;
	left: -45px;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}

.nav_global .btn_apply{
	position: fixed;
	top: 0;
	right: 0;
}
.nav_global .btn_apply a{
	font-size: 2rem;
    display: flex;
    flex-direction: column;
    background: #CF0040;
    color: #FFF;
    line-height: 1.3;
    width: 198px;
    height: 140px;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 10px;
    text-align: center;
    letter-spacing: .05em;
}
.nav_global .btn_apply a:hover{
	background:#DD1A5E;
}
.nav_global .btn_apply a span{
	font-size: 1.2rem;
	padding-top: 1em;
	letter-spacing: 0;
}

.mode-960 .nav_global > ul:nth-of-type(1) > li .sub{transition: opacity .3s;}

.nav_global > ul:nth-of-type(1) > li.parent .sub.show{
	opacity: 1;
	pointer-events: auto;
	transition: opacity .33s;
}

.nav_global .sub li{border-bottom: 1px solid #424C61;}

.nav_global .sub li a{
	color: #B8C4D7;
	display: block;
	line-height: 1;
	padding: 12px;
	font-size: 1.4rem;
	font-weight: normal;
}

.nav_global .sub li a:focus{outline: thin dotted #FFF;}

.nav_global .sub li a:hover{color: #FFF;}

.nav_global > ul:nth-of-type(2){width: 325px;}

.nav_global > ul:nth-of-type(2) li{width: calc(50% - 2.5px);}

.nav_global > ul:nth-of-type(2) li a{
	display: block;
	color: #FFF;
	text-align: center;
	line-height: 1;
	font-size: 1.5rem;
	padding: 18px 0 17px;
	border-radius: 50px;
}

.nav_global > ul:nth-of-type(2) li:nth-of-type(1) a{background: #00AC9B;}

.nav_global > ul:nth-of-type(2) li:nth-of-type(2) a{background: #CF0040;}

.nav_global > ul:nth-of-type(2) li:nth-of-type(1) a:hover{background: #00BAAA;}

.nav_global > ul:nth-of-type(2) li:nth-of-type(2) a:hover{background: #DD1A5E;}

/* ------------------------------------------------------------

footer

------------------------------------------------------------ */

#footer{
	background: #2E3649;
	padding: 120px 50px 10px;
}

.footer_inner{
	max-width: 1050px;
	margin: 0 auto;
}

.footer_inner .btn_apply a:focus{outline: thin dotted #FFF;}

.nav_footer{
	padding-bottom: 54px;
	margin-bottom: 70px;
	border-bottom: 1px solid #3A4357;
	display: flex;
	justify-content: space-between;
}

.nav_footer > ul:nth-of-type(1){
	display: flex;
	flex:1;
	justify-content: space-between;
	margin-top: -5px;
	padding-top: 15px;
	padding-right: 40px;
}

.nav_footer > ul:nth-of-type(1) > li > a{
	color: #bac4d7;
	font-weight: 700;
	line-height: 1;
	font-size: 1.5rem;
}

.nav_footer > ul:nth-of-type(1) > li > a:focus{outline: thin dotted #FFF;}

.nav_footer > ul:nth-of-type(1) > li.parent{}

.nav_footer > ul:nth-of-type(1) > li.parent > a{padding: 0;}

.nav_footer > ul:nth-of-type(1) > li:first-of-type a{padding-left: 0;}

.nav_footer > ul:nth-of-type(1) > li:last-of-type a{padding-right: 0;}

.nav_footer > ul:nth-of-type(1) > li.tab a::after{
	content: "";
	display: inline-block;
	background: url("../img/ico_tab01.png") no-repeat 0 0;
	background-size: contain;
	width: 13px;
	height: 13px;
	margin: 0 0 -1px 5px;
}

.nav_footer > ul:nth-of-type(1) > li > a:hover{color: #FFF;}

.nav_footer .f_sub{margin-top: 5px;}

.nav_footer .f_sub li{margin-bottom: 5px;}

.nav_footer .f_sub li a{
	display: inline-block;
	color: #bac4d7;
	padding: 0 0 0 15px;
	line-height: 1;
	font-size: 1.5rem;
	position: relative;
}

.nav_footer .f_sub li a:hover{color: #FFF;}

.nav_footer .f_sub li a:focus{outline: thin dotted #FFF;}

.nav_footer .f_sub li a::before{
	content: "";
	display: inline-block;
	background: #76839A;
	width: 8px;
	height: 1px;
	pointer-events: none;
	position: absolute;
	top: 6px;
	left: 0;
}

.nav_footer > ul:nth-of-type(2){width: 160px;}

.nav_footer > ul:nth-of-type(2) li{margin-bottom: 16px;}

.nav_footer > ul:nth-of-type(2) li:last-of-type{margin-bottom: 0;}

.nav_footer > ul:nth-of-type(2) li a{
	display: block;
	color: #FFF;
	text-align: center;
	line-height: 1;
	font-size: 1.5rem;
	padding: 18px 0 17px;
	border-radius: 50px;
}

.nav_footer > ul:nth-of-type(2) li a:focus{outline: thin dotted #FFF;}

.nav_footer > ul:nth-of-type(2) li:nth-of-type(1) a{background: #00B3A2;}

.nav_footer > ul:nth-of-type(2) li:nth-of-type(2) a{background: #CF0040;}

.nav_footer > ul:nth-of-type(2) li:nth-of-type(1) a:hover{background: #00C0B1;}

.nav_footer > ul:nth-of-type(2) li:nth-of-type(2) a:hover{background: #DD1A5E;}

.nav_footer .btn_apply a{
	background-color: #CF0040;
    color: #FFF;
    font-size: 1.5rem;
    padding: 16px 22px;
    border-radius: 50px;
    display: inline-block;
    line-height: 1.2;
}

.nav_footer .btn_apply a:hover{background-color: #DD1A5E;}
	
.f_inner{
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}

.f_logo a{
	display: flex;
	justify-content: space-between;
	color: #333;
}

.f_logo a:focus{outline: thin dotted #FFF;}

.f_logo .f_logo01{width: 92px;}

.f_logo .f_logo01 img{
	width: 100%;
	height: auto;
}

.f_logo .f_logo02{
	color: #FFF;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 700;
	padding: 20px 0 0 2em;
}

.f_inner address{
	color: #FFF;
	font-size: 1.4rem;
	padding-top: 15px;
}

.f_bottom,
.f_small{
	text-align: center;
	color: #6A768C;
	line-height: 1.2;
}

.footer_inner .corporate_site{
	text-align: center;
	margin-bottom: 1em;
	font-size: 1.3rem;
}
.footer_inner .corporate_site a{color: #bac4d7;}
.footer_inner .corporate_site a:hover{color: #FFF;}
.footer_inner .corporate_site a:after{
	content: "";
    display: inline-block;
    background: url(../img/ico_tab01.png) no-repeat 0 0;
    background-size: contain;
    width: 13px;
    height: 13px;
    margin: 0 0 -1px 5px;
}

.f_bottom{
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.f_small{
	font-family: "Roboto";
	font-size: 1.2rem;
}

/* ページトップボタン
---------------------------------------------- */	
#pagetop{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background:#EEE;
	z-index: 1;
	cursor: pointer;
	opacity: 0;
	transition:opacity .33s;
}

#pagetop.pagetop_show{opacity: 1;}

#pagetop::before{
	content: "";
	display: block;
	clip-path: polygon(0 78.468%, 13.7% 100%, 50% 43.062%, 86.3% 100%, 100% 78.468%, 50% 0);
	-webkit-clip-path: polygon(0 78.468%, 13.7% 100%, 50% 43.062%, 86.3% 100%, 100% 78.468%, 50% 0);
	background: #CF0040;
	width: 14px;
	height: 9px;
	margin: 20px auto 0;
}

#pagetop:hover{background: #CF0040;}

#pagetop:hover::before{background: #FFF;}

#pagetop span{display: none;}


@media print{ /* 印刷時のみ */
	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	PC

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	common

	------------------------------------------------------------ */
	
	/* レイアウト
	---------------------------------------------- */	
	#wrap_all{
		width: 1200px;
		transform: scale(0.8);
		transform-origin: 0 0;
	}
	
	
}/*--@media--*/

@media only screen and (max-width:1260px){/* 表示領域が1260px以下の場合に適用するスタイル */
	.h_logo span{
		font-size: calc((100vw - 815px - 1.5em)*0.0476);
	}
}

@media only screen and (max-width:1100px){/* 表示領域が1100px以下の場合に適用するスタイル */
	/* ------------------------------------------------------------

	header

	------------------------------------------------------------ */
	
	#wrap_top{font-size: 1rem;}
	
	#wrap_all.open #wrap_top{display: none;}
	
	#header{
		padding: 0;
		position: relative;
		z-index: 999;
	}

	.header_inner{
		align-items: flex-start;
		min-height: 59px;
		height: auto;
		padding: 0 calc(4.166vw + 60px) 0 4.166vw;
	}

	.h_logo{
		padding-top: 5px;
		flex: none;
	}

	.h_logo a{
		display: block;
		width: 68px;
	}
	.h_logo a img{width: 100%;}
	.h_logo span{
		font-size: 1.6rem;
	}
	
	
	#wrap_all.open .h_logo{display: none;}
	
	.h_btn_apply{display: inline-block;}
	
	#wrap_all.open .h_btn_apply{display: none;}
	
	.h_btn_apply{margin-top: 9px;}
	
	.h_btn_apply a{
		display: block;
		background: #CF0040;
		color: #FFF;
		width: 113px;
		line-height: 1;
		font-size: 1.2rem;
		padding: 6.5px 0;
		text-align: center;
		border-radius: 40px;
	}
	.h_btn_apply a span{
		font-size: 1rem;
		transform: scale(0.9);
		display: block;
		padding-top: 0.5em;
	}
	
	.btn_menu{
		display: block;
		background: #2E3649;
		width: 50px;
		height: 50px;
		border-radius: 50px;
		position: fixed;
		top: 15px;
		right: 4.166vw;
		z-index: 2;
	}
	
	.btn_menu > div{
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	.btn_menu > div span{
		content: "";
		background: #FFF;
		width: 20px;
		height: 2px;
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 15px;
		margin-top: -1px;
	}
	
	.btn_menu > div span:nth-of-type(1){margin-top: -7px;}
	.btn_menu > div span:nth-of-type(3){margin-top: 5px;}
	
	.btn_close{
		display: block;
		background: #2E3649;
		width: 50px;
		height: 50px;
		border-radius: 50px;
		position: absolute;
		top: 15px;
		right: 10px;
		z-index: 2;
	}
	
	.btn_close > div{
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	.btn_close > div span{
		content: "";
		background: #FFF;
		width: 20px;
		height: 2px;
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 15px;
		margin-top: -1px;
	}
	
	.btn_close > div span:nth-of-type(1){transform: rotate(135deg);}
	.btn_close > div span:nth-of-type(2){transform: rotate(225deg);}

	/* グローバルナビ
	---------------------------------------------- */
	/*--メニューを開いたとき背景固定--*/
	#wrap_all.open .wrapper{
		width: 100%;
		position: fixed;
		top: 70px;
		left: 0;
		pointer-events: auto;
	}
	
	.drawer{
		background: #2E3649;
		display: block;
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;
		opacity: 0;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
		overflow-y: scroll;
	}
	
	.mode-960 .drawer{transition: opacity .3s;}
	
	#wrap_all.open .drawer{
		opacity: 1;
		pointer-events: auto;
	}
	
	.drawer .drawer_inner{
		width: 100%;
		padding: 20px 15px 120px;
		display: flex;
		flex-direction: column;
		z-index: 2;
		position: relative;
	}
	
	.m_logo{
		display: block;
		width: 68px;
		margin-bottom: 50px;
	}

	.m_logo a{display: block;}

	.m_logo a img{
		width: 100%;
		height: auto;
	}
	
	.nav_global{
		display: block;
		width: 100%;
		padding: 0 15px;
	}
	
	.nav_global > ul:nth-of-type(1){
		display: block;
		width: 100%;
		padding: 0;
		margin-bottom: 60px;
		max-width: unset;
		min-width: unset;
	}
	
	.nav_global > ul:nth-of-type(1) > li{
		display: block;
		font-size: 1.5rem;
		border-bottom: 1px solid #3A4357;
	}
	
	.nav_global > ul:nth-of-type(1) > li.g02{padding-bottom: 20px;}
	
	.nav_global > ul:nth-of-type(1) > li::after,
	.nav_global > ul:nth-of-type(1) > li.g02::after{
		content: "";
		background: url("../img/ico_arrow05.png") no-repeat center;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 17px;
		right: 0;
		left: auto;
	}
	.nav_global > ul:nth-of-type(1) > li.tab::after{
		display: none;
	}
	.nav_global > ul:nth-of-type(1) > li.tab a::after {
		background: url("../img/ico_tab01.png") no-repeat 0 0;
		background-size: contain;
		position: absolute;
	    right: 3px;
	    top: 21px;
	}
	
	.nav_global > ul:nth-of-type(1) > li > a{
		display: block;
		color: #A5B3D2;
		line-height: 1;
		padding: 20px 30px 20px 0;
		position: relative;
	}
	.nav_global > ul:nth-of-type(1) > li > a:hover{
		color: #A5B3D2;
	}
	
	.nav_global > ul:nth-of-type(1) > li:first-of-type > a{border-top: 1px solid #3A4357;}
	
	.nav_global > ul:nth-of-type(1) > li.g02 > a{padding-bottom: 14px;}
	
	.nav_global > ul:nth-of-type(1) > li .sub{
		width: 100%;
		position: static;
	}
	
	#wrap_all.open .nav_global > ul:nth-of-type(1) > li .sub,
	#wrap_all.open .nav_global > ul:nth-of-type(1) > li.parent.show .sub{
		opacity: 1;
		pointer-events: auto;
	}
	
	.nav_global .sub li{
		border-bottom: none;
		position: relative;
	}

	.nav_global .sub li a{
		color: #A5B3D2;
		line-height: 1;
		padding: 15px 0 15px 12px;
	}
	.nav_global .sub li a:hover{
		color: #A5B3D2;
	}
	
	.nav_global .sub li::before{
		content: "";
		background: #76839A;
		width: 7px;
		height: 1px;
		position: absolute;
		top: 22px;
		left: 0;
	}
	
	.nav_global .sub li::after{
		content: "";
		background: url("../img/ico_arrow02.png") no-repeat center;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 12px;
		right: 0;
		left: auto;
	}
	
	.nav_global > ul:nth-of-type(2){width: 100%;}
	
	.nav_global > ul:nth-of-type(2) li{width: calc(50% - 7.5px);}

	.nav_global .btn_apply{
		position: relative;
	}
	.nav_global .btn_apply a{
		font-size: 1.5rem;
		padding: 16px 0;
		max-width: 225px;
		text-align: center;
		margin: 0 auto;
		display: block;
		width: unset;
		height: unset;
		border-radius: 50px;
	}
	.nav_global .btn_apply a br{
		display: none;
	}
	.nav_global .btn_apply a:hover{
		background: #CF0040;
	}
	.nav_global .btn_apply a span{
		display: block;
		padding-top: 0.25em;
		font-size: 1.1rem;
	}
}

@media only screen and (max-width:1024px){ /* 表示領域が1024px以下の場合に適用するスタイル */

	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	タブレット

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	common

	------------------------------------------------------------ */
	
	html{
		-moz-text-size-adjust: none;
		-webkit-text-size-adjust: none;
		-ms-text-size-adjust: none;
	}
	
	/* ページタイトル
	---------------------------------------------- */
	.wrap_pagettl{
		flex-direction: column-reverse;
		padding-top: 0;
	}
	
	.pagettl_bg{
		top: 140px;
		width: 100%;
		height: calc(100% - 140px);
	}
	
	.pagettl_inner{
		width: 100%;
		padding: 60px 60px 100px;
	}
	
	.pagettl_inner h2{padding: 0;}
	
	.pagettl_image{
		width: 80%;
		transform: translateY(0);
		margin-left: auto;
	}
	
	/* リンク
	---------------------------------------------- */	
	.link_tel01{
		pointer-events: auto;
		text-decoration: underline !important;
	}
	
	/* 記事
	---------------------------------------------- */
	.article a{padding: 13px 0;}

	.article time{
		width: 60px;
		font-size: 1.4rem;
		padding: 5px 20px 0 0;
	}

	.article h3{
		line-height: 1.6;
		font-size: 1.4rem;
		color: #222;
	}
	
	/* ------------------------------------------------------------

	footer

	------------------------------------------------------------ */
	
	#footer{
		background: #2E3649;
		padding: 0;
	}

	.footer_inner{
		margin: 0;
		padding: 40px 30px 25px;
	}

	.nav_footer{
		padding-bottom: 0;
		margin-bottom: 55px;
		border-bottom: none;
		flex-direction: column-reverse;
	}

	.nav_footer > ul:nth-of-type(1){
		max-width: unset;
		flex-wrap: wrap;
		margin: -5px -7.5px 0;
		padding: 0;
	}

	.nav_footer > ul:nth-of-type(1) > li{width: 50%;padding: 0 7.5px;}
	
	.nav_footer > ul:nth-of-type(1) > li.parent{padding: 15px 7.5px;}
	
	.nav_footer > ul:nth-of-type(1) > li > a{
		display: block;
		padding: 18px 0;
		font-size: 1.3rem;
		color: #A5B3D2;
	}
	
	.nav_footer > ul:nth-of-type(1) > li.parent a{padding-bottom: 0;}

	.nav_footer .f_sub{
		padding-left: 0;
		margin-top: 12px;
	}

	.nav_footer .f_sub li a{
		display: inline-block;
		color: #A5B3D2;
		padding: 0 0 0 15px;
		font-size: 1.3rem;
		line-height: 1;
		position: relative;
	}

	.nav_footer .f_sub li a::before{
		content: "";
		display: inline-block;
		background: #76839A;
		width: 8px;
		height: 1px;
		pointer-events: none;
		position: absolute;
		top: 6px;
		left: 0;
	}

	.nav_footer > ul:nth-of-type(2){
		width: 100%;
		margin-bottom: 27px;
		display: flex;
		justify-content: space-between;
	}

	.nav_footer > ul:nth-of-type(2) li{
		width: calc(50% - 7.5px);
		margin-bottom: 0;
	}

	.nav_footer > ul:nth-of-type(2) li a{
		line-height: 1;
		padding: 15px 0;
		border-radius: 50px;
	}

	.nav_footer > ul:nth-of-type(2) li:nth-of-type(1) a{background: #00AC9B;}

	.nav_footer > ul:nth-of-type(2) li:nth-of-type(2) a{background: #CF0040;}

	.nav_footer > ul:nth-of-type(2) li:nth-of-type(1) a:hover{background: #00BAAA;}

	.nav_footer > ul:nth-of-type(2) li:nth-of-type(2) a:hover{background: #DD1A5E;}

	.nav_footer .btn_apply a{
		font-size: 1.4rem;
		padding: 15px 0;
		line-height: 1.143;
		display: block;
		text-align: center;
		max-width: 225px;
		margin: 0 auto 30px;
	}

	.f_inner{
		display: block;
		margin-bottom: 60px;
	}

	.f_logo{
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	.f_logo>a{display: block;}

	.f_logo .f_logo01{
		width: 68px;
		margin-bottom: 15px;
	}

	.f_logo .f_logo02{
		font-size: 1.3rem;
		padding: 0;
	}
	
	.f_inner address{padding: 0;}

	.footer_inner .corporate_site{text-align: left;}

	.f_bottom,
	.f_small{
		text-align: left;
		font-size: 1rem;
		line-height: 1.4;
	}
	

}/*--@media--*/
	

@media only screen and (max-width:960px){ /* 表示領域が960px以下の場合に適用するスタイル */



}/*--@media--*/
	

@media only screen and (max-width:767px){ /* 表示領域が767px以下の場合に適用するスタイル */
	/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	スマートフォン（iPhone,Android)

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

	/* ------------------------------------------------------------

	common

	------------------------------------------------------------ */

	body{
		font-size: 14px;
		font-size: 1.4rem;
	}
	
	.wrap_type01{padding: 40px 10px 70px;}
	
	.wrap_type02{padding-top: 50px;}
	
	.wrap_type03{padding-bottom: 70px;}
	
	.wrap_type04{padding: 50px 22px 70px;}
	
	.wrap_type05{padding: 50px 15px 70px;}
	
	.wrap_type06{padding: 40px 30px 70px;}
	
	.wrap_type07{padding: 40px 30px 70px;}
	
	/*--404ページ--*/
	.wrap_404{
		padding: 100px 20px 0;
		margin-bottom: 100px;
	}
	
	.ttl_404{font-size: 3rem;}
	
	.txt_404 br:nth-of-type(2){display: none;}
	
	/* リンク
	---------------------------------------------- */
	.link_pdf01{background-position: left top 4px;}
	
	/* ページタイトル
	---------------------------------------------- */
	.pagettl_bg{
		top: 85px;
		height: calc(100% - 85px);
	}
	
	.pagettl_bg::before{
		width: 100%;
		height: 100%;
		background: url("../img/bg_pagettl01_sp.png");
		background-size: cover;
		top: 0;
		left: 0;
		margin-left: 0;
	}
	
	.pagettl_bg::after{display: none;}
	
	.pagettl_inner{
		width: 100%;
		padding: 38px 30px 55px;
	}
	
	.pagettl_inner h2{
		font-size: 3rem;
		line-height: 1.4;
	}
	
	.pagettl_inner h2 .sub{
		font-size: 1.4rem;
		letter-spacing: 0;
		padding-bottom: 0;
	}
	
	.pagettl_image{
		width: 80%;
		transform: translateY(0);
		margin-left: auto;
	}
	
	.pagettl_image img.pc{display: none;}
	.pagettl_image img.sp{display: block;}
	
	/* パンくずリスト
	---------------------------------------------- */
	.breadcrumb{
		bottom: 10px;
		left: 10px;
	}
	
	.breadcrumb ul li{font-size: 1rem;}
	
	.breadcrumb ul li::before{top: 7px;}
	
	/* 見出し
	---------------------------------------------- */
	.heading01{
		font-size: 2.3rem;
		padding-bottom: 15px;
		margin-bottom: 25px;
	}

	.heading01::before{
		width: 20px;
		height: 2px;
		margin-left: -10px;
	}
	
	/* ボタン
	---------------------------------------------- */
	.btn_type01 a{
		width: 175px;
		padding: 17px 10px;
		border-radius: 4px;
	}
	
	.btn_type02 a{
		padding: 15.5px 21px;
		border-radius: 22.5px;
		font-size: 1.4rem;
	}
	
	/* リスト
	---------------------------------------------- */
	.list_type01 li{
		padding-left: 12px;
		margin-bottom: 8px;
	}

	.list_type01 li::before{
		width: 7px;
		height: 7px;
		top: 8px;
	}
	
	/* ------------------------------------------------------------

	header

	------------------------------------------------------------ */
	
	.wrap_top_inner{
		display: flex;
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.wrap_top_inner .cloned{display: block;}
	
	.wrap_top_inner h1{
		text-overflow: inherit;
		overflow: visible;
		white-space: nowrap;
	}
	
	.header_inner{padding: 0 70px 0 10px;}

	.h_logo span {
		line-height: 1.3;
		padding-left: 2vw;
	}

	
	.btn_menu{right: 10px;}
	
	
	/* ------------------------------------------------------------

	footer

	------------------------------------------------------------ */
	
	/* ページトップボタン
	---------------------------------------------- */
	#pagetop{
		background: #2E3649;
		border-radius: 0;
		position: static;
		width: 100%;
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-bottom: 1px solid #3A4357;
		opacity: 1;
	}
	
	#pagetop:hover{background: #2E3649;}
	
	#pagetop::before{display: none;}
		
	#pagetop span{
		color: #A5B4D2;
		display: inline-block;
		font-family: "Roboto";
		letter-spacing: 0.1em;
		line-height: 1;
	}
	
	#pagetop span::before{
		content: "";
		display: inline-block;
		background: url( "../img/ico_arrow04.png") no-repeat 0 0;
		background-size: contain;
		width: 20px;
		height: 20px;
		margin: 0 7px -5px 0;
	}
	
	
}/*--@media--*/

@media only screen and (max-width:580px){
	.h_logo span{
		font-size: 1.1rem;
	}
	.h_logo span br{
		display: block;
	}
}
