﻿@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */

@font-face{
	font-family: 'Noto Sans Japanese';
	font-weight: 400;
	font-style: normal;
	src: url('/ssl/fonts/NotoSansJP-Regular.woff') format('woff2'),
	url('/ssl/fonts/NotoSansJP-Regular.woff') format('woff'),
	url('/ssl/fonts/NotoSansJP-Regular.otf')  format('opentype');
}
@font-face{
	font-family: 'Noto Sans Japanese';
	font-weight: 500;
	font-style: normal;
	src: url('/ssl/fonts/NotoSansJP-Medium.woff') format('woff2'),
	url('/ssl/fonts/NotoSansJP-Medium.woff') format('woff'),
	url('/ssl/fonts/NotoSansJP-Medium.otf')  format('opentype');
}
@font-face{
	font-family: 'Noto Sans Japanese';
	font-weight: 700;
	font-style: normal;
	src: url('/ssl/fonts/NotoSansJP-Bold.woff') format('woff2'),
	url('/ssl/fonts/NotoSansJP-Bold.woff') format('woff'),
	url('/ssl/fonts/NotoSansJP-Bold.otf')  format('opentype');
}


/*General Elements
---------------------------------------------------------------------------- */
html,body{min-width: 1200px;}
@media screen and (max-width: 767px){
	html,body{min-width: 0;}
}
html{ font-size: 62.5%; }
body{
	font-family: 'Noto Sans Japanese','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color:#595959;
	word-break: break-all;
}
a{
	text-decoration:underline;
	color: #2c6cd6;
	outline: none;
}
a:hover{ text-decoration: none; }
*{ box-sizing: border-box; }
/*l-header
---------------------------------------------------------------------------- */
.l-header{
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFF;
	box-shadow: 0 0 6px rgba(0,0,0,0.2);
	margin-bottom: 2px;
}
.l-header-inner{
	padding: 15px 35px 0 30px;
}

.l-header-logo{
	float: left;
	margin-top: 15px;
}

.l-header-control{
	float: right;

}

.l-header-control-login{
	background-color: #3c7a9c;
	border-radius: 8px;
	float: left;
	/* margin-right: 30px; */
}

.l-header-control-login a{
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	color: #FFF;
	padding: 11px 22px;
	letter-spacing: 0.12em;
	line-height: 1.15;
}

.l-header-control-login a em{
	font-size: 14px;
	font-size: 1.4rem;
	padding-left: 10px;
}

.l-header-control-contact{
	background-color: #f56d56;
	border-radius: 8px;
	float: left;
}

.l-header-control-contact a{
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: #FFF;
	padding: 17px 28px;
}

.l-gNav{
	margin-top: 25px;
	position: relative;
}

