@media screen and (min-width: 700px) and (max-width: 1000px){

/* ----------base---------- */
html{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-size: 62.5%;
}
 body{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	color: #666; 
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	font-size: 1.5rem;
	-webkit-text-size-adjust: 100%;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
img{
	border: none; 
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}
a{
	outline: none;
	transition: 0.3s ease;
}
a:link,
a:visited{
	color: #333;
	text-decoration: none;
 	transition: 0.3s ease;
}
a:hover,
a:active{
	color: #000;
	text-decoration: none;
}
.clear{
	clear: both;
}
p{
	line-height: 1.7;
}
a.non{
	pointer-events: none;
	opacity: 0.6;
}




/* ----------pagescroll---------- */
.pagescroll {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 5;
	width: 100%;
}
.pagescroll a{
	display: block;
	margin: 0;
	font-size: 1rem;
	color: #fff;
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 5px;
	background-color: #2a6e2f;
 	transition: 0.3s;
}
.pagescroll a:hover{
	background-color: #eee;
	color: #2a6e2f;
	transform: translate(0,2px);
}


/* ----------header---------- */
.header{
	width: 100px;
	height: 280px;
	background-color: rgba(255,255,255,0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	text-align: center;
}
.header .inner{
	height: 100%;
	display: grid;
	place-items: center;
}
.header img{
	margin-top: -30px;
	width: 40px;
	transition: 0.3s;
}
.header img:hover{
	opacity: 0.7;
}

.home .header{
	height: 100%;
}
.home .header img{
	width: 55px;
	margin-top: -70px;
	transition: 0.3s;
}

/* ----------mv---------- */
.mv{
	width: 100%;
	height: calc(100% - 60px);
	background-color: #2a6e2f;
	position: relative;
   	z-index: 1;
 }
.mv img{
	width: 100% !important;
	height: 100vh !important;
	object-fit: cover !important;
}

/* ----------fv---------- */
.fv{
	width: 100%;
	height: 240px;
	overflow: hidden;
	background-color: #2a6e2f;
	position: relative;
   	z-index: 1;
   	text-align: center;
}
.fv h1{
	position: absolute;
	width: 300px;
	height: 30px;
	top: 80px;
	left: calc(50% - 150px);
	color: #fff;
	line-height: 1;
	font-size: 3rem;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	z-index: 100;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3)); 
}
.fv img{
	height: 100% !important;
	min-height: 240px;
	object-fit: cover !important;
}


/* ----------navi---------- */
.sticky{
	min-height: calc(100vh - 750px);
	display: block;
}
.navi{
	width: 100%;
	height: 60px;
	background-color: #fff;
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
	z-index: 10;
	position: sticky;
	top: 0;
}
.navi ul{
	width: 94%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-around;
	line-height: 60px;
	list-style: none;
	font-size: 1.6rem;
	font-weight: 600;
}
.navi ul li a{
	padding: 17px 10px 13px;
	border-bottom: 5px solid #fff;
}
.navi ul li:first-child a{
	padding-left: 40px;
	background-image: url(../images/logomark.svg);
	background-repeat: no-repeat;
	background-position: left top 16px;
	background-size: 33px;
}
.navi ul li a:hover{
	color: #00663c;
	border-bottom: 5px solid #00663c;
}

.sp-navi,
.menu{
	display: none;
}


/* ----------footer---------- */
.footer{
	clear: both;
	width: 100%;
	margin: 0;
	padding: 60px 0 100px;
	z-index: 1;
	position: relative;
	background-color: #000;
	color: #fff;
	text-align: center;
}
.footer .name{
	font-size: 2.2rem;
}
.footer .copyright{
	font-size: 1.3rem;
}





/* -------section------- */
.section{
	clear: both;
	width: 100%;
	margin: 0;
	padding: 40px 0;
	box-sizing: border-box;
	position: relative;
	background-color: #fff;
}

	
/* ------- news------- */
.section.news{
	background-color: #eff8f1;
}
.section.news .inner{
	width: 94%;
	margin: 0 auto;
	padding: 60px 0;
	display: flex;
}

.section.news .midashi{
	text-align: center;
	width: 100px;
	background-image: url(../images/image_tea.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
}
.section.news .midashi .title{
	font-family: 'Zen Old Mincho', serif;
	font-size: 3rem;
	writing-mode: vertical-rl;
	margin: 0 auto 50px;
	color: #00663c;
}
.section.news .midashi .more a:hover{
	color: #00663c;
}

.section.news .panel{
	width: calc(100% - 100px);
	text-align: left;
	margin-left: 50px;
}
.panel ul{
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.panel li .date{
	font-size: 1.2rem;
	margin: 0;
}
.panel li p{
	font-size: 1.4rem;
	margin: 0;
}
.panel li a img{
	transition: 0.3s;
	width: 100%;
	height: 160px;
	object-fit: cover;
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
}
.panel li a:hover img{
	transform:scale(1.02);
}
.panel li a p{
	transition: 0.3s;
	font-weight: 600;
}
.panel li a:hover p{
	color: #00663c;
	text-decoration: underline;
}


/* ------- banner------- */
.section.banner{
	width: 100%;
	padding: 80px 0;
	margin: 0;
	background-color: #2a6e2f;
	background-position: center center; 	
	background-repeat: no-repeat;	
	background-size: cover;
	background-image: url(../images/bg_banner.jpg);
}
.section.banner ul{
	width: 94%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	list-style: none;
	font-size: 2rem;
	font-weight: 600;	
}
.section.banner ul li{
	width: 33%;
}
.section.banner ul li a{
	display: block;
	text-align: center;
	color: #2a6e2f;
	background-color: #fff;
	width: 90%;
	height: 80px;
	line-height: 80px;
	margin: 0 auto;
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
}
.section.banner ul li a:hover{
	opacity: 0.8;
}




/* ------- contents------- */
.section.contents{
}
.section.contents .inner{
	clear: both;
	width: 94%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}




/*midashi*/
.section.contents h1{
	font-size: 2.4rem;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px solid #ddd;
}
.section.contents h2{
	font-size: 2rem;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	margin: 50px 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px dotted #ccc;
}
.section.contents h3{
	font-size: 1.6rem;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	margin: 50px 0 5px;
	padding: 0 0 5px;
	border-bottom: 1px dotted #ccc;
}

/*listi*/
.section.contents ul{
	margin: 30px 0;
	padding: 0 0 0 25px;
}
.section.contents ol{
	margin: 30px 0;
	padding: 0 0 0 25px;
} 
.section.contents ul li,
.section.contents ol li{
	margin: 5px 0;
	padding: 0;
}

/*link*/
.section.contents p a{
	text-decoration: underline;
}
.section.contents p a:hover{
	color: #2a6e2f;
	text-decoration: underline;
}

.section.contents a.btn{
	display: inline-block;
	color: #fff;
	background-color: #2a6e2f;
	text-decoration: none;
	text-align: center;
	padding: 5px 50px;
	border-radius: 10px;
}
.section.contents a.btn:hover{
	color: #2a6e2f;
	background-color: #eee;
	text-decoration: none;
}



/* -single- */
.single .title{
	font-size: 2rem;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}
.single .date{
	font-size: 1.3rem;
	margin: 0 0 30px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}



/* -pager- */
.pager{
	clear: both;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #ddd;
	margin: 40px 0 0;
	padding: 40px 0 0;
}
.pager span{
	width: 33%;
}
.pager span:nth-child(1){
	text-align: left;
}
.pager span:nth-child(2) {
	text-align: center;
}
.pager span:nth-child(3) {
	text-align: right;
}
.pager a{
	text-decoration: none;
	color: #fff;
	background-color: #2a6e2f;
	display: inline-block;
	padding: 5px 20px;
	transition: 0.3s ease;
	text-decoration: none;
	font-size: 1.3rem;
	border-radius: 0.3em;
}
.pager a:hover{
	color: #2a6e2f;
	background-color: #eee;
}



/* -pagination- */
.pagination{	
	clear: both;
	width: 98%;
	border-top: 1px solid #ddd;
	margin: 40px 0 0;
	padding: 40px 0 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
}
.pagination a{
	width: 28px;
	padding: 5px;
	color: #2a6e2f;
	background-color: #fff;
	transition: 0.3s ease;
	text-decoration: none;
	border-radius: 0.3em;
	margin: 0 2px;
}
.pagination a:hover{
	color: #fff;
	background-color: #2a6e2f;
}
.pagination span{
	width: 28px;
	padding: 5px;
	color: #2a6e2f;
	background-color: #fff;
	transition: 0.3s ease;
	text-decoration: none;
	border-radius: 0.3em;
	margin: 0 1px;
}
.pagination span.current{
	color: #fff;
	background-color: #2a6e2f;
}
.pagination a.next,
.pagination a.prev{
	color: #2a6e2f;
}
.pagination a.next:hover,
.pagination a.prev:hover{
	color: #fff;
}






}
