@charset "utf-8";

body{font-family: 'Shippori Mincho', serif; font-weight:500;font-size: max(0.8vw, 14px); line-height:1.6; color:#191919; text-align:left;}

*:hover{transition:0.2s all;}
@media screen and (max-width: 1050px) {
html {  height: -webkit-fill-available;}
body {overflow: scroll;min-height: 100vh;min-height: -webkit-fill-available;}
}

@media screen and (min-width: 1051px) {
main {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
}


header{ position: absolute; bottom:0; right:0;  height:120px;display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center;z-index:2;}

@media screen and (min-width: 1051px) {
header.none{display:none;/*アニメーション設定*/}
}

header .box{margin-left:auto; margin-right:45px;display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center;height:80px;}
header .goTop{color:#5C7448; width:80px; font-size:30px; position:absolute; left:120px; top:27px;line-height: 1; }
header .goTop a{text-decoration:none;}
header .goTop:hover{
	color: #9AC673;
}

header .chapter{ width:90px;  position:relative; margin-left:7px;    cursor: pointer;    display: inline-block;}

@media screen and (max-width: 1300px) {
header .chapter{ width:60px; }
header .chapter img{height:50px !important; width:100%; object-fit:cover;}
header .chapter.active .photo img{height:60px !important ;}
}



header .chapter.active{
	z-index: 0;
	background-color: #CE9007;
}
header .chapter .title{display:none;}
header .chapter.active .title{
	position: absolute;
	bottom: 0px;
	width: 100%;
	background: rgba(255,255,255,0.6);
	font-family: 'Shippori Mincho', serif;
	font-size: 11px;
	color: #CE9007;
	text-align: center;
	padding:2px;
	z-index:1;
	display:block;
	
}
header .chapter .title span{	border-left: 3px solid #CE9007;padding-left:5px; font-weight:bold;
}
header .chapter .photo{}
header .chapter .photo img{width:100%; object-fit: cover;
    height:100%; transition:0.2s all;}

header .chapter.active .photo img{height:65px; }

header .chapter .photo img:hover{ transform:scale(1.3,1.3); transition:0.1s all; position:relative; z-index:10; border: solid 2px #97B97A;}
header .chapter.active .photo img:hover{ transform:scale(1,1);border:none; position: static;}
header .chapter .description {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #000;
    border-radius: 0px 15px 0px 0px;
    background: rgba(255,255,255,0.9);
    width: 200px;
	border-left:solid 5px #97B97A; z-index:11;}
header .chapter .description:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 20%;
    border: 10px solid transparent;
    border-top: 30px solid rgba(255,255,255,0.9);
    margin-left: -15px;
}
header .chapter:hover .description{
    display: inline-block;
    top: -140px;
    left: -30px;
	
}
header .chapter .description h3.underline{font-size:18px; font-weight:bold; color:#97B97A;}
header .chapter .description h3.underline:after{background-color:#97B97A;}

@media screen and (max-width: 1050px) {
header .box{ height:auto;}
header .goTop{display:none;}
header .chapter{display:none;}
header:nth-child(2){display:none;}
}
/*====================
▲クリック
=====================*/
.menu-btn {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
    height: 80px;
    width: 23px;
    justify-content: center;
    align-items: center;
    z-index: 1;
	background-color: #97B97A;
}
.menu-btn span{width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #FFF;transition: all 0.5s; 
  position:absolute; right:4px; top:40px;}
  
  
  
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span{
    bottom: 0;
    transform: rotate(180deg);
	transition: all 0.5s;/
}
#menu-btn-check {
    display: none;
}
.menu-content {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;/*メニューを画面内へ*/
	background-color: #B6D69B;
	transition: all 0.5s;/*アニメーション設定*/
	height: 80px;
	padding-top: 0px;
	display:-webkit-box;display:flex;
	background-image: url(../image/bg-menu-content.png);
	background-size: contain;
	
}
#menu-btn-check:checked ~ .menu-content {
	left: calc(100% - 290px);
	border-radius: 15px 0px 0px 0px;
}

.chapter01 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 290px);}
.chapter02 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 340px);}
.chapter03 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 340px);}
.chapter04 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 370px);}
.chapter05 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 310px);}
.chapter06 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 260px);}
.chapter06 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 290px);}
.chapter07 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 290px);}
.chapter08 #menu-btn-check:checked ~ .menu-content{left: calc(100% - 340px);}


#menu-btn-check ~ .menu-content .navi-main{display:block;}
#menu-btn-check:checked ~ .menu-content .navi-main{display:none; }
#menu-btn-check:checked ~ .menu-content .goTop{display:none;}

#menu-btn-check:checked ~ .menu-content .box {
    margin-left: 5px;
}


.chapter01 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter01 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}


.chapter02 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter02 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter03 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter03 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter04 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter04 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter05 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter05 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter06 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter06 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter07 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap08,
.chapter07 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter08 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter08 #menu-btn-check:checked ~ .menu-content .chap09{display:none;}

.chapter09 #menu-btn-check:checked ~ .menu-content .chap01,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap02,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap03,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap04,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap05,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap06,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap07,
.chapter09 #menu-btn-check:checked ~ .menu-content .chap08{display:none;}







@media screen and (max-width: 1050px) {
.menu-content{top:0px; right:0px;background-image: url(../image/bg-menu-content-sp.png);height: 45px;}
.menu-btn{display:none;}
}



/*====================
ドロップダウン（レイアウト）
=====================*/
.globalnav-wrap {
  position:absolute; left:10px; bottom:0px;
   

}

.globalnav .dropdown-btn {
  display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;-webkit-box-pack: center;justify-content: center;-webkit-box-align: center;align-items: center;
  cursor: pointer;
   width:100px;
  height:80px;
}

.globalnav .dropdown-btn span.line,
.globalnav .dropdown-btn span.line:before,
.globalnav .dropdown-btn span.line:after {
    content: '';
    display: block;
    height: 3px;
    width: 42px;
    border-radius: 3px;
    background-color: #5C7448;
    position: absolute;
}
.globalnav .dropdown-btn span.line:before {
    bottom: 12px;
}
.globalnav .dropdown-btn span.line:after {
    top: 12px;
}

.globalnav .dropdown {
  z-index: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height:calc(100vh - 80px);
  padding: 10px 20px;
  display: none;
  background:#FFF;
}

.globalnav .dropdown .logo img{width:100px;}
.globalnav .dropdown img.salad{width:200px; position:absolute; bottom:10px; right:30px;}

.globalnav .nav-button-wrap,
.globalnav .open {

}




.globalnav .close {
  display: block;
}


