@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Document */
#gmenu,.page{
	display: none!important;
}
.l-header,.l-footer{
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: left;
}
.l-header *,.l-footer *{
	box-sizing: border-box;
}
.l-header ::placeholder {
  font-family: 'Noto Sans JP', sans-serif;
}
.l-inner{
	width: calc(100% - 50px);
	max-width: 1000px;
	margin: auto;
	position: relative;
}
.l-inner__m{
	width: calc(100% - 50px);
	max-width: 900px;
	margin: auto;
	position: relative;
}
.l-header img,.l-l-footer img{
	max-width: 100%;
	vertical-align: bottom;
}
.u-pc{
	display: inherit!important;
}
.u-sp{
	display: none!important;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.l-header a,.l-l-footer a{
	display: block;
	transition-duration: 0.3s;
}
.l-header a:hover,.l-footer a:hover{
	transition-duration: 0.3s;
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.u-pc{
		display: none!important;
	}
	.u-sp{
		display: inherit!important;
	}
}

/* ------------------------------------------------------
header
------------------------------------------------------ */
#header{
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    left: 0;
}
@media print{
	#header{
		position: absolute;
	}
  }
.l-header{
	width: 100%;
	transition-duration: 0.3s;
}
.l-header__main{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 124px;
	z-index: 100;
	display: flex;
	justify-content: flex-end;
    background: #fff;
	transition-duration: 0.3s;
}
.l-header__logo{
	position: absolute;
	left: 43px;
	top: 63px;
	transition-duration: 0.3s;
}
@media screen and (min-width: 769px) {
	.l-header.is-scroll .l-header__nav__search {
		display: none;
	}
	.l-header.is-scroll .l-header__main {
		height: 80px;
	}
	.l-header.is-scroll .l-header__logo {
		top: 24px;
	}
	.l-header.is-scroll .l-header__contact a {
		height: 80px;
	}
	.l-header.is-scroll .c-gnav__wrap {
		top: 80px;
	}
}

@media screen and (max-width: 1140px) {
	.l-header__logo{
		top: 24px;
		left: 10px;
	}
}
.l-header__main__right{
	display: flex;
}
.l-header__nav{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	max-width: 735px;
	margin-right: 45px;
}
@media screen and (max-width: 1140px) {
	.l-header__nav{
		margin-right: 0;
	}
}
.l-header__nav__search{
	display: flex;
    align-items: center;
	margin: 15px 15px 0 0;
}
.l-header__lang{
	position: relative;
	display: flex;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	margin-right: 30px;
}
.l-header__lang:before{
	content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -30px;
    top: 0;
    background: url("../images/common/header/icon_lang.png") center bottom /100% auto no-repeat;
}
.l-header__lang li + li{
	padding-left: 16px;
	position: relative;
}
.l-header__lang li + li:before{
	content: "";
	position: absolute;
	background: #8b8b8b;
	width: 1px;
	height: 10px;
	transform: rotate(35deg);
	left: 7px;
	top: 5px;
}
.l-header__lang span{
	border-bottom: 1px solid #333;
    font-weight: bold;
}
.l-header__lang a{
	color: #8b8b8b;
    font-weight: bold;
	border-bottom: 1px solid #fff;
}
.l-header__lang a:hover{
	color: #333;
	border-bottom: 1px solid #333;
}

.l-header .c-search{
	background: #f5f5f5;
	width: 208px;
	height: 32px;
	border-radius: 30px;
	position: relative;
}
.l-header .c-search .c-search__text{
	width: 156px;
    background: none;
    border: none;
    padding: 0;
    margin: 6px 0 0 15px;
    height: 21px;
}
.l-header .c-search .c-search__btn{
	background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    box-sizing: content-box;
    padding: 7px;
    right: 9px;
}

.l-header__nav__list{
	display: flex;
	align-items: center;
}
.l-header__nav__list li{
	
}

