@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

/*--------------------------------------------------------------------------*/
/* 			フォント、カラー、タイト、レイアウト、ヘッダー、フッターなどは、			*/
/* 		common.cssに記述する。それ以外の共通スタイルはcomponent.cssに			   */
/*--------------------------------------------------------------------------*/

body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	color: #1D1D1D;
	line-height: 1.75;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}

menu{
	list-style: none;
}

.style-list li{
	position: relative;
	padding-left: 1em;
}

.style-list li:before{
	content: '・';
	position: absolute;
	top: 14px;
	left: 0;
	transform: translateY(-50%);
}

.center-txt{
	text-align: center;
}

.-en{
	font-family: 'Oswald', sans-serif;
}

.sec > .inner {
	max-width: 1155px;
	padding: 0 15px;
	margin: 0 auto;
}

.vis-sp,
.vis-tb {
	display: none;
}

.img img{
	width: 100%;
	height: auto;
}

.main{
	padding-top: 80px;
}

/* color */
.font-color-white{
	color: #fff;
}

.font-color-green{
	color: #008129;
}

.font-color-r_green{
	color: #8CB808;
}

.font-color-d_green{
	color: #003128;
}

.font-color-blue{
	color: #228CC2;
}

.font-color-orange{
	color: #EB511E;
}

.font-color-red{
	color: rgb(207, 31, 31);
}

.bg-color-r_green{
	background-color: #F2F7E5;
}

.bg-color-white{
	background-color: #fff;
}

.bg-color-gray{
	background-color: #F7F7F7;
}

.bg-color-blue{
	background-color: #F0F7FB;
}

/* font-weight */

.medium{
	font-weight: 500;
}

.bold{
	font-weight: bold;
}

.more-bold{
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.most-bold{
	font-size: 24px;
	font-weight: bold;
}

.small{
	font-size: 14px;
}

/* ttl */
.en-ttl{
	font-size: 59px;
	color: #D0D0D0;
}

.c-ttl{
	font-size: 24px;
	font-weight: bold;
}

.c-ttl.-s{
	font-size: 20px;
}

.c-ttl.-xs{
	font-size: 18px;
}

.c-ttl.-xl{
	font-size: 30px;
}

.c-ttl.-xxl{
	font-size: 40px;
}

.c-ttl.-center{
	text-align: center;
}

/* layout row */
.row{
	display: flex;
	align-items: stretch;
	/* align-items: center; */
}

.row.-center{
	justify-content: center;
}

.row.-start{
	justify-content: flex-start;
}

.row.-end{
	justify-content: flex-end;
}

.row.-space-between{
	justify-content: space-between;
}

.row.-align-center{
	align-items: center;
}

.row.-align-end{
	align-items: flex-end;
}

.row.-wrap{
	flex-wrap: wrap;
}

.row.-reverse{
	flex-direction: row-reverse;
}

/* layout clumn */
.clumn{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.clumn.-start{
	align-items: flex-start;
}

.clumn.-end{
	align-items: flex-end;
}

.clumn.-justfy-center{
	justify-content: center;
}

/* layout grid */
.grid{
	display: grid;
}

.grid.-grid-2{
	grid-template-columns: 1fr 1fr;
}

.grid.-grid-3{
	grid-template-columns: 1fr 1fr 1fr;
}

.grid.-grid-4{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* ic */
.ic-squre{
	position: relative;
	padding-left: 16px;
}

.ic-squre::before{
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 7px;
	height: 7px;
	background: #8CB808;
}

.ic-squre.-green::before{
	background: #008129;
}

.ic-check{
	position: relative;
	padding-left: 21px;
}

.ic-check::before{
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width:19px;
	height: 16px;
	background: url(../img/cmn/img-ic-check.svg) center / 100% auto no-repeat;
}


.out-link{
	display: inline-block;
	padding-right: 28px;
	background: url(../img/cmn/img-ic-out-link-green.svg) center right / 17px auto no-repeat;
}

.out-link.-white{
	background-image: url(../img/cmn/img-ic-out-link-white.svg);
}

/* header */
.header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	z-index: 100;
}

.header > .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
	height: 100%;
	padding: 0 19px 0 26px;
}

.header .logo{
	width: 235px;
}

.header .logo a{
	transition: .3s ease-in-out;
}

.header .logo a:hover{
	opacity: .5;
}

.header .nav > menu{
	display: flex;
	justify-content: flex-end;
	gap: 0 26px;
}

.header .nav > menu > li > a,
.header .nav > menu > li > p{
	display: block;
	position: relative;
	cursor: pointer;
	padding-top: 3px;
	padding-bottom: 3px;
}

.header .nav > menu > li > p::after,
.header .nav > menu > li > a::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #033128;
    position: absolute;
    left: 0;
    bottom: 0;
	border-radius: 1px;
    transform: scaleX(0);
    transition: transform .6s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}

