@charset "UTF-8";
*{
  box-sizing: border-box;
  margin : 0 auto;
  padding : 0px;
}
html{
  width : 100%;
  height:100%;
  font-size: 62.5%;
  font-feature-settings : "palt";
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body{
  width : 100%;
  height : 100%;
  line-height : 1.6;
  color : white;
  background-image : url(h_pic_04.webp);
  background-repeat : no-repeat;
  background-position : center center;
  background-size : cover;
  background-attachment : fixed;
}
p{
  margin : auto;
  padding : 0px;
}
img{
  max-width: 100%;
  vertical-align:top;
  image-rendering: -webkit-optimize-contrast;
}
hr{
  border: 0 solid black;
  clear : both;
}
a:link,
a:visited{
  text-decoration : none;
  font-weight: 700;
  color : #fff;
}
a:link.blue,
a:visited.blue{
  color : #0867b0;
}
.article h3 a:link,
.article h3 a:visited{
  color : black;
  text-decoration : underline;
}
a:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.nowrap{
  white-space: nowrap;
}
.link{
  }
.link::after{
  content: url(link.svg);
  display: inline-block;
  width: 13px;
  height: 13px;
  padding-left : 3px;
}
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
  background : none 0% 0% / auto auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);
  cursor: pointer;
  width: 50px;
  height:50px;
  border-radius: 5px;
  margin : 0;
  z-index: 9999;
/*ボタンを最前面に*/
}
/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
    position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background : none 0% 0% / auto auto repeat scroll padding-box border-box white;
  width: 45%;
}
.openbtn span:nth-of-type(1){
  top:13px;
}
.openbtn span:nth-of-type(2){
  top:19px;
}
.openbtn span:nth-of-type(3){
  top:25px;
}
.openbtn span:nth-of-type(3)::after{
  content:"Menu";
  /*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
  top:5px;
  left:-2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1){
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(3)::after{
  content:"Close";
  /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:5px;
  left:4px;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;
  にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
	top:-120%;
  left:0;
  width:100%;
  height: 100vh;
  /*ナビの高さ*/
	background : none 0% 0% / auto auto repeat scroll padding-box border-box rgba(0, 0, 0, 0.9);
  /*動き*/
	transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
.panelactive#g-nav{
  top: 0;
}
/*ナビゲーション*/
#g-nav ul{
  /*ナビゲーション天地中央揃え*/
    position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width : 90%;
}
/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center;
}
#g-nav li a{
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size : 1.5rem;
  color : white;
  white-space: nowrap;
}
#header{
  width : 100%;
  height : 100%;
}
#header div.fix{
  width : 100%;
  position : fixed;
  z-index : 10000;
  background-color : rgba(0, 0, 0, 0.5);
}
#header div.inner{
  width : 100%;
  margin : 0 auto;
  padding : 10px;
  display : flex;
  justify-content: space-between;
  align-items: center;
  height : 82px;
}
h1{
  height : 35px;
  line-height : 35px;
  margin : 0;
  padding : 0px 0px 0px 45px;
  font-size: 1.6rem;
  font-weight: 700;
  background-image : url(logo.webp);
  background-repeat : no-repeat;
  background-position : left center;
  background-size : 35px;
  white-space: nowrap;
}
@media screen and (min-width:380px){
  h1{
  font-size: 2rem;
}
}
@media screen and (min-width:710px){
  .openbtn{
  display: none;
}
#g-nav{
  margin : 0;
  position:static;
  top:auto;
  left:auto;
  height: auto;
  display : flex;
  justify-content: center;
  align-items: center;
  background : none 0% 0% / auto auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);
}
#g-nav ul{
  margin : 0;
  position:static;
  top:auto;
  left:auto;
  transform: translate(0%,0%);
  display : flex;
  justify-content: center;
  align-items: center;
}
#g-nav li{
  margin : 0;
  list-style: none;
  text-align: center;
  border-right-width : 1px;
  border-right-style : solid;
  border-right-color : white;
}
#g-nav li:first-child{
  border-left-width : 1px;
  border-left-style : solid;
  border-left-color : white;
}
#g-nav li a{
  margin : 0;
  padding:3px 10px;
  font-size : 1.3rem;
  font-weight: 400;
}
#header div.inner{
  justify-content: center;
  align-items: flex-start;
  flex-wrap:wrap;
}
}
@media screen and (min-width:995px){
  #header div.inner{
  margin : 0 auto;
  max-width : 1200px;
  justify-content: space-between;
  align-items: center;
  flex-wrap:nowrap;
}
#g-nav{
  width:auto;
}
}
section{
  margin : 0;
  padding : 82px 0 0 0;
  width : 100%;
  height:100%;
}
#top,#about{
  display : flex;
  justify-content: center;
  align-items: center;
  height:auto;
  min-height:100%;
}
#top{
  display : flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
#top p{
  margin : 0;
  padding : 20px;
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  font-weight: 900;
}
#about{
  position: relative;
}
#about::after{
  content: '';
  background-color: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#about div.inner{
  width : 95%;
  max-width : 1000px;
  margin : 0 auto;
  padding : 50px 0;
  display : flex;
  flex-direction: column;
  gap : 10px;
}
#about h2,#about div.inner div{
  width : 95%;
  margin : 0 auto;
  padding : 10px;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  z-index : 9000;
}
#about h2{
  background-color : rgba(8, 103, 176, 0.4);
}
#about div.inner div,#about div.inner div.green{
  background-color : rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
