@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 2;
}
.font_english{
	font-family: 'Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
}
html{
    font-size: 62.5%;/* 10px*/
}
body{
    font-size:14px;
    font-size:1.4rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:12px;
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #405E96;
}
a:hover{
	color: #417FCE;
}
/* ボタン共通 */
a.btn{
	position: relative;
	text-decoration: none;
	display: block;
	padding: 1.5em 1em;
	text-align: center;
	border: 1px solid #202466;
	border-radius: 100px;
	background: #202466;
	color: #FFF;
	font-weight: 500;
	font-size: 1.6rem;
	transition: all .3s;
}
@media screen and (max-width: 768px) {
	a.btn{
		font-size: 1.4rem;
	}
}
@media print, screen and (min-width: 769px) {
	a.btn:hover{
		border: 1px solid #0051B9;
		color: #FFF;
		background: #0051B9;
	}
}
.bg_gray{
	background: #F5F7F9;
}
@media print, screen and (min-width: 769px) {
/* PC用のスタイル記述 */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
	.wrap{
		padding-top: 90px;
	}
	.anchor{
		display: block;
		padding-top: 100px;
		margin-top: -100px;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
	.wrap{
		padding-top: 0px;
	}
	.anchor{
		display: block;
		padding-top: 50px;
		margin-top: -50px;
	}
}
/* =====================================
ヘッダー
======================================== */
@media print, screen and (min-width: 769px) {
	.header{
		top: -90px;
		margin: 90px auto 0;
		position: absolute;
		width: 100%;
		height:90px;
		z-index: 10000;
		background: #FFFFFF;
		border-bottom: 1px solid #EAEAEA;
		line-height: 1;
	}
	.header.fixed{/*---固定化されたときのCSS---*/
		position: fixed;
		margin: 0px auto 0;
		top: 0;
        background-color: #FFF;
		-webkit-transition: top 0.65s ease-in;
		-moz-transition: top 0.65s ease-in;
		transition: top 0.65s ease-in;
	}
	.header_wrap{
		width:100%;
		height: 90px;
		margin:0 auto;
		padding: 0 10px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header_wrap .h_logo a{
		display: block;
		width: 200px;
		height: 32px;
		background: url("../images/common/h_logo.png") no-repeat;
		background-size: contain;
		text-indent: -9999px;
	}
	.global_nav{
		padding-left: 30px;
	}
	.global_nav > ul{
		display: flex;
		align-items: center;
		font-weight: 500;
		margin-top: 35px;
	}
	.global_nav > ul > li{
		padding: 0 0.8em;
		position: relative;
	}
	.global_nav > ul > li > a,
	.global_nav > ul > li.sub_menu > div{
		position: relative;
		display: block;
		color: #333;
		text-decoration: none;
		text-align: center;
		padding: 0 0 38px 0;
		cursor: pointer;
	}
	.top_header .global_nav > ul > li > a,
	.top_header .global_nav > ul > li.sub_menu > div{
		color: #FFF;
	}
	.global_nav > ul > li > a::after,
	.global_nav > ul > li.sub_menu > div::after{
		content: '';
		position: absolute;
		bottom: 20px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #202466;
		transform: scaleX(0);
		transition: all .3s ease;
	}
	.global_nav > ul > li > a:hover::after,
	.global_nav > ul > li.sub_menu > div:hover::after{
		transform: scaleX(1);
	}
	.global_nav ul li ul{
		visibility: hidden;
		position: absolute;
		top: 51px;
		left: 50%;
		transform: translatex(-50%);
	}
	.global_nav ul li:hover > ul{
		visibility: visible;
		background: #232A36;
		height: inherit;
		padding: 1em 0;
		transition: all .3s ease;
	}
	.global_nav ul li:hover > ul li a{
		text-decoration: none;
		color: #EAEAEA;
		white-space: nowrap;
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: 300;
		line-height: 1.7;
		display: block;
		padding: 0.8em 3em;
	}
	.global_nav ul li:hover > ul li a:hover{
		color: #D3B572;
	}
    .global_nav ul li > ul li.head {
        background-color:#E5ECF6;
        color:#202466;
        cursor:default;
    }
    .global_nav ul li > ul li.head span{
		font-size: 14px;
		font-size: 1.4rem;
        font-weight: 600;
		line-height: 1.7;
		display: block;
		padding: 0.8em 3em;
    }
    .global_nav .h_menu_sns{
        display: none;
    }
	.header_wrap .nav-toggle{
		display: none;
	}
	.header_wrap .h_contact_area_sp{
		display: none;
	}
	.header_wrap .h_contact_area_pc{
		padding-left: 20px;
	}
	.header_wrap .h_contact_area_pc .h_tel{
		width: 100%;
		display: flex;
		padding-left: 3px;
	}
	.header_wrap .h_contact_area_pc .h_tel img{
		max-width: 200px;
		margin-top: 2px;
	}
	.header_wrap .h_contact_area_pc .h_tel p{
		font-size: 0.8rem;
		line-height: 1.2;
		letter-spacing: 0;
	}
	.header_wrap .h_contact_area_pc .h_tel p span{
		white-space: nowrap;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav{
		margin-top: 15px;
		display: flex;
		font-weight: 500;
		line-height: 1;
		justify-content: space-between;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a{
		position: relative;
		text-decoration: none;
		color: #333;
		padding: 0.3em 0.5em;
		border-radius: 50px;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a:hover{
		background: #E5ECF6;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_member::before{
		background: url("../images/common/icon_member.png") no-repeat;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_login::before{
		background: url("../images/common/icon_login.png") no-repeat;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_logout::before{
		background: url("../images/common/icon_logout.png") no-repeat;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_contact::before{
		background: url("../images/common/icon_mail.png") no-repeat;
	}
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_member::before,
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_login::before,
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_logout::before,
	.header_wrap .h_contact_area_pc ul.h_c_nav li a.btn_contact::before{
		content: "";
		display: inline-block;
		width: 18px;
		height: 20px;
		margin: 0 0.3em 0 0;
		background-size: contain;
		vertical-align: middle;
	}
}
@media screen and (max-width: 1320px) {
	.global_nav{
		padding-left: 20px;
	}
	.global_nav > ul > li{
		padding: 0 0.5em;
	}
	.header_wrap .h_contact_area_pc{
		padding-left: 10px;
	}
}
@media screen and (max-width: 1080px) {
	.header_wrap .h_logo a{
		width: 180px;
		height: 30px;
	}
	.global_nav > ul > li{
		padding: 0 0.2em;
	}
	.header_wrap .h_contact_area_pc{
		padding-left: 5px;
	}
	.header_wrap .h_contact_area_pc .h_tel img{
		max-width: 200px;
	}
}
/* =====================================
スマホヘッダー
======================================== */
@media screen and (max-width: 768px) {
	.header{
		position: relative;
		width: 100%;
		background: #FFFFFF;
		z-index: 10000;
	}
	.header_wrap{
		margin:0;
		height: 60px;
		box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
	}
	.header_wrap .h_logo{
		padding: 15px 0 0 20px;
	}
	.header_wrap .h_logo a{
		display: block;
		width: 160px;
		height: 27px;
		background:url("../images/common/h_logo.png") no-repeat;
		background-size: contain;
		text-indent: -9999px;
	}
	/* Toggle Button */
	.nav-toggle {
		position: fixed;
		right: 15px;
		top: 3px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 10200;
	}
	.nav-toggle div {
		position: relative;
	}
	.nav-toggle span {
		display: block;
		position: absolute;
		left: 8px;
		height: 2px;
		width: 24px;
		background: #202466;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.nav-toggle span:nth-child(1) {
		top: 10px;
	}
	.nav-toggle span:nth-child(2) {
		top: 20px;
	}
	.nav-toggle span:nth-child(3) {
		top: 30px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.nav-toggle.active span {
		background: #FFF;
	}
	.nav-toggle.active span:nth-child(1) {
		top: 20px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.nav-toggle.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav-toggle.active span:nth-child(3) {
		top: 20px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.nav-toggle::after {
		position: absolute;
		left: 0;
		bottom: -13px;
		content: 'MENU';
		display: block;
		width: 100%;
		color: #202466;
		font-size: 0.8rem;
		text-align: center;
		white-space: nowrap;
		transition: all .4s;
	}
	.nav-toggle.active::after {
		content: 'CLOSE';
		color: #FFFFFF;
	}

	/* .global_nav スライドアニメーション */
	.open .global_nav {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
	/* 開いてないときは画面外に配置 */
	.global_nav{
		position: fixed;
		top: 0;
		right: -100vw;
        width: 100%;
		height: 100%;
		overflow: scroll;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
		z-index: 10100;
		background: rgba(12,15,25,0.9);
		padding: 60px 0 0 0;
	}
	.global_nav ul{
		border-top: 1px solid #53585F;
	}
	.global_nav ul li{
		border-bottom: 1px solid #53585F;
	}
	.global_nav ul li a,
	.global_nav ul li.sub_menu div{
		display: block;
		color: #FFF;
		text-decoration: none;
		font-size: 12px;
		font-size: 1.2rem;
		padding: 2em 4em;
		cursor: pointer;
	}
	.global_nav ul li a span,
	.global_nav ul li.sub_menu span{
		font-size: 10px;
		font-size: 1.0rem;
		margin-left: 2em
	}
	.global_nav ul li ul{
		display: none;
	}
	.global_nav ul li ul li{
		border-bottom: 1px solid #53585F;
	}
	.global_nav ul li ul li:last-child{
		border-bottom: none;
	}
	.global_nav ul li ul li a{
		background: #3C424B;
		padding: 2em 4em 2em 6em;
	}
	.global_nav ul li.sub_menu > div{
		background: url("../images/common/swich_down.png") no-repeat center right 20px;
		background-size: 14px auto;
	}
	.global_nav ul li.sub_menu > div.sub_active{
		background: url("../images/common/swich_up.png") no-repeat center right 20px;
		background-size: 14px auto;
	}
    .global_nav ul li > ul li.head {
        background-color:#E5ECF6;
        color:#202466;
        cursor:default;
    }
    .global_nav ul li > ul li.head span{
        display: block;
        text-decoration: none;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 2em 4em 2em 6em;
        margin-left: 0;
    }
    /* 20240524 スマホメニューにSNS追加 */
    .global_nav .h_menu_sns{
        padding: 50px 20px 100px 20px;
        display: flex;
        justify-content: center;
    }
    .global_nav .h_menu_sns .h_menu_snsicon{
        width: 60px;
        padding: 0 15px;
    }
	.header_wrap .h_contact_area_pc{
		display: none;
	}
	.header_wrap .h_contact_area_sp{
		position: fixed;
		bottom: 0;
		background: #202466;
		width: 100%
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav{
		width: 100%;
		height: 70px;
		display: flex;
		border-top: 1px solid #4A4D83;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li{
		border-right: 1px solid #4A4D83;
		width: 20%;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li:last-child{
		border-right: none;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a{
		display: block;
		color: #FFF;
		text-decoration: none;
		text-align: center;
		font-size: 0.8rem;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li.member_box{
		width: 40%;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li.member_box a{
		padding: 13px 0 0 0;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li.member_box img{
		max-width: 114px;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_login{
		background: url("../images/common/icon_login_white.png") no-repeat;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_logout{
		background: url("../images/common/icon_logout_white.png") no-repeat;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_tel{
		background: url("../images/common/icon_tel_white.png") no-repeat;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_contact{
		background: url("../images/common/icon_mail_white.png") no-repeat;
	}
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_login,
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_logout,
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_tel,
	.header_wrap .h_contact_area_sp ul.h_c_nav li a.btn_contact{
		background-position: center top 13px;
		background-size: 26px 24px;
		padding: 37px 0 0 0
	}
}
/* =====================================
パンくず
======================================== */
.breadcrumb{
	max-width: 1260px;
	margin: auto;
	padding: 10px 40px 0 40px;
	font-size:12px;
	font-size:1.2rem;
	display:flex;
	flex-wrap:wrap;
}
.breadcrumb li{
	display: inline-block;
}
.breadcrumb li a{
	position: relative;
	color: #333;
	text-decoration:none;
	padding-right: 2em;
}
.breadcrumb li a:hover{
	text-decoration:underline
}
.breadcrumb li a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 1em;
	width: 6px;
	height: 6px;
	border-top: 1px solid #202466;
	border-right: 1px solid #202466;
	transform: rotate(45deg);
	margin-top: -3px;
}
@media only screen and (min-width: 769px) and (max-width: 1080px) {
	.breadcrumb{
		padding: 10px 30px 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.breadcrumb{
		padding: 10px 20px 0 20px;
		font-size: 0.8rem;
	}
}
/* =====================================
コンテンツ共通
======================================== */
.wrap_wide_nomal{
	max-width: 1160px;
	margin: 80px auto auto;
	padding: 0 40px;
}
.btn_area{
	position: relative;
	margin: 80px auto auto;
	max-width: 480px;
}
.btn_back_area{
	position: relative;
	margin: 80px auto auto 0;
	max-width: 360px;
}
h1.page_title{
	margin-top: 70px;
	text-align: center;
	color: #202466;
	font-size: 2.4rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}
h1.page_title::before,
h1.page_title::after{
	border-top: 1px solid #9AA0A9;
	content: "";
	width: 3em;
}
h1.page_title::before {
	margin-right: 2em;
}
h1.page_title::after {
	margin-left: 2em;
}
@media screen and (max-width: 768px) {
	.wrap_wide_nomal{
		margin: 60px auto auto;
		padding: 0 20px;
	}
	.btn_area{
		margin: 30px auto auto;
	}
	.btn_back_area{
		margin: 30px auto auto;
	}
	h1.page_title{
		margin-top: 40px;
		font-size: 1.6rem;
	}
	h1.page_title::before,
	h1.page_title::after{
		width: 2.5em;
	}
	h1.page_title::before {
		margin-right: 1.5em;
	}
	h1.page_title::after {
		margin-left: 1.5em;
	}
}
@media screen and (max-width: 480px) {
	.wrap_wide_nomal{
		margin: 40px auto auto;
	}
	h1.page_title::before,
	h1.page_title::after{
		width: 2em;
	}
	h1.page_title::before {
		margin-right: 1em;
	}
	h1.page_title::after {
		margin-left: 1em;
	}
}
/* =====================================
ページトップ
======================================== */
#page-top{
	position: fixed;
	right: 0;
	width: 60px;
	z-index: 100;
}
@media screen and (max-width: 1080px) {
	#page-top{
		width: 50px;
	}
}
@media screen and (max-width: 768px) {
	#page-top{
		width: 40px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	position: relative;
	background: #232A36;
	color: #EAEAEA;
	line-height: 1;
	z-index: 110;
}
.footer a{
	color: #EAEAEA;
	text-decoration: none;
}
/*PC footer*/
@media print, screen and (min-width: 769px) {
	.footer{
		font-size: 1.4rem;
		padding: 80px 50px;
	}
	.footer_navi_wrap{
		max-width: 1080px;
		margin: auto;
	}
	.footer_nav > ul{
		margin-top: 40px;
		display: flex;
		flex-wrap: wrap;
		padding-bottom: 50px;
	}
	.footer_nav > ul > li{
		width: 16.6%;
	}
	.footer_nav > ul > li.sub_menu > div{
		color: #9AA0A9;
	}
	.footer_nav a:hover,
	.footer_nav_bottom a:hover,
	.footer_nav_external a:hover{
		color: #C9BA90;
	}
	.footer_nav ul li ul{
		padding-top: 1em;
	}
	.footer_nav ul li ul li{
		margin-top: 1.8em;
		font-size: 1.2rem;
	}
	.footer_nav_external{
		border-top: 1px solid #53585F;
		padding: 50px 0;
	}
	.footer_nav_external ul{
		display: flex;
	}
	.footer_nav_external ul li{
		width: 20%;
		font-size: 1.2rem;
	}
	.footer_info_wrap{
		border-top: 1px solid #53585F;
		padding: 50px 0;
		display: flex;
		align-items: center;
	}
	.footer_info_wrap .f_company{
		border-right: 1px solid #53585F;
		width: 30%;
		line-height: 2;
		padding-right: 20px;
	}
	.footer_info_wrap .f_tel{
		width: 40%;
		padding-left: 70px;
	}
	.footer_info_wrap .f_tel img{
		max-width: 250px;
	}
	.footer_info_wrap .f_tel p{
		font-size: 1.0rem;
		margin-top: 1em;
	}
	.footer_info_wrap .f_mail{
		width: 30%;
		padding-left: 50px;
	}
	.footer_info_wrap .f_mail a{
		display: block;
		text-align: center;
		border: 1px solid #FFFFFF;
		border-radius: 5px;
		padding: 1.3em 0.5em;
		max-width: 240px;
		line-height: 1;
	}
	.footer_info_wrap .f_mail a span::before{
		background: url("../images/common/icon_f_mail_white.png") no-repeat;
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		margin: 3px 1em 0 0;
		background-size: contain;
		vertical-align: middle;
	}
	.footer_info_wrap .f_mail a:hover{
		background: #FFF;
		color: #333;
	}
	.footer_info_wrap .f_mail a:hover span::before{
		background: url("../images/common/icon_f_mail_black.png") no-repeat;
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		margin: 3px 1em 0 0;
		background-size: contain;
		vertical-align: middle;
	}
	.footer_nav_bottom{
		border-top: 1px solid #53585F;
		padding-top: 50px;
		display: flex;
		justify-content: space-between;
		font-size: 12px;
		font-size: 1.2rem;
	}
	.footer_nav_bottom ul{
		display: flex;
	}
	.footer_nav_bottom ul li{
		padding-right: 5em;
	}
}
@media screen and (max-width: 1088px) and (min-width: 769px){
	.footer_info_wrap .f_tel{
		padding-left: 50px;
	}
}
/*SP footer*/
@media screen and (max-width: 768px) {
	.footer_nav{
		padding: 0;
	}
	.footer_nav .f_home_nav a{
		display: block;
		padding: 2em 3em;
	}
	.footer_nav ul{
		border-top: 1px solid #53585F;
	}
	.footer_nav ul li,
	.footer_nav_external ul{
		border-bottom: 1px solid #53585F;
	}
	.footer_nav ul li a,
	.footer_nav ul li.sub_menu div{
		display: block;
		padding: 2em 3em;
	}
	.footer_nav ul li ul{
		display: none;
	}
	.footer_nav ul li ul li{
		border-bottom: 1px solid #53585F;
	}
	.footer_nav ul li ul li:last-child{
		border-bottom: none;
	}
	.footer_nav ul li ul li a{
		background: #3C424B;
		padding: 2em 3em 2em 5em;
	}
	.footer_nav ul li.sub_menu > div{
		background: url("../images/common/swich_down.png") no-repeat center right 20px;
		background-size: 20px auto;
	}
	.footer_nav ul li.sub_menu > div.sub_active{
		background: url("../images/common/swich_up.png") no-repeat center right 20px;
		background-size: 20px auto;
	}
	.footer_nav_external ul{
		display: flex;
	}
	.footer_nav_external ul li{
		width: 50%;
		text-align: center;
	}
	.footer_nav_external ul li a{
		display: block;
		padding: 3em 3em;
	}
	.footer_info_wrap{
		padding: 40px 20px;
		line-height: 2;
	}
	.footer_info_wrap .f_company{
		text-align: center;
	}
	.footer_info_wrap .f_tel{
		margin-top: 30px;
		text-align: center;
	}
	.footer_info_wrap .f_tel img{
		width: 250px;
	}
	.footer_info_wrap .f_tel p{
		font-size: 1.0rem;
		margin-top: 1em;
	}
	.footer_info_wrap .f_mail{
		margin-top: 30px;
	}
	.footer_info_wrap .f_mail a{
		margin: auto;
		display: block;
		text-align: center;
		border: 1px solid #FFFFFF;
		border-radius: 5px;
		padding: 1.3em 0.5em;
		max-width: 240px;
		line-height: 1;
	}
	.footer_info_wrap .f_mail a span::before{
		background: url("../images/common/icon_mail_white.png") no-repeat;
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		margin: 2px 1em 0 0;
		background-size: contain;
		vertical-align: middle;
	}
	.footer_nav_bottom{
		padding: 0 20px 120px 20px;
	}
	.footer_nav_bottom ul{
		border-top: 1px solid #4B4B4B;
		padding-top: 20px;
	}
	.footer_nav_bottom ul li{
		margin-top: 20px;
		text-align: center;
	}
	.footer_nav_bottom .copy{
		margin-top: 40px;
		color: #9AA0A9;
		text-align: center;
		font-size: 10px;
		font-size: 1.0rem;
	}
}

/* =====================================
フォーム
======================================== */
/*チェックボックス基本カスタマイズ*/
input[type="checkbox"],
input[type="radio"]{
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}
label.check,
label.radio{
	position: relative;
	display: block;
	word-break: break-all;
	line-height: 1.4;
}
label.check input[type="checkbox"] + span,
label.radio input[type="radio"] + span{
	position: relative;
	padding: 0 10px 0 30px;
}
label.check.check_only {
	line-height: 1.0;
}
label.check.check_only input[type="checkbox"] + span{
	padding: 0 0 0 0;
}
label.check span,
label.radio span{
	display: inline-block;
}
label.check input[type="checkbox"],
label.radio input[type="radio"]{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
/*チェックボックス*/
label.check input[type="checkbox"] + span::before,
label.check input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.check input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
	border-radius: 3px;
}
label.check input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 3px 6px;
	width: 6px;
	height: 10px;
}
label.check input[type="checkbox"]:checked + span::before {
	background-color: #202466;
	border: 1px solid #202466;
}
label.check input[type="checkbox"]:checked + span::after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*ラジオボタン*/
label.radio input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
}
label.radio input[type="radio"] + span::before {
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
}
label.radio input[type="radio"]:checked + span::before {
	border: 6px #202466 solid;
}
/*セレクトボックス基本カスタマイズ*/
.select_wrap{
	position: relative;
	display: inline-block;
}
.select_wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 1px #202466;
	border-right: solid 1px #202466;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	z-index: 2;
}
.select_wrap .select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	/*background: transparent;*/
	position: relative;
	z-index: 1;
	padding: 0 40px 0 10px;
	border: 1px solid #A5A5A5;
	background: #FFF;
	color: #333;
	border-radius: 2px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
/*テキスト系基本カスタマイズ*/
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],textarea{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #A5A5A5;
	border-radius: 2px;
	padding: 0.5em 0.7em;
	width: 100%;
}
/*レンジバー基本カスタマイズ*/
.range_control.ui-widget-content{
	background-color: #e6e6e6;
	border: none;
	margin-left: 10px;
	margin-right: 10px;
	height: 8px;
}
.range_control .ui-slider-range{
	background-color: #999999;
}
.range_control .ui-slider-handle{
	top: -7px;
	width: 22px;
	height: 22px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* =====================================
CMSページャー
======================================== */
.cms_pagenav_wrap{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	justify-content: center;
}
.cms_pagenav_wrap .pager a{
	padding: 5px;
	margin: 0 0.2em;
	color: #333;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	line-height: 1.2;
}
.cms_pagenav_wrap .pager a.page_link{
	border: 1px solid #585858;
	height: 30px;
    min-width: 30px;
    border-radius: 30px;
}
.cms_pagenav_wrap .pager a.page_link:hover,
.cms_pagenav_wrap .pager a.page_link.on{
	color: #FFF;
	background: #585858;
}
.cms_pagenav_wrap .pager a.arrow{
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.cms_pagenav_wrap{
		margin-top: 40px;
	}
	.cms_pagenav_wrap .pager a{
		padding: 6px;
		margin: 0 0.2em;
	}
}

/*個人情報同意*/
.agree {
    text-align: center;
    margin-top: 20px;
}

/* =====================================
フローティングバナー
======================================== */
.top_bn_float{
	position: fixed;
	top: 50%;
	left :0;
	transform: translate(0, -50%);
	width: 160px;
	z-index: 200;
	cursor: pointer;
}
.top_bn_float .number_wrap{
	position: absolute;
	top: 265px;
	left: 0;
	right: 0;
	text-align: center;
	color: #FFF;
	font-weight: 700;
	line-height: 1.2;
}
.top_bn_float .number_wrap .before span{
	font-size: 2.2rem;
	margin: 0 0.2em;
}
.top_bn_float .number_wrap .arrow_down{
	margin-top: 5px;
	display: inline-block;
	color: #FFF;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 0.1em solid #FFF;
	border-left: 0;
	border-bottom: 0;
	transform: translateY(-25%) rotate(135deg);
}
.top_bn_float .number_wrap .after span{
	font-size: 3.0rem;
	margin: 0 0.2em;
	color: #EBD73E;
}
.top_bn_float.hidden{
	visibility: hidden;
}
.top_bn_float .bn_btn_close{
	position: absolute;
	top: -16px;
	right: 10px;
	width: 32px;
}
@media screen and (max-width: 768px) {
	.top_bn_float{
		display: none;
	}
}