@charset "UTF-8";
/* CSS Document */
/* common
-----------------------------------*/
:root {
	--fcol: #111;
	--lcol: #05cb56;
	--dcol:#04af4a;
}
.noto-sans {
	font-family: "Noto Sans JP", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
}
html {
	font-size: 62.5%;
}
body {
	color: var(--fcol);
	font-size: clamp(1.4rem,1.6vw,1.8rem);
	line-height: 1.7;
	font-family: "Noto Sans JP", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
}
section {
	overflow: hidden;
}
/* font  
-----------------------------------*/
h2 {
	text-align: center;
	position: relative;
	display: flex;
    justify-content: center;
	flex-direction: column;
	font-size: clamp(2.0rem,2.4vw,3.0rem);
	font-weight: 600;
	margin-bottom: 50px;
	font-feature-settings: "palt";
    letter-spacing: 0.1em;
}
h2 span{
    font-size: clamp(1.2rem,1.56vw,1.4rem);
    bottom: -1.8em;
    line-height: 1.4;
    padding: 1px 15px 2px;
    font-weight: 400;
    margin: 8px auto 0;
	letter-spacing: 0;

}
main h2 span {
	background: var(--dcol);
	border-radius: 25% 10%;
	color: #FFF;
}
main p{
	text-align: justify;
}
h3 {
	font-size: clamp(1.6rem,2.0vw,2.4rem);
	color: var(--dcol);
	font-weight: 600;
	margin: 15px 0 30px;
	font-feature-settings: "palt";
    letter-spacing: 0.1em;
	line-height: 1.4;
}
/* link  
-----------------------------------*/
a, a img, button {
	text-decoration: none;
	transition: ease 0.7s;
	color: #303030;
	backface-visibility: hidden;
}
main a:link,
main a:visited{
	color: var(--lcol);
}
main a:hover{
	text-decoration: underline;
	text-underline-offset:0.2em;
}
/* container width
-----------------------------------*/
.container {
	margin: auto;
	max-width: 1200px;
	padding: 0px 15px;
	box-sizing: border-box;
	position: relative;
}
/* footer 
-----------------------------------*/
.foot_top {
	background: var(--dcol);
}
.foot_inner {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2%;
	padding: 40px 0;
}
.foot_l {
	display: flex;
    align-items: center;
    width: 100%;
    margin-right: clamp(1rem, 1vw, 20px);
}
.foot_l h4 {
	padding-left: clamp(0.2rem, 0.5vw, 20px);
    line-height: 1;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    color: #f1f1f1;
}
.foot_l h4 span {
	display: block;
	font-size: clamp(1.2rem, 1.4vw, 1.6rem);
}
.foot_r a {
	color: #f1f1f1;
}
.slash {
	font-weight: 700;
	color: #FFF;
	display: flex;
  	justify-content: center;
  	align-items: center;
  	position: relative;
}
.slash::before, .slash::after {
	content: "";
  	width: 38px;
  	height: 2px;
  	background-color: #FFF;
  	margin: 0px 4px 4px;
}
.slash::before {
  transform: rotate(45deg);
}
.slash::after {
  transform: rotate(-45deg);
}
.foot_r_top_ul {
	width: 90%;
	margin: auto;
}
.foot_r_top_li {
	width: 100%;
	margin-bottom: 1em;
}
.foot_r_top_li a {
    display: block;
    border: 1px solid #f1f1f1;
    padding: 10px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    font-weight: 600;
    padding: 1em 0;
}
.foot_r_top_li a::before {
    content: '';
    background-size: 100%;
    display: inline-block;
    transition: ease 0.7s;
    margin: auto;
}
.foot_r_top_li a:hover {
	background: #FFF;
	color: var(--dcol);
	 border: 1px solid var(--lcol);
    transition: ease 0.7s;
}
.foot_link {
	display: flex;
	align-items: center;
	justify-content: center;
}
.foot_link li {
	margin-left: clamp(10px, 2vw, 2.0em);
	margin-right: clamp(10px, 2vw, 2.0em);
}
.foot_link li a {
	white-space: nowrap;
    color: #f1f1f1;	
    font-size: clamp(1.0rem, 1.4vw, 1.6rem);
    position: relative;
}
.foot_link li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background-color: #f1f1f1;
    transition: transform .3s ease, visibility .3s ease;
    visibility: hidden;
}
.foot_link li a:hover:after {
    transform: scaleX(1);
    visibility: visible;
}
.copy{
	font-size: clamp(1.2rem,1.4vw,1.4rem);
	text-align: center;
	padding: 0.94em;
}
/* pagetop 
-----------------------------------*/
.pagetop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 14px;
	z-index: 1;
}
.pagetop a {
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: cubic-bezier(0.02, 1.1, 0.98, 0.53) .3s;
}
.pagetop a span {
	font-size: 1rem;
	margin-top: 1rem;
}
.pagetop a:hover {
	opacity: 0.6;
}
.pagetop a img {
	position: relative;
	right: 1px;
}
.pagetop a:hover img {
	transform: translateY(-10px);
}
.to_the_top {
	display: inline-block;
	vertical-align: middle;
	color: #000;
	line-height: 1;
	position: relative;
	width: 0.1em;
	height: 3em;
	background: currentColor;
}
.to_the_top::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top right;
	position: absolute;
	top: -0.05em;
	right: 50%;
	box-sizing: border-box;
}
.sp_br {
	display: none;
}
.sp_hidden {
	display: inherit;
}
/* medhia query 
-----------------------------------*/
@media(min-width:769px){
	a[href^="tel:"] {
		pointer-events: none;
		cursor: none;
	}
}
@media (max-width: 768px) {
	/* container  
	-----------------------------------*/
	.container {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	/* main  
	-----------------------------------*/
	.sp_br {
		display: inherit;
	}
	/* footer  
	-----------------------------------*/
	.foot_inner {
		grid-template-columns: 1fr;
	}
	.foot_l {
	    display: flex;
	    align-items: center;
	    width: 80%;
	    margin: auto;
	}
	.foot_l h4 span {
		font-size: clamp(1.4rem, 1.8vw, 2.2rem);
	}
	.foot_l h4 {
	    font-size: clamp(2.2rem, 3vw, 3.4rem);
	}
	.foot_r {
		font-size: clamp(2.0rem, 2.4vw, 2.6rem);
	}
	.foot_link li a {
	    font-size: clamp(1.4rem, 1.8vw, 2.0rem);
	}
}