@charset "utf-8";

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: #333;
}

@media(min-width:961px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:960px){
  .pconly{
    display:none !important;
  }
}
@media(min-width:561px){
	.show_sp{display: none !important;}
 }
 @media(min-width:961px){
	.show_sptb{display: none !important;}
 }
 @media(max-width:560px){
	.show_tbpc{display: none !important;}
 }
 @media(max-width:960px){
	.show_pc{display: none !important;}
 }
/*変数*/
:root{
	--basecolor: #29a656 ; /*基本色*/
	--sabcolor: #f4fff1; /*サブカラー*/
}

img{
  max-width:100%;
  vertical-align:bottom;
}


p{
	margin:0
}

h3{
	margin:0;
}

a{

  text-decoration: none;

}

a:visited{

}

a:hover{
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}
.tac{
	text-align: center;
}
.tal{
	text-align: left;
}
.tar{
	text-align: right;
}
.mg0{
	margin: 0 auto;
}


.margin1{
	margin:10px
}
.margin2{
	margin:20px
}
.margin3{
	margin:30px
}
.margin4{
	margin:40px
}
.margin5{
	margin:50px
}
.mgb1{
	margin-bottom:10px
}
.mgb2{
	margin-bottom:20px
}
.mgb3{
	margin-bottom:30px
}
.mgb4{
	margin-bottom:40px
}
.mgb5{
	margin-bottom:50px
}
.mgt1{
	margin-top:10px
}
.mgt2{
  margin-top:20px
}
.mgt3{
	margin-top:30px
}
.mgt4{
	margin-top:40px
}
.mgt5{
	margin-top:50px
}
.mgl1{
	margin-left:10px
}
.mgl2{
	margin-left:20px
}
.mgl3{
	margin-left:30px
}
.mgl4{
	margin-left:40px
}
.mgl5{
	margin-left:50px
}
.mgr1{
	margin-right:10px
}
.mgr2{
  margin-right:20px
}
.mgr3{
	margin-right:30px
}
.mgr4{
	margin-right:40px
}
.mgr5{
	margin-right:50px
}
.n_mgt5{
	margin-top:5%
}

.padding1{
	padding:10px
}
.padding2{
	padding:20px
}
.padding3{
	padding:30px
}
.padding4{
	padding:40px
}
.padding5{
	padding:50px
}
.pdt1{
	padding-top:10px
}
.pdt2{
  padding-top:20px
}
.pdt3{
  padding-top:30px
}
.pdt4{
  padding-top:40px
}
.pdt5{
	padding-top:50px
}
.pdt6{
	padding-top:60px
}
.pdt7{
	padding-top:70px
}
.pdt8{
	padding-top:80px
}
.pdt9{
	padding-top:90px
}
.pdt10{
	padding-top:100px
}
.pdb1{
	padding-bottom:10px
}
.pdb2{
  padding-bottom:20px
}
.pdb3{
  padding-bottom:30px
}
.pdb4{
  padding-bottom:40px
}
.pdb5{
	padding-bottom:50px
}
.pdb6{
	padding-bottom:60px
}
.pdb7{
	padding-bottom:70px
}
.pdb8{
	padding-bottom:80px
}
.pdb9{
	padding-bottom:90px
}
.pdb10{
	padding-bottom:100px
}
.pdr5{
	padding-right:30% ;

}

/*----------
特殊例
-----------*/
/*----------
マーカー下線
----------*/
.marker_line {
    background: linear-gradient(transparent 60%, var(--basecolor) 0%);
}
.marker_line_oreng{
	background: linear-gradient(transparent 50%, #ffd95d9f 50%);
}
/*---------
 題字下下線
 ----------*/
.hr-green {
    border-top: 2px solid #3ca27e;
    width: 80px;
}

.flex{
	display: flex;
}
.flex_wrap_reverse{
	display: flex;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/

/*spmenu*/
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
    z-index: 99;
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	padding:0
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
	background-image: repeating-linear-gradient(90deg, var(--basecolor), var(--basecolor) 7px, transparent 7px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
}
@keyframes gnaviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: -7px;
	right: 2px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
	width: 60px;
	height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--basecolor);
    width: 53%;
  }

.openbtn span:nth-of-type(1) {
	top: 16px;
}

.openbtn span:nth-of-type(2) {
	top: 27px;
}

.openbtn span:nth-of-type(3) {
	top: 38px;
}
.openbtn p{
	position:absolute;
	bottom: -6px;
	right:10px;
	font-weight:normal;
	color:var(--basecolor);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.sp_logo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 50%;
}

/*--------- top 幅規定とか--------*/
header{
	width: 100%;
}

.top_menu_wrap{
	/*position: fixed;*/
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px 20px;
	width: 100%;
	z-index: 10;
	margin: 0 auto;
	background: #ffffffcf;
	transition: all 0.3s ease;
}

.top_menu_wrap.scrolled-link::after{
	display:none
}
.logo{
	width: 30%;
	text-align: center;
	margin-top: 0px;
}
.logo img{
	width: 50%;
	transition: all 0.3s;
}