.l-header__nav__btn{
	display: block;
	position: relative;
	font-size: 15px;
	padding: 15px 13px 32px 13px;
	font-weight: 600;
	cursor: pointer;
	color: #333;
	transition-duration: 0.3s;
	text-align: center;
}
.l-header__nav__btn.is-active{
	color: #005b9d;
}
.l-header__nav__btn.is-active::after {
  position: absolute;
  bottom: 20px;
  left: 13px;
  content: '';
  width: calc(100% - 26px);
  height: 2px;
  background: #005b9d;
  transform-origin: center top;
  transition: transform .3s;
	transform: scale(1, 1);
}
.l-header__nav__btn:hover{
	color: #005b9d;
}
.l-header__nav__btn::after {
  position: absolute;
  bottom: 20px;
  left: 13px;
  content: '';
  width: calc(100% - 26px);
  height: 2px;
  background: #005b9d;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.l-header__nav__btn:hover::after {
  transform: scale(1, 1);
}
.l-header__nav__btn span{
	display: block!important;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1140px) {
	.l-header__nav__btn{
		padding: 10px;
		font-size: 13px;
	}
	.l-header__nav__btn:after{
		display: none;
	}
}


.l-header__contact a{
	display: flex;
	width: 124px;
	height: 124px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    background: #005b9d;
	font-weight: 600;
	transition-duration: 0.3s;
}
.l-header__contact a:hover{
	background: #333;
}
.l-header__contact a span {
    display: inline-block;
    padding-top: 34px;
    position: relative;
}
.l-header__contact a span:before {
    content: '';
    display: block;
    width: 28px;
    height: 21px;
    position: absolute;
    left: calc(50% - 14px);
    top: 0;
    background: url(../images/common/icon_contact_white.png) center bottom /100% auto no-repeat;
}
.l-header__sptoggle{
	display: none;
}





@media screen and (max-width: 768px) {

	.l-header__main{
		height: 60px;
		width: 100%;
	}
	.l-header__logo{
		position: absolute;
		left: 20px;
		top: 23px;
	}
	.l-header__logo img{
		width: 178px;
		height: 20px;
	}
	.l-header__nav{
		display: none;
	}
	.l-header__contact a{
		display: flex;
		width: 60px;
		height: 60px;
		background: url("../images/common/header/icon_contact.jpg") center bottom /100% auto no-repeat;
	}
	.l-header__contact a:hover{
		background: url("../images/common/header/icon_contact.jpg") center bottom /100% auto no-repeat;
	}
	.l-header__contact a span {
		display: none;
	}
	.l-header__contact a span:before {
		display: none;
	}
	
	

	.l-header__sptoggle {
		display: block;
		width: 60px;
		height: 60px;
		top: 0;
		right: 0;
		z-index: 200;
		background: #d0111b;
		position: relative;
	}
	.l-header__sptoggle span {
		display: block;
		width: 27px;
		height: 1px;
		background: #fff;
		position: absolute;
		transition: 0.3s ease;
		left: 17px
	}
	.l-header__sptoggle span:nth-child(1) {
		top: 20px;
	}
	.l-header__sptoggle span:nth-child(2) {
		top: 30px;
	}
	.l-header__sptoggle span:nth-child(3) {
		top: 40px;
	}
	.l-header__sptoggle span.is-active:nth-child(1) {
		transform: rotate(45deg);
		top: 30px;
	}
	.l-header__sptoggle span.is-active:nth-child(2) {
		display: none;
	}
	.l-header__sptoggle span.is-active:nth-child(3) {
		transform: rotate(-45deg);
		top: 30px;
	}
	
	
	.l-header .c-gnav{
		display: none;
		z-index: 20;
		background: #fff;
		position: relative;
	}
	.l-header .c-gnav.is-active{
		display: block;
		box-shadow: 0px 9px 12px 0px rgba(0, 0, 0, 0.18);
	}
	.l-header__nav__list,.l-header__nav__search{
		display: none;
	}
	.l-header .c-gnav.is-active + .c-overlaysp{
		display: block;
	}
}

/* ------------------------------------------------------
gmenu
------------------------------------------------------ */

.c-fnav{
	display: flex;
	justify-content: space-between;
	margin-bottom: 62px;
}
.l-footer .c-fnav{
	max-width: 970px;
    padding-left: 20px;
}
.l-footer .c-fnav > li {
	display: block!important;
}
.c-fnav > li > ul > li{
	margin-bottom: 22px;
}
.c-fnav a{
	color: #333;
	font-size: 14px;
}
.c-fnav a:hover{
	color: #005b9d;
}
.c-fnav .c-gnav__1st{
	font-weight: 600;
	margin-bottom: 6px;
}
.c-fnav .c-gnav__1st + ul li{
	margin-bottom: 4px;
}
.c-fnav .c-gnav__1st + ul a{
	font-size: 12px;
	position: relative;
	padding-left: 10px;
	color: #707070;
}
.c-fnav .c-gnav__1st + ul a:hover{
	color: #005b9d;
}
.c-fnav .c-gnav__1st + ul a:before{
	content: '';
	display: block;
	position: absolute;
	width: 3px;
	height: 1px;
	background: #707070;
	top: 9px;
	left: 2px;
}

