@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- group header ----------*/
.group-header {
	width: 100%;
    border-bottom: 5px solid #c4d700;
    background: #004831;
	position: relative;
	z-index: 999;
}
.group-header-inn {
	width: 90%;
	height: 60px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.group-header-logo {
	width: 120px;
}
.group-header-grouplogo {
	width: 80px;
}

@media (max-width: 768px) {
	.group-header-inn {
		width: 94%;
		height: 46px;
		margin: 0 auto;
	}
	.group-header-logo {
		width: 90px;
	}
	.group-header-grouplogo {
		width: 65px;
	}
}

/*---------- header ----------*/
.header {
    width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	transition: 0.3s ease-in-out;
	z-index: 999;
}
.header.is-sticky {
	background: #fff;
}
.header .header-inn {
    width: 90%;
	height: 80px;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
	align-items: center;
}
/* x logo */
.header .header-logo {
    width: 173px;
    display: block;
}

.header img.is-sticky {
	display: none;
}
.header.is-sticky img.is-sticky {
	display: block;
}
.header img.is-no-sticky {
	display: block;
}
.header.is-sticky img.is-no-sticky {
	display: none;
}


/*gnav*/
.header .gnav-wrap {
	width: max-content;
	margin-left: auto;
}
.header .gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.header .gnav-wrap ul#gnav li {
	margin-right: 40px;
	display: block;
}
.header .gnav-wrap ul#gnav li a {
    display: block;
	color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.header.is-sticky .gnav-wrap ul#gnav li a {
	color: #141d1d;
}

/* language switcher */
.lang-switcher {
	width: 116px;
	display: flex;
    justify-content: flex-end;
	align-items: center;
}
.lang-switcher a {
	width: 50%;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #80a398;
	color: #fff;
	font-size: 1.3rem;
}
.lang-switcher a.is-current {
	background: #004831;
}
.btn-lang-ja {
	border-radius: 8px 0 0 8px;
}
.btn-lang-ja-only {
	border-radius: 8px;
}
.btn-lang-en {
	border-radius: 0 8px 8px 0;
}

@media (max-width: 900px) {
	/* x logo */
	.header .header-logo {
		width: 22%;
	}
	
	/*gnav*/
	.header .gnav-wrap ul#gnav li {
		margin-right: 3vw;
	}
}


@media (max-width: 768px) {
	.header {
		/* background: #fff; */
	}
	.header .header-inn {
		width: 100%;
		height: 14vw;
		margin: 0 auto;
		padding: 0 0 0 4vw;
	}
	/* x logo */
	.header .header-logo {
		width: 40%;
		margin-right: auto;
	}

	/*gnav*/
	.header .gnav-wrap {
        width: 100%;
        height: calc(100% - 46px - 5px - 14vw);
		margin-left: 0;
		display: none;
        padding: 0;
        background: #fff;
        position: fixed;
        top: calc(46px + 5px + 14vw);
        left: 0;
        z-index: 996;
	}
	.header.is-sticky .gnav-wrap {
        height: calc(100% - 14vw);
        top: 14vw;
	}
	
	.header .gnav-wrap ul#gnav {
		width: 100%;
        display: block;
        position: relative;
		border-top: 1px solid #004831;
	}
	.header .gnav-wrap ul#gnav li {
		width: 100%;
		margin-right: 0;
		display: block;
		border-bottom: 1px solid #004831;
	}
	.header .gnav-wrap ul#gnav li a {
        padding: 4vw 5vw;
		display: block;
		color: #004831;
		text-align: center;
        font-size: 3.8vw;
	}
	.header.is-sticky .gnav-wrap ul#gnav li a {
		color: #004831;
	}
	
	/* 開閉ボタン */
	.sp-menu-trigger {
		width: 14vw;
		height: 14vw;
		margin-left: 4vw;
		z-index: 2001;
		background: none;
		border: none;
	}
	.header.is-sticky .sp-menu-trigger {
		background: #004831;
	}
	.sp-menu-btn {
		width: 60%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
	}
	.sp-menu-btn span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-btn span:nth-child(1){
		top: calc(50% - 15%);
	}
	.sp-menu-btn span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-btn span:nth-child(3){
		top: calc(50% + 15%);
	}

	
	/*開閉ボタンopen時*/
	.is-open .sp-menu-btn span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
		background: #fff;
	}
	.is-open .sp-menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.is-open .sp-menu-btn span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
		background: #fff;
	}


	/* language switcher */
	.lang-switcher {
		width: 28vw;
		display: flex;
		align-items: center;
	}
	.lang-switcher a {
		width: 50%;
		height: 8vw;
		font-size: 3.8vw;
	}
	.btn-lang-ja {
		border-radius: 2vw 0 0 2vw;
	}
	.btn-lang-en {
		border-radius: 0 2vw 2vw 0;
	}
}




