/* CSS Document */
@charset "utf-8";

/* header */
header{
	position: sticky;
	display: flex;
	margin:0 auto;
	padding: 0px 30px;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
	top:0;
	background: #fff;
	box-shadow: 0px 1px 1px #bbb;
}

h1{
	display:flex;
}

.seo_name{
	text-indent: -10000px;
	position:absolute;
	top:0px;
}

.head-logo{
	width:20vw;
	min-width:250px;
	height: auto;
	padding-top:10px;
}

.hd_sec{
	display: flex;
 	align-items:flex-end;
}

.hd_sec .pc-menu ul{
	display: flex;
	flex-wrap: wrap;
	margin-left:30px;
}

.hd_sec .pc-menu ul li{
	margin-right: 5vw;
	list-style: none;
	line-height: 24px;
}

.hd_sec .pc-menu ul li:last-child{
	margin-right: 40px;
}

.hd_sec .pc-menu ul li a{
	text-decoration: none;
	color: inherit;
} 

.hd_sec .pc-menu ul li p{
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 500;
	font-size: 18px;
	position: relative;
}

.hd_sec .pc-menu ul li p::before{
	content:  url("../img/nav_img.png");
	display: block;
	position: absolute;
	left: -20px;
	margin-right: 30px;
	background-repeat: no-repeat;
	background-size: cover;
}

.pc-menu ul .the_page{
	border-bottom: solid 3px #DDA72F; 
}

.pc-menu ul .nav_link:hover{
	border-bottom: solid 3px #DDA72F; 
}

.header_tel_call{
	justify-content: space-between;
	background: #006837;
	margin:0 auto;
	padding: 5px 30px;
	border-radius: 50px;
}

.header_tel_call a{
	display: flex;
	flex-direction: row;
	text-decoration: none;
	color: #fff;
}

.header_tel_call{
	font-size:18px;
        font-family: 'Noto Sans JP', sans-serif;
    	padding-bottom: 8px;
}

strong{
	margin: 0 auto;
}

.head_tel_texts{
	font-size: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	font-weight: 500;
}
	
/* firstview */

main{
	padding:0px;
	}

/* footer */

.footer_dec{
	display: flex;
	justify-content: center;
	margin: 0 auto;

}

.footer_dec img{
	width: 90vw;
	max-width: 1466px;
	height: auto;
	position: relative;
	top: 5px;

}

footer{
	position: relative;
	top:0px;
	display: block;
	margin: 0 auto;
	padding:0 30px;
	background-color:#DDA72F;
	text-align: center;
}

footer h3{
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 600;
	font-size: 3vw;
	font-size: 3vw;
	color:#fff;
}

.ft_content{
	width: 60vw;
	margin:50px auto 80px;
	text-align: left;
	display: flex;
}

.ft_right{
	display: flex;
	flex-direction: column;
}

.ft_texts{
	margin-left: 60px;
	text-align: left;
}

.ft_texts p{
	width: 100%;
	color: #fff;
	font-family: 'Zen Maru Gothic', serif;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.ft_texts p::before{
	content: url("../img/rice_little.png");
	display: block;
	position: absolute;
	margin-left: -30px;
	background-repeat: no-repeat;
	background-size: cover;
}

/*== footerお問い合わせボタン */

.ft_inquiry {
		margin: 10px 40px;
	}
.ft_btn{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
   	border: 3px solid #DDA72F;
    padding: 10px 30px 12px;
    text-align: center;
    outline: none;
    transition: ease .2s;
	background: #fff;
	border-radius: 50px;
}

/*ボタン内spanの形状*/
.ft_btn span {
	position: relative;
	z-index: 3;
	color: #DDA72F;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:18px;
	font-weight: 600;
	line-height: 40px;
}

.ft_btn:hover span{
	color:#fff;
}

/*背景が流れる（左から右） */
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#006837;
	border: 1px solid #DDA72F;
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: left top;
}

.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

.ft_cp{
	color:#fff;
	padding-bottom:20px;
}

.ft_cp p{
	font-family: 'Noto Sans JP', sans-serif;
	font-size:13px;
	font-weight: 400;
	line-height: 15px;
}

/*トップボタン*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#006837;
	border-radius: 100px;
	border: 1.5px solid #fff;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	animation: yureru-s 2s infinite;
}
@keyframes yureru-s {
    0% {
        transform: translate(2px, 0px);
    }
    5% {
        transform: translate(-2px, 0px);
    }
    10% {
        transform: translate(2px, 0px);
    }
	15% {
        transform: translate(0px, 0px);
    }
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 30px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/*電話失効設定1000px*/
a[href*="tel:"] {
	pointer-events: none;
}
@media only screen and (max-width: 1000px) {
	a[href*="tel:"] {
		pointer-events: initial;
	}
}
		
