@charset "utf-8";

/* 共通 */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 60px;
}

body{
  max-width: 1280px;
  margin: 0 auto;
  background-color: #f6f8f9;
  color: #333;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8; /* 20(行送り)　/ 12 = 1.625 XD*/ 
  letter-spacing: 0.1em; /* 100(AV) / 1000 = 0.1 XD*/
}
*{
  box-sizing: border-box;
}
.mainvisual h1{
  font-family: "Source Serif Pro";
}

h2,nav{
  font-family: "Noto Serif";
}
.midasi{
  text-align: center;
}
.midasi h2{
  font-size: 2.0rem;
  font-weight: 400;
  /*line-height: 1.3;*/
}
.midasi span{
  font-size: 1.0rem;
  line-height: 1.6;
  display: block;
  margin-top: -5px;
}
@media (min-width: 800px){
  .midasi h2{
    font-size: 3.2rem;
    font-weight: 400;
  }
  .midasi span{
    font-size: 1.6rem;
    margin-top: 0px;
  }
}
img{
  vertical-align: middle;
}
ul{
  list-style: none;
}
a:hover{
  opacity: 0.5
}
/* CSS Document */
.header-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
	top:0;
  right: -120%;
	width: 200px;
  height: 100vh;/*ナビの高さ*/
	background-color: #eee;
  /*動き*/
	transition: all 0.6s;
  padding-top: 82px;
  padding-left: 20px;
}

/*アクティブクラスがついたら位置を0に*/
.header-nav.panelactive{
  right: 0;
}
.header-nav .wrapper .catchcopy{
  font-size: 1.0rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  /*margin-bottom: 5px;*/
}
/*.header-nav .wrapper .title{
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
}*/
.header-nav .wrapper .title .moisture{
  /*font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;*/
  width: 96.61538461538461px;
  height: auto
}
/*ナビゲーション*/
.header-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 30%;
  left: 11%;
  /*top: 45%;
  left: 55%;
  transform: translate(-50%,-50%);*/
  width: 180px;
}

/*リストのレイアウト設定*/
.header-nav li{
  text-align: left;
  border-bottom: 1px solid #333;
}

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

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

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