/*---------- Banner ----------*/
.sec-banner {
	width: 100%;
	padding: 80px 0;
	background: #f3f8f6;
}
.sec-banner .cont-inn {
	justify-content: space-between;
	align-items: flex-start;
}
.banner-box {
	width: 31%;
	text-align: left;
}
.banner-box img {
	width: 60%;
	margin: 0 auto 20px;
}
.banner-box p {
    font-size: 1.4rem;
	font-weight: 500;
	line-height: 2;
}

@media (max-width: 768px) {
	.sec-banner {
		width: 100%;
		padding: 12vw 0 4vw;
	}
	.sec-banner .cont-inn {
		flex-direction: column;
	}
	.banner-box {
		width: 100%;
		margin-bottom: 12vw;
	}
	.banner-box img {
		width: 60%;
		margin: 0 auto 3vw;
	}
	.banner-box p {
		font-size: 3.4vw;
	}
}


/*---------- footer ----------*/

.footer {
    width: 100%;
	padding: 100px 0 50px;
	background: #141d1d;
}
.footer-inn {
    width: 90%;
    margin: 0 auto;
}
.footer-logo {
	width: 80%;
	max-width: 380px;
	margin: 0 auto 60px;
	display: block;
}

.footer-link {
	width: 100%;
	margin-bottom: 40px;
	justify-content: center;
	align-items: center;
}
.footer-link li {
	margin: 0 30px 20px;
}
.footer-link li a {
	color: #fff;
    font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
}

.footer-copy {
    width: 90%;
    margin: 0 auto;
	padding: 50px 0 0;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #4b4b4b;
}

.footer-copy-txt {
	color: #fff;
    font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
}
.btn-footer-contact {
	width: max-content;
}
.btn-footer-contact img {
	width: 90%;
	max-width: 26px;
	margin: 0 auto 10px;
}
.btn-footer-contact p {
	color: #fff;
    font-size: 1.0rem;
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 768px) {

	.footer {
		width: 100%;
		padding: 12vw 0 8vw;
		background: #141d1d;
	}
	.footer-inn {
		width: 100%;
		margin: 0 auto;
	}
	.footer-logo {
		width: 60%;
		max-width: 380px;
		margin: 0 auto 10vw;
		display: block;
	}

	.footer-link {
		width: 100%;
		margin-bottom: 0;
		justify-content: center;
		align-items: center;
	}
	.footer-link li {
		width: 50%;
		margin: 0;
		border-top: 1px solid #4b4b4b;
	}
	.footer-link li:nth-child(2n) {
		border-left: 1px solid #4b4b4b;
	}
	.footer-link li a {
		width: 100%;
		display: block;
		padding: 5vw 3vw;
		font-size: 3.6vw;
		text-align: center;
	}

	.footer-copy {
		width: 100%;
		margin: 0 auto;
		padding: 8vw 4vw 0;
		align-items: center;
		justify-content: space-between;
		border-top: 1px solid #4b4b4b;
	}

	.footer-copy-txt {
		font-size: 3.2vw;
	}
	.btn-footer-contact {
		width: max-content;
	}
	.btn-footer-contact img {
		width: 90%;
		max-width: 26px;
		margin: 0 auto 2vw;
	}
	.btn-footer-contact p {
		font-size: 2.8vw;
	}
}



