@charset "UTF-8";

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
    /*font-size: 1.6em;*/
	color: #161616;
    line-height: 2;
	letter-spacing: 0;
	font-weight: 500;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	position: relative;
}
*, *:before, *:after {
	box-sizing: border-box;
}
.contents_inner{
	max-width: 1180px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
	display: block;
}
a, a:link, a:visited {
	display: inline-block;
	color: #161616;
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}
.tab{
	display: none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}

@media screen and (max-width: 840px) {
	.pc{
		display:none;
	}	
	.sp{
		display:none;
	}
	.tab{
		display:block;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 14px;
		/*font-size: 1.4em;*/
	}
	.pc{
        display:none;
    }
	.tab{
        display:none;
	}
    .sp{
        display:block;
    }
}
@media (min-width: 641px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/*-----------------------------------

	contents

-----------------------------------*/
.row_box{
	display: flex;
	flex-wrap: wrap;
}

/*btn*/
.gr_btn{
	position: relative;
	max-width: 260px;
	width: 100%!important;
	background: #00B796;
	padding: 14px 20px!important;
	font-weight: 600;
	color: #fff!important;
	font-family: "Inter", sans-serif;
	transition: all 0.5s;
}
.gr_btn:hover{
	opacity: 1;
	background: #00777F;
}
.gr_btn::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 30px;
	height: 30px;
	background: url("../img/common/arrow.svg")no-repeat center/contain;
}

/*font*/
.en{
	font-family: "Inter", sans-serif;
}
.fc_gr{
	color: #00B796;
}
.fc_y{
	color: #F4E416;
}
.h3_ttl{
	font-size: 36px;
	font-weight: 700;
	line-height: 1.6;
}
.h3_ttl .en_txt{
	font-size: 16px;
	display: block;
	padding-left: 21px;
	position: relative;
	margin-bottom: 25px;
	line-height: 1;
}
.h3_ttl .en_txt::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 12px;
	background: url("../img/common/ttl_icon_01.svg")no-repeat center/contain;
}
.h4_ttl{
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 60px;
	line-height: 1.5;
}
.h4_ttl span{
	font-size: 16px;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
}

/*animation*/
@keyframes line{
	0%{
		left: -20px;
		opacity: 1;
	}
	100%{
		left: 0;
		opacity: 0;
	}
}
@keyframes Move1 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@media screen and (max-width: 840px) {
	
}
@media screen and (max-width: 640px) {
	.gr_btn{
		max-width: 250px;
	}
	.gr_btn::before{
		right: 10px;
	}
	
	.h3_ttl{
		font-size: 25px;
	}
	.h3_ttl .en_txt{
		font-size: 14px;
		margin-bottom: 5px;
	}
	.h4_ttl{
		font-size: 20px;
		margin-bottom: 30px;
	}
	.h4_ttl span{
		font-size: 13px;
	}
}

