@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	background: #FAFAFA;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	color: #1A1A1A;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	html,body {
		font-size: 4.3vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	html,body {
		font-size: 12px;
	}
}
*:focus {
	outline: none!important;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	word-break: break-all;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	color: #1A1A1A;
}
/**
/* display CSS
----------------------------------------------- */
.pc_br,
.pc_img,
.pc{
	display: none;
}
.sp_br,
.sp_img,
.sp{
	display: block;
}
@media only screen and (min-width: 768px){
	.sp_br,
	.sp_img,
	.sp{
		display: none;
	}
	.pc_img{
		display: inline-block;
	}
	.pc_br,
	.pc{
		display: block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.items_start{
	align-items: flex-start;
}
.items_center{
	align-items: center;
}
.items_end{
	align-items: flex-end;
}
/**
/* table CSS
----------------------------------------------- */
.dl-tbl{
	display: table;
	width: 100%;
}
.dl-tbl dt,
.dl-tbl dd{
	display: table-cell;
}
.v-middle{
	vertical-align: middle;
}
/**
/* background CSS
----------------------------------------------- */
.bg_wave{
	background: url(../img/bg_wave.png) no-repeat top center;
	background-size: cover;
}
.bg_w{
	background: #FFFFFF;
}
.bg_blue{
	background: #15315F;
}
/**
/* font CSS
----------------------------------------------- */
.f-inter{
	font-family: "Inter", sans-serif;
}
.f-roboto{
	font-family: "Roboto", sans-serif;
}
.f-poppins{
	font-family: "Poppins", sans-serif;
}
.w-500{
	font-weight: 500;
}
.w-600{
	font-weight: 600;
}
.w-700{
	font-weight: 700;
}
.c-blue{
	color: #15315F;
}
.c-white{
	color: #FFFFFF;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header{
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9999;
}
.global-header .global-nav{
	background: #FFFFFF;
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.global-header .h-logo{
	line-height: 0;
	padding: 0.452rem 2.25rem;
}
.global-header .h-logo img{
	max-width: 12.75rem;
}
@media only screen and (max-width: 1100px) {
	.global-header .h-logo{
		line-height: 0;
		padding: 0.452rem 1.875rem;
	}
}
@media only screen and (max-width: 767px) {
	.global-header .h-logo{
		padding: 0.452rem 1rem;
	}
	.global-header .h-logo img{
		max-width: 8rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header .h-logo{
		padding: 0.452rem 2.25rem;
	}
	.global-header .h-logo img{
		max-width: 12.75rem;
	}
}
/**
/* ヘッダーナビ CSS
----------------------------------------------- */
.global-header .header-nav{
	display: flex;
	align-items: center;
}
.global-nav .drawer-hamburger{
	display: none;
}
.drawer--right .global-nav .drawer-nav{
	position: relative;
	display: flex;
	right: auto;
	overflow: visible;
	width: auto;
	height: auto;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	background-color: transparent;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.global-nav .drawer-nav .drawer-menu li{
	display: inline-block;
}
.global-nav .drawer-nav .drawer-menu li a{
	position: relative;
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	padding: 0 1.25rem;
}
.global-nav .drawer-nav .drawer-menu li .sub_nav{
	position: absolute;
	width: max-content;
	white-space: nowrap;
	top: 100%;
	left: 0;
	background: #15315F;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}
.global-nav .drawer-nav .drawer-menu > li:hover .sub_nav{
	opacity: 1;
	pointer-events: auto;
}
.global-nav .drawer-nav .drawer-menu > li .sub_nav li{
	display: block;
}
.global-nav .drawer-nav .drawer-menu > li .sub_nav li a{
	color: #ffffff;
	font-size: 0.875rem;
	text-align: left;
	padding: 0.875rem 1.5rem 0.875rem 1rem;
}
.global-nav .drawer-nav .drawer-menu > li .sub_nav li:not(:last-child) a{
	border-bottom: 1px solid #FFFFFF;
}
.global-nav .header-contact{
	margin-left: 1.25rem;
}
.global-nav .header-contact li.contact_btn{
	width: 10.625rem;
}
.global-nav .header-contact li.contact_btn a{
	position: relative;
	display: block;
	background: #15315F;
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	padding: 1.602rem 1rem;
}
.global-nav .drawer-contact{
	display: none;
}
@media only screen and (max-width: 1024px) {
	.global-nav .header-contact li.contact_btn{
		display: none;
	}
	.global-nav .drawer-hamburger{
		display: block;
		width: 2.5rem;
		top: 0;
		z-index: 99999;
		padding: 1.875rem 1.25rem 2.3rem 1.25rem;
	}
	.drawer--right.drawer-open .global-nav .drawer-hamburger{
		right: 0;
	}
	.global-nav .drawer-hamburger-icon{
		margin-top: 0.75rem;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #15315F;
		height: 0.1875rem;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #15315F;
	}
	.global-nav .drawer-hamburger-icon::after{
		top: 0.5rem;
	}
	.global-nav .drawer-hamburger-icon::before{
		top: -0.5rem;
	}
	.drawer--right .global-header .drawer-nav{
		position: fixed;
		display: block;
		background: #102F60;
		width: 100%;
		height: calc(100% - 4.25rem);
		z-index: 9999;
		padding: 2.75rem 0;
		right: -100%;
		left: auto;
		top: 5.45rem;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.global-nav .drawer-nav .drawer-menu,
	.global-nav .drawer-nav ul.drawer-menu li{
		display: block;
	}
	.global-nav .drawer-nav ul.drawer-menu li{
		border-bottom: 1px solid #ffffff;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		display: block;
		color: #ffffff;
		text-align: left;
		padding: 1.5rem 2rem;
	}
	.global-nav .drawer-nav .drawer-menu li .sub_nav{
		position: relative;
		top: auto;
		left: auto;
		background: transparent;
		opacity: 1;
		margin-bottom: 1rem;
	}
	.global-nav .drawer-nav ul.drawer-menu li .sub_nav li{
		border-bottom: none;
	}
	.global-nav .drawer-nav .drawer-menu > li .sub_nav li a{
		font-size: 0.8125rem;
		padding: 0.5rem 1rem;
	}
	.global-nav .drawer-nav .drawer-menu > li .sub_nav li:not(:last-child) a{
		border-bottom: none;
	}
	.global-nav .drawer-contact{
		text-align: center;
		margin-top: 3rem;
	}
	.global-nav .drawer-contact li{
		display: inline-block;
		width: 100%;
		max-width: 21.625rem;
	}
	.global-nav .drawer-contact li a{
		position: relative;
		background: #C8302D;
		display: block;
		color: #FFFFFF;
		font-size: 1.125rem;
		font-weight: 700;
		line-height: 1.35;
		border: 1px solid #C8302D;
		padding: 1.5rem;
	}
}
@media only screen and (max-width: 767px) {
	.global-nav .drawer-hamburger{
		width: 1.75rem;
		padding: 0.8125rem 1rem 1.25rem 1rem;
	}
	.drawer--right .global-header .drawer-nav{
		top: 3.125rem;
	}
	.drawer--right .global-header .drawer-nav{
		height: calc(100% - 3.125rem);
		padding: 0.5rem 0 2.75rem 0;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		padding: 1.125rem 1.25rem;
	}
	.global-nav .drawer-nav .drawer-menu li .sub_nav{
		margin-bottom: 1rem;
	}
	.global-nav .drawer-nav .drawer-menu > li .sub_nav li a{
		font-size: 0.8125rem;
		padding: 0.5rem 1rem;
	}
	.global-nav .drawer-contact{
		margin-top: 2rem;
	}
	.global-nav .drawer-contact li{
		max-width: 17.625rem;
	}
	.global-nav .drawer-contact li a{
		font-size: 0.9375rem;
		padding: 1.25rem 0.75rem;
	}
	.global-nav .header-contact{
		display: none;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner-wrap{
	position: relative;
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner{
	position: relative;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
section,
.page-guide{
	position: relative;
}
.center{
	text-align: center;
}
iframe{
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.inner-wrap,
	.inner{
		width: calc(100% - 2rem);
	}
}
/**
/* パンくず CSS
----------------------------------------------- */
.breadcrumbs{
	padding: 0.625rem 0;
}
.lower-wrap .breadcrumbs{
	background: #F0F0F0;
}
.breadcrumbs span{
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
}
.breadcrumbs .separator{
	margin: 0 0.3125rem;
}
.breadcrumbs span br{
	display: none;
}
@media only screen and (max-width: 767px) {
	.breadcrumbs{
		padding: 0.375rem 0;
	}
	.breadcrumbs .separator{
		margin: 0 0.25rem;
	}
}
/**
/* ページネーション CSS
----------------------------------------------- */
.wp-pagenavi {
	text-align: center;
	margin-top: 4rem;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
	display: inline-block;
	width: 3.625rem;
	height: 3.625rem;
	color: #15315F;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 3.625rem;
	text-align: center;
	border: none!important;
	border-radius: 100%;
	padding: 0;
	margin: 0 0.375rem!important;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page:hover{
	background: #1C305C;
	color: #FFFFFF;
	font-weight: 700;
	border: none!important;
	opacity: 1;
}
.wp-pagenavi span.extend{
	background: transparent;
	vertical-align: top;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	background: transparent;
	vertical-align: bottom;
	border: none!important;
}
.wp-pagenavi .previouspostslink{
	margin: 0!important;
}
.wp-pagenavi .nextpostslink{
	margin: 0!important;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		margin-top: 3.5rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span{
		width: 1.875rem;
		height: 1.875rem;
		font-size: 0.625rem;
		line-height: 1.875rem;
		margin: 0 0.25rem!important;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	position: relative;
	margin-top: auto;
}
footer .footer-wrap{
	background: #FAFAFA url(../img/footer_bg.png) no-repeat top center;
	background-size: cover;
	color: #FFFFFF;
	padding: 10.625rem 0 3rem 0;
}
.footer-wrap .f-logo{
	line-height: 0;
	margin-bottom: 2.25rem;
}
.footer-wrap .f-logo img{
	max-width: 18.75rem;
}
.footer-wrap .footer-l h5{
	font-family: "Inter", sans-serif;
	font-size: 1.3125rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 1.25rem;
}
.footer-wrap .footer-l .address{
	font-family: "Inter", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
}
.footer-wrap .sp-f-nav{
	display: none;
}
.footer-wrap .f-nav .f-nav-items{
	margin-left: 2.5rem;
}
.f-nav .f-nav-items .nav li a{
	display: block;
	font-family: "Inter", sans-serif;
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}
.f-nav .f-nav-items .nav li a:hover{
	opacity: .8;
}
.f-nav .f-nav-items .nav .sub-nav{
	margin-top: 1.5rem;
}
.f-nav .f-nav-items .nav .sub-nav li + li{
	margin-top: 1.25rem;
}
.f-nav .f-nav-items .nav .sub-nav li a{
	font-weight: 500;
}
footer .footer-bottom{
	text-align: right;
	padding-top: 5.625rem;
}
footer .copy{
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.45;
}
.footer-bar{
	display: none;
}
@media only screen and (max-width: 767px) {
	footer .footer-wrap{
		background: #FAFAFA url(../img/sp_footer_bg.png) no-repeat top center;
		background-size: cover;
		padding: 4.1875rem 0 5rem 0;
	}
	.footer-wrap .footer-l,
	.footer-wrap .footer-r{
		width: 100%;
	}
	.footer-wrap .f-logo{
		margin-bottom: 1.6875rem;
	}
	.footer-wrap .f-logo img{
		max-width: 10.25rem;
	}
	.footer-wrap .footer-l h5{
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
	}
	.footer-wrap .footer-l .address{
		font-size: 0.8125rem;
	}
	.footer-wrap .footer-r{
		margin-top: 4.875rem;
	}
	.footer-wrap .pc-f-nav{
		display: none;
	}
	.footer-wrap .sp-f-nav{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
    	justify-content: space-between;
	}
	.footer-wrap .f-nav .f-nav-items:nth-child(1){
		width: 56%;
	}
	.footer-wrap .f-nav .f-nav-items:nth-child(2){
		width: 40%;
	}
	.footer-wrap .f-nav .f-nav-items{
		margin-left: 0;
	}
	.footer-wrap .f-nav .f-nav-items .nav:not(:last-child){
		margin-bottom: 3rem;
	}
	.f-nav .f-nav-items .nav li a{
		font-size: 0.8125rem;
	}
	.footer-wrap .f-nav .f-nav-items:nth-child(2) .nav li + li{
		margin-top: 1.875rem;
	}
	.f-nav .f-nav-items .nav .sub-nav{
		margin-top: 1.25rem;
	}
	.f-nav .f-nav-items .nav .sub-nav li a{
		font-size: 0.75rem;
	}
	.f-nav .f-nav-items .nav .sub-nav li + li{
		margin-top: 1rem;
	}
	footer .footer-bottom{
		padding-top: 5.625rem;
	}
	footer .copy{
		font-size: 0.75rem;
	}
	.footer-bar{
		position: fixed;
		display: flex;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 99999;
	}
	.footer-bar .footer-bar-item{
		width: 50%;
	}
	.footer-bar .footer-bar-item a{
		position: relative;
		display: block;
		font-family: "Inter", sans-serif;
		color: #FFFFFF;
		padding: 0.75rem 1rem;
	}
	.footer-bar .footer-bar-item a::before,
	.footer-bar .footer-bar-item a::after{
		position: absolute;
		content: '';
	}
	.footer-bar .footer-bar-item a::before{
		border: 1px solid #FFFFFF;
		width: calc(100% - 0.25rem);
		height: calc(100% - 0.25rem);
		top: 0.125rem;
		left: 0.125rem;
	}
	.footer-bar .footer-bar-item a::after{
		background: url(../img/icon/arrow_w.svg) center center no-repeat;
		background-size: contain;
		position: absolute;
		width: 1.25rem;
		height: 1.25rem;
		right: 0.75rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.footer-bar .bar-contact a{
		background: #15315F;
	}
	.footer-bar .bar-download a{
		background: #B8A595;
	}
	.footer-bar .footer-bar-item a .roma{
		font-size: 0.75rem;
		font-weight: 400;
		line-height: 1.5;
	}
	.footer-bar .footer-bar-item a .ttl{
		font-size: 0.9375rem;
		font-weight: 700;
		line-height: 1.5;
	}
}