@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

/* フレックスボックス */
.row_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/*==== justify-content ====*/
/* 中央揃え*/
.flex-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

/* 両端配置*/
.flex-between {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* 均等配置*/
.flex-around {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/* 左揃え*/
.flex-left {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

/* 右揃え*/
.flex-right {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

/*==== align-items ====*/
/* 上揃え */
.align-start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

/* 下揃え */
.align-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

/* 中央揃え */
.align-center {
	-webkit-align-items: center;
	align-items: center;
}

/* ベースライン */
.align-baseline {
	-webkit-align-items: baseline;
	align-items: baseline;
}

/* 高さ揃え */
.align-stretch {
	-webkit-align-items: stretch;
	align-items: stretch;
}

/*==== flex-wrap ====*/
/* 折り返しなし */
.flex-nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

/* 上から下へ折り返し */
.flex-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* 下から上へ折り返し */
.flex-reverse {
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}

/*==== align-content ====*/
/* 複数行設定 上揃え */
.flex-align-start {
	-webkit-align-content: flex-start;
	align-content: flex-start;
}

/* 複数行設定 下揃え */
.flex-align-end {
	-webkit-align-content: flex-end;
	align-content: flex-end;
}

/* 複数行設定 中央揃え */
.flex-align-end {
	-webkit-align-content: center;
	align-content: center;
}

/* 複数行設定 両端配置 */
.flex-align-between {
	-webkit-align-content: space-between;
	align-content: space-between;
}

/* 複数行設定 均等配置 */
.flex-align-around {
	-webkit-align-content: space-around;
	align-content: space-around;
}

/* 複数行設定 高さ揃え */
.flex-align-around {
	-webkit-align-content: stretch;
	align-content: stretch;
}

/*==== font ====*/
.fs_ja {}

.fs_en {}

a {
	text-decoration: none;
}

html {
	height: 100%;
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: 1.5em;*/
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05rem;
	color: #212121;
	counter-reset: number 0;
	background: #fff;
	margin: 0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	z-index: 999;
}

.h2_ttl {
	font-size: 84px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.h2_ttl span {
	font-size: 20px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.h1_ttl {
	font-size: 100px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	line-height: 1;
}


.h1_ttl .ttl_border {
	position: relative;
	width: 60px;
	height: 2px;
	margin-top: 30px;
	margin-bottom: 36px;
}

.h1_ttl .ttl_border::after {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #46AF1A;
}

.h1_ttl .ttl_border::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 30px;
	width: 30px;
	height: 2px;
	background-color: #46AF1A;
}
.title_box h3{
	font-size: 60px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
}


.contents_inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

/*==== link_btn ====*/
.link_btn {
	display: flex;
	width: 210px;
	border-radius: 3px;
	background-color: #46AF1A;
	font-size: 18px;
	padding: 15px 15px;
	justify-content: center;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	z-index: 1000;
	transition: ease 0.2s;
}

.link_btn:hover {
	letter-spacing: 0.15em;
	opacity: 0.8;
}


.link_btn img {
	margin-left: 15px;
}

@media screen and (max-width: 1400px) {
	.h1_ttl {
		font-size: 90px;
	}
}

@media screen and (max-width: 1200px) {
	.h1_ttl {
		font-size: 80px;
	}
}

@media screen and (max-width: 840px) {
	.h2_ttl {
		font-size: 75px;

	}

	.h1_ttl {
		font-size: 70px;
	}
}

@media screen and (max-width: 640px) {
	.h1_ttl {
		font-size: 60px;
		line-height: 0.5em;
	}

	.h1_ttl .ttl_border::after {
		width: 17px;
	}

	.h1_ttl .ttl_border::before {
		left: 17px;
		width: 17px;
		height: 2px;
		background-color: #46AF1A;
	}

	.h2_ttl span {
		font-size: 0.25em;
	}

	.h2_ttl {
		font-size: 60px;

	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.link_btn {
		font-size: 16px;
	}
}

@media screen and (max-width: 450px) {
	.h1_ttl {
		font-size: 50px;
	}

	.h2_ttl {
		font-size: 50px;

	}
	.h1_ttl .ttl_border {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}

/*********************

      header

*********************/
header {
	margin: 0 auto;
	padding: 0;
	z-index: 9999;
	position: fixed;
	width: 100%;
	top: 0;
	height: 110px;
	background-color: #fff;
	/*border-bottom: 1px solid #E5E5E5;*/
}

header .header_inner {
	align-items: flex-start;
	width: 95%;
	margin: 0 auto;
}

header .logo_area h1 {
/*	display: inline-block;
	font-size: 26px;*/
	/* color: #fff; */
}

header .logo_area h1 a {
	display: block;
	width: 128px;
	padding: 10px;
	/*background: #fff;*/
	box-sizing: border-box;
	height: 110px;
}
header .logo_area img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

header .gnav {
	align-items: center;
	gap: 40px;
	margin: 30px 0 0;
}

header .gnav li a {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #212121;
}

header .gnav li a:hover {
	color: #46AF1A;
	transition: 0.3s;
}

header .contact_btn {
	align-items: center;
	justify-content: center;
}

header .contact_btn .tel {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	color: #212121;
	padding: 0 30px;
	border-left: 1px solid #707070;
}

header .contact_btn a {
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-size: 16px !important;
	font-weight: 700 !important;
	padding: 10px 20px !important;
	color: #fff !important;
	background-color: #212121;
	height: 30px;
	width: 120px;
	border-radius: 4px;
}

header .contact_btn a:hover {
	background-color: #46AF1A;
}


header .line img {
	z-index: 1;
	pointer-events: none;
	margin-right: 12px;
}

header .menu_btn_wrap {
	display: none;
}

.bottom_fixed{
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	z-index: 999;
}
.bottom_fixed a{
	background: #212121;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: #fff;
	padding: 20px 0;
	border-radius: 10px 10px 0 0;
	display: block;
	transition: 0.3s;
}
.bottom_fixed a:hover{
	background: rgb(70, 175, 26);
}

@media screen and (max-width: 1300px) {
	
	
	header .menu_btn_wrap {
		display: block;
		cursor: pointer;
		position: relative;
		/*top: 0;
		bottom: 0;
		right: 0;
		margin: auto;*/
		z-index: 999;
		height: 110px;
	}

	header .menu_btn_wrap .menu_btn {
		width: 40px;
		height: 30px;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		transition: all 0.3s;
		z-index: 999;
	}

	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .linem,
	header .menu_btn_wrap .menu_btn .lineb {
		position: absolute;
		left: 0;
		width: 40px;
		height: 3px;
		background: #212121;
		transition: all 0.3s;
	}

	header .menu_btn_wrap .menu_btn .lineh {
		top: 0;
	}

	header .menu_btn_wrap .menu_btn .linem {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}

	header .menu_btn_wrap .menu_btn .lineb {
		bottom: 0;
	}

	header .menu_btn_wrap .menu_btn.active .lineh {
		transform: rotate(-135deg);
		top: 18px;
	}

	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}

	header .menu_btn_wrap .menu_btn.active .lineb {
		transform: rotate(135deg);
		bottom: 9px;
	}

	header #nav {
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #fff;
		padding-bottom: 50px;
		position: fixed;
		top: 85px;
		left: 0;
		display: none;
		z-index: -1;
	}

	header #nav ul.gnav {
		flex-wrap: wrap;
		gap: 0;
		margin: 50px 0 30px;
	}

	header #nav ul.gnav li {
		width: 100%;
	}

	header #nav ul.gnav li:first-child {}

	header #nav ul.gnav li:nth-child(-n+5) {}

	header #nav ul.gnav li a {
		display: block;
		text-align: left;
		color: #212121;
		padding: 20px 30px;
		transition: 0.3s;
	}

	header #nav ul.gnav li a:hover {
		background: #46AF1A;
		color: #fff;
	}

	header .contact_btn .tel {
		border-left: none;
	}

	header .contact_btn a {
		margin: 30px 0;
		max-width: 500px;
		padding: 25px;
	}

	header .logo_area img {
		width: 90%;
		bottom: 0;
	}
	
	.bottom_fixed{
		display: block;
	}

}

@media screen and (max-width: 850px) {
	header .contact_btn {
		margin-top: 25px;
	}
}

@media screen and (max-width: 640px) {
	header,
	header .menu_btn_wrap,
	header .logo_area h1 a{
		height: 85px;
	}
	header #nav ul.gnav li a {
		font-size: 15px;
	}
	header .logo_area img {
		position: relative;
		bottom: 3px;
		width: 65%;
	}
}
@media screen and (max-width: 640px){
	.bottom_fixed a{
		padding: 15px 0;
	}
}
@media screen and (max-width: 400px) {
	header .contact_btn .tel {
		font-size: 22px;
		text-align: center;
		width: 100%;
	}
	header .contact_btn a {
		margin: 20px 0;
		padding: 20px 0 !important;
		width: 120px;
	}
	header .contact_btn a {
		width: 70% !important;
		border-radius: 4px;
	}
}
/*********************

      scroll_down

*********************/
.scroll_down {
	position: relative;
	bottom: 40px;
	height: auto;
	right: 2%;
	z-index: 999;
}