.c-subnav{
	display: none;
}


@media screen and (max-width: 768px) {
	.l-header .c-gnav{
		padding: 30px 25px 25px 25px;
	}
	.c-fnav{
		flex-wrap: wrap;
		margin-bottom: 34px;
	}
	.l-footer .c-fnav{
		max-width: 100%;
		padding-left: 0;
	}
	.c-fnav li{
		width: 100%;
	}
	.c-fnav > li > ul > li{
		margin-bottom: 0;
		border-bottom: 1px solid #e7e7e7;
	}
	.c-fnav > li > ul > li.-spbordert{
		border-top:  1px solid #e7e7e7;
	}
	.c-fnav a{
		color: #333;
		font-size: 16px;
	}
	.c-fnav a:hover{
		color: #333;
	}
	.c-fnav .c-gnav__1st{
		font-weight: normal;
		margin-bottom: 0;
		padding: 15px 25px 15px 10px;
		position: relative;
	}
	.-sparrow:before{
		content: '';
		display: block;
		width: 8px;
		height: 1px;
		right: 13px;
		top: calc(50% - 3px);
		background: #333;
		position: absolute;
		transform: rotate(45deg);
	}
	.-sparrow:after{
		content: '';
		display: block;
		width: 8px;
		height: 1px;
		right: 13px;
		top: calc(50% + 2px);
		background: #333;
		position: absolute;
		transform: rotate(135deg);
	}
	.-spopen:before{
		content: '';
		display: block;
		width: 11px;
		height: 1px;
		right: 13px;
		top: 50%;
		background: #333;
		position: absolute;
	}
	.-spopen:after{
		content: '';
		display: block;
		width: 1px;
		height: 11px;
		right: 18px;
		top: calc(50% - 5px);
		background: #333;
		position: absolute;
	}
	.-spopen.is-active:after{
		display: none;
	}
	
	.c-fnav .c-gnav__1st + ul{
		display: none;
	}
	.c-fnav .c-gnav__1st + ul li{
		margin-bottom: 0px;
	}
	.c-fnav .c-gnav__1st + ul a{
		font-size: 14px;
		padding: 8px 0 8px 25px;
		color: #333;
	}
	.c-fnav .c-gnav__1st + ul li:last-child a{
		padding-bottom: 15px;
	}
	.c-fnav .c-gnav__1st__title{
		width: 100%;
		display: block;
	}
	.c-fnav .c-gnav__1st + ul a:hover{
		color: #005b9d;
	}
	.c-fnav .c-gnav__1st + ul a:before{
		content: '';
		display: block;
		position: absolute;
		width: 4px;
		height: 1px;
		background: #707070;
		top: 17px;
		left: 12px;
	}
	
	.c-subnav{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 17px;
	}
	.c-subnav li{
		margin: 0 7px 16px 7px;
	}
	.c-subnav a{
		color: #a5a5a5;
		font-size: 15px;
	}
	
	.c-spcontact{
		margin-bottom: 70px;
		width: 100%;
	}
	.c-spcontact a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		color: #fff;
		font-size: 15px;
		background: #005b9d;
	}
	.c-spcontact a span{
		display: inline-block;
		padding-left: 32px;
		position: relative;
	}
	.c-spcontact a span:before{
		content: '';
		display: block;
		width: 20px;
		height: 15px;
		position: absolute;
		left: 0;
		top: 3px;
		background: url("../images/common/icon_contact_white.png") center bottom /100% auto no-repeat;
	}
	
	/*l-header gnav*/
	.l-header .c-gnav img{
		display: none;
	}
}


.c-gnav__pcitem{
	display: inherit!important;
}
.c-gnav__spitem{
	display: none!important;
}
@media screen and (max-width: 768px) {
	.c-gnav__pcitem{
		display: none!important;
	}
	.c-gnav__spitem{
		display: inherit!important;
	}
}






/*l-header .c-fnav*/


