@charset "utf-8";

* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Shippori Mincho B1', serif;
}

.wrap {
  width: 1000px;
  margin: auto;
}


@media screen and (max-width: 1000px) {
  .wrap {
    width: 100%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 850px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

p {
  font-size: 16px;
  letter-spacing: 0.13em;
  line-height: 30px;
  font-weight: 400;
}


h1 {
  font-size: 30px;
  letter-spacing: 0.12em;
  line-height: 45px;
  font-weight: 600;
}

h2 {
  font-size: 25px;
  letter-spacing: 0.13em;
  line-height: 30px;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  letter-spacing: 0.13em;
  line-height: 30px;
}


a {
  text-decoration: none;
}




.logo-top {
  width: 30%;
  height: 800px;
  margin: -800px auto 0 auto;
  position: relative;
  bottom: 38px;
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@media screen and (max-width: 850px) {
  .logo-top {
    width: 35%;
  } 
}

@media screen and (max-width: 650px) {
  .logo-top {
    width: 55%;
    bottom: 20px;
  } 
}


img.logo01 {
  object-fit: cover;
  width: 100%;
  bottom: 32vh;
  position: absolute;
}








.menu-content a:hover {
  color: #594C51;
  transition: 1s;
}

.menu-pc-contents a:hover {
  color: #594C51;
  transition: 1s;
}

header {
  width: 100%;
  height: 100vh;
}


.parallax {
  height: calc( 100vh + 520px );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1000px) {
  .parallax {
    background-position: center bottom;
  }
  }

.parallax02, .parallax03{
  width: 100%;
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1000px) {
  .parallax02, .parallax03{
    height: 400px;
    background-position: center top;
  }
  }




.parallax.bg-01 {
  background-image: url(../img/top.png);
}

@media screen and (max-width: 850px) {
  .parallax.bg-01 {
    background-image: url(../img/top_mv.png);
  }
  }

.parallax02.bg-02 {
  background-image: url(../img/parallax01.png);
}

.parallax03.bg-03 {
  background-image: url(../img/parallax03.png);
}

.menu-pc {
  display: flex;
  text-align: center;
  height: 40px;
  bottom:0;
  margin-top: -40px;
}

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



.menu-pc-contents {
  width: 20%;
  font-size: 15px;
}

.menu-pc-contents a {
  color: white;
  z-index: 999;
}

img.logo-menu {
  width: auto;
  height: 25vh;
}

img.logo-menu:hover {
  opacity: 0.3;
  transition: 1s;
}

h2.menu-text {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 50px;
}







.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background-color: #C2BFAD;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  background-color: white;

  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  position: fixed;
  top: 0;
  right: 0;
}

.menu-content ul {
  padding: 70px 0 0 0;
}

.menu-content ul li {
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content li:hover {
  background-color: #C2BFAD;
  /*リンクにマウスが乗ったら背景色を変更する*/
}

.menu-content {
  position: fixed;
  top: 0;
  right: -20%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #C2BFAD;
  transition: all 0.8s;
  /*アニメーション設定*/
}

@media screen and (max-width:1000px) {
  .menu-content {
    width: 100%;
    height: 100vh;
    right: -100%;
  }
}

@media screen and (max-width:500px) {
  .menu-content {
    height: 100vh;
  }
}

#menu-btn-check:checked~.menu-content {
  right: 0;
  /*メニューを画面内へ*/
}


@media screen and (min-width: 800px) {
  .hamburger-menu {
    display: none;
  } 
}





.introduction {
  text-align: center;
  height: 520px;
  position: relative;
}

.introduction::before {
  background-color: #594C51;
  mix-blend-mode:multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
}



.introduction-title {
  font-size: 35px;
  padding: 100px 0 13px 0;
  letter-spacing: 0.16em;
  color: white;
  opacity: 0.8;
  line-height: 45px;
}

@media screen and (max-width: 650px) {
  .introduction-title {
    padding: 70px 0 13px 0;
    font-size: 30px;
  }
}




.introduction-border {
  width: 700px;
  border-bottom: solid 1px  #C2BFAD;
  margin: auto;
  opacity: 0.8;
}

@media screen and (max-width: 650px) {
  .introduction-border {
    width: 90%;
  }
}

.introduction-text {
  margin: 50px 0 0px 0;
  letter-spacing: 0.13em;
  line-height: 45px;
  color: white;
  opacity: 0.8;
}


@media screen and (max-width: 650px) {
  .introduction-text {
    text-align: left;
  }
}







.contents-block {
  display: flex;
  align-items: flex-start;
  margin: 100px 0 40px 0;
}

@media screen and (max-width: 650px) {
  .contents-block {
    display: block;
  }
}




@media screen and (max-width: 650px) {
  .contents-title {
    text-align: center;
  }
  }

  p.sub {
    padding: 30px 0 15px 0;
    font-size: 23px;
  }

  @media screen and (max-width: 1000px) {
    p.sub {
      font-size: 18px;
      padding: 30px 0 0 0;
    }
  }


  @media screen and (max-width: 650px) {
    p.sub {
      font-size: 17px;
      padding-bottom: 3px;
    }
  }
  

h1.contents-title {
  font-size: 52px;
  margin: 10px 0 20px 0;
}

@media screen and (max-width: 1000px) {
  h1.contents-title {
    font-size: 35px;
   }
}

@media screen and (max-width: 650px) {
  h1.contents-title {
    font-size: 30px;
    margin: 0 0 20px 0;
    text-align: center;
   }
}






.figure01 {
  width: 42%;
  margin: 0 0 0 auto;
  background-image: url(../img/figure01.png);
  aspect-ratio: 5 / 3;
  background-repeat: no-repeat;
  background-size: contain; 
}

.figure02 {
  width: 42%;
  margin: 0 0 0 auto;
  background-image: url(../img/figure02.png);
  aspect-ratio: 5 / 3;
  background-repeat: no-repeat;
  background-size: contain; 
}

@media screen and (max-width: 1000px) {
  .figure01, .figure02 {
    width: 47%;
  }
}

@media screen and (max-width: 650px) {
  .figure01, .figure02 {
    width: 92%;
    margin: 50px auto 0 auto;
  }
}

.explanation {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media screen and (max-width: 650px) {
  .explanation {
    display: block;
  }
}

.explanation-block {
  width : calc(100% / 3);
  margin: 0 50px 50px 0;
}

@media screen and (max-width: 650px) {
  .explanation-block {
    width : 100%;
  }
}

.explanation-number {
    background-image: url(../img/number01.png);
    width: 100%;
    aspect-ratio: 3 / 0.8;
    background-repeat: no-repeat;
    background-size: contain; 
    margin-top: 25px;
  }


.explanation-number-2 {
  background-image: url(../img/number02.png);
  width: 100%;
  aspect-ratio: 3 / 0.8;
  background-repeat: no-repeat;
  background-size: contain; 
  margin-top: 25px;
}


.explanation-number-3 {
  background-image: url(../img/number03.png);
  width: 100%;
  aspect-ratio: 3 / 0.8;
  background-repeat: no-repeat;
  background-size: contain; 
  margin-top: 25px;
}

.explanation-text {
  height: 150px;
}

@media screen and (max-width: 999px) {
  .explanation-text {
    height: 160px;
  }
}

  @media screen and (max-width: 800px) {
    .explanation-text {
      height: 220px;
    }
 }

    @media screen and (max-width: 650px) {
      .explanation-text {
        height: auto;
      }
  }


  .explanation-text-b {
    height: 70px;
  }
  
  @media screen and (max-width: 999px) {
    .explanation-text-b {
      height: 90px;
    }
  }
  
    @media screen and (max-width: 800px) {
      .explanation-text-b {
        height: 100px;
      }
   }
  
      @media screen and (max-width: 650px) {
        .explanation-text-b {
          height: auto;
        }
    }
  




img.explanation-img {
  width: 100%;
  aspect-ratio: 3 / 1.9;
  background-repeat: no-repeat;
  background-size: contain; 
  margin-top: 25px;
}

@media screen and (max-width: 650px) {
  img.explanation-img {
    width: 100%;
    aspect-ratio: 3 / 1.9;
    margin-top: 20px;
  }
}





h2.explanation-title {
  color: #594C51;
  text-align: center;
  margin: 15px auto;
  letter-spacing: 0.1em;
}


@media screen and (min-width: 650px) and (max-width: 999px){
  h2.explanation-title {
    font-size: 18px;
  }
}




.overview {
  width: 800px;
  margin: auto;
}

@media screen and (max-width: 850px) {
  .overview {
    width: 100%;
  }
}

.overview-title {
  height: 60px;
  background-color: #594C51;
  margin: 75px 0;
  border-radius: 7px;
  color: white;
  text-align: center;
  padding-top: 15px;
  font-size: 24px;
  letter-spacing: 0.18em;
  line-height: 30px;
  font-weight: 500;
}

@media screen and (max-width: 850px) {
  .overview-title {
    margin: 100px 0 40px 0;
  }
}

@media screen and (max-width: 649px) {
  br.pc {
    display: none;
  }
  .overview-title {
    height: 90px;
  }
}

@media screen and (min-width: 650px) {
  br.mv {
    display: none;
  }
}


/* 画面幅が1024px以上の時は */
@media screen and (min-width: 800px) {
  .pc {
    display: block; /* PCを改行して */
  }

  .mv {
    display: none; /* SPの改行を隠す */
  }
}

/* 画面幅が560px以下の時は */
@media screen and (max-width: 560px) {
  .ps-br{
    display: none; /* PCの改行を隠して */
  }

  .sp-br{
    display: block; /* SPを改行する */
  }
}



p.pc {
  text-align: center;
  margin-bottom: 75px;
  line-height: 40px;
}

@media screen and (max-width: 650px) {
  p.pc {
    text-align: left;
    line-height: 35px;
    margin-bottom: 40px;
  }
}

.overview-heading {
  text-align: center;
  border-bottom: solid 1px black;
  border-top: solid 1px black;
  padding: 7px 0;
  margin: 20px 0 20px 0;
}



p.overview {
  text-align: center;
}




.size {
  text-align: center;
}

img.size {
  width: 50%;
  margin: auto;
}

@media screen and (max-width: 850px) {
  img.size {
    width: 70%;
    margin: auto;
  }
}

@media screen and (max-width: 649px) {
  img.size {
    width: 90%;
    margin: auto;
  }
}


.aroma_box {
  width: 80%;
  display: flex;
  margin: 30px auto;
}

img.single {
  width: 100%;
}

.aroma_image01, .aroma_image02 {
  width: 40%;
}

.aroma_image02 {
  margin: 0 0 0 auto;
}

p.aroma_size {
  text-align: center;
}


@media screen and (max-width: 649px) {
  .aroma_box {
    display: block;
    width: 100%;
}

  .aroma_image01, .aroma_image02 {
    width: 65%;
    margin: 20px auto;
  }

}









.tel {
  width: 100%;
  height: 250px;
  background-color: #EEEFE6;
  color: #594C51;
  text-align: center; 
  font-size: 16px;
  margin-top: 120px;
}

h3.tel-text {
  font-size: 24px;
  padding-top: 70px;
  padding-bottom: 5px;
}

p.tel {
  font-size: 37px;
  letter-spacing: 3px;
}

@media screen and (max-width: 650px) {
  p.tel {
    font-size: 30px;
    margin-top: 1px;
    }
  }


  .free {
    height: 47px;
    width: 470px;
    display: flex;
    margin: auto;
  }

  .free01 {
    height: 100%;
  } 

  .free02 {
    font-size: 55px;
    margin-top: -15px;
  } 

  img.free-logo {
    height: 100%;
    margin-right: 17px;
  }

  @media screen and (max-width: 650px) {
    .free {
      height: 36px;
      width: 365px;
      display: flex;
      margin: 7px auto 0 auto;
    }
    .free02 {
      font-size: 45px;
      margin-top: -14px;
    }
    img.free-logo {
      margin-right: 14px;
    }
  }

  @media screen and (max-width: 350px) {
    .free {
      height: 30px;
      display: flex;
    }
    .free02 {
      font-size: 35px;
      margin-top: -12px;
    }
    img.free-logo {
      margin-right: 14px;
    }
  }
  






  #page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    left: 0;
    bottom: 50px;
    background: #594C51;
    opacity: 0.8;
    border-radius: 50%;
    margin-left: 10px;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }







footer {
  width: 100%;
  height: 250px;
  background-color: #594C51;
  color: white;
  text-align: center;
  padding: 70px 0;
  font-size: 16px;
}



a.shinko {
  color: white;
}

a[target=_blank] {
	padding-right: 20px;
	background: url(./images/icon_blank.png) right center/11px auto no-repeat;
}

a.shinko:hover {
  opacity: 0.3;
  transition: 0.5s;
}

.copyright {
  font-size: 10px;
  margin-top: 60px;
}





/* --------------------------- お問合せ --------------------------- */




.inquiry-title {
  width: 80%;
  height: 60px;
  background-color: #594C51;
  margin: 150px auto 100px auto;
  border-radius: 7px;
  color: white;
  text-align: center;
  padding-top: 15px;
  font-size: 24px;
  letter-spacing: 0.18em;
  line-height: 30px;
  font-weight: 500;
}

@media screen and (max-width: 850px) {
  .inquiry-title {
    width: 100%;
    margin: 120px 0 80px 0;
  }
}




.mail_page_waku {
  width: 100%;
  height: 1210px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 850px) {
  .mail_page_waku {
    height: 1670px;
  }
}


.mail_page {
display: flex;
}

@media screen and (max-width: 850px) {
  .mail_page {
    display: block;
    }
}


dt {
padding-top: 12px;
}



.mail_page_interval {
height: 40px;
}

.mail_required {
color: red;
font-size: 12px;
display: inline-block;
display: inline;
}




.Form-Item-Input {
width: 70%;
height: 50px;
background: #EEEFE6;
border: none;
margin: 0 0 0 auto;
font-size: 15px;
padding: 0 10px;
border-radius: 7px;
}

@media screen and (max-width:850px) {
.Form-Item-Input {
  width: 100%;
  margin: 10px auto 0 auto;
}
}

textarea {
width: 70%;
height: 200px;
background: #EEEFE6;
border: none;
margin: 0 0 0 auto;
font-size: 15px;
padding: 0 10px;
resize: none;
border-radius: 7px;
}

@media screen and (max-width:850px) {
textarea {
  width: 100%;
  margin-top: 12px;
}
}



.merchandise {
  width: 70%;
  height: 180px;
  border: none;
  margin: 0 0 0 auto;
  padding: 0 10px;
  resize: none;
  line-height: 1.8em;
  font-size: 14px;
  }
  
  @media screen and (max-width:850px) {
  .merchandise {
    width: 100%;
    padding-top: 15px;
  }
  }

  @media screen and (max-width:650px) {
    .merchandise {
      height: 200px;
    }
    }



.Form-Btn {
height: 50px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
width: 200px;
display: block;
background: #594C51;
color: #fff;
font-size: 20px;
border: none;
border-radius: 7px;
}

.Form-Btn:hover {
background-color: rgb(165, 153, 157); 	/*リンクにマウスが乗ったら背景色を変更する*/
transition: 1s;
}


.privacy  {
  text-align: center;
}

span.privacy  {
  text-align: center;
  border-bottom: solid 1px #594C51;
  padding-bottom: 4px;
  line-height: 2em;
  color: #594C51;
}

span.privacy:hover {
  color: #aaa9a9;
  border-bottom: solid 1px #aaa9a9;
  transition: 1s;
  }