/*-----------------------------------

	cta_box

-----------------------------------*/
.cta_wrap{
	max-width: 980px;
	width: 100%;
	margin: auto;
	padding: 50px 75px;
	border-radius: 20px;
	border: 4px solid #00777F;
	background: #fff;
}
.cta_box{
	margin-top: 20px;
	align-items: center;
}
.cta_box .box{
	width: calc(100% / 2);
}
.cta_box .tel_box{
	text-align: center;
	padding-right: 73px;
	border-right: 1px solid #DEDEDE;
	flex-direction: column;
}
.cta_box .tel_box p{
	line-height: 1;
}
.cta_box .tel_box .fc_gr{
	margin-top: 10px;
}
.cta_box .tel_box a{
	position: relative;
	padding-left: 45px;
	font-size: 44px;
	line-height: 1;
	color: #00B796;
	margin: 25px 0 15px;
	
}
.cta_box .tel_box a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 34px;
	height: 34px;
	background: url("../img/common/icon_tel.svg")no-repeat center/contain;
}
.cta_box .btn_box .gr_btn{
	position: relative;
	text-align: center;
	max-width: 100%;
	width: 340px!important;
	padding: 14px 70px 14px 104px;
	margin: 0 0 0 auto;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
}
.cta_box .btn_box .gr_btn::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 75px;
	margin: auto;
	width: 21px;
	height: 16px;
	background: url("../img/common/icon_mail.svg")no-repeat center/contain;
}
@media screen and (max-width: 1080px){
	.cta_wrap{
		padding: 35px;
	}
	.cta_box .tel_box{
		padding-right: 0;
	}
	.cta_box .btn_box .gr_btn{
		margin: 0 0 0 40px;
	}
	.cta_box .tel_box a{
		font-size: 40px;
		margin: 20px auto 5px;
		width: 310px;
	}
	.cta_box .btn_box .gr_btn{
		/*width: 260px;*/
		padding: 14px 55px;
	}
	.cta_box .btn_box .gr_btn::after{
		left: 20px;
	}
}
@media screen and (max-width: 840px) {
	.cta_wrap{
		padding: 30px 25px;
	}
	.cta_box{
		flex-direction: column;
		gap: 29px;
		margin-top: 15px;
	}
	.cta_box .tel_box{
		border-right: none;
		width: 100%;
	}
	.cta_box .tel_box a{
		max-width: 280px;
		width: 100%;
		font-size: 35px;
		margin: 20px auto 10px;
	}
	.cta_box .box{
		width: 100%;
	}
	.cta_box .btn_box .gr_btn{
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	.cta_box .tel_box p{
		font-size: 13px;
		line-height: 1.5;
	}
	.cta_box .tel_box a{
		max-width: 242px;
		font-size: 30px;
		font-weight: 600;
		margin: 15px auto 0;
		padding-left: 30px;
	}
	.cta_box .tel_box a::before{
		width: 24px;
		height: 24px;
	}
	.cta_box .btn_box .gr_btn{
		width: 250px;
		padding: 15px 0 15px 30px;
	}
	.cta_box .btn_box .gr_btn::after{
		left: 50px;
	}
}

/*-----------------------------------

	header

-----------------------------------*/
header {
	position: fixed;
	z-index: 999;
	padding: 15px 20px;
	justify-content: space-between;
	align-items: center;
	background: #FFF;
	font-weight: 700;
	width: 100%;
}
header #logo{
	height: 59px;
	max-width: 325px;
	width: calc(100% - 1080px);
}
header #nav_menu .nav_wrap{
	align-items: center;
	gap: 10px;
}
header #nav_menu .nav_main{
	gap: 30px;
	padding-right: 20px;
}
header #nav_menu .nav_main li a:hover{
	color: #00B796;
}

header #nav_menu .nav_btn{
	width: 152px;
	text-align: center;
	padding: 10px 0;
	color: #fff;
	font-size: 15px;
}
.l_gr{
	background: #00B796;
}
.d_gr{
	background: #00777F;
	position: relative;
	padding-left: 52px!important;
	text-align: left!important;
}
.d_gr::before{
	content: "";
	background: url("../img/common/icon_mail.svg")no-repeat center/contain;
	width: 17px;
	height: 13px;
	position: absolute;
	left: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.side_menu{
	position: fixed;
	top: 150px;
	right: 0;
	background: #313131;
	border: 1px solid #fff;
	border-radius: 8px 0 0 8px;
	padding: 20px 17px;
	z-index: 999
}

/*sp menu*/
header .menu_btn_wrap {
    display: none;
}

@media screen and (max-width: 1360px){
	header #logo{
		max-width: 260px;
		width: calc(100% - 965px);
	}
	header #nav_menu .nav_main{
		gap: 15px;
		padding-right: 5px;
	}
	header #nav_menu .nav_btn{
		width: 140px;
		padding: 6px 0;
	}
	.d_gr{
		padding-left: 15px !important;
		text-align: center!important;
	}
	.d_gr::before{
		left: 10px;
	}
}
@media screen and (max-width: 1230px) {
	
/*sp menu*/
	header .menu_btn_wrap {
        display: block;
		width: 70px;
		height: 70px;
		cursor:pointer;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		z-index: 999;
	}
	header .menu_btn_wrap .menu_btn {
		width: 20px;
		height: 18px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		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: 20px;
		height: 2px;
		background: #161616;
		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: 8px;
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform:rotate(135deg);
		bottom: 8px;
	}	
	
	header #logo{
		width: 260px;
	}
	header #nav_menu {
		width: 100%;
		height: auto;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #FFF;
		padding-bottom: 30px;
		position: fixed;
		top: 99px;
		left: 0;
		display:none;
		z-index: 999;
	}
	header #nav_menu .nav_wrap{
		justify-content: center;
	}
	
}
@media screen and (max-width: 980px){
	header #nav_menu .nav_main{
		width: 100%;
		justify-content: center;
	}
}
@media screen and (max-width: 840px){
	
}
@media screen and (max-width: 640px) {
	header{
		padding: 0 20px 0;
	}
	header #logo{
		width: 139px;
	}
	header #nav_menu{
		top: 59px;
	}
	header #nav_menu .nav_wrap{
		width: 90%;
		margin: auto;
	}
	header #nav_menu .nav_main li{
		width: calc((100% - 15px) / 2);
	}
	header #nav_menu .nav_btn{
		width: calc((100% - 10px) / 2);
	}
	
	.side_menu{
		border-radius: 8px 8px 0 0;
		bottom: 0;
		top: auto;
		left: 0;
		margin: auto;
		width: 90%;
		padding: 10px;
		border: none;
	}
	.side_menu img{
		margin: auto;
	}
}

