/* ファーストビューのスタイル */
.mainvisual{
  background-image: url(../images/mainvisual.jpeg);
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 100vh;
  margin-bottom: 80px;
  background-attachment: fixed;
}

.scroll{
  height: 180px;
  width: auto;
  margin-top: 75vh;
  margin-left: 15px;
  position: fixed;
  filter: drop-shadow(1px 1px 2px rgb(65, 65, 65));
}

@media(max-width:640px){
  .mainvisual{
    height: 70vh;
    background-image: url(../images/sp-mainvisual.jpeg);
    background-size: 120%;
    background-attachment: unset;
 }

  .scroll{
    display: none;
  }
}

/* Conceptセクションのスタイル */
.concept span{
  display: block;
  padding-top: 24px;
  padding-bottom: 80px;
}

.concept{
  position: relative;
  text-align: center;
}

.concept h2{
  text-align: left;
}

.copy{
  font-size: 36px;
  letter-spacing: 0.6rem;
  margin-bottom: 16px;
  z-index: 500;
  background: linear-gradient(transparent 60% ,rgba(139, 160, 142, 0.6) 0%);
  display: inline;
}

/* Conceptのあしらい */
.concept::before{
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/sun_top.svg);
  background-size: cover;
  width: 143px;
  height: 146px;
  top: -11%;
  left: 75%;
}

.concept::after{
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/sun_bottom.svg);
  background-size: cover;
  width: 143px;
  height: 146px;
  top: 60%;
  left: 5%;
}
 



@media(max-width:640px){

  .copy{
    letter-spacing: 0.4rem;
    font-size: 34px;
  }

  .concept::before{
    width: 110px;
    height: 120px;
    top: -5%;
    left: 75%;
  }

  .concept::after{
    width: 120px;
    height: 110px;
    top: 75%;
    left: -10%;
  }
}

@media(min-width:641px){
  .marker-sp{
    display: none;
  }
}
/* ページ上部、固定背景のスタイル */
.background-top{
  width: 100%;
  height: 320px;
  background-image: url(../images/background-top.jpeg);
  background-size: cover;
  margin-bottom: 80px;
  background-attachment: fixed;
}


@media(max-width:640px){
  .background-top{
    background-position: right center;
    height: 280px;
    margin-bottom: 100px;
    background-size: 140%;
    background-attachment: unset;
  }  
}