.header .nav > menu > li > p:hover::after,
.header .nav > menu > li > a:hover::after{
	transform: scaleX(1);
	transition: transform .8s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}

.header .has-child > p{
	padding-right: 16px;
	background: url(../img/cmn/img-ic-arrow-green-down.svg) center right / 8px auto no-repeat;
}

.header .child{
	position: absolute;
	top: 70px;
	display: none;
	padding: 20px 22px 17px;
	background: #003128;
	color: #fff;
}

.header .child menu:first-of-type{
	margin-bottom: 16px;
}

.header .child menu li:not(:last-of-type){
	margin-bottom: 7px;
}

.header .child p{
	margin-bottom: 5px;
}

.header .child a{
	display: block;
	padding-left: 13px;
	background: url(../img/cmn/img-arrow-green-s.svg) center left / 8px auto no-repeat;
	transition: .2s ease-in-out;
}

.header .child a:hover{
	color: #8CB808;
}

/* media-header */
.media-header{
	border-bottom: solid 1px #E4E4E4;
	box-shadow: 0 8px 22px rgba(0, 49, 40, .05);
}

.media-header > .inner{
	padding-right: 26px;
}

.media-header .logo{
	width: auto;
	min-width: 260px;
}

.media-header .logo a,
.media-tb-header .logo a{
	display: inline-flex;
	align-items: center;
	color: #003128;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0;
}

.media-header .logo a::before,
.media-tb-header .logo a::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 30px;
	margin-right: 12px;
	border-radius: 2px;
	background: #008129;
}

.media-header .nav{
	flex: 1;
}

.media-header .nav > menu{
	justify-content: center;
	gap: 0 24px;
}

.media-header .nav > menu > li > a{
	color: #003128;
	font-size: 15px;
	font-weight: bold;
}

.media-header-action{
	flex-shrink: 0;
	width: 176px;
	height: 46px;
	border-radius: 23px;
	overflow: hidden;
}

.media-header-action a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 30px 0 20px;
	color: #fff;
	font-weight: bold;
	background: #003128 url(../img/cmn/img-ic-arrow-white.svg) center right 17px / 13px auto no-repeat;
	transition: .3s ease-in-out;
}

.media-header-action a:hover{
	background-color: #8CB808;
}

.media-tb-header{
	border-bottom: solid 1px #E4E4E4;
	box-shadow: 0 8px 22px rgba(0, 49, 40, .05);
}

.media-tb-header .inner{
	align-items: center;
}

.media-tb-header .logo{
	width: auto;
	margin-left: min(5.8%, 21px);
	padding-top: 0;
	font-size: 15px;
}

.media-tb-header .logo a::before{
	width: 8px;
	height: 24px;
	margin-right: 10px;
}

.media-tb-nav .nav li > a{
	font-weight: bold;
	color: #003128;
}

.media-tb-nav .media-tb-nav-action{
	margin-top: 24px;
	border-bottom: none;
}

.media-tb-nav .media-tb-nav-action a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 28px;
	border-radius: 28px;
	color: #fff;
	background: #003128 url(../img/cmn/img-ic-arrow-white.svg) center right 22px / 14px auto no-repeat;
}

/* media-footer */
.media-footer{
	color: #003128;
	background: #F7F7F7;
	border-top: solid 1px #E4E4E4;
}