.scroll_down a {
	position: absolute;
	right: 40px;
	bottom: 0px;
	color: #212121;
	font-family: "Lato", sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.1em;
	writing-mode: vertical-lr;
}

.scroll_down:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 18px;
	width: 5px;
	height: 5px;
	z-index: 10;
	border-radius: 50%;
	background: #63B740;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0% {
		bottom: 90px;
	}

	100% {
		bottom: 0px;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1;
	}

	80% {
		opacity: 0.9;
	}

	100% {
		opacity: 0;
	}
}

.scroll_down:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 20px;
	width: 1px;
	height: 90px;
	background: #EBEBEB;
}

@media screen and (max-width: 1300px) {
	.scroll_down {
		position: relative;
		height: auto;
		right: 1%;
		z-index: 999;
	}
	.scroll_down a {
		right: 30px;
	}

}

@media screen and (max-width: 840px) {
	.scroll_down {
		position: relative;
		height: auto;
		right: 1%;
		z-index: 999;
	}
	.scroll_down a {
		right: 20px;
	}
	.scroll_down:after {
		right: 10px;
	}
	.scroll_down:before {
		right: 8px;
	}
}

@media screen and (max-width: 640px) {
	.scroll_down a {
		font-size: 14px;
	}
	.scroll_down {
		position: relative;
		bottom: 15px;
		height: auto;
		right: 0.5%;
		z-index: 999;
	}
}