.sp-menu__box {
	position: fixed;
	top: 15px;
	right: 10px;
	display: flex;
	height: 50px;
	width: 50px;
	border-radius:5px;
	justify-content: center;
	align-items: center;
	z-index: 100;
	background: #dda72f;
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 500;
  }
  .sp-menu__box span,
  .sp-menu__box span:before,
  .sp-menu__box span:after {
	content: "";
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #ffffff;
	position: absolute;
  }
  .sp-menu__box span:before {
	bottom: 8px;
  }
  .sp-menu__box span:after {
	top: 8px;
  }
  #sp-menu__check {
	display: none;
  }
  #sp-menu__check:checked ~ .sp-menu__box span {
	background: rgba(255, 255, 255, 0);
  }
  #sp-menu__check:checked ~ .sp-menu__box span::before {
	bottom: 0;
	transform: rotate(45deg);
  }
  #sp-menu__check:checked ~ .sp-menu__box span::after {
	top: 0;
	transform: rotate(-45deg);
  }
  .sp-menu__list {
	padding: 70px 10px 0;
  }
  .sp-menu__item {
	border-bottom: solid 1px #ffffff;
	list-style: none;
  }

  .sp-menu__link {
	display: block;
	width: 100%;
	font-size: 20px;
	font-weight: 600;
	box-sizing: border-box;
	color: #DDA72F;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
	left:40px;
	margin-top: 20px;
        font-family: 'Zen Maru Gothic', serif;
	font-weight: 500;
  }

.sp-menu__link::before{
	content:  url("../img/nav_img.png");
	display: block;
	position: absolute;
	left: -30px;
	margin-right: 30px;
	background-repeat: no-repeat;
	background-size: cover;
  }

  
  /* 画面左端に移動する */
#sp-menu__check:checked ~ .sp-menu__content {
	left: 0;
  }
  /* 変更箇所はコメントの項目のみ */
  .sp-menu__content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
  
	/* 普段は画面外にするために左端を画面右端の位置にする */
	left: 100%;
  
	z-index: 90;
	background-color: #F8F1E1;

	transition: all 0.5s;
  }


@media screen and (max-width: 1000px) {
	.pc-menu {
	  display: none;
	}

	.pc_tell{
		position: fixed;
		top: 3px;
		right: 70px;
	}
}

@media screen and (max-width: 650px) {
	.pc_tell {
		display: none;
	  }
	
	.sp_tell {
		position: fixed;
		top: 15px;
		right: 65px;
		width: 50px;
		height: 50px;
    }

	.header_tel_call{
		display: block;
		width:50px;
		height:50px;
		border-radius:6px;
		padding:0;
	}
	.header_tel_call a{
		justify-content: center;
		text-align: center;
		padding-top:2px;
		font-size:16px;
		line-height: 20px;
		font-weight: 500;
		font-family: 'Noto Sans JP', sans-serif;
	}
  }


  @media screen and (min-width: 1001px) {
	.sp-menu {
	  display: none;
	}
}
@media screen and (min-width: 651px) {
	.sp_tell {
		display: none;
	  }
  }
  

  @media screen and (max-width: 1050px) {
	header{
	  padding: 0px 5px;
	}

	.head-logo{
		width:20vw;
		min-width:250px;
		height: auto;
		padding-top:10px;
	}	

	  
	  .header_tel_call a {  
		display: flex;
		flex-direction: column;

	  }
	  
	  .header_tel_call a img{  
		  margin: 8px auto 0;
	  }
	  
	  
    footer{
		padding: 20px 0px 0px;
	}

	footer h3 {
		font-size: 20px;
	}

	.ft_content{
		width: 75vw;
		margin: 10px auto 20px;
		flex-direction: column-reverse;
	}

	.ft_texts {
		margin-left: 10px;
		text-align: left;
	}

	.ft_texts p{
		font-size: 16px;
		line-height: 34px;
	}

	iframe{
		width: 100%;
		text-align: center;
		margin-top: 30px;
	}

	.ft_inquiry {
		margin-left:0;
	}

	.ft_inquiry a{
		width:100%;
	}

	#page-top {
		position: fixed;
		right: 15px;
		bottom:20px;
	}
	 .ft_inquiry {
	margin: 20px auto;}

}