.media-footer .inner{
	max-width: 1154px;
	width: 100%;
	margin: auto;
	padding: 0 15px;
}

.media-footer-main{
	display: grid;
	grid-template-columns: minmax(260px, 1.1fr) 2fr;
	gap: 54px;
	padding: 58px 0 52px;
}

.media-footer-brand{
	max-width: 360px;
}

.media-footer-logo{
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	font-weight: bold;
	line-height: 1.5;
}

.media-footer-logo::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 30px;
	margin-right: 12px;
	border-radius: 2px;
	background: #008129;
}

.media-footer-description{
	line-height: 2;
}

.media-footer-nav{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.media-footer-nav-title{
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: solid 1px #D8D8D8;
	font-weight: bold;
	color: #003128;
}

.media-footer-nav li:not(:last-of-type){
	margin-bottom: 10px;
}

.media-footer-nav a{
	display: inline-block;
	padding-left: 13px;
	color: #003128;
	line-height: 1.6;
	background: url(../img/cmn/img-arrow-green-s.svg) center left / 8px auto no-repeat;
	transition: .2s ease-in-out;
}

.media-footer-nav a:hover{
	color: #008129;
	transform: translateX(3px);
}

.media-footer-bottom{
	padding: 18px 0 20px;
	border-top: solid 1px #D8D8D8;
}

.media-footer-copy{
	font-size: 13px;
	color: #637968;
}

/* footer */
.contact-box{
	min-height: 267px;
	height: 20vw;
	color: #fff;
	background: url(../img/cmn/img-foot-bg.png) center / cover no-repeat;
}

.contact-box .row{
	height: 100%;
	gap: 0 46px;
}

.contact-box .tell-link a{
	display: inline-block;
	width: 100%;
	max-width: 287px;
}

.contact-box .tell-link span{
	display: block;
}

.contact-box .btn{
	width: 375px;
	height: 90px;
	border: solid 4px;
	border-radius: 45px;
	overflow: hidden;
	transition: .3s ease-in-out;
}

.contact-box .btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: .3s ease-in-out;
}

.contact-box .btn:hover{
	background: #fff;
}

.contact-box .btn:hover a{
	color: #008129;
}

.contact-box .btn p{
	display: contents;
	vertical-align: middle;
}

.contact-box .-en{
	padding-right: 10px;
	font-size: 30px;
}

.footer{
	font-size: 14px;
}

.footer .inner{
	max-width: 1154px;
	width: 100%;
	margin: auto;
	padding: 0 15px;
}

.footer .top{
	padding: 55px 0 58px;
	background: #F7F7F7;
}

.footer .top .logo{
	width: 235px;
	margin-bottom: 22px;
	transition: .3s ease-in-out;
}

.footer .top .logo:hover{
	opacity: .5;
}

.footer .site-list{
	display: grid;
    grid-template-columns: 1fr 33% 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 0;
	margin-bottom: 35px;
	padding-bottom: 28px;
	border-bottom: solid 1px #D3D3D3;
}

.footer .site-list li a{
	transition: .3s ease-in-out;
}

.footer .site-list li a:hover{
	opacity: .5;
}

.footer .tbl th{
	padding: 0 22px 12px 0;
	text-align: left;
}

.footer .tbl td a{
	margin-left: 15px;
	padding-left: 12px;
	color: #8CB808;
	background: url(../img/cmn/img-arrow-green-s.svg) center left / 6px auto no-repeat;
	transition: .3s ease-in-out;
}

.footer .tbl td a:hover{
	opacity: .5;
}

.footer .service-list{
	display: grid;
    grid-template-columns: 267px 1fr;
}

.footer .bnr-list{
	width: 230px;
}

.footer .bnr-list li:first-of-type{
	margin-bottom: 8px;
}

.footer .btm{
	height: 100px;
	background: #003128;
	color: #fff;
}

.footer .btm .inner{
	height: 100%;
}

.footer .btm .link-list{
	gap: 30px;
}

.footer .btm .link-list li a{
	transition: .3s ease-in-out;
}

.footer .btm .link-list li a:hover{
	opacity: .5;
}