/*********************

    footer

*********************/
footer {
	position: relative;
	/*padding: 50px 0 15px;*/
}

footer .footer_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 28px 0 11px;
}
.border_line{
	border-bottom: 1px solid #E5E5E5;
}
footer .logo_area {
	width: 92px;
}

footer .gnav {
	gap: 55px;
	width: calc(100% - 92px);
	justify-content: flex-end;
	align-content: center;
}

footer .logo_area a {
	font-size: 21px;
	font-weight: 900;
	text-decoration: none;
	color: #212121;
	transition: ease 0.2s;
	display: block;
	line-height: 1.3;
	height: auto;
}

footer .logo_area img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

footer .logo_area a:hover {
	opacity: 0.6;
}




footer .gnav li a {
	position: relative;
	padding-right: 12px;
}

footer .gnav li a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: url("../img/index/footer_arrow.svg")no-repeat center/cover;
	width: 4px;
	height: 8px;
	z-index: 3;
}

footer .gnav a {
	text-decoration: none;
	color: #212121;
	font-size: 16px;
	font-weight: 700;
	transition: ease 0.2s;
}

footer .gnav a:hover {
	opacity: 0.6;
}

footer .copyright_wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .copyright_wrapper .left_box {
	width: 63%;
	display: flex;
	align-items: center;
	padding: 39px 0 29px;
	border-right: 1px solid #E5E5E5;
}

footer .copyright_wrapper .right_box {
}

footer .access_box {
	margin-right: 50px;
}
footer .access_box p{
	font-size: 14px;
}
footer .access_box .company_name{
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 5px;
}

footer .copyright {
	bottom: 16px;
}

footer .copyright p {
	font-size: 12px;
	font-weight: 700;
	color: #212121
}

@media screen and (max-width: 1300px){
	footer {
		padding: 0 0 70px;
	}
}
@media screen and (max-width: 1000px) {

	footer {
		padding: 30px 0 70px;
	}
	footer .copyright {
		position: static;
		text-align: center;
		margin: 10px 0 0;
	}
	footer .copyright_wrapper .left_box {
		flex-direction: column;
		align-items: flex-start;
		width: 60%;
	}
	footer .logo_box img {
		width: 120px;
		bottom: 5px;
	}
	footer .copyright_wrapper .tel_box p {
		font-size: 16px;
		font-weight: 600;
	}
}

@media screen and (max-width: 840px) {
	footer .copyright_wrapper .left_box {
		width: 65%;
		white-space: nowrap;
	}

	footer .gnav {
		flex-direction: column;
		gap: 10px;
		align-items: left;
		margin: 25px auto;
		align-content: flex-end;
	}

	footer .logo_area {
		width: 30%;
	}

	footer .gnav {
		width: 50%;
	}
}
@media screen and (max-width: 610px) {
	footer{
		padding: 0 0 60px;
	}
	footer .copyright_wrapper {
		margin: 0 auto 10px;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}
	footer .footer_box {
		width: 100%;
		display: block;
	}
    footer .logo_area {
		max-width: 150px;
		width: 100%;
		margin: auto;
	}
	footer .logo_area {
		text-align: center;
	}
	footer .gnav a {
		display: block;
		font-size: 15px;
		margin-bottom: 0;
		padding: 15px 10px;
		border-bottom: 1px solid #ececec;
		width: 100%;
		box-sizing: border-box;
	}
	footer .gnav li a {
		position: relative;
		right: auto;
	}
	footer .gnav {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 0 0 20px;
	}
	footer .gnav li a::after {
		right: 20px;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	footer .copyright_wrapper .left_box {
		white-space: nowrap;
		align-items: center;
		gap: 10px;
		border-right: none;
	}
	footer .copyright_wrapper .right_box p {
		font-size: 11px;
	}

	footer .copyright_wrapper .access_box {
		font-size: 12px;
		text-align: center;
		margin-right: 0px;
	}
}

@media screen and (max-width: 390px) {
	footer .copyright_wrapper .left_box {
		white-space: wrap;
		width: 90%;
	}
}