.l-header .c-fnav > li{
	display: none;
}
.l-header .c-gnav__wrap{
	width: 100%;
	padding: 27px 43px 60px 43px;
	position: absolute;
	top: 124px;
	left: 0;
	background: #fff;
	z-index: 20000;
	box-shadow: 0px 13px 13px 0px rgba(0, 0, 0, 0.18);
}
.l-header .c-gnav__inner {
    clear: both;
    margin: auto;
    max-width: 1210px;
    display: block;
    overflow: hidden;
    position: relative;
}
.l-header .c-gnav__1st{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	height: 100%;
    width: 270px;
    left: 0;
    top: 0;
	background: #f9f9f9;
}
.l-header .c-gnav__1st__title{
	font-size: 26px;
	color: #005b9d;
	text-align: center;
	font-weight: 400;
}
.l-header .c-gnav__1st__title span{
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
	display: block;
	font-weight: 400;
}
.l-header .c-gnav__inner ul{
	display: flex;
	justify-content: space-between;
	width: calc(100% - 310px);
	float: right;
	flex-wrap: wrap;
}
.l-header .c-gnav__inner ul::before,
.l-header .c-gnav__inner ul::after {
    content: '';
    display: block;
    width: calc((100% - (20px * 3)) / 4);
}
.l-header .c-gnav__inner ul::before {
    order: 1;
}
.l-header .c-gnav__inner ul a:before{
	display: none;
}
.l-header .c-gnav__inner ul li{
	width: calc((100% - (20px * 3)) / 4);
	margin-bottom: 28px;
}

.l-header .c-gnav__inner ul a{
	padding: 0;
	font-size: 14px;
	color: #333;
} 
.l-header .c-gnav__inner ul a:hover{
	color: #005b9d;
}
.l-header .c-gnav__inner ul a img{
	width: 100%;
	display: block;
	transition-duration: 0.3s;
	margin-bottom: 9px;
}
.l-header .c-gnav__inner ul a:hover img{
	opacity: 0.7;
	transition-duration: 0.3s;
}
.l-header .c-gnav__inner ul a span{
	display: block;
}
.l-header .c-gnav__inner ul.-textlist{
	margin-bottom: 30px;
}
.l-header .c-gnav__inner ul.-textlist::before,
.l-header .c-gnav__inner ul.-textlist::after {
    content: '';
    display: block;
    width: calc((100% - (57px * 2)) / 3);
}
.l-header .c-gnav__inner ul.-textlist li{
	width: calc((100% - (57px * 2)) / 3);
	margin-bottom: 28px;
}
.l-header .c-gnav__inner ul.-textlist li{
	margin-bottom: 0;
}
.l-header .c-gnav__inner ul.-textlist li a{
	display: flex;
    position: relative;
    padding: 14px 0 14px 0;
    border-bottom: 1px solid #e7e7e7;
    height: 100%;
    align-items: center;
}
.l-header .c-gnav__inner ul.-textlist li:nth-child(1) a{
	border-top: 1px solid #e7e7e7;
}
.l-header .c-gnav__inner ul.-textlist li:nth-child(2) a{
	border-top: 1px solid #e7e7e7;
}
.l-header .c-gnav__inner ul.-textlist li:nth-child(3) a{
	border-top: 1px solid #e7e7e7;
	
}
.l-header .c-gnav__inner ul.-textlist li span{
	display: block;
	position: relative;
	width: 100%;
}
.l-header .c-gnav__inner ul.-textlist li span:before{
	content: '';
    display: block;
    width: 6px;
    height: 1px;
    transform: rotate(45deg);
    background: #333;
    position: absolute;
    right: 0px;
    top: calc(50% - 3px);
    border-radius: 3px;
    z-index: 1;
}
.l-header .c-gnav__inner ul.-textlist li span:after{
	content: '';
    display: block;
    width: 6px;
    height: 1px;
    transform: rotate(135deg);
    background: #333;
    position: absolute;
    right: 0px;
    top: calc(50% + 1px);
    border-radius: 3px;
    z-index: 1;
}