.l-gNav-content{
	max-width: 1265px;
	margin: 0 auto;
	padding-left: 142px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.l-gNav-list{
	display: flex;
}

.l-gNav-list-item{
	text-align: center;
}

.l-gNav-list-item:first-child{
	text-align: left;
}

.l-gNav-list-item:last-child{
	text-align: right;
}

.l-gNav-list-item a{
	display: table-cell;
	vertical-align: bottom;
	font-size: 18px;
	font-size: 1.8rem;
	letter-spacing: 0.12em;
	color: #595959;
	text-decoration: none;
	line-height: 1;
	padding: 10px 0 15px;
	height: 50px;
	transition: all 0.3s ease-in-out;
	position: relative;
	white-space: nowrap;
}

.l-gNav-list-item a:before{
	content: "";
    height: 3px;
    background: rgb(60,122,156);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 7px;
    width: 0;
    z-index: 1;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.l-gNav-list-item a:hover:before{
	width: 70%;
}

.l-gNav-list-item a span{
	padding: 0 26px;
}

.l-gNav-list-item:not(:last-child) a span{
	border-right: 1px solid #bebebe;
	display: inline-block;
}

.l-gNav-list-item:last-child a span{
	padding-left: 30px;
}

.l-gNav-list-item:last-child a span img{
	margin-right: 10px;
}

.l-gNav-list-item a span img{
	vertical-align: text-bottom;
}

.l-megaNav{
	position: absolute;
	z-index: 999;
	left: 0;
	top: 100%;
	width: 100%;
	background: #FFF;
	padding: 25px 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.l-megaNav.is-show{
	visibility: visible;
	opacity: 1;
}

.l-megaNav-list-cover{
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 999;
	top: 0;
	width: 1200px;
	margin: 0 auto;
}

.l-megaNav-list-cover.is-show{
	visibility: visible;
	opacity: 1;
}

.l-megaNav-list{
	width: 1080px;
	padding-left: 145px;
	font-size: 0;
}


.l-megaNav-list-item{
	display: inline-block;
	letter-spacing: 0.12em !important;
}

.l-megaNav-list3 .l-megaNav-list-item{
	width: 32%;
}

.l-megaNav-list3 .l-megaNav-list-item:not(:nth-child(3n)){
	margin-right: 2%;
}

.l-megaNav-list3 .l-megaNav-list-item:nth-child(n+4){
	margin-top: 5px;
}

.l-megaNav-list4 .l-megaNav-list-item{
	width: 24%;
}

.l-megaNav-list4 .l-megaNav-list-item:not(:nth-child(4n)){
	margin-right: 1%;
}

.l-megaNav-list4 .l-megaNav-list-item:nth-child(n+5){
	margin-top: 5px;
}

.l-megaNav-list-item a{
	color: #595959;
	text-decoration: none;
	background-image: url(/ssl/images/common/icn_btn_arrow01.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px;
	padding-left: 22px;
}

.l-megaNav-list-item a:hover{
	text-decoration: underline;
}


@media screen and (max-width: 767px){
	.l-header-inner{
		padding: 12px 15px 15px 15px;
		position: relative;
		z-index: 9999;
		background-color: #FFF;
	}

	.l-header-logo{
		margin-top: 5px;
	}

	.l-header-logo img{
		width: 200px;
	}

	.l-header-control{
		display: none;
	}

	.l-gNav{
		margin-top: 0;
		padding-bottom: 0;
	}

	.l-gNav-menuBtn{
		float: right;
		margin-top: 5px;
	}

	.l-gNav-menuBtn img{
		width: 35px;
	}

	.l-gNav-menuBtn{
		padding: 11px 12px;
		position: absolute;
		right: 0;
		top: 0;
		width: 54px;
		height: 56px;
		z-index: 101;
	}
	.l-gNav-menuBtn div{
		position: relative;
	}
	.l-gNav-menuBtn span{
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: #f56d56;
		left: 0;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.l-gNav-menuBtn span:nth-child(1){
		top: 0;
	}
	.l-gNav-menuBtn span:nth-child(2){
		top: 10px;
	}
	.l-gNav-menuBtn span:nth-child(3){
		top: 20px;
	}

	.l-gNav-menuBtn.is-active span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.l-gNav-menuBtn.is-active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.l-gNav-menuBtn.is-active span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}

	.l-gNav-content{
		flex-direction: column;
		align-items: stretch;
		position: absolute;
		z-index: 999;
		top: -380px;
		left: 0;
		width: 100%;
		padding-left: 0;
		background-color: #FFF;
		transition: top 0.3s ease-in-out;
	}

	.l-gNav-content.is-show{
		top: 100%;
	}
	
	.l-gNav-list{
		display: block;
	}

	.l-gNav-list-item{
		float: none;
		text-align: left;
		border-bottom: 1px solid #bebebe;
		padding-bottom: 0;
	}

	.l-gNav-list-item:first-child{
		border-top: 1px solid #bebebe;
	}

	.l-gNav-list-item:last-child{
		text-align: left;
	}

	.l-gNav-list-item:not(:last-child) a span{
		border-right: none;
		display: inline-block;
		padding: 0;
	}

	.l-gNav-list-item:last-child a span{
		padding-left: 0;
	}

	.l-gNav-list-item a{
		display: block;
		font-size: 14px;
		font-size: 1.4rem;
		padding: 8px 15px;
		height: auto;
	}

	.l-gNav-list-item:first-child a{
		padding-left: 15px;
	}

	.l-gNav-list-item:last-child a{
		padding-right: 15px;
	}

	.l-gNav-list-item a:hover:before{
		width: 0;
	}

	.l-gNav-list-item a span{
		padding-right: 8px;
		display: inline !important;
		vertical-align: middle;
	}

	.l-gNav-list-item a span img{
		vertical-align: middle;
	}

	.l-gNav-listBtn{
		font-size: 0;
		text-align: center;
		padding: 20px 15px;
	}

	.l-gNav-listBtn li{
		display: inline-block;
		vertical-align: middle;
		width: 48%;
		height: 40px;
		border-radius: 5px;
		background-repeat: no-repeat;
		background-position: 10px center;
		background-size: 12px;
	}

	.l-gNav-listBtn li:first-child{
		margin-right: 4%;
	}

	.l-gNav-listBtn-blue{
		background-color: #3c7a9c;
		background-image: url(/ssl/images/common/icn_btn_arrow01.png);
	}

	.l-gNav-listBtn-orange{
		background-color: #f56d56;
		background-image: url(/ssl/images/common/icn_btn_arrow02.png);
	}

	.l-gNav-listBtn li a{
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.3;
		display: block;
		text-decoration: none;
		color: #FFF;
		letter-spacing: 0.05em;
	}

	.l-gNav-listBtn-blue a{
		padding: 4px 0;
	}

	.l-gNav-listBtn-orange a{
		padding: 12px 0;
	}

	.l-megaNav{
		display: none;
	}

}

.l-mainContent.is-active{
	padding-left: 20px;
}

.l-pageBody{
	padding-bottom: 25px;
	position: relative;
	margin-top: 148px;
}

@media screen and (max-width: 767px) {
	.l-pageBody{
		margin-top: 51px;
	}
}

/* l-topicPath
---------------------------------------------------------------------------- */
.l-topicPath{
	margin-top: 20px;
	margin-bottom: 45px;
}

.l-topicPath li{
	font-size: 12px;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	font-weight: 500;
	display: inline-block;
}

.l-topicPath li:not(:last-child):after{
	content: ">";
	margin: 0 2px 0 5px;
}

.l-topicPath li a{
	color: #2b6889;
}

@media screen and (max-width: 767px) {
	.l-topicPath{
		margin-top: 15px;
		margin-bottom: 35px;
	}

	.l-topicPath li{
		font-size: 11px;
		font-size: 1.1rem;
	}

	.l-topicPath li:not(:last-child):after{
		margin: 0 2px 0 5px;
	}
}

/* l-content
---------------------------------------------------------------------------- */
.l-content{
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

.l-content-s{
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width: 767px){
	.l-content{
		width: 100%;
		padding: 0 15px;
	}

	.l-content-s{
		width: 100%;
	}

	.p-com{
		display: none;
	}
}

/* l-footer
---------------------------------------------------------------------------- */
.l-footer{
	position: relative;
}

.l-footer-logo{
	text-align: center;
	padding-bottom: 25px;
}

.l-footer-main{
	background-color: #e8eaeb;
}

.l-footer-2col{
	padding-top: 25px;
}

.l-footer-2col-left{
	width: 315px;
	/* width: 450px; */
	/* width: 680px; */
	float: left;
}

.l-footer-2col-item{
	float: left;
}

.l-footer-2col-item-ml{
	margin-left: 80px;
}

.l-footer-2col-link{
	line-height: 1;
	margin-bottom: 5px;
}

.l-footer-2col-link a{
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.12em;
	color: #474747;
	text-decoration: none;
}

.l-footer-2col-link a:hover{
	text-decoration: underline;
}

.l-footer-2col-link span{
	padding-right: 5px;
	display: inline-block;
}

.l-footer-2col-link span img{
	width: 10px;
}

.l-footer-2col-list-single{
	width: 240px;
}

.l-footer-2col-list{
	padding-left: 10px;
	float: left;
}

.l-footer-2col-list + .l-footer-2col-list{
	margin-left: 40px;
}

.l-footer-2col-list li{
	background-image: url(/ssl/images/common/footer/icn_sitemap_arrow.png);
	background-repeat: no-repeat;
	background-position: left 8px;
	padding-left: 11px;
}

.l-footer-2col-list li a{
	font-size: 12px;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: #474747;
	line-height: 2;
}

.l-footer-2col-list li a:hover{
	text-decoration: underline;
}

.l-footer-info{
	padding: 50px 0 20px;
}

.l-footer-info-left{
	float: left;
}

.l-footer-info-logo{
	margin-top: 7px;
}

.l-footer-info-logo a{
	display: block;
}

.l-footer-info-logo span{
	font-size: 18px;
	font-size: 1.8rem;
	color: #444444;
	line-height: 1.2;
	margin-left: 15px;
	margin-top: -5px;
	float: left;
}

.l-footer-pmark{
	float: left;
	margin: -30px 0 0 50px;
}

.l-footer-info-right{
	float: right;
	padding: 15px 25px;
}

.l-footer-info-list li{
	float: left;
	padding: 0 30px;
}

.l-footer-info-list li:first-child{
	padding-left: 0;
}

.l-footer-info-list li:last-child{
	padding-right: 0;
}

.l-footer-info-list li:not(:last-child){
	border-right: 1px solid #b3c8d6;
}

.l-footer-info-list li a{
	text-decoration: none;
	font-size: 12px;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	color: #474747;
}

.l-footer-info-list li a:hover{
	text-decoration: underline;
}

.l-footer-copyright{
	font-family: '¥Ò¥é¥®¥Î½Ç¥´ Pro W3', 'Hiragino Kaku Gothic Pro','¥á¥¤¥ê¥ª', Meiryo, Osaka, '£Í£Ó £Ð¥´¥·¥Ã¥¯', 'MS PGothic', sans-serif;
	font-size: 10px;
	font-size: 1rem;
	font-weight: 400;
	color: #FFF;
	text-align: center;
	background-color: #444444;
	padding: 10px 0;
}

.l-footer-pmark{
	float: right;
	margin: 10px 0 0 20px;
}

.l-pagetop{
	position: fixed;
	z-index: 99;
	right: 50px;
	bottom: 100px;
	display: none;
}

.m-following-btn-wrap{
	position: fixed;
	z-index: 99;
	right: 0;
	bottom: 180px;
}

.m-following-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	width: 220px;
	height: 56px;
	padding-left: 1.5em;
	border: 1px solid #fff;
	border-right: none;
	border-radius: 6px 0 0 6px;
	background: url(/ssl/images/common/icn_btn_arrow02.png) no-repeat center left 10px / 16px,
	#f56d56;
	transition: all 0.3s ease;
}

.m-following-btn:not(:last-child){
	margin-bottom: 10px;
}

@media screen and (max-width: 767px){
	.l-footer-logo{
		text-align: center;
		padding-bottom: 25px;
		border-bottom: none;
	}

	.l-footer-logo img{
		width: 210px;
	}

	.l-footer-main{
		padding-top: 0;
	}

	.l-footer-2col{
		padding-top: 0;
		margin-top: 0;
	}

	.l-footer-2col-left{
		width: auto;
		float: left;
	}

	.l-footer-2col-item-ml{
		margin-left: 0;
	}



	.l-footer-2col-list-single{
		width: 240px;
	}

	.l-footer-2col-list-cover,
	.l-footer-2col-list{
		display: none;
	}

	.l-footer-sitemapSP{
		font-size: 0;
		border-bottom: 1px solid #cdcdcd;
	}

	.l-footer-sitemapSP li{
		width: 50%;
		display: inline-block;
		border-top: 1px solid #cdcdcd;
		vertical-align: middle;
	}

	.l-footer-sitemapSP li:nth-child(odd){
		border-right: 1px solid #cdcdcd;
	}

	.l-footer-2col-link{
		margin-bottom: 0;
	}

	.l-footer-2col-link a{
		font-size: 13px;
		font-size: 1.3rem;
		letter-spacing: 0.08em;
		display: block;
		padding: 12px;
	}

	.l-footer-2col-link span{
		padding-right: 5px;
	}

	.l-footer-2col-link span img{
		width: 10px;
	}

	.l-footer-info{
		padding: 30px 0;
		margin-top: 0;
	}

	.l-footer-info-left{
		float: none;
	}

	.l-footer-info-logo{
		text-align: center;
		width: 85%;
		margin: 0 auto 20px;
	}

	.l-footer-info-logo a{
		width: 35%;
	}

	.l-footer-info-logo img{
		width: 100%;
	}

	.l-footer-info-logo span{
		font-size: 3.2vw;
	}
	

	.l-footer-pmark{
		float: none;
		margin: 12px 0;
		text-align: center;
	}

	.l-footer-pmark img{
		width: 60px;
	}

	.l-footer-info-right{
		float: none;
	}

	.l-footer-info-list li{
		float: left;
		width: 50%;
		padding: 0;
	}

	.l-footer-info-list li:not(:last-child){
		border: none;
	}

	.l-footer-info-list li:nth-child(odd){
		padding-right: 20px;
		border-right: 1px solid #b3c8d6 !important;
	}

	.l-footer-info-list li:nth-child(even){
		padding-left: 20px;
	}

	.l-footer-info-list li:nth-child(n+3){
		margin-top: 10px;
	}

	.l-footer-info-list li a{
		text-decoration: none;
		font-size: 12px;
		font-size: 1.2rem;
		letter-spacing: 0.03em;
	}

	.l-footer-copyright{
		font-size: 9px;
		font-size: 0.9rem;
	}

	.l-pagetop{
		right: 15px;
		bottom: 80px;
	}

	.l-pagetop img{
		width: 45px;
	}
	
	.m-following-btn-wrap{
		width: 100%;
		bottom: 0;
	}

	.m-following-btn-wrap-inner{
		display: flex;
	}

	.m-following-btn{
		font-size: 4.26666vw;
		text-align: center;
		letter-spacing: 0.1em;
		width: 50%;
		height: 13.3333vw;
		padding-left: 1.5em;
		border: none;
		border-radius: 0;
		background: url(/ssl/images/common/icn_btn_arrow02.png) no-repeat center left 4vw / 4vw,
		#f56d56;
	}

	.m-following-btn:not(:last-child){
		margin-bottom: 0;
		border-right: 1px solid #fff;
	}

}