.top_menu{
	width: 70%;
}
.top_menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.top_menu ul li{
	position: relative;
	margin: 0 1.3vw;
}
.top_menu ul li a{
	position: relative;
	display: inline-block;
	padding: 15px 0 5px;
	font-size: 110%;
	z-index: 1;
	overflow: hidden;
	color: var(--basecolor);
}
.top_menu ul li a::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: var(--sabcolor);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
	z-index: -1;
}
.top_menu ul li a:hover:before{
	width: 40px;
	height: 40px;
}

#navigation.scrolled-link{
    position: fixed;
	top:0;
    padding: 5px 0 9px;
}

#dummy_block{
	height: 50px;
}
.hide{
	display: none;
}

#navigation.scrolled-link .logo img{
	width: 35%;
}


/*--contants--*/
.link_btn{
	background: var(--basecolor);
	color: #fff;
	display: inline-block;
	padding: 3px 30px;
	border-radius: 45px;
}
.contents_ttl{
	width: fit-content;
	margin: 0 auto 60px;
	font-size: 220%;
	color: var(--basecolor);
}
.section_box {
    position: relative;
    margin: 120px auto;
}
.section_box.green_back{
	margin: 0 auto;
	padding: 100px 0;
	background: var(--sabcolor);
}
.contents_wrap {
    max-width: 1200px;
    /* width: 90%; */
    margin: 0 auto;
}
.contents_wrap.top{
	width:94%;
}


.intro_box{
	position: relative;
}
.intro_box::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 20%;
	width: 20%;
	height: 60%;
	background: url(../img/hukidashi.png) no-repeat;
	background-size: contain;
}
.intro_text{
	width: 75%;
	margin: 0 5% 0 0;
}
.intro_text p{
	margin: 40px 30px;
	font-size: 120%;
	color: var(--basecolor);
	font-weight: bold ;
	line-height: 1.9;

}
.intro_img{
	width: 20%;
}

.top_news_box_wrap{
	border-bottom: 1px solid;
	margin: 0 auto;
}
.top_news_box .img_box{
	width: 45%;
}
.top_news_box .news_text{
	width: 55%;
	margin: 0 0 0 2%;
}
.news_text time{
	font-size: 80%;
}
.top_news_box{
	color: #333;
	display: flex;
	margin: 0 auto 50px;
}
.under_news_box{
	color: #333;
	width: 31.3%;
	margin: 0 3% 0 0;
}
.under_news_box_wrap {
	margin: 50px auto 65px;
	flex-wrap:wrap;
}
.under_news_box_wrap .under_news_box:nth-child(3n){
	margin: 0;
}
.news_ttl{
	font-size: 133%;
	margin: 0px auto 10px;
	max-height: 1.5em;
	overflow:hidden;
}
.under_news_box .news_text{
	margin: 10px auto 0;
	line-height:1.4
}
.news_link_wrap{
	margin: 65px auto 0;
}
.news_link_wrap .link_btn{
	font-size: 120%;
}

.tag_wrap{
	display: flex;
	flex-wrap: wrap;
}
.tag_wrap a{
	color: var(--basecolor);
	font-size: 120%;
	display: inline-block;
	margin: 10px 20px;
}

.map_wrap iframe{
	width: 100%;
	height: 400px;
}

/*------------- footer -------------*/
footer{
	margin: 0px auto 0;
}
footer .contents_wrap{
	margin: 100px auto ;
	color: var(--basecolor);
	justify-content: space-between;
}
.footer_logo_box{
	width: 30%;
	text-align: center;
}
.footer_logo_box div{

}
.footer_logo_box img{
	width: 60%;
}
.address{
	width: fit-content;
	margin: 1em auto;
}
footer a{
	width: fit-content;
	display:inline-block;
	color: var(--basecolor);
	padding-bottom:0;
	border-bottom:1px dotted;
}
footer a.noline{
	border-bottom:none
}
.footer_link_box{
	
}
.footer_link_box a{
	color: var(--basecolor);
}
.footer_link_box ul{
	list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap:wrap;}
.footer_link_box ul li{
	margin: 0 0;
	padding: 3px;
	width:33%;
	font-size:95%
}
@media(max-width:680px){
.footer_link_box ul li:nth-child(odd){
	width:65%;
}
.footer_link_box ul li:nth-child(even){
	width:35%;
}
}
.insta_link img{
	width: 10%;
}
.store_navi{
	margin: 20px auto;
}
.copyright{
	background: var(--basecolor);
	padding: 10px;
	text-align: center;
	color: #fff;
}



/*--------------- お問い合わせ ---------------*/
.tel_wrap{
	text-align: center;
	margin: 50px auto 100px;
}
.mail_wrap{
	margin:0 auto 100px;
}
.form{
	max-width: 900px;
	margin: 0 auto;
	width:90%;
}
.form p{
	margin-left: 10%;
}

.co_table{
	max-width: 900px;
	width: 100%;
	margin: 0px auto 40px;
	display: flex;
	align-items: center;
}