#about div.inner div,#about div.inner div.green{
  color : #000;
}
#about h2.green{
  background-color : rgba(0, 128, 128, 0.64);
}
#about h2{
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2em;
}
#about h2::after{
  content: " ";
  margin-left: -.2em;
}
#about h3{
  font-size: 1.4rem;
  font-weight: 700;
  border-left : 5px solid #0867b0;
  padding: 0 0 0 8px;
  letter-spacing : 0.2em;
}
#about h3.ls_reset{
  letter-spacing : inherit;
}
#about p,#about ol,#about ul{
  font-size: 1.3rem;
}
#about p{
  padding: 0 1em;
}
#about ol{
  padding: 0 2em;
}
#about ul{
  padding: 0;
}
#about ul li{
  display : flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap:wrap;
}
#about ul li span{
  display: inline-block;
  margin : 0;
}
#about ul li span:first-child{
  min-width:280px;
}
#about ul li span:last-child{
  white-space: nowrap;
}
#about ul li span:first-child::before{
  content: "●";
}
#about ul li span:last-child::before,
#about ol li.span span:last-child::before{
  content: "…";
}
#about ol li.span span:last-child::before{
  padding-left : 20px;
}
#recommend{
  display : flex;
  justify-content: center;
  align-items: center;
  height:auto;
  min-height:100%;
  background-image : url(h_pic_03.webp);
  background-repeat : no-repeat;
  background-position : center center;
  background-size : cover;
  background-attachment : fixed;
  position: relative;
}
#recommend::after{
  content: '';
  background-color: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#recommend div.inner{
  width : 95%;
  max-width : 1000px;
  margin : 0 auto;
  padding : 20px 0;
  display : flex;
  gap : 20px;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
}
#recommend h2{
  width : 100%;
  margin : 0 auto;
  padding : 10px;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  z-index : 9000;
  letter-spacing: .2em;
}
#recommend h2::after{
  content: " ";
  margin-left: -.2em;
}
#recommend div.inner div.box{
  margin : 0;
  padding : 10px;
  width:45vw;
  height:45vw;
  max-width:350px;
  max-height:350px;
  border-radius: 10px;
  background-repeat : no-repeat;
  background-position : center center;
  background-size : cover;
  z-index : 9000;
  display : flex;
  gap : 10px;
  flex-direction: column;
  align-items: flex-start;
}
#recommend div.inner div.txt{
  width:100%;
  display : flex;
  gap : 3px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#foot{
  background-image : url(r_pic_01.webp);
}
#pic{
  background-image : url(r_pic_02.webp);
}
#eco{
  background-image : url(r_pic_03.webp);
}
#story{
  background-image : url(r_pic_04.webp);
}
#recommend div.inner div h4{
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2em;
}
#recommend div.inner div h4::after{
  content: " ";
  margin-left: -.2em;
}
#recommend div.inner div p{
  font-size: 1.3rem;
  margin : 0;
}
#recommend div.inner div div.txt,#recommend div.inner div h4{
  margin : 0;
  padding : 5px 10px;
  width : 100%;
  background-color : rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
#recommend div.inner div div.txt{
  background-color : rgba(255, 255, 255, 0.8);
  color : #000;
  font-weight: 700;
}
@media screen and (max-width:620px){
  #recommend div.inner{
  flex-direction: column;
}
#recommend div.inner div.box{
  width:90vw;
  height:auto;
  max-width:400px;
  max-height:none;
  min-height:calc(calc(100vh - 200px) / 4);
}
}
#footer{
  display : flex;
  justify-content: center;
  align-items: center;
  height:auto;
  min-height:100%;
  background-image : url(h_pic_01.webp);
  background-repeat : no-repeat;
  background-position : center center;
  background-size : cover;
  background-attachment : fixed;
  position: relative;
}
#footer div.inner{
  width : 90%;
  max-width : 600px;
  margin : 0;
  padding : 20px;
  display : flex;
  gap : 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  background-color : rgba(0, 0, 0, 0.4);
}
#footer h1{
  margin : 0 auto;
}
#footer p{
  font-size: 1.3rem;
}
#footer ul.link_box{
  width : 100%;
  padding : 0;
  text-align : center;
  position : absolute;
  bottom : 70px;
}
#footer ul.link_box li{
  padding : 10px;
  display : inline-block;
  width : 180px;
}
#footer p.copy{
  width : 100%;
  padding : 10px 0;
  backdrop-filter: blur(12px);
  background-color : rgba(0, 0, 0, 0.4);
  text-align : center;
  position : absolute;
  bottom : 30px;
  font-size : 1.1rem;
  font-weight : 700;
}
.love_ban{
  margin : 90px auto 8px;
  width : 100%;
  height : calc(100% - 98px);
  background-image : url(love_kotake.png);
  background-repeat : no-repeat;
  background-position : right center;
  background-size : contain;
  position : fixed;
  left : 0px;
  z-index : -10;
  top : 0px;
}
#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right : 10px;
  bottom : 10px;
  opacity: 0.8;
  border-radius: 50%;
  background : none 0% 0% / auto auto repeat scroll padding-box border-box rgba(64, 128, 128, 0.75);
}
#page_enter{
  width : 90px;
  height: 90px;
}
#page_top a,#page_enter a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_enter a::before{
  content: 'ENTER';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_enter a::after{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f103';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}