@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;font-style:normal;font-size: 100%;font-weight: normal;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 {
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	color: #000000;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	letter-spacing: 0.01em;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
*, *: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.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	color: #000000;
}
.Com{
	zoom: 1;
}
.Com:before, .Com:after{
	content: "";
	display: table;
}
.Com:after{
	clear: both;
}
br.pc_br,
.pc_img{
	display: none;
}
@media only screen and (min-width: 768px){
	br.sp_br,
	.sp_img{
		display: none;
	}
	.pc_img,
	br.pc_br{
		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;
}
@media only screen and (max-width: 735px) {
	.flex{
		display: block;
	}
}
/**
/* ヘッダー CSS
----------------------------------------------- */
#header{
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	z-index: 2000;
	transition: .2s ease-out;
	background: #FFF;
	height: 120px;
}
#header.is-fixed{
	border-bottom: 1px solid #DDDDDD;
	height: 70px;
}
.global-nav{
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
}
.global-nav .header-logo a{
	display: flex;
	align-items: center;
	padding: 20px;
}
.global-nav .header-logo span img{
	width: 80px;
}
#header.is-fixed .global-nav .header-logo a{
	padding: 10px;
}
#header.is-fixed .global-nav .header-logo span img{
	width: 50px;
}
.global-nav .header-logo h1{
	font-size: 22px;
	font-weight: 700;
	margin-left: 10px;
}
.global-nav .drawer-hamburger{
	display: none;
}
.global-nav .header-nav .nav{
	display: flex;
}
#header.is-fixed .global-nav .header-nav .nav{
	height: 70px;
}
.global-nav .header-nav .nav li a{
	position: relative;
	display: flex;
    align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	padding: 0 15px;
	height: 120px;
}
.global-nav .header-nav .nav li a::after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 5px;
	background: #014c90;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.global-nav .header-nav .nav li a:hover::after{
	transform: scale(1, 1);
}
.global-nav .header-nav .nav li:last-child a::after{
	content: none;
}
.header-nav .nav li:last-child a{
	width: 80px;
}
#header.is-fixed .global-nav .header-nav .nav li a{
	height: 70px;
}
#header.is-fixed .global-nav .header-nav .nav li:last-child a{
	background: #014c90;
	width: 104px;
	height: 70px;
}
.global-nav .header-nav .nav li:last-child a img{
	width: 32px;
}
#header.is-fixed .global-nav .header-nav .nav li img{
	margin: auto;
}
@media only screen and (max-width: 735px) {
	#header,
	#header.is-fixed{
		height: 70px;
	}
	.global-nav .header-logo a,
	#header.is-fixed .global-nav .header-logo a{
		padding: 0;
	}
	.global-nav .header-nav{
		display: none;
	}
	.global-nav .drawer-hamburger{
		position: relative;
		display: block;
		top: 0;
		width: 30px;
		padding: 10px 15px 0px 15px;
	}
	.drawer--left .global-nav .drawer-nav{
		left: -100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.global-nav .drawer-hamburger::after{
		content: 'メニュー';
		color: #000000;
		font-size: 10px;
		font-weight: 500;
		display: block;
		text-align: center;
		width: 140%;
		margin: 12px -12% 0 -12%;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #000000;
		height: 3px;
	}
	.global-nav .drawer-hamburger-icon:before{
		top: -7px;
	}
	.global-nav .drawer-hamburger-icon:after{
		top: 7px;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #000000;
	}
	.home.drawer-open .global-nav .drawer-hamburger-icon{
		background-color: transparent;
	}
	.drawer--left.drawer-open .global-nav .drawer-hamburger {
		left: 0;
	}
	.global-nav .drawer-nav .header-logo{
		margin-bottom: 20px;
	}
	.global-nav .drawer-nav .header-logo a{
		-webkit-justify-content: center;
		justify-content: center;
	}
	.drawer--left .global-nav .drawer-nav{
		position: fixed;
		width: 100%;
		background-color: #fffff;
		display: block;
		padding: 30px 0 80px 0;
	}
	.global-nav .drawer-nav .nav{
		padding: 0 10px;
	}
	.global-nav .drawer-nav .nav li{
		display: block;
		padding: 0;
	}
	.global-nav .drawer-nav .nav li a{
		position: relative;
		text-transform: uppercase;
		display: block;
		font-size: 15px;
		padding: 10px;
		color: #000000;
		text-align: left;
		letter-spacing: 1px;
		border-bottom: 3px dashed #cccccc;
	}
	.global-nav .drawer-nav .sub-nav{
		padding: 20px 10px 10px 10px;
	}
	.global-nav .drawer-nav .sub-nav li{
		display: inline-block;
		width: 48%;
		margin-right: 0;
		margin-top: 20px;
	}
	.global-nav .drawer-nav .sub-nav li:nth-child(3){
		width: 100%;
	}
	.global-nav .drawer-nav .sub-nav li a{
		display: block;
		font-size: 14px;
		font-weight: 700;
	}
	.global-nav .drawer-nav .sub-nav li a span:first-child{
		display: inline-block;
		margin-right: 10px;
	}
}
@media only screen and (max-width: 735px) {
	.global-nav{
		padding: 10px;
	}
	.global-nav .header-logo span img{
		width: 50px;
	}
	.global-nav .header-logo h1{
		font-size: 16px;
		margin-left: 10px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	#header{
		height: 70px;
	}
	#header.is-fixed{
		height: 70px;
	}
	.global-nav .header-logo a{
		padding: 10px;
	}
	.global-nav .header-logo span img{
		width: 50px;
	}
	.global-nav .header-logo h1{
		font-size: 16px;
		margin-left: 5px;
	}
	.global-nav .header-nav .nav li{
		display: inline-block;
	}
	.global-nav .header-nav .nav li a{
		font-size: 14px;
		padding: 0 5px;
		height: auto;
	}
	.global-nav .header-nav .nav li img{
		width: 26px;
	}
	.header-nav .nav li:last-child a,
	#header.is-fixed .global-nav .header-nav .nav li:last-child a{
		width: 60px;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.sidebar-ad{
	position: fixed;
	top: 60%;
	right: 20px;
	z-index: 40;
	text-align: center;
}
.sidebar-ad ul li{
	width: 35px;
	text-align: center;
	margin: 10px 0;
}
.footer-bar{
	display: none;
}
.inner{
	width: 90%;
	max-width: 1240px;
	margin: auto;
}
@media only screen and (max-width: 735px) {
	.sidebar-ad{
		display: none;
	}
	.footer-bar{
		background: #a7ddf9;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		position: fixed;
		bottom: 0;
		left: 0;
		text-align: center;
		width: 100%;
		z-index: 9998;
		align-items: center;
		padding: 10px 5px;
	}
	.footer-bar ul{
		display: flex;
		align-items: flex-end;
	}
	.footer-bar ul li a{
		display: block;
		padding: 0 10px;
	}
	.footer-bar ul li span{
		display: block;
		font-size: 12px;
	}
	.footer-bar ul li span img{
		width: 25px;
	}
	.inner{
		width: 92%;
		padding: 0;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.inner{
		width: 92%;
		padding: 0;
	}
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top{
	display: block;
	position: fixed;
	right: 30px;
	bottom: 60px;
	z-index: 20;
}
@media only screen and (max-width: 735px) {
	.btn_page_top{
		right: 10px;
		bottom: 80px;
	}
	.btn_page_top img{
		width: 20px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.btn_page_top{
		right: 20px;
		bottom: 40px;
	}
	.btn_page_top img{
		width: 20px;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
.footer{
	margin-top: auto;
	border-bottom: 30px solid #014c8f;
}
.footer .footer-top{
	max-width: 1000px;
	margin: auto;
	padding: 40px 0 60px 0;
}
.footer .footer-top .addArea{
	width: 30%;
}
.footer .footer-top .addArea h5{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 50px;
}
.footer .footer-top .addArea ul li{
	font-size: 16px;
	font-weight: 700;
}
.footer .footer-nav{
	width: 70%;
	max-width: 600px;
}
.footer .footer-nav ul li{
	display: inline-block;
	margin-left: 40px;
	margin-bottom: 20px;
}
.footer .footer-nav ul li a{
	display: block;
	font-size: 16px;
	font-weight: 700;
}
.footer .footer-nav ul li a span:first-child{
	display: inline-block;
	margin-right: 10px;
}
.footer .copy{
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	padding: 10px 0 20px 0;
}
@media only screen and (max-width: 735px) {
	.footer{
		border-bottom: 10px solid #014c8f;
		padding-bottom: 60px;
	}
	.footer .footer-top{
		padding: 30px 0;
	}
	.footer .footer-top .addArea{
		width: 100%;
	}
	.footer .footer-top .addArea h5{
		font-size: 14px;
		margin-bottom: 20px;
	}
	.footer .footer-top .addArea ul li{
		font-size: 14px;
	}
	.footer .footer-nav{
		display: none;
	}
	.footer .footer-nav ul li{
		width: 100%;
		margin-left: 0;
		margin-bottom: 10px;
	}
	.footer .footer-nav ul li a{
		font-size: 14px;
	}
	.footer .footer-nav ul li a span:first-child{
		width: 30px;
		margin-right: 5px;
		text-align: center;
	}
	.footer .footer-nav ul li a span:first-child img{
		max-width: 25px;
	}
	.footer .copy{
		font-size: 10px;
		padding: 5px 0 10px 0;
		text-align:left;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.footer{
		border-bottom: 20px solid #014c8f;
	}
	.footer .footer-top{
		padding: 40px 0 30px 0;
	}
	.footer .footer-top .addArea{
		width: 30%;
	}
	.footer .footer-top .addArea h5{
		font-size: 14px;
		margin-bottom: 30px;
	}
	.footer .footer-top .addArea ul li{
		font-size: 14px;
	}
	.footer .footer-nav{
		width: 70%;
	}
	.footer .footer-nav ul li{
		margin-left: 20px;
		margin-bottom: 15px;
	}
	.footer .footer-nav ul li a{
		font-size: 14px;
	}
	.footer .footer-nav ul li a span:first-child{
		margin-right: 10px;
	}
	.footer .copy{
		font-size: 12px;
		padding: 5px 0 15px 0;
	}
}