.co_table dt{
	width: 30%;
}
.co_table dd{
	width: 70%;
}
.co_table span{
	padding:3px 8px;
	display: inline-block;
	margin-right: 20px;
	background: var(--basecolor);
	color: #fff;
}

input[type=text],
input[type=radio],
textarea {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
	height: 60px;
	border: #333 solid 1px;
	background-color: #fff;
	padding: 0.5em;
}
textarea{
	height: 100px;
}
input[type=text],
input[type=radio],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.submit_tac{
	text-align: center;
}
input[type="submit"],
a.back {
	width: auto;
	height: auto;
	text-align: center;
	border: 0px solid;
	padding: 10px 20px;
	color: #fff;
	background: var(--basecolor);
	font-size: 16px;
	margin-top: 40px;
	min-width: 200px;
	display: inline-block;
}


.mail_form_check .co_table dt{
	color: #000;
}

.fff_block.mail{
	max-width: 900px;
	width: 90%;
	margin: 0px auto 40px;
}
.return_top{
	text-align: center;
	background: var(--basecolor);
	padding: 10px 50px;
	display: inline-block;
	margin: 40px auto 0;
	color:#fff;
}

.privacy{
	border: 1px solid;
    padding: 3%;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}
.privacy p{
	margin:5px 0 0
}
.privacy h3{
	color:var(--basecolor);
	margin:20px auto 0;
}

/*----------- リクルート -------------*/





/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1100px){



	/*-------- contact page ----------*/



}
@media(max-width:960px){
	/*------共通---------*/
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex{
		flex-wrap: wrap;
	}

	.intro_img{
		align-self: flex-end;
	}
	.intro_box::after{
		width: 30%;
	}

	.logo{
		width: 50%;
	}
	.top_menu_wrap{
		background: #fffe;
	}


	/*----------- contact page----------------*/
	.co_table{
		clear: left;
		float: left;
		/* width: 10%; */
	}
	.co_table dt{
		float: left;
		margin-left: 0%;
    }
	.co_table dd{
		margin-left: 0%;
	}
	/*footer*/
	.footer_logo_box{
		width: 40%;
	}

}
@media(max-width:768px){
	.logo{
		width: 78%;
	}
	.logo img{
		width: 42%;
	}
	.intro_text{
		width: 100%;
		margin: 0;
	}
	.intro_text img{
		width: 80%;
	}
	.intro_img{
		width: 100%;
		text-align: right;
		margin: 30px auto 0;
	}
	.intro_img img{
		width: 30%;
	}
	.intro_box::after{
		background: url(../img/hukidashi_sp.png) no-repeat;
		background-size:contain ;
		width: 70%;

		height: 200px;
		bottom: 10vw;
		transform: rotate(-10deg);
	}
	.contents_ttl{
		margin: 0 auto 50px;
	}
	.top_news_box{
		flex-wrap: wrap;
	}
	.top_news_box .img_box{
		width: 100%;
	}
	.top_news_box .news_text{
		margin: 20px auto 0;
		width: 100%;
	}
	.under_news_box{
		width: 100%;
		margin: 0 auto 20px;
	}
	.under_news_box time{
		font-size: 80%;
	}
	.under_news_box .flex_box{
		flex-wrap: nowrap;
		display: flex;
	}
	.under_news_box .news_text{
		margin: 0 0 0 20px;
		width: 60%;
	}
	.under_news_box .img_box{
		width: 40%;
	}
	.news_ttl{
		font-size: 120%;
		margin: 0 auto 10px;
	}


	/*footer*/
	.footer_logo_box {
		width: 100%;
	}
	.footer_link_box{
		width: 80%;
		margin: 30px auto 0;
	}



}

@media(max-width:560px){
	.section_box{
		margin: 50px auto ;
	}
	.section_box.green_back{
		padding: 50px 0 ;
	}
	.intro_box::after{
		height: 150px;
		width: 60%;
		right:22% ;
	}

}

/* 正方形サムネイル */
  .img_box{
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #000;      /* contain時の黒背景 */
  }

  .img_box img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
  }

  /* 通常：cover画像を表示 */
  .img_box .img_cover{
    object-fit: cover;
    opacity: 1;
    transform: scale(1.02); /* お好みで。不要なら1 */
  }

  /* hover用：contain画像（最初は見えない） */
  .img_box .img_contain{
    object-fit: contain;
    opacity: 0;
    transform: scale(1.1); /* “引き”具合 */
  }

  /* hoverでクロスフェード */
  .img_box:hover .img_cover{
    opacity: 0;
    transform: scale(1.08); /* ちょいズームアウト感の演出（不要なら消してOK） */
  }

  .img_box:hover .img_contain{
    opacity: 1;
    transform: scale(0.95); /* ここを0.8〜0.95で調整 */
  }

.page_ttl {
	position: relative;
	margin: 1vw auto;
	padding: 20px;
	text-align: center;
	font-size: 220%;
	font-weight: normal;
	background:#27a657;
	color:#fff;
}
.no_article{
	width:100%;
	text-align:center;
	font-size:150%;
	font-weight:bold;
	color:#ccc;
}