/* Aboutセクションのスタイル */
.about-wrap{
  position: relative;
  width: 720px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.about figure{
  width: 325px;
  height: 325px;
  background-image: url(../images/about.jpg);
  background-size: cover;
}

.about .text {
  width: 340px;
  text-align: justify;
}

.text-top{
  padding-top: 24px;
}

.about span{
  display: block;
  padding-top: 24px;
}



.about-copy{
  font-size: 34px;
  letter-spacing: 0.6rem;
  margin-bottom: 8px;
  z-index: 500;
  background: linear-gradient(transparent 60% ,rgba(139, 160, 142, 0.6) 0%);
  display: inline;
}



@media(max-width:640px){

  .about-copy{
    font-size: 30px;
    letter-spacing: 0.3rem;
  }

  .about .text{
    width: 100%;
  }

  .about-wrap{
    flex-direction: column;
    width: 90%;
  }

  .about figure{
    margin-left: auto;
    margin-right: 0;
    margin-top: 40px;
    width: 200px;
    height: 200px;
  }
}

/* Howtoセクションのスタイル */
.howto{
  padding-bottom: 120px;
}
.howto p{
  text-align: justify;
}
.sub-text p{
  width: 360px;
}

.howto-wrap{
  flex: 0 0 50%;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.content{
  position: relative;
  width: 100%;
}

@media(max-width:640px){
  .howto-wrap{
    flex: 0 0 80%;
    padding-top: 10px;
    padding-bottom: 20px; 
    padding-right: 30px;
    padding-left: 30px;
  }

  .howto h2{
    margin-left: 10%;
  }

  .sub-text p{
    width: 100%;
  }

  .howto{
    max-width: 100%;
  }

}

/* 1.guidebook */
.guidebook{
  position: relative;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
  background-image: url(../images/hearlium_card.jpg);
  height: 320px;
  background-size: cover;
  background-position: left top;
  margin-bottom: 24px;
}

.guidebook:after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 60px;
  height: 200px;
  background-image: url(../images/number1.png);
  background-size: cover;
  top: 52%;
  left: 93%;
  filter: drop-shadow(1px 1px 1px #fff);
  z-index: 900;
}

/* 2.customize */
.customize{
  display: flex;
  text-align: right;
  align-items: center;
  padding-right: 40px;
  justify-content: flex-end;
  background-image: url(../images/customize.jpeg);
  height: 320px;
  background-size: cover;
  background-position: left;
  margin-bottom: 24px;
}

.customize:after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 100px;
  height: 200px;
  background-image: url(../images/number2.png);
  background-size: cover;
  top: 55%;
  left: 0%;
  filter: drop-shadow(1px 1px 1px #fff);
  z-index: 900;
}

.customize p{
  text-align: left;
}

/* 3.caregoods */
.caregoods{
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
  background-image: url(../images/caregoods.jpeg);
  height: 320px;
  background-size: cover;
  background-position: bottom;
  margin-bottom: 64px;
}

.caregoods:after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 100px;
  height: 200px;
  background-image: url(../images/number3.png);
  background-size: cover;
  top: 55%;
  left: 88%;
  filter: drop-shadow(1px 1px 1px #fff)
}

@media(max-width:640px){
     .guidebook{
       background-position: center bottom;
       padding-left: 0;
     } 

     .customize{
      padding-right: 0;
    }

     .caregoods{
       background-position: right;
       padding-left: 0;
     }

    .guidebook,.customize{
      margin-bottom: 0px;
    }
  
    .guidebook ,
    .customize ,
    .caregoods{
      height: 280px;
      justify-content: center;
      text-align: center;
    }

  .guidebook:after{
    left: 84%;
  }

  .caregoods:after{
    left: 74%;
  }

  .howto p{
    font-size:13px;
  }
}


/* リンク設定 */
.link{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.link:hover{
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}

/* プレゼントページに促すボタン */
.prezent-btn{
  position: relative;
  display: block;
  width: 320px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  background-color: rgb(123, 145, 127);
  border-radius: 6px;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.3rem;
}

.prezent-btn span{
  font-size: 18px;
  letter-spacing: 3px;
}

.prezent-btn span::before{
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/sun_white.svg);
  background-size: contain;
  width: 33px;
  height: 34px;
  top: 8%;
  left: 6%;
}

/* Product（商品紹介）のセクションn */
.item{
  display: flex;
  flex-direction: column;
}

.item-wrap{
  width: 780px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

.item a:hover{
  opacity: 0.6;
}

@media(max-width:640px){
  .item-wrap{
    width: 80%;
    justify-content: center;
  }

  .item-wrap .none{
    display: none;
  }
}

/* Pick 商品ラベル */
.item-wrap .label{
  text-align: center;
  width: 56px;
  background-color: rgb(70, 89, 72);
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}

.item-wrap .none{
  background-color: #fff;
}

.item img{
  object-fit: contain;
  width: 218px;
  height: 218px;
}

.item-wrap .name{
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.item-wrap .name::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 0%;
  width: 56px;
  height: 1px;
  background-color: #B7A68D;
}

.item-wrap .name::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 0%;
  width: 56px;
  height: 1px;
  background-color: #B7A68D;
}

.item-wrap .item:first-child{
  margin-bottom: 48px;
}

.name p:last-child{
  font-size: 20px;
  font-weight: bold;
}

/* 探し方ボタンのスタイル */
.choice{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 720px;
}

.choice .btn{
  position: relative;
  display: inline-block;
  padding: 3px 23px 20px 10px;
  width: 220px;
  text-align: center;
  border-radius: 6px;
  margin-top: 56px;
  letter-spacing: 3px;
  font-size: 14px;
}

.choice .btn span{
  font-size: 18px;
  letter-spacing: 3px;
}

.before_sun{
  width: 30px;
  height: 32px;
  margin-bottom: 6px;
}

@media(max-width:640px){
  .choice{
    width: 50%;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .choice .btn{
    margin-top: 24px;
  }
}

/* Q＆Aセクションのスタイル */
.qa span{
  font-size: 24px;
  padding-right: 8px;
  color: #B7A68D; 
}

.qa dd span{
  font-size: 20px;
}
.qa-list dl{
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid #B7A68D;
  border-radius: 6px;
}

.qa-list dl:first-child{
  margin-top: 0;
}

.qa-list dl dt{
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 40px; 
}

.qa-list dl dd{
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 40px;
}

/* Contactセクションのスタイル */

.contact-wrap figure{
  width: 325px;
  height: 325px;
  background-image: url(../images/contact.jpeg);
  background-size: cover;
  background-position: center;
}

.contact-wrap{
  width: 720px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.contact span{
  display: block;
  padding-top: 24px;
}

.contact .btn{
  display: inline-block;
  padding: 16px 40px;
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 6px;
}

@media(max-width:640px){

  .contact-wrap{
    flex-direction: column;
    width: 90%;
  }

  .contact-wrap span{
    text-align: justify;
  }

  .contact .btn{
    display: block;
    text-align: center;
  }

  .contact-wrap figure{
    width: 200px;
    height: 200px;
  }

}

/* Photoセクションのスタイル */

.multiple-items{
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.multiple-items img{
    width: 240px;
    height: 240px;
    object-fit: cover;
}

.photo ul{
  max-width: 960px;
}

.slick-dots li button:before{
	font-size:30px!important;
}

@media(max-width:640px){
  .multiple-items{
    width: 80%;
  }
  .multiple-items img{
    object-fit: contain;
  }
}
/* ページ下部、固定背景のスタイル */
.background-bottom{
  width: 100%;
  height: 320px;
  background-image: url(../images/footer_image.jpeg);
  background-size: 110%;
  background-position: left;
  margin-top: 180px;
  margin-bottom: 80px;
  background-attachment: fixed;
}

@media(max-width:640px){
  .background-bottom{
    background-size: 160%;
    background-position: left;
    height: 280px;
    margin-top: 80px;
    background-attachment: unset;
  }
}

/* footerのSNSアイコン */
.sns-icon{
  display: flex;
  justify-content: space-between;
  width: 88px;
  margin: 0 auto;
}

footer i{
  font-size: 32px;
  color: #4b4b4b;
}