.c-overlay,.c-overlaysp {
    width: 100%;
    height: 100vh;
    background: #1b1b1b;
    opacity: 0.7;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 10;
}
.c-overlaysp{
	display: none;
}
@media screen and (max-width: 768px) {
	#header{
		position: relative;
		z-index: 1000;
		top: 0;
		width: auto;
		left: 0;
	}
	.l-header{
		width: auto;
	}
	
	
	.l-header .c-fnav{
		margin-top: 60px;
	}
	.l-header .c-fnav > li {
		display: block;
	}
	.l-header .c-fnav > li .c-overlay{
		display: none!important;
	}
	.l-header .c-gnav__wrap {
		display: block;
		width: 100%;
		padding: 0;
		position: relative;
		top: auto;
		left: 0;
		border-bottom: 1px solid #e7e7e7;
		box-shadow: none;
	}
	.l-header .-gmenuopen01 .c-gnav__wrap{
		border-top: 1px solid #e7e7e7;
	}
	.l-header .c-gnav__inner ul a{
		padding: 8px 0 8px 25px;
	
	} 
	.l-header .c-gnav__inner ul a:before{
		content: '';
		display: block;
		position: absolute;
		width: 4px;
		height: 1px;
		background: #707070;
		top: 17px;
		left: 12px;
	}
	.l-header .c-gnav__1st{
		background: none;
		position: relative;
		text-align: left;
		width: 100%;
		top: auto;
		left: auto;
		justify-content: flex-start;
		display: block;
	    height: 100%;
	}
	.l-header .c-gnav__1st__title{
		width: 100%;
		display: block;
	    text-align: left;
	    color: #333;
		font-size: 16px;
	}
	.l-header .c-gnav__1st__title span{
		display: none;
	}
	.l-header .c-gnav__inner ul{
		float: none;
		width: 100%;
		display: none;
	}
	.l-header .c-gnav__inner ul + ul{
		display: none;
	}
	.l-header .c-gnav__inner ul li{
		width: 100%!important;
		margin-bottom: 0;
	}
	.l-header .c-gnav__inner ul a img{
		display: none;
	}
	.l-header .c-gnav__inner ul.-textlist{
		margin-bottom: 0;
	}
	.l-header .c-gnav__inner ul.-textlist li a{
		padding: 8px 0 8px 25px;
		border: none!important;
	}
	.c-fnav .c-gnav__1st + ul.-textlist li:last-child a{
		padding-bottom: 15px;
	}
	.l-header .c-gnav__inner ul.-textlist li span:before,.l-header .c-gnav__inner ul.-textlist li span:after{
		display: none;
	}
	.l-header .c-subnav a span{
		color: #a5a5a5;
		font-size: 15px;
	}
	.l-header .c-gnav__spitem.c-spcontact{
		margin-bottom: 0;
	}
}

/* ------------------------------------------------------
footer
------------------------------------------------------ */
.l-footer{
	margin-top: 147px;
	background: #f9f9f9;
	padding-top: 82px;
	position: relative;
}
.l-footer__pagetop{
	position: absolute;
	right: 50px;
	top: -27px;
}
.l-footer__pagetop a{
	background: #005b9d;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.l-footer__pagetop a:hover{
	background: #333;
}
.l-footer__btm{
	background: #9a9a9a;
	height: 62px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.l-footer__btm a{
	color: #fff;
	font-size: 12px;
}
.l-footer__btm a:hover{
	text-decoration: underline;
}
.l-footer__btm small{
	color: #fff;
	font-size: 12px;
	font-family: 'Poppins', sans-serif;
}
.l-footer__btm .l-inner{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.l-footer__btm ul{
	display: flex;
}
.l-footer__btm ul li{
	margin-right: 10px;
}
.l-footer .c-gnav__1st.-spopen{
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.l-footer {
		margin-top: 84px;
		background: #f9f9f9;
		padding-top: 49px;
		position: relative;
	}
	.l-footer__pagetop{
		right: 25px;
		top: -20px;
	}
	.l-footer__pagetop a{
		width: 45px;
		height: 45px;
	}
	.l-footer__pagetop a:before{
		content: '';
		display: block;
		width: 8px;
		height: 1px;
		right: 16px;
		top: calc(50% - 1px);
		background: #fff;
		position: absolute;
		transform: rotate(45deg);
	}
	.l-footer__pagetop a:after{
		content: '';
		display: block;
		width: 8px;
		height: 1px;
		right: 21px;
		top: calc(50% + -1px);
		background: #fff;
		position: absolute;
		transform: rotate(135deg);
	}
	.l-footer__pagetop a img{
		display: none;
	}
	.u-pc{
		display: none!important;
	}
	.u-sp{
		display: inherit!important;
	}
	
	.l-footer__btm{
		height: auto;
		padding: 36px 0 30px 0;
	}
	.l-footer__btm small{
		width: 100%;
	}
	.l-footer__btm ul{
		margin-bottom: 12px;
	}
	.l-footer__btm a{
		white-space: nowrap;
	}
	.l-footer__btm .l-inner{
		justify-content: center;
	}
	.l-footer__btm small{
		text-align: center;
	}
	.l-footer .c-gnav__1st.-spopen{
		pointer-events: auto;
	}
}