.openbtn span:nth-of-type(2) {
	top:25px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.black-bg.panelactive {
  opacity: 0.3;
  visibility: visible;
}
@media (min-width: 800px){
  .openbtn{
    display: none;
  }
  .header-nav{
    position: static;
    z-index: 0;
    /*ナビのスタート位置と形状*/
    /*top:0;
    right: 0;*/
    width: 0;
    height: 0;
    background-color: transparent;
    transition: unset;
    padding-top: 0;
    padding-left: 0;
  }
  .header-nav ul {
    /*ナビゲーション天地中央揃え*/
    display: flex;
    gap: 30px;
    position: absolute;
    z-index: 999;
    top: 40px;
    left: auto;
    right: 100px;
    transform: none;
    width: auto;
}

  /*リストのレイアウト設定*/
  .header-nav li{
    /*text-align: center;*/
    font-size: 1.8rem;
    border-bottom: 0px;
  }

  .header-nav li a{
    /*color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;*/
    font-weight: 400;
  }
}
.mainvisual{
  background-image: url("../img/mainvisual_mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px;
  background-color: #e8e8e8;
  /*object-fit: cover;
  object-position: center;*/
  box-sizing: border-box;
  padding: 144px 20px 0;
  width: 100%;
  height: 600px;
  vertical-align: bottom;
  margin-bottom: 80px;
}
.mainvisual .leaf{
  display: none;
}
.mainvisual .text-wrapper{
  text-align: center;
}
.mainvisual .text-wrapper .catchcopy{
  font-size: 1.6rem;
  line-height: 1.625; /* 26(行送り)　/ 12 = 1.625 */
}
.mainvisual .text-wrapper .title .moisture{
  width: 157px;
  height: auto;
  margin-top: -5px;
}
/*.text-wrapper h1{
  font-size: 3.9rem;
  font-weight: 400;
  line-height: 1.2; 
}*/
/* 53(行送り)　/ 39 = 1.35 */
@media (min-width: 800px){ /*900でもいい*/
  .mainvisual{
    padding: 0 100px;
    background-image: url("../img/mainvisual_pc.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    margin-bottom: 110px;
  }
  .mainvisual .leaf{
    display: inline-block;
    width: 35.7vw;
    max-width: 457px;
    margin-left: -70px;
  }
  .mainvisual .text-wrapper{
    position: absolute;
    top: 234px;
    left: 149px;
}
  .mainvisual .text-wrapper .catchcopy{
    font-size: min(2.8125vw,3.6rem);
    line-height: 1.625; /* 26(行送り)　/ 12 = 1.625 */
}
  /*.text-wrapper h1{
    font-size: min(6.796875vw,8.7rem);
    font-weight: 400;
    line-height: 1.2; 
  }*/
  .mainvisual .text-wrapper .title .moisture{
    width: min(27.265625vw,349px);
    height: auto;
  }
}
/*CONCEPT*/
.concept{
  margin-bottom: 80px;
}
.concept .concept-wrapper1{
  position: relative;
  height: 330px;
}
.concept .midasi{
  margin-bottom: 30px;
}
.concept img{
  /*width: 64vw;
  height: 43vw;*/
  width: 240px;
  height: 160px;
}
.concept .textbox1{
  background-color: #fff;
  /*width: 72vw;
  height: 53vw;*/
  width: 270px;
  height: 200px;
  padding: 29px 30px 28px 31px;
  /*display: inline-block;*/
  box-shadow: 0 0 15px rgba(0,0,0,0.16);
  position: absolute;
  /*top: 200px;*/
  top: 130px;
  right: 20px;
}
/*.concept .img2-wrapper{
  text-align: right;
}*/
.concept .space{
  height: 50px;
}
.concept .concept-wrapper2{
  position: relative;
  height: 330px;
}
.concept .concept-img2{
  position: absolute;
  top: 0;
  right: 0;
  /*display: inline-block;
  margin-top: 220px;
  margin-left: 36vw;*/
}
.concept .textbox2{
  background-color: #eee;
  width: 270px;
  height: 200px;
  padding: 29px 30px 28px 31px;
  /*display: inline-block;*/
  box-shadow: 0 0 15px rgba(0,0,0,0.16);
  /*margin-top: -30px;
  margin-left: 20px;*/
  position: absolute;
  top: 130px;
  left: 20px;
}
.textbox1 h3, .textbox2 h3{
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 470px){
  .concept .concept-wrapper1,
  .concept .concept-wrapper2{
    height: 70.212766vw;
  }
  .concept .textbox1,
  .concept .textbox2{
    width: 57.446809vw;
    height: 42.553191vw;
    padding-top: 10.638298vw;
    padding-left: 6.382979vw;
  }
  .concept img{
    width: 51.06383vw;
    height: 34.042553vw;
  }
  .concept .space{
    height: 0;
  }
}
@media (min-width: 800px){
  .concept .concept-wrapper1,
  .concept .concept-wrapper2{
    height: 50vw;
  }
  .concept img{
    width: 46.875vw;
    height: 31.25vw;
    max-width: 600px;
    max-height: 400px;
  }
  .concept .textbox1{
    width: 53.125vw;
    height: 31.25vw;
    max-height: 400px;
    max-width: 680px;
    padding: 7vw 5vw 0 5vw;
    top: 100px;
    right: 100px;
  }
  .concept .textbox2{
    width: 53.125vw;
    height: 31.25vw;
    max-height: 400px;
    max-width: 680px;
    padding: 7vw 5vw 0 5vw;
    top: 100px;
    left: 100px;
  }
  .concept .textbox1 h3,
  .concept .textbox2 h3{
    font-size: 2.8rem;
    text-align: center;
  }
  .concept .textbox1 p,
  .concept .textbox2 p{
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px){
  .concept .textbox1,
  .concept .textbox2{
    padding: 129px 129px 128px 130px;
  }
  .concept .concept-wrapper1,
  .concept .concept-wrapper2{
    height: 500px;
  }
  .concept .space{
    height: 100px;
  }
}
/*feature*/

.feature{
  position: relative;
  height: 777px;
  overflow: hidden;
}
.feature .bg-img .inner-img{
  position: absolute;
  top: -61px;
  left: -201px;
  height: 838px;
  object-fit: cover;
  z-index: -2;
}
.feature .bg-img::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(238,238,238,0.7);
  position: absolute;
  z-index: -1;
  /*padding: 60px 20px 25px;*/
}
.feature .midasi{
  margin-top: 60px;
}
.feature .illust{
  display: block;
  width: 335px;
  height: auto;
  margin: 0 auto;
}
.feature .text-area{
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 800px){
  .feature{
    /*position: relative;*/
    height: 750px;
    /*overflow: hidden;*/
  }
  .feature .bg-img .inner-img{
    /*position: absolute;*/
    top: 0;
    left: 0;
    max-width: 1280px;
    height: 750px;
    /*object-fit: cover;
    z-index: -2;*/
  }
  .feature .midasi{
    margin-top: 110px;
  }
.feature .illust{
  display: block;
  /*margin: 0 auto;*/
  width: min(52vw,460px);
  height: auto;
  position: absolute;
  top: 237px;
  /*left: 140px;*/
  left: 4vw;
}
.feature .text-area{
  max-width: initial;
  width: min(36.328125vw,465px);
  /*margin: 0 auto;*/
  position: absolute;
  top: 296px;
  /*right: 153px;*/
  right: 5vw;
}
  .feature .text-area p{
    /*font-size: min(1.25vw,1.6rem);*/
    font-size: 1.6rem
  }
}
@media (min-width: 1000px){
  .feature .illust{
    left: min(10.15625vw,140px);
  }
  .feature .text-area{
    right: min(10.9375vw,153px);
  }
}
/*PRODUCTS*/
.products{
  margin-bottom: 80px;
  padding: 110px 20px 0;
}
.products .midasi{
  margin-bottom: 30px;
}
.products ul{
  display: flex;
  flex-wrap: wrap;
  gap: 25px 15px;
  justify-content: center;
}
.products ul li img{
  width: 42vw;
  height: 51vw;
  object-fit: cover;
  margin-bottom: 5px;
}
.products ul li p{
  line-height: 1.625;
}
@media (min-width: 800px){
  .products{
    margin-bottom: 110px;
  }
  .products .midasi{
    margin-bottom: 80px;
  }
  .products ul{
    /*flex-wrap: nowrap;*/
    gap: 30px;
  }
  .products ul li img{
    /*width: 26.5625vw;
    height: 24.21875vw;
    max-width: 340px;
    max-height: 310px;*/
    width: 340px;
    height: 310px;
  }
  .products ul li p{
    font-size: 1.6rem;
  }
}
/*NEWS*/
.news{
  padding: 60px 20px 80px;
  background-color: #eee;
}
.news .midasi{
  margin-bottom: 30px;
}
.news ul{
  list-style: none;
  max-width: 657px;
  margin: 0 auto;
}
.news ul li{
  border-bottom: 1px solid #959191;
  margin-bottom: 20px;
  text-indent: -10rem;
  padding: 0 0 8px 10rem;
  
}
.news ul li time{
  display: inline-block;
  width: 10rem;
  text-indent: 0;
}
.news ul li:last-child{
  margin-bottom: 0;
}
@media (min-width: 800px){
  .news{
    padding: 110px 0 134px 0;
  }
  .news .midasi{
    margin-bottom: 77px;
  }
  .news ul li{
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
  .news ul li time{
    margin-right: 15px;
  }
}
/*お問い合わせはこちら*/
.contact{
  position: relative;
}
.contact .bg-img{
  height: 282px;
  overflow: hidden;
}
.contact .bg-img::before{
  content: "";
  position: absolute;
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
}

.contact .bg-img img{
  width: 100%;
  height: 386px;
  object-fit: cover;
  object-position: 40%;
  margin-top: -100px;
}
.contact .textbox-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 300px;
  height: 100%;
  margin: 0 auto;
}
.contact .textbox{
  border: 1px solid #fff;
  width: 130px;
  height: 80px;
  text-align: center;
  position: absolute;
  /*left: 14.133333vw;*/
  top: 76px;
  /*top: 20.266667vw;*/
  /*left: 53px;*/
}
.contact .textbox a{
  text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1.625;
  padding: 23px 19px 21px 19px;
}
@media (min-width: 800px){
  .contact .bg-img{
    height: 400px;
    /*overflow: hidden;*/
  }
  .contact .bg-img img{
    width: 100%;
    height: 743px;
    object-fit: cover;
    object-position: 20%;
    margin-top: -175px;
  }
  .contact .textbox-wrapper{
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 300px;
    height: 100%;*/
    margin: 0;
  }
  .contact .textbox{
    /*border: 1px solid #fff;*/
    width: 350px;
    height: 150px;
    /*text-align: center;*/
    font-size: 2.0rem;
    /*position: absolute;*/
    top: 125px;
    left: 15vw;
    /*left: 19.53125vw;*/
    /*left: 250vw;*/
  }
.contact .textbox a{
  /*text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1.625;*/
  padding: 62px 44px;
}

}
/*フッター*/
footer{
  padding: 27px 20px 18px;
}
footer .title{
  text-align: center;
  margin-bottom: 36px;
}
footer .title .moisture{
  width: 92px;
  height: auto;
}
/*footer h1{
  font-size: 2.4rem;
  font-family: "Source Serif Pro";
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1;
}*/
footer h1 a{
  text-decoration: none;
  color: #333;
}
.footer-nav ul{
  text-align: center;
  margin-bottom: 18px;
  line-height: 1;
}
.footer-nav ul li{
  display: inline-block;
  border-right: 1px solid #333;
  padding-right: 5px;
  font-weight: 500;
}
.footer-nav ul li a{
  text-decoration: none;
  color: #333;
}
footer small p{
  font-size: 1.0rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 800px){
  footer{
    /*height: 220px;*/
    padding: 64px 100px 20px;
  }
  footer .flex-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  footer .title{
  text-align: center;
  margin-bottom: 0;
  }
  footer .title .moisture{
    width: 201px;
    height: auto;
  }
  /*footer h1{
      font-size: 5.0rem;
      margin-bottom: 0;
  }*/
  footer .footer-nav{
    padding-top: 30px;
  }
  .footer-nav ul{
    /*text-align: center;*/
    margin-bottom: 0;
    /*line-height: 1;*/
  }
  .footer-nav ul li{
    font-size: min(1.5vw,1.8rem);
    /*display: inline-block;
    border-right: 1px solid #333;*/
    padding: 0 8px 0 5px;
    font-weight: 400;
  }
  footer small p{
    font-size: 1.2rem;
    /*font-weight: 500;
    text-align: center;*/
  }
}