/*---------- コンテンツ レイアウト ----------*/
.cont-inn {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.flex-box {
	display: flex;
	flex-wrap: wrap;
}


@media (max-width: 768px) {
    .cont-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}


/*---------- テキスト ----------*/
.txt-jost {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.txt-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 768px) {
}

/*---------- ボタン ----------*/
a.btn-green {
	width: 90%;
	max-width: 220px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #004831;
	border-radius: 23px;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
}
a.btn-green::after {
	content: '';
	width: 46px;
	height: 46px;
	display: block;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 7px auto;
	position: absolute;
	top: calc(50% - 23px);
	left: 0;
	z-index: 2;
	transition: 0.3s ease-in-out;
}

a.btn-small {
	width: 80%;
	max-width: 120px;
	height: 30px;
	border-radius: 15px;
}
a.btn-small::after {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 5px auto;
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
}

a.btn-contact {
	width: 90%;
	max-width: 440px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #c4d700;
	border-radius: 40px;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1;
}
a.btn-contact::after {
	content: '';
	width: 80px;
	height: 80px;
	display: block;
	background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
	background-size: 12px auto;
	position: absolute;
	top: calc(50% - 40px);
	left: 0;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
a.btn-contact span {
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
}
a.btn-contact span::after {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 15px);
	right: 30px;
	z-index: 2;
	transition: 0.3s ease-in-out;
}


a.btn-lightgreen-s, 
a.btn-contact-s {
	width: 90%;
	max-width: 220px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #c4d700;
	border-radius: 23px;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}
a.btn-lightgreen-s::after, 
a.btn-contact-s::after {
	content: '';
	width: 46px;
	height: 46px;
	display: block;
	background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
	background-size: 7px auto;
	position: absolute;
	top: calc(50% - 23px);
	left: 0;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
a.btn-lightgreen-s span, 
a.btn-contact-s span {
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
}
a.btn-contact-s span::after {
	content: '';
	width: 17px;
	height: 17px;
	display: block;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8.5px);
	right: 20px;
	z-index: 2;
	transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
	a.btn-green:hover::after {
		left: 10px;
		z-index: 2;
	}
	a.btn-small:hover::after {
		left: 5px;
		z-index: 2;
	}
	a.btn-contact:hover::after {
		left: 10px;
		z-index: 2;
	}
	a.btn-lightgreen-s:hover::after, 
	a.btn-contact-s:hover::after {
		left: 10px;
		z-index: 2;
	}
}

@media (max-width: 768px) {
	a.btn-green {
		width: 70%;
		max-width: initial;
		height: 10vw;
		border-radius: 5vw;
		font-size: 3.8vw;
	}
	a.btn-green::after {
		content: '';
		width: 9vw;
		height: 9vw;
		background-size: 1.5vw auto;
		position: absolute;
		top: calc(50% - 4.5vw);
	}

	a.btn-small {
		width: 50%;
		max-width: initial;
		height: 10vw;
		border-radius: 5vw;
	}
	a.btn-small::after {
		content: '';
		width: 9vw;
		height: 9vw;
		background-size: 1.5vw auto;
		position: absolute;
		top: calc(50% - 4.5vw);
	}

	a.btn-contact {
		width: 90%;
		max-width: initial;
		height: 16vw;
		border-radius: 9vw;
		font-size: 4.2vw;
	}
	a.btn-contact::after {
		content: '';
		width: 16vw;
		height: 16vw;
		background-size: 2.2vw auto;
		position: absolute;
		top: calc(50% - 8vw);
	}
	a.btn-contact span::after {
		content: '';
		width: 6vw;
		height: 6vw;
		top: calc(50% - 3vw);
		right: 6vw;
	}


	a.btn-lightgreen-s, 
	a.btn-contact-s {
		width: 80%;
		max-width: initial;
		height: 12vw;
		border-radius: 6vw;
		font-size: 3.8vw;
	}
	a.btn-lightgreen-s::after, 
	a.btn-contact-s::after {
		content: '';
		width: 12vw;
		height: 12vw;
		background-size: 1.5vw auto;
		position: absolute;
		top: calc(50% - 6vw);
	}
	a.btn-contact-s span::after {
		content: '';
		width: 5vw;
		height: 5vw;
		position: absolute;
		top: calc(50% - 2.5vw);
		right: 5vw;
	}
}