.footer .copy{
	font-size: 12px;
}

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

	.main{
		padding-top: 70px;
	}

	/* header */

	.header{
		height: 70px;
		font-size: 14px;
	}
	
	.header > .inner{
		gap: 0 12px;
		padding: 0 9px 0 16px;
	}
	
	.header .logo{
		width: 180px;
	}
	
	.header .nav > menu{
		gap: 0 16px;
	}
	
	.header .child{
		top: 70px;
		padding: 16px 18px 17px;
	}

	/* footer */

	.contact-box .row{
		gap: 0 28px;
	}

	.contact-box .btn{
		width: 320px;
		height: 65px;
	}

	.contact-box .-en{
		padding-right: 10px;
		font-size: 30px;
	}

	.footer{
		font-size: 14px;
	}

	.footer .inner{
		max-width: 1000px;
		width: 100%;
		margin: auto;
		padding: 0 15px;
	}

	.footer .top{
		padding: 55px 0 58px;
		background: #F7F7F7;
	}

	.footer .top .logo{
		width: 235px;
		margin-bottom: 22px;
		transition: .3s ease-in-out;
	}

	.footer .top .logo:hover{
		opacity: .5;
	}

	.footer .site-list{
		display: grid;
		grid-template-columns: 1fr 33% 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 10px 0;
		margin-bottom: 35px;
		padding-bottom: 28px;
		border-bottom: solid 1px #D3D3D3;
	}

	.footer .site-list li a{
		transition: .3s ease-in-out;
	}

	.footer .site-list li a:hover{
		opacity: .5;
	}

	.footer .tbl th{
		padding: 0 22px 12px 0;
		text-align: left;
	}

	.footer .tbl td a{
		margin-left: 15px;
		padding-left: 12px;
		color: #8CB808;
		background: url(../img/cmn/img-arrow-green-s.svg) center left / 6px auto no-repeat;
		transition: .3s ease-in-out;
	}

	.footer .tbl td a:hover{
		opacity: .5;
	}

	.footer .service-list{
		display: grid;
		grid-template-columns: 267px 1fr;
	}

	.footer .bnr-list{
		width: 230px;
	}

	.footer .bnr-list li{
		transition: .3s ease-in-out;
	}

	.footer .bnr-list li:hover{
		opacity: .5;
	}

	.footer .bnr-list li:first-of-type{
		margin-bottom: 8px;
	}

	.footer .btm{
		height: 100px;
		background: #003128;
		color: #fff;
	}

	.footer .btm .inner{
		height: 100%;
	}

	.footer .btm .link-list{
		gap: 30px;
	}

	.footer .btm .link-list li a{
		transition: .3s ease-in-out;
	}

	.footer .btm .link-list li a:hover{
		opacity: .5;
	}

	.footer .copy{
		font-size: 12px;
	}

}

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

	body{
		font-size: 16px;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}

	.main{
		padding-top: 50px;
	}

	.sec > .inner{
        padding: 0 5.8%;
    }

	/* tb-header */	
	.tb-header{
		position: fixed;
		top: 0;
		height: 50px;
		width: 100%;
		background: #fff;
		z-index: 15;
	}

	.tb-header .inner{
		display: flex;
		justify-content: space-between;
		height: 100%;
	}

	.tb-header .logo{
		width: 148px;
		margin-left: min(5.8%, 21px);
		padding-top: 10px;
	}

	.tb-header .right{
		display: flex;
	}

	.tb-header .tell{
		width: 60px;
		height: 100%;
	}

	.tb-header .tell a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}

	.tb-header .menu{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-flow: column;
		gap: 5px;
		width: 50px;
		height: 100%;
		background: #003128;
		cursor: pointer;
	}

	.tb-header .bar{
		width: 33px;
		height: 2px;
		background: #fff;
	}

	/* tb-nav */
	.tb-nav{
		display: none;
		position: fixed;
		top: 50px;
		width: 100%;
		height: calc(100vh - 50px);
		padding: 23px 0 0;
		background: #F4F4F4;
		overflow-y: scroll;
		z-index: 20;
	}

	.tb-nav .nav{
		margin-bottom: 22px;
		padding: 0 5.8%;
	}

	.tb-nav .nav ul{
		border-top: solid 1px #D3D3D3;
	}

	.tb-nav .nav > .inner > menu > li:first-of-type{
		border-top: solid 1px #D3D3D3;
	}

	.tb-nav .nav li{
		border-bottom: solid 1px #D3D3D3;
	}

	.tb-nav .nav .child li{
		border-bottom: none;
	}

	.tb-nav .nav li > a,
	.tb-nav .nav li > span{
		display: block;
		padding: 25px 0 19px;
	}

	.tb-nav .nav .has-child > span{
		display: flex;
	}

	.tb-nav .nav .has-child .-toggle{
		display: block;
		width: 10px;
		margin-left: 12px;
		background: url(../img/cmn/img-ic-arrow-green-down.svg) center / 8px 100% no-repeat;
		transition: .3s ease-in-out;
	}

	.tb-nav .nav .has-child.-open .-toggle{
		transform: rotate(-180deg);
	}

	.tb-nav .nav .child{
		display: none;
		margin-bottom: 15px;
	}

	.tb-nav .nav .child > span{
		color: #008128;
	}

	.tb-nav .nav .child a{
		padding: 8px 33px;
		background: url(../img/cmn/img-arrow-r_green-s.svg) center left 16px / 8px auto no-repeat;
	}

	/* footer */
	
	.contact-box{
		height: 446px;
		padding: 64px 5.8% 75px;
	}
	
	.contact-box .row{
		display: block;
		text-align: center;
	}

	.contact-box .tell{
		margin-bottom: 14px;
	}
	
	.contact-box .tell-link span{
		display: block;
	}
	
	.contact-box .btn{
		width: 100%;
		max-width: 375px;
		height: 90px;
		margin: 0 auto;
	}

	.contact-box .row .btn:last-of-type{
		margin-top: 21px;
	}

	.footer .inner{
		padding: 0 5.8%;
	}
	
	.footer .top{
		padding: 41px 0 36px;
	}
	
	.footer .top .logo{
		max-width: 245px;
		width: 100%;
		margin-bottom: 17px;
	}
	
	.footer .site-list{
		display: block;
		margin-bottom: 29px;
	}
	
	.footer .tbl th{
		display: block;
		padding: 0;
	}

	.footer .tbl td{
		display: block;
		margin-bottom: 25px;
	}

	.footer .service-list{
		display: block;
	}

}