@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.dropdown .box{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;align-items: flex-start;
	height: auto;
	margin-left: 0px;
	font-family: 'Shippori Mincho', serif;

	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 80%;
}
.dropdown .cover{ width:20%;}
.dropdown .cover .item .photo{}
.dropdown .cover .item .photo img{width:100%; height:58vh; object-fit:cover;margin-bottom:20px;transition: 0.2s; }
.dropdown .cover .item .text{}
.dropdown .cover .item h3{font-size: max(1.7vw, 16px);font-weight:bold;  }
.dropdown .cover .item h3.underline{color:#000; }
.dropdown .cover .item h3.underline:after{background: #F4FFBF;}
.dropdown .contents{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;flex-wrap: wrap; width:75%;flex-wrap: wrap;}
.dropdown .contents h2{ font-size: max(2vw, 18px); width:100%; line-height:1; font-weight:bold; margin-bottom:20px;}
.dropdown .contents .item-wrap{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;width: 100%;}
.dropdown .contents .item{width:42%;margin-right: 20px;}
.dropdown .contents .item a{margin-bottom:23px; width:100%;display: block;}

.dropdown .contents .item a:last-child{margin-bottom:0px;}
.dropdown .contents .item .unit{display:-webkit-box;display:flex; -webkit-box-align: center;align-items: center;-webkit-box-pack: justify;justify-content: space-between;height:11vh; }
.dropdown .contents .item .unit .photo{ margin-right:20px;height: 100%; width:48%;}
.dropdown .contents .item .unit .photo img{width:100%; height: 100%; object-fit:cover; transition: 0.2s;}
.dropdown .contents .item .unit .text{font-family: 'Shippori Mincho', serif;font-weight:bold;transition: 0.2s;overflow: hidden; width:48%;font-size: 0.8vw;}
.dropdown .contents .item .unit .text h3{font-size: max(1.1vw, 16px);font-weight:bold;color:#000;display:-webkit-box;display:flex;transition: 0.2s;}
.dropdown .contents .item .unit .text h3:after{background:#000;}


.dropdown .cover .item a:hover{color:#97B97A;}
.dropdown .cover .item a:hover h3{color:#97B97A;}
.dropdown .cover .item a:hover h3:after{background:#97B97A;}
.dropdown .cover .item a:hover h3 span:after{background:#97B97A;}
.dropdown .cover .item a:hover .photo img{transform: scale(1.1);transition: 0.2s; }




.dropdown .contents .item a:hover .unit .text{color:#97B97A;}
.dropdown .contents .item a:hover .unit .text h3{color:#97B97A;}
.dropdown .contents .item a:hover .unit .text h3:after{background:#97B97A;}
.dropdown .contents .item a:hover .unit .text h3 span:after{background:#97B97A;}
.dropdown .contents .item a:hover .unit .photo img{transform: scale(1.1); }



@media screen and (max-width: 1050px) {
.globalnav-wrap{ display: flex;  justify-content: space-between; position:static;}
.globalnav .dropdown-btn{position: relative;  display: inline-block;  cursor: pointer;}
.dropdown-btn span.line{display:none !important;}
.nav-button-wrap {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1000;
    cursor: pointer;
    padding: 15px;
    height: 53px;
  }

  .globalnav {
    display: none;
  }
  .globalnav .close {
    display: none;
  }

  .globalnav-wrap.open .globalnav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
	background:rgba(0, 0, 0, .6);
  }

  .globalnav-wrap.open .globalnav .dropdown {
	display: block;
	position: static;
	background: #FFF;
	overflow: auto;
	background-image: none;
	background-color: #FFF;
	border-left: 40px solid rgba(0, 0, 0, .1);
	background-clip: padding-box;
	height: 100vh;
	padding-left: 20px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
  }

  .nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.3s;
  }

  .nav-button {
    z-index: 20;
    width: 25px;
    height: 19px;
    position: relative;
  }

  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5C7448;
    border-radius: 4px;
  }

  .nav-button span:nth-of-type(1) {
    top: 0;
  }

  .nav-button span:nth-of-type(2) {
    top: 8px;
  }

  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }

  .active .nav-button span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  .active .nav-button span:nth-of-type(2) {
    opacity: 0;
  }

  .active .nav-button span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }


.dropdown h2{ font-size: 8vw; padding:10px;}
.dropdown .cover{margin-bottom:20px;}
.dropdown .cover .item h3{
	font-size: 20px;
	font-size: 6vw;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.dropdown .box{display:block; padding:0px; margin-right:0px; position:static;top: auto;left:auto;transform: none;-webkit-transform: none;width: auto;}
.dropdown .cover{width:100%;}
.dropdown .cover .item .text{padding:0px 10px;}
.dropdown .cover .item .photo img{height:80px; margin-bottom:10px;}
.dropdown .contents{width: 100%;}
.dropdown .contents h2{font-size:7vw;}
.dropdown .contents .item-wrap{}
.dropdown .contents .item{ display:block;width:47%; margin:0 auto;}
.dropdown .contents .item a{width:100%; margin-bottom:0px;}

.dropdown .contents .item .unit{display:block; height: auto; margin-bottom:20px; position:relative;}
.dropdown .contents .item .unit .text{padding:3px; position:static; width:100%; font-size:11px;}
.dropdown .contents .item .unit .text p{}
.dropdown .contents .item .unit .text h3{font-size: 14px; }
.dropdown .contents .item .unit .text h3.underline{margin-bottom:5px;}
.dropdown .contents .item .unit .photo{margin-right:0px;width:100%;}
.menu-btn2{top:0px; right:15px; bottom:auto; left:auto; height: 50px;    width: 50px;}
.pagenation{display:none;}

.dropdown .contents a.interview{width:90%; margin:0 auto;}
.dropdown .contents a.interview .unit{display:-webkit-box;display:flex;background:#FFF7E3; margin-bottom:0px;}
.dropdown .contents a.interview .unit .text{width:50%; padding:10px;display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;-webkit-box-pack: center;justify-content: center;}
.dropdown .contents a.interview .unit .photo{ width:50%;}
.dropdown .contents a.interview .unit .photo img{width:100%; height: 100%; object-fit:cover;}
.dropdown .contents a.interview .unit .title{font-family: 'Shippori Mincho', serif;
 }
.dropdown .contents a.interview .unit{height:110px;}
.dropdown .contents a.interview .unit h3{font-size:15px;    margin-bottom: 0px; font-weight:bold;}

.dropdown .contents a.active .unit .text h3{border-left:solid 3px #CE9021; color:#CE9021;}


.dropdown .foot{background:#97B97A; width:100%; margin-top:20px; position:relative;}
.dropdown .foot ul{display:-webkit-box;display:flex;}
.dropdown .foot ul li{width:50%; text-align:center;}
.dropdown .foot ul li a{color:#FFF; font-size:30px;}
.globalnav .dropdown img.salad{width: 150px;
    position: absolute;
    bottom: 50px;
    right: 0px;}

}




/*====================
ドロップダウン（コンテンツ）
=====================*/


h3.underline{display: flex;  -webkit-box-align: end;	align-items: flex-end; font-size:2vw; color:#D3F0C1;font-family: 'Shippori Mincho', serif;
 line-height:1; margin-bottom:10px; font-weight:500;}
h3.underline:after{content:''; flex-grow: 1;/* 余白を分け与える */
  height: 1px;
  background: #FFF; margin-left:10px;}

.time-box{
	position: absolute;
	bottom: 100px;
	left: 0px;
	height: 80px;
	background: #FFF;
	border-radius: 0px 15px 15px 0px;
	color: #000;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	font-size: max(1.2vw, 18px);
	padding-top: 10px;
	padding-right: 3%;
	padding-bottom: 10px;
	padding-left: 3%;
}
.time-box .ic img{width:60px; height:auto;}
.time-box .text{margin-left:20px;font-family: 'Shippori Mincho', serif; font-weight:bold;}
.time-box .text span{ color:#6DC7D3;}
.time-box .text img{    vertical-align: middle; margin-left:10px;}
.title-text{position:absolute; top:30px; right:30px;z-index: 1; width:15vw;}
.title-text img{width:100%; height:auto;}
.text{line-height:1.75;font-family: 'Noto Sans JP', sans-serif; letter-spacing:1px;}
.btn-orange{background-image:url(../image/btn-orange.png); background-repeat:no-repeat; width:266px; height:61px; text-align:center; line-height:55px; position:absolute;font-family: 'Noto Sans JP', sans-serif; font-size:15px;color:#FFF;}
.btn-orange a{color:#FFF; display:block}
.btn-orange.left{bottom:100px; left:20px;}
.btn-orange.right{bottom:100px; right:20px;}
.btn-orange i{margin-left:10px;}
@media screen and (max-width: 1050px) {
.title-text{position:static; padding:5%; width:80%;}
.time-box{	height: 10vh;	background: #FFF;	font-size: 14px;	padding: 5%;	padding-right: 10px;	padding-bottom: 5%;	padding-left: 10px;	bottom:0px;	border-radius: 0px 15px 0px 0px;}
.time-box .ic img{width:7vw; height:auto;}


.time-box img{width:40px; height:auto;}
.time-box .text{margin-left:10px;font-family: 'Shippori Mincho', serif; font-weight:bold;line-height: 1.5; font-size:4vw;}
.time-box .text img{width:2vw;}
.text{font-size:3.5vw;}
.btn-orange{position:static; margin:20px auto;}
}
/*====================
部品
=====================*/
.green{color:#94A26D;}
.gray{color:#939393;}
.text-small{font-size:80%;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}

@media screen and (max-width: 1050px) {
.text-small{font-size:90%;}
.mb40-sp{margin-bottom:40px;}
.pt0-sp{padding-top:0px;}
.pt50-sp{padding-top:50px;}
.pb100-sp{padding-bottom:100px;}

}
/*====================
type1　index トップ
=====================*/
.page1{ position:relative; background-image:url(../image/index-page01.jpg.webp); background-repeat:no-repeat; background-size: cover;background-position: top left 50%;  }
.page1 .logo{top:-40px;}
.page1 .text-left{width:60px; text-align:center;height:100%;background:#FFF; position:absolute; top:0; left:0;}
.page1 .text-left img{width:12px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);}
.page1 .text-right{width:60px;position:absolute; right:0px; top:0px;background:#FFF;height:100%;}
.page1 .text-right img{width:12px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);}
.page1 .copy{width:30%;position:absolute; left:150px; top:360px; animation: fadeIn 1.5s ease 1.2s 1 normal backwards;}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page1 .copy img{width:100%;}
.page1 .main-logo{background:#FFF; position:absolute; top:0; left:60px; width:100%; height:60px; padding-top:5px;}
.page1 .main-logo img{height:50px; width:auto;}
.page1 .main-logo img:nth-child(2){height:30px; margin-left:10px;}
.page1 .main-logo img:nth-child(3){height:22px;margin-left:10px;}

.page1 .main-logo h1{}
.page1 .main-logo h1 a{display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center;}
.page1 .kv{height:100vh; width:100vw;padding: 30px;}
.page1 .kv.p0{padding:0px;}
.page1 .kv img{width:100%; height:100%; object-fit:cover;}
.page1 .text-img01{position:absolute;top: 10%;    right: 5%;    width: 30%;}
.page1 .text-img01 img{width:100%; height:auto;}
.page1 .text-img02{position:absolute;top: 60%;    left: 5%;    width: 30%;}
.page1 .text-img02 img{width:100%; height:auto;}
.page1 .text-img03{position:absolute;top: 65%;    right: 5%;    width: 35%;}
.page1 .text-img03 img{width:100%; height:auto;}
.page1 .text-img04{position:absolute;top: 45%;    right: 5%;    width: 35%;}
.page1 .text-img04 img{width:100%; height:auto;}
.page1 .btn-salad{position:absolute; left:10px; bottom:10px; width:auto;}
.page1 .btn-salad a{
	display: block;
	border-radius: 25px;
	background: rgba(255,255,255,0.7);
	color: #567914;
	border: solid 1px #567914;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	margin-top:10px;
}
.page1 .btn-salad a:hover{color: #FFF; background:rgba(103, 131, 71, 0.6)}



@media screen and (max-width: 1050px) {
.page1{background-image:url(../image/index-page01-sp.jpg);    height: 100vh;width: 100vw;    background-size: cover; background-position: top left 100%;}
.page1 .logo{top:0px;}
.page1 .copy{ position:absolute; top: 45vh;    left: 3vw;    width: 70%;}
.page1 .text-left{display:none;}
.page1 .text-right{display:none;}
.page1 .main-logo{display:none;}
}



/*====================
type2　index 2枚目
=====================*/
.page2{
	color: #FFF;
}
.page2 .kv{height:100vh; width:100vw;}
.page2 .kv img{width:100%; height:100%; object-fit:cover;}
.page2 .copy{position:absolute; top:40vh; left:2vw;}
.page2 .copy.isFade{animation-name:fadeInAnime;animation-duration:1.5s;animation-fill-mode:forwards;opacity:0;animation-delay: 2.5s;}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.page2 .copy img{margin-bottom:15px; }
.page2 .copy h2{color:#FFF; font-size:2.5vw;}
.page2 .copy .text{font-family: 'Noto Sans JP', sans-serif;}

.page2 .item-box{background:rgba(11,57,25,0.55); position:absolute;    top: 16%;    right: 0%;    width: 40vw;    height: 60vh;}
.page2 .item-box .text{font-family: 'Shippori Mincho', serif;}
.page2 .item01{position:absolute; top:5%; left:5%; width:40%;}
.page2 .item02{position:absolute; top:22%; left:50%; width:40%;}
.page2 .item03{position:absolute; top:39%; left:5%; width:40%;}
.page2 .item04{position:absolute; top:56%; left:50%; width:40%;}
.page2 .item05{position:absolute; top:73%; left:5%; width:40%;}

.page2 .item01.isFade,
.page2 .item02.isFade,
.page2 .item03.isFade,
.page2 .item04.isFade,
.page2 .item05.isFade{animation: fadeIn2 1s ease 1.0s 1 normal backwards;}

.page2 .item01.isFade{animation-delay: 1.0s;}
.page2 .item02.isFade{animation-delay: 1.2s;}
.page2 .item03.isFade{animation-delay: 1.4s;}
.page2 .item04.isFade{animation-delay: 1.6s;}
.page2 .item05.isFade{animation-delay: 1.8s;}




@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.page2  h3{font-size: 2vw;color: #FFF; line-height: 1;    margin-bottom: 10px;}
.page2  h3 span{font-size:1vw; margin-left:20px;   }



@media screen and (max-width: 1050px) {
.page2{ background:none; position:relative;}
.page2 .kv{height:35vh ; }
.page2 .kv img{width:100%; height:100%; object-fit:cover;}
.page2 .copy{position:static; background:#FFF; height:auto; padding:40px 20px;}
.page2 .copy .text{width:auto; color:#3C3C3C; text-align:center;}
.page2 .copy h2{color:#94A26D; text-align:center; font-size:7vw; margin-bottom:15px; }
.page2 .item-box{
	margin-top: -40px;
	margin-bottom: 0px;
	margin-left: 5%;
	margin-right: 5%;
	background: rgba(255,255,255,0.8);
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	width: 100%;
	padding-top: 7%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
	height: auto;
}
.page2 .item-box .item{width:48%;}
.page2 .item-box a{display:block; width:100%;}
.page2 .item01,
.page2 .item02,
.page2 .item03,
.page2 .item04,
.page2 .item05,
.page2 .item06,
.page2 .item07,
.page2 .item08{position:static; color:#000; width:100%; margin-bottom:20px; display:block;}

.page2 h3{font-size:5vw;color: #000;}
.page2 h3:after{background:#000;}
.page2 h3 span{font-size:3vw;}
}



/*====================
type3　index 3枚目の湯浅の地図
=====================*/
.page3{color:#FFF;}
.page3 .stage{display:-webkit-box;display:flex;background-image:url(../image/index-page03.jpg.webp); background-repeat:no-repeat; background-size: cover;background-position: center left 50%; }
.page3 .stage .map{ width:67%;    position: relative;height: 100vh;}
.page3 .stage .nav{ width:33%;background:rgba(255,255,255,0.55);}
.page3 .stage .nav h3.underline{font-size: max(1.4vw, 20px); line-height:1.2; }
.page3 .stage .nav h3.yuasa-ai{font-size: max(1.1vw, 14px);display: inline-block; line-height:1.3; color:#000;font-weight: normal;}
.page3 .stage .nav h3.yuasa-ai span{font-weight:bold;}



.page3 .map .box{ position: absolute;    top:47%;    left: 50%;    transform: translate(-50%, -50%);    -webkit-transform: translate(-50%, -50%);	width:75%;}
.page3 .map .box .text-town-name{display: flex;  -webkit-box-align: end;	align-items: flex-end;margin-bottom:20px;}
.page3 .map .box .text-town-name::after{content:''; flex-grow: 1;/* 余白を分け与える */  height: 2px;  background: #F4FFBF; margin-left:10px;}
.page3 .map .box .text-town-name h2 img{width:25vw;}

.page3 .map .box .item{background:rgba(61,111,86,0.6);display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;font-family: 'Noto Sans JP', sans-serif; padding:40px;height: 55vh;}
.page3 .map .box .item .left{width:40%;display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center;}
.page3 .map .box .item .left .text{line-height:2;}
.page3 .map .box .item .right{width:48%;display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;}
.page3 .map .box .item .right .photo{margin-bottom:10px; text-align:center;}
.page3 .map .box .item .right .photo img{ width: 70%; min-width:250px;}
.page3 .map .box .item .right h3.underline{font-size:1.4vw; margin-top:auto;}

.page3 .nav{padding:20px 30px;}
.page3 .nav .box{ padding-bottom:20px;}
.page3 .nav .box:last-child{ padding-bottom:0px;}
.page3 .nav .box h3{color:#26723D;margin-bottom:40px;}
.page3 .nav .box h3:after{background:#26723D;}
.page3 .nav .box .item{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;-webkit-box-align: center;align-items: center; margin-bottom:30px; height:13vh;}
.page3 .nav .box .item h4{ color:#000;font-size: max(0.8vw, 14px); font-weight:bold;}
.page3 .nav .box .item .text{font-family: 'Shippori Mincho', serif; width:68%;color:#000;font-size: max(0.6vw, 12px);}
.page3 .nav .box .item .photo{width:30%; height:100%; }
.page3 .nav .box .item .photo img{width:100%; height:100%; object-fit:cover;}

@media screen and (max-width: 1050px) {
.page3 .stage{
	display: block;
    padding-top: 80px;
    margin-bottom: 40px;
    margin-top: -40px;
}

.page3 .stage .map{ width:100%;    height: auto; padding:0 5%;}
.page3 .stage .map .box{ position:static;    top:auto;    left: auto;    transform:none;    -webkit-transform:none;	width:100%;}
.page3 .map .box .text-town-name{display:block; border-bottom:solid 1px #F4FFBF; padding-bottom:0px;}
.page3 .map .box .text-town-name::after{margin-left:0px;}

.page3 .map .box .text-town-name h2 img{width:80%;}
.page3 .stage .map .box .item{display:block;padding: 5%;
    height: auto; margin-bottom:40px;}
.page3 .map .box .item .left{display:block; width:100%;}
.page3 .map .box .item .left .text{margin-bottom:20px; }

.page3 .map .box .item .right{display:block; width:100%;}
.page3 .map .box .item .right h3.underline{font-size:5vw;}

.page3 .map .box .item .right .photo{margin-bottom:20px; }
.page3 .map .box .item .right .photo img{ min-width:100%;}
.page3 .stage .nav{ width:100%;padding: 5%;background:rgba(255,255,255,0.8);}
.page3 .nav .box h3{ margin-bottom:10px;}
.page3 .stage .nav h3.underline{font-size:7vw;}
.page3 .nav .box .item{height:auto;-webkit-box-align: start;align-items: flex-start;}
.page3 .nav .box .item .photo{width:35%; margin-top:5px; }
.page3 .nav .box .item .text{width:60%;font-size:max(0.7vw, 14px);}

}


/*====================
type4　人物紹介
=====================*/
.page4{color:#000;}
.page4 .box{ position: absolute;
    top:47%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	width:75%;
	display:-webkit-box;display:flex;
	-webkit-box-pack: justify;justify-content: space-between;
	max-height: 70vh;
}



.page4 .box .left{width:47%;display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center;}
.page4 .box .left .photo{margin-bottom:10px; text-align:center;}
.page4 .box .left .photo img{max-height: 70vh; width:100%;}
.page4 .box .right{width:47%;display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;-webkit-box-pack: center;justify-content: center;}

.page4 .box .right.isFade{animation: fadeIn 1s ease 1.5s 1 normal backwards;}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.page4 .box .right h3.underline{font-size:25px;color:#000;    position: relative;}
.page4 .box .right h3:after{background: #000; }
.page4 .box .right h3:before{position: absolute;       bottom: -4vh;   right: 0px;    content: 'INTRODUCTION';    color: #ECF4F0;    font-size: 2vw;    letter-spacing: 5px;}
.page4 .box .right h3 span{display:block;}
.page4 .box .right .kana{font-size:14px; line-height:1; letter-spacing:1px; margin-bottom:40px;}

@media screen and (max-width: 1050px) {
.page4{position:relative;}
.page4 .box{position:static; max-height:initial; top: initial;    left: initial;    transform: none;    -webkit-transform:none; display:block;    width: 100%;  margin-bottom:20px;}
.page4 .box .left{width:100%;}
.page4 .box .left .photo{margin-bottom:40px;}
.page4 .box .right{width:100%; padding:1% 5%;}
.page4 .box .right .kana{display:none;}
.page4 .box .right h3.underline{display:inline-block; font-size:7vw; border-bottom:solid 1px #000; padding-bottom:5px; margin-bottom:20px;}
.page4 .box .right h3:before{content:none;}
.page4 .box .right h3 span{display:inline;    font-size: 4vw;    margin-left: 20px;}
}









/*====================
type5　各表紙
=====================*/
.page5{}
.page5 .kv{height:100vh; width:100vw;}
.page5 .kv.p30{padding:30px;}
.page5 .kv img{width:100%; height:100%; object-fit:cover;}
.page5 .text-img01{position:absolute;top: 30vh;    left: 5vw;    width: 30vw; background:rgba(11,57,25,0.55); color:#FFF; padding:20px;}
.page5 .text-img01 img{width:90%; height:auto; margin-bottom:10px;margin-top: -65px;}
.page5 .text-img01 .copy{text-shadow: 0px 3px 6px #000000; font-size:1.5vw; margin-bottom:20px; letter-spacing:2px;}
.page5 .text-img01 .corporate{font-size:0.8vw; margin-bottom:30px;}
.page5 .text-img02{position:absolute;top: 58vh;    left: 3vw;    width: 30vw;}
.page5 .text-img02 img{width:100%; height:auto;}
.page5 .text-img03{position:absolute;top: 36vh;    left: 5vw;    width: 36vw;}
.page5 .text-img03 img{width:100%; height:auto;}
.page5 .text-img04{position:absolute;top: 20vh;    left: 5vw;    width: 36vw;}
.page5 .text-img04 img{width:100%; height:auto;}
.page5 .text-img05{position:absolute;top: 50vh;    right: 5vw;    width: 36vw;}
.page5 .text-img05 img{width:100%; height:auto;}
.page5 .text-img06{position:absolute;top: 40vh;    left: 5vw;    width: 30vw; background:rgba(11,57,25,0.55); color:#FFF; padding:20px;}
.page5 .text-img06 .copy{text-shadow: 0px 3px 6px #000000; font-size:1.5vw; margin-bottom:20px; letter-spacing:2px;}
.page5 .text-img06 img{width:90%; height:auto; margin-bottom:10px;margin-top: -65px;}
.page5 .text-img07{position:absolute;top: 60vh;    left: 0vw;    width: 36vw;}
.page5 .text-img07 img{width:100%; height:auto;}

@media screen and (max-width: 1050px) {
.page5{position:relative; padding-top:45px; }
.page5 .kv{height:auto; width:100%;}
.page5 .kv img{width:100%; height:auto; margin-bottom:30px;}
.page5 .text-img01{position:static;top: auto;    left: auto;    width: auto;background:#FFF; padding-top:0px;}
.page5 .text-img01 img{width:100%; height:auto;}
.page5 .text-img01 .copy{font-size:5vw; color:#5C7448; text-shadow:none;}
.page5 .text-img01 .corporate{font-size:3vw; color:#5C7448;}
.page5 .text-img01 .text{color:#8E9872;}
.page5 .text-img04{position:absolute;top: 13%;    left: 5%;    width: 80%;}
.page5 .text-img04.bottom{top:auto; bottom:10%;}
.page5 .text-img04 img{width:100%; height:auto;}
.page5 .text-img05{position:absolute;top: 13%;    left: 5%;    width: 80%;}
.page5 .text-img05.bottom{top:auto; bottom:30%;}
.page5 .text-img05 img{width:100%; height:auto;}
.page5 .text-img06{position:static; width: 100%; padding:5%;background:#FFF; color:#3C3C3C;}
.page5 .text-img06 img{width:100%; height:auto;}
.page5 .text-img06 .copy{text-shadow: none; font-size:4.5vw;color:#3D6F56; font-weight:bold; }

.page5 .text-img07{position:static;top: 100%;  padding:5%; width: 100%;}
.page5 .text-img07 img{width:100%; height:auto;}
.page5 .text-img04.chapter06{top: 30%;right: 2%;   left: auto;}
}



/*====================
type6　左テキスト記事
=====================*/
.page6 .box{position: absolute;
    top: 50vh;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	height: 70vh; text-align: right;
	width:100%;
	position:relative;
	}
.page6 .box img{height:100%; width:60%; object-fit:cover;     object-position: bottom;}
.page6 .box.p40{padding:40px;}
.page6 .box .left{width:45%; position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	background:#FFF;
	padding:20px 40px;
	height:auto; text-align:left;}
	
.page6 .box .left h3{font-size:30px;}
.page6 .box .left h4{font-family: 'Shippori Mincho', serif;
}
.page6 .box .left .copy{color:#94A26D; border-bottom:solid 1px #000; padding-bottom:5px; margin-bottom:10px;}
.page6 .box .left .text{}
.page6 .box .left .text.flex{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between; }
.page6 .box .left .text.flex .unit{width:48%; padding-top:10px;}
.page6 .box .left .text img{width:auto; height:auto;    vertical-align: middle; margin-left:10px;margin-bottom: 3px;}
.page6 .box .left .text a{ text-decoration:underline;}


@media screen and (max-width: 1050px) {
.page6{position:relative;}
.page6 .photo img{width:100%; height:auto;}
.page6 .box{position: static;    transform:none;    -webkit-transform:none;	height: auto; background-image:none; width:100%; padding:0%;}
.page6 .box.reverse{display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;-webkit-box-orient: vertical;-webkit-box-direction: reverse; flex-direction: column-reverse;}



.page6 .box img{width:100%; height:auto; margin-bottom:20px;}
.page6 .box .left{width:100%; padding-top:0px; position:relative; top: initial;    left: initial;    transform: none;    -webkit-transform:none; display:block; padding:5%;  }
.page6 .box .left h3{font-size:6.5vw;}
.page6 .box .left .copy{font-size:4.5vw;}
.page6 .box .left .text.flex{ margin-bottom:20px; }

.page6 .box .left .text img{width:50px; height:auto;    vertical-align: middle; margin-left:10px; margin-bottom:6px;}

}



/*====================
type7　右テキスト記事
=====================*/
.page7 .box{position: absolute;
    top: 50vh;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	height: 70vh; text-align: left;
	width:100%;
	position:relative;
	}
.page7 .box.h-100{height: 100vh;}
.page7 .box img{height:100%; width:60%; object-fit:cover;     object-position: right top;}
.page7 .box.text-center{text-align:center;z-index: 1;}
.page7 .box.text-center .photo{height:100%;}
.page7 .box .right{width:45%; position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	background:#FFF;
	padding:20px 40px;
	height:auto; text-align:left;}
.page7 .box .right h3{font-size:30px;}
.page7 .box .right h4{font-family: 'Shippori Mincho', serif;
}
.page7 .box .right .copy{color:#94A26D; border-bottom:solid 1px #000; padding-bottom:5px; margin-bottom:10px;}
.page7 .box .right .text a{ text-decoration:underline;}
.page7 .box .right .text.flex{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;}
.page7 .box .right .text.flex .unit{width:48%;}
.page7 .box .right .text img{width:auto; height:auto;    vertical-align: middle; margin-left:10px;margin-bottom: 3px;}
@media screen and (max-width: 1050px) {
.page7{position:relative;}
.page7 .photo img{width:100%; height:auto;}
.page7 .box{position: static;    transform:none;    -webkit-transform:none;	height: auto; background-image:none; width:100%; padding:0%;}
.page7 .box.reverse{display:-webkit-box;display:flex;-webkit-box-orient: vertical; -webkit-box-direction: normal;  flex-direction: column;-webkit-box-orient: vertical;-webkit-box-direction: reverse; flex-direction: column-reverse;}



.page7 .box img{width:100%; height:auto; margin-bottom:20px;}
.page7 .box.text-center{width:100%;  margin-top:-40px;}
.page7 .box.text-center img{width:60%;}
.page7 .box.text-center .photo{text-align:right;}
.page7 .box .right{width:100%; padding-top:0px; position:relative; top: initial;    left: initial;    transform: none;    -webkit-transform:none; display:block; padding:5%;  }
.page7 .box .right h3{font-size:6.5vw;}
.page7 .box .right .copy{font-size:4.5vw;}

.page7 .box .right .text img{width:50px; height:auto;    vertical-align: middle; margin-left:10px; margin-bottom:6px;}
.page7 .box.h-100{height: auto;}
}



/*====================
type8 MOVIE
=====================*/
.page8 { position:relative;}
.page8 .box{ position: absolute;top: 45vh;left: 0%;transform: translateY(-50%);-webkit-transform: translateY(-50%); height: 50vh;display:-webkit-box;display:flex; width: 100%;}
.page8 .box .left{
	width: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.page8 .box .left .item{ margin-left:40%; margin-right:7%;width: 45%;}
.page8 .box .left .item h3{ color:#000; font-weight:bold; margin-bottom:20px; width:100%;}
.page8 .box .left .item h3.underline{ font-size:3vw;}
.page8 .box .left .item h3.underline:after {background: #000;}
.page8 .box .left .item .copy{ margin-bottom:60px; border-bottom:solid 1px #000; padding-bottom:5px; font-size:1.5vw;}
.page8 .box .right{width: 50%;}
.page8 .box .right img{width:100%; height:100%; object-fit:cover;}
.youtube__aspect-ratio {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube__aspect-ratio iframe {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1050px) {
.page8{position:relative;}
.page8 .box{ position: static;transform: none;-webkit-transform:none; height: auto; margin-top:40px; }
.page8 .box .left{width:100%;background-image:none;}
.page8 .box .left .item{margin:0px; width:100%;}
.page8 .box .left .item h3.underline{width:100%; padding-left:10px; font-size:8vw;}
.page8 .box .left .item .copy{margin-bottom:10px;padding-left:10px; font-size:4.5vw;border-bottom:none;}
.page8 .box .left .item .text{margin:0 10px;}
.page8 .box .right {
	width:100%; margin-bottom:20px;
    position: relative;
    padding-bottom: 56.25%;
}
.page8 .box .right iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    }
}


/*====================
type9　左テキスト　キャッチコピー
=====================*/
.page9 .box{position: absolute;
    top: 45vh;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	height: 70vh; text-align: right;
	width:100%;
	position:relative;
	}
.page9 .box img{height:100%; width:80%; object-fit:cover;     object-position: bottom;padding-right:40px;padding-top:40px;}
.page9 .box .left{width:40vw; position: absolute;
    top: 20vh;
    left: 0%;
    transform: translateY(-50%);
	padding:20px 40px;
	height:auto; text-align:left;}
.page9 .box .left h3{font-size:30px;}
.page9 .box .left h4{font-family: 'Shippori Mincho', serif;
}
.page9 .box .left .text .copy{ color:#26723D;font-family: 'Shippori Mincho', serif; font-size:1.6vw; margin-bottom:40px; }
.page9 .box .left .text{}
.page9 .box .left .text.flex{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;}
.page9 .box .left .text.flex .unit{width:48%;}
.page9 .box .left .text img{width:auto; height:auto;    vertical-align: middle; margin-left:10px;}


@media screen and (max-width: 1050px) {
.page9{position:relative; }
.page9 .photo{margin-top:30px;}
.page9 .photo img{width:100%; height:auto;}
.page9 .box{position: static;    transform:none;    -webkit-transform:none;	height: auto; background-image:none; width:100%; padding:0px; text-align: left;}
.page9 .box img{padding:0px; width:100%;}
.page9 .box .left{width:100%; padding-top:0px; position:static;top: auto;left: auto;transform: unset; padding:5%;}
.page9 .box .left .text{width:100%;}
.page9 .box .left .text img{margin-left:0px;width: 100%;}
.page9 .box .left .text .copy{  font-size:4vw; margin-bottom:20px; }
.page9 .box .photo-mr{margin-right:5%;}
}




/*====================
type10 左テキスト　右キャッチコピー
=====================*/
.page10 .box{position: absolute;
    top: 45vh;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	height: 70vh; text-align: right;
	width:100%;
	position:relative;
	}
.page10 .box .photo{width:80vw;position: relative;height: 100%;}
.page10 .box .photo img{height:100%; width:100%; object-fit:cover;     object-position: bottom;padding-right:40px;padding-top:40px;}
.page10 .box .right{width:40vw; position: absolute;
    top: 27vh;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	padding:20px 40px;
	height:auto; text-align:left;}
.page10 .box .right h3{font-size:30px;}
.page10 .box .right h4{font-family: 'Shippori Mincho', serif;
}
.page10 .box .right .text .copy{ color:#81A739;font-family: 'Shippori Mincho', serif; font-size:1.6vw; margin-bottom:40px; }
.page10 .box .right .text{}
.page10 .box .right .text.flex{display:flex;-webkit-box-pack: justify;justify-content: space-between;}
.page10 .box .right .text.flex .unit{width:48%;}
.page10 .box .right .text img{width:auto; height:auto;    vertical-align: middle; margin-left:10px;}
.page10 .box .text2{width:40vw; position: absolute;
   top: 66vh;
    left: 5vw;
    transform: translateY(-50%);
	padding:20px 40px;
	height:auto; text-align:left;}

@media screen and (max-width: 1050px) {
.page10{position:relative; }
.page10 .photo{margin-top:30px;}
.page10 .photo img{width:100%; height:auto;}
.page10 .box{position: static;    transform:none;    -webkit-transform:none;	height: auto; background-image:none; width:100%; padding:0px; text-align: left;}
.page10 .box img{padding:0px; width:100%;}
.page10 .box .left{width:100%; padding-top:0px; position:static;}
.page10 .box .left .text{width:100%;}
.page10 .box .left .text img{margin-left:0px;width: 100%;}
.page10 .box .right{position:static; width:auto; top:auto; right:auto; transform:unset; padding:5%;}
.page10 .box .right .text .copy{font-size:4vw; margin-bottom:0px;}
.page10 .box .photo-ml{margin-left:5%;}
.page10 .box .text2{width:auto; position:static; top:auto; left:auto; transform:unset; padding:5%;}
.page10 .box .photo-mr{margin-right:5%;}
}






/*====================
type21
=====================*/
.page21 .stage{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;align-items: flex-start;
	height: auto;
	margin-left: 0px;
	padding-top: 100px;
	padding-right: 5%;
	padding-bottom: 140px;
	padding-left: 5%;
	font-family: 'Shippori Mincho', serif;

}
.page21 .cover{ width:17%; margin-right:1.4%;}
.page21 .cover .item .photo{}
.page21 .cover .item .photo img{width:100%; height:55vh; object-fit:cover;margin-bottom:20px;transition: 0.3s all;}
.page21 .cover .item .text{ transition: 0.3s all;}
.page21 .cover .item h3{font-size: max(1.7vw, 16px);font-weight:bold;  transition: 0.3s all; }

.page21 .contents{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;flex-wrap: wrap; width:83%;}
.page21 .contents h2{ font-size: max(2vw, 18px); width:100%; line-height:1; font-weight:bold; margin-bottom:20px;}
.page21 .contents .box{display:-webkit-box;display:flex;-webkit-box-pack: justify;justify-content: space-between;}
.page21 .contents .box a{width:13%; display:block; position:relative;padding-top: 3%;}
.page21 .contents .box a .item .number{ font-size: max(1.5vw, 16px); position:absolute;top:-1%; left:0px;transition: 0.3s;}
.page21 .contents .box a .item .number.interview{    top: -3.5%; line-height: 1.5; transition: 0.2s all;}
.page21 .contents .box a .item .number h3.underline{color:#000;font-size: max(0.7vw, 14px); margin-bottom:0px;}
.page21 .contents .box a .item .number h3.underline:after{background:#000;}
.page21 .contents .box a .item .photo{ height: 100%;}
.page21 .contents .box a .item .photo img{width: 100%;
    height: 36vh;
    object-fit: cover;
	margin-bottom:10px;
	transition: 0.3s all;
    }




.page21 .contents .box a .item .text{font-family: 'Shippori Mincho', serif;
font-size: max(0.8vw, 14px);transition: 0.3s;}
.page21 .contents .box a .item .text h3{font-size: max(1vw, 16px);font-weight:bold;color:#000; padding-left:10px; line-height:1;margin-bottom:10px;transition: 0.3s;}

.page21 .contents .box a:nth-child(1) .item .text h3{border-left:solid 5px #44C0ED;}
.page21 .contents .box a:nth-child(2) .item .text h3{border-left:solid 5px #44C0ED;}
.page21 .contents .box a:nth-child(3) .item .text h3{border-left:solid 5px #7FC91A;}
.page21 .contents .box a:nth-child(4) .item .text h3{border-left:solid 5px #7FC91A;}
.page21 .contents .box a:nth-child(5) .item .text h3{border-left:solid 5px #EDB244;}
.page21 .contents .box a:nth-child(6) .item .text h3{border-left:solid 5px #EDB244;}
.page21 .contents .box a:nth-child(7) .item .text h3{border-left:solid 5px #FF9FF8;}


.page21 .cover a:hover .item h3{ color:#FED26F; }
.page21 .cover a:hover .item .text{ color:#FED26F; }
.page21 .contents .box a:hover .item .photo img {transform: scale(1.05,1.05);    transition: 0.2s all;    position: relative;    z-index: 1;    border: solid 2px #5C7448;}
.page21 .contents .box a:hover .item .number{ color:#FED26F;}
.page21 .contents .box a:hover .item .number.interview h3{color:#FED26F;}
.page21 .contents .box a:hover .item .number.interview h3:after{background:#FED26F;}
.page21 .contents .box a:hover .item .text{ color:#FED26F;}
.page21 .contents .box a:hover .item .text h3{ color:#FED26F;}

@media screen and (max-width: 1050px) {
.page21{ display:none;}
}















/*====================
共通
=====================*/
.logo{ position:absolute; top:10px; left:10px; height:auto; width:auto;z-index: 1; display:flex;align-items: center;}
.logo.small{ display:none;}
.logo img{width:100%; height:auto;}
.logo.top h1{ width:120px;display:-webkit-box;display:flex;}
.logo h1 img{width:100px;}
.logo .btn-salad a{
	display: block;
	border-radius: 25px;
	background: rgba(255,255,255,0.7);
	color: #567914;
	border: solid 1px #567914;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	margin-top:10px;
}
.logo .btn-salad a:hover{color: #FFF; background:rgba(103, 131, 71, 0.6)}
@media screen and (max-width: 1050px) {
.logo{display:none;}
.logo-sp{position:absolute; top:10px; left:10px;}
.logo-sp a{ line-height:1;}
.header-pt-sp{ padding-top:50px;}
.next-link{ margin-top:40px; margin-left:10px; }
.next-link .bg{background:#D4DEB4; margin-left:40px;position: relative; height:18vh; }
.next-link .text{position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);font-family: 'Shippori Mincho', serif;
}
.next-link .text h3{font-size:5vw; line-height:1; position:relative;display: inline-block;white-space:nowrap;}
.next-link .text h3:after{ position:absolute; top: 3px;
    right: -5vw; width: 0;
  height: 0;
  border-left: 2vw solid black;
  border-top: 2vw solid transparent;
  border-bottom: 2vw solid transparent; content:'';}
.next-link ul{display:-webkit-box;display:flex;}
.next-link ul li:first-child{white-space:nowrap; font-weight:bold;}
.next-link ul li:first-child:after{content:'　|　';}


.next-link-back{margin-left:10px; padding-bottom:100px;}
.next-link-back .bg{background:#EEF5D6; margin-left:40px;position: relative; height:10vh; }
.next-link-back .bg.dark{background:#D4DEB4;}
.next-link-back .text{position: absolute;
    top: 55%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);font-family: 'Shippori Mincho', serif;
}
.next-link-back .text h3{    font-size: 4vw; line-height:1; position:relative; display: inline-block; white-space:nowrap;}
.next-link-back .text h3:after{ position:absolute; top: 0px;
    left: -5vw; width: 0;
  height: 0;
  border-top: 2vw solid transparent;
  border-right: 2vw solid black;
  border-bottom: 2vw solid transparent; content:'';}
.next-link-back ul li{color:#FFF; margin-left:0px;}



}

.youtube__aspect-ratio {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube__aspect-ratio iframe {
    width: 100%;
    height: 100%;
}

/*======================
Scrollテキストの描写
=======================*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10px;
 right: 40px;
}

.scrolldown span{
    /*描画位置*/
  position: absolute;
  left:5px;
  bottom:65px;
    /*テキストの形状*/
  color: #000;
  font-size: 13px;
  /*縦書き設定*/
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	font-weight:bold;
}

/* 丸の描写 */
.scrolldown:before {
    content: "\f111";
	font-family: 'Font Awesome 6 Free'; font-weight: bold; color:#FFF; text-shadow: black 1px 1px 0px, black -1px 1px 0px,
             black 1px -1px 0px, black -1px -1px 0px;
	font-size:40px;
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-10px;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:100px;}
     100%{bottom:-10px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

/* 矢印の描写 */
.scrolldown .arrow:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -9px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
}

.scrolldown .arrow:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:-3px;
    /*矢印の形状*/
  width:1px;
  height: 120px;
  background:#000;
}

@media screen and (max-width: 1050px) {
.scrolldown{ right: 50px; bottom:80px;}
.scrolldown span{color:#FFF;}
.scrolldown .arrow:before {background:#FFF;}
.scrolldown .arrow:after{background:#FFF;}
}
/*====================
SWIPER
=====================*/
@media screen and (min-width: 1051px) {
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/* スライド */
.slide {
  height: 100%;
  width: 100%;
  background-color: #FFF;
  
}

.pagenation{background: #97B97A; height:65px;display:-webkit-box;display:flex;-webkit-box-align: center;align-items: center; padding:0px 30px; position:relative;}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets
{ left:0px; bottom:0px; top:inherit;    transform: initial;}

.swiper-pagination-bullet {
  background-color: #FFF; opacity:1;
}
.swiper-pagination-bullet-active {
  background-color: #5C7448; opacity:1;
}
header .swiper-pagination {
display:-webkit-box;display:flex;
  gap: 1.2rem 20px;
}
.swiper-pagination{position:relative;}
/* SP時の文字サイズ調整 */

.swiper-button-prev, .swiper-rtl .swiper-button-next{position:absolute;}

.swiper-button-prev{left:0px;}
.swiper-button-next{right:0px;}

.swiper-button-prev:after,
.swiper-button-next:after { color:#FFF;    font-size: 14px;}
.swiper-android .swiper-slide, .swiper-wrapper{transform: none;}
}












/*====================
シェアボタンのポップアップ
=====================*/
.share-btn{text-align:center;width: 40px; margin-bottom:0px; margin-top:0px; z-index:10;}


.share-btn .open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
	color:#97B97A;
	font-size:28px;
	margin:0;

	
}
.share-btn .open i {
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.5px #bad8a0; /* `#fff` は背景色とあわせる */
  position:absolute;top: 50%;
    right: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.share-btn #pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.share-btn .overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
.share-btn #pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	position: absolute;
	right:30px;

}
.share-btn .window {
	background-color: #ffffff;
	position:relative;
	background: #CDE1B5;
	margin-top: -190px;
	height: 160px;
	width: 48px;
}
.share-btn .window:after{
	content: "";
    position: absolute;
    top: 0px;
    width: 0;
    left: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 24px solid #97B97A;}
  
  
.share-btn .window ul{
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.share-btn .window ul li{margin:10px 10px; border:none;}
.share-btn .window ul li a{color:#97B97A; font-size:25px; padding:0px;}
.share-btn .window ul li a:hover{color:#5C7448;}
.share-btn .menu-content .window ul li a::before{content:none;}
.share-btn .close {
	cursor:pointer;
	position: absolute;
	top: 2px;
	right: 17px;
	font-size: 14px;
	color:#FFF;
	z-index:2;

}
@media screen and (max-width: 1050px) {
.share-btn{display:none;}
}








@media screen and (min-width: 1051px) {


.isShow:before{
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
  background:#FFF;
}

}

@keyframes play {
  from {
    transform: translateY(-100%);
  }
  
  to {
    transform: translateY(0);
  }
}



@keyframes maskOut {
  from {
    transform: translateY(0);
  }
  
  to {
    transform: translateY(100%);
  }
}



@media screen and (max-width:1050px) {
.pc{display:none !important;}
}

@media screen and (min-width: 1051px) {
.sp{display:none !important;} 
}