/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block{
	position: absolute;
	top: -160px;
	left: 0;
	right: 0;
	margin: auto;
}
#contact_block .h4_ttl{
	margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
	#contact_block .h4_ttl{
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 640px) {
	#contact_block{
		top: -100px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
	position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 998;
    width: 250px;
    height: 250px;
	background: #006970;
    transition-duration: 0.3s;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
#pagetop p{
	position: absolute;
	bottom: 60px;
	right: 20px;
	padding-left: 70px;
	font-weight: 700;
	width: 105px;
	margin-left: auto;
	transform: rotate(90deg);
	color: #00A5AF;
}
#pagetop p::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	height: 1px;
	width: 60px;
	background: #00A5AF;
	/*animation: line 1.5s ease-in-out infinite;*/
}

@media screen and (max-width: 1340px) {
	#pagetop{
		width: 160px;
		height: 160px;
	}
	#pagetop p{
		right: 0;
		bottom: 45px;
	}
}
@media screen and (max-width: 1150px){
	#pagetop{
		width: 100px;
		height: 100px;
	}
	#pagetop p{
		right: -10px;
		bottom: 40px;
	}
	#pagetop p::before{
		content: none;
	}
}
/*-----------------------------------

	footer

-----------------------------------*/
footer{
	background: #00777F;
	padding: 258px 0 70px;
	position: relative;
}
footer .footer_box .contents_inner{
	max-width: 980px;
}
footer #footer_logo{
	margin: 0 auto 70px;
	text-align: center;
}
footer .footer_wrap{
	justify-content: space-between;
}
footer .footer_wrap .address{
	color: #fff;
	font-weight: 400;
	width: 274px;
}
footer .footer_wrap .address a{
	color: #fff;
}
footer .footer_wrap .nav_main{
	width: 371px;
	gap: 50px;
	justify-content: flex-end;
}
footer .footer_wrap .nav_main ul li a{
	position: relative;
	padding: 0 0 25px 25px;
	color: #fff;
}
footer .footer_wrap .nav_main ul li a:hover,
footer .bottom_txt .nav_bottom a:hover{
	text-decoration: underline;
}
footer .footer_wrap .nav_main ul li a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	/*bottom: 0;*/
	margin: auto;
	background: url("../img/common/arrow_circle.svg")no-repeat center/contain;
	width: 15px;
	height: 15px;
}
footer .bottom_txt{
	justify-content: space-between;
	color: #79C4C9;
	margin-top: 20px;
}
footer .bottom_txt .nav_bottom a{
	color: #79C4C9;
	font-size: 15px;
	position: relative;
	padding-right: 20px;
	margin-right: 20px;
}
footer .bottom_txt .nav_bottom a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 7px;
	height: 12px;
	background: url("../img/common/arrow_triangle_gr.svg")no-repeat center/contain;
}


@media screen and (max-width: 840px) {
	footer #footer_logo{
		margin: 0 auto 25px;
	}
	footer .footer_wrap{
		flex-direction: column;
		gap: 20px;
		max-width: 371px;
		margin: auto;
	}
	footer .footer_wrap .address,
	footer .footer_wrap .nav_main{
		width: 100%;
	}
	
	footer .footer_wrap .address p{
		text-align: center;
	}
	footer .footer_wrap .nav_main{
		justify-content: center;
		gap: 15px;
	}
	footer .footer_wrap .nav_main ul li a{
		padding: 0 0 5px 25px;
	}
}
@media screen and (max-width: 640px) {
	footer{
		padding: 240px 0 67px;
	}
	footer .bottom_txt{
		flex-direction: column;
		margin-top: 10px;
	}
	footer .bottom_txt .nav_bottom{
		justify-content: center;
	}
	footer .bottom_txt .nav_bottom a{
		font-size: 13px;
	}
	footer small{
		text-align: center;
		margin-top: 10px;
	}
}