@media screen and (max-width:767px) {
	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	/* font-weight */
	.more-bold{
		font-size: 18px;
	}

	.most-bold{
		font-size: 20px;
	}

	.small{
		font-size: 14px;
	}

	/* ttl */
	.en-ttl{
		font-size: 36px;
		font-weight: 500;
	}

	.c-ttl{
		font-size: 20px;
	}

	.c-ttl.-s{
		font-size: 20px;
	}

	.c-ttl.-xs{
		font-size: 18px;
	}

	.c-ttl.-xl{
		font-size: 22px;
	}

	.c-ttl.-xxl{
		font-size: 22px;
	}

	.c-ttl.-center{
		text-align: center;
	}

	/* layout row */
	.row{
		display: block;
	}

	/* footer */
	.footer .bnr-list{
		max-width: 230px;
		width: 100%;
		margin: auto;
	}
		
	.footer .btm{
		height: auto;
	}
	
	.footer .btm .inner{
		height: 100%;
		padding: 31px 5.8% 70px;
	}
	
	.footer .btm .link-list{
		gap: 30px;
		margin-bottom: 25px;
	}
	
	.footer .copy{
		font-size: 10px;
	}

	/* media-footer */
	.media-footer .inner{
		padding: 0 5.8%;
	}

	.media-footer-main{
		display: block;
		padding: 42px 0 36px;
	}

	.media-footer-brand{
		max-width: none;
		margin-bottom: 34px;
	}

	.media-footer-nav{
		grid-template-columns: 1fr 1fr;
		gap: 26px 20px;
	}

	.media-footer-bottom{
		padding: 16px 0 18px;
	}

}

@media print {
}
