@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #545454;
}

body {
  font-family: "Inknut Antiqua", "Zen Antique", serif;
  background-color: #FBFBFB;
  color: #545454;
  width: 100%;
}

/* image modifier */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FV */
.sp-header {
  display: none;
}

#FV {
  display: flex;
  margin-bottom: 10%;
}

.logo {
  margin-left: 5%;
  margin-top: 30%;
}

.gnav-wrap {
  float: left;
  margin-left: 1%;
  position: fixed;
}

.gnav {
  padding-top: 35%;
  margin-bottom: 25%;
  font-size: 18px;
  padding-left: 30px;
  width: 120%;
}

.btn-mail {
  font-size: 20px;
  margin-left: 45%;
}

.btn-instagram {
  font-size: 23px;
  margin-left: 45%;
}

.menu > ul {
  margin-left: 3vw;
}

.product-menu {
  cursor: pointer;
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  font-size: 18px;
  padding-left: 0;
}

.product-menu:hover .dropdown {
  display: block;
}

.product-menu:hover + .contact-menu {
  margin-top: 75%;
  transition-duration: 0.4s;
}

.slideshow {
  float: right;
  margin-top: 6%;
  margin-left: auto;
  position: relative;
  width: 80vw;
  height: 80vh;
  overflow: hidden;
}

.img-01, .img-02, .img-03{
   position: absolute;
   top:0;
   left:0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
}
.img-01{
   background-image: url('../images/FV.webp');
   animation: slide-animation-01 24s infinite;
   opacity: 0.7;
}
.img-02{
   background-image: url('../images/Motifs/untitled-148.webp');
   animation: slide-animation-02 24s infinite;
}
.img-03{
   background-image: url('../images/Motifs/untitled-200.webp');
   animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}

@media screen and (min-width: 1600px) {
  .gnav-wrap {
    margin-top: 3%;
    margin-left: 1%;
  }

  .gnav {
    font-size: 22px;
  }

  .dropdown {
    font-size: 22px;
  }

  .btn-mail {
    font-size: 25px;
    margin-left: 40%;
  }
  
  .btn-instagram {
    font-size: 28px;
    margin-left: 40%;
  }
}

/* tablet FV */
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #FV {
    display: block;
    margin-bottom: 0;
  }

  .gnav-wrap {
    display: none;
  }

  .sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .sp-logo {
    padding-top: 3%;
    padding-left: 7%;
    z-index: 100;
  }

  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10%;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 1.5px;
    width: 40px;
    border-radius: 1px;
    background: #545454;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 10px;
  }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 10px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .slideshow {
    position: relative;
    width: 100vw;
    height: 550px;
    margin-top: 5%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }

  .img-01 {
    background-image: url('../images/spFV.png');
  }

  .img-02 {
    background-image: url('../images/spFV2.png');
  }

  .img-03 {
    background-image: url('../images/spFV3.png');
    object-fit: contain;
  }


  .img-01, .img-02, .img-03{
     position: absolute;
     top:0;
     left:0;
     width: 100%;
     height: 100%;
     background-repeat: no-repeat;
  }

  .menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 10%;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    transition: .5s;
    text-align: left;
    background: #FBFBFB;
    padding-top: 8%;
    padding-left: 5%;
    font-size: 18px;
  }

  #drawer_input:checked ~ .menu {
    left: 0;
  }

  .sp-dropdown {
    padding-left: 0;
  }

  .product-menu:hover + .contact-menu {
    margin-top: 0;
  }

  .btn-mail {
    margin-left: 0;
    font-size: 23px;
  }

  .btn-instagram {
    margin-left: 0;
    font-size: 26px;
  }

  .sp-snsbtn {
    padding-top: 5%;
  }
}

/* mobile FV */
@media screen and (max-width: 599px) {
  #FV {
    display: block;
    margin-bottom: 0;
  }

  .gnav-wrap {
    display: none;
  }

  .sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .sp-logo {
    padding-top: 2%;
    padding-left: 5%;
    z-index: 100;
  }

  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10%;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    border-radius: 1px;
    background: #545454;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .slideshow {
    position: relative;
    width: 100vw;
    height: 250px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }

  .img-01 {
    background-image: url('../images/spFV.png');
  }

  .img-02 {
    background-image: url('../images/spFV2.png');
  }

  .img-03 {
    background-image: url('../images/spFV3.png');
    object-fit: contain;
  }

  .img-01, .img-02, .img-03{
     position: absolute;
     top:0;
     left:0;
     width: 100vw;
     height: 250px;
     background-repeat: no-repeat;
  }

  .menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 13%;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    transition: .5s;
    text-align: left;
    background: #FBFBFB;
    padding-top: 8%;
    padding-left: 5%;
  }

  #drawer_input:checked ~ .menu {
    left: 0;
  }

  .sp-dropdown {
    padding-left: 0;
  }

  .product-menu:hover + .contact-menu {
    margin-top: 0;
  }

  .btn-mail {
    margin-left: 0;
    font-size: 23px;
  }

  .btn-instagram {
    margin-left: 0;
    font-size: 26px;
  }

  .sp-snsbtn {
    padding-top: 5%;
  }


}

/* About */

#About {
  display: flex;
}

.about-text {
  background-color: #EEEEEE;
  width: 70vw;
  height: 90vh;
  padding-top: 5%;
  float: left;
  z-index: -1;
  position: absolute;
}

.about-text h1 {
  font-size: 30px;
  font-weight: 400;
  padding-left: 220px;
}

.title1 {
  align-items: center;
  position: relative;
  display: inline-block;
}

.title1::after {
  background-color: #545454;
  content: "";
  width: 380px;
  height: 1.5px;
  margin-left: 25px;
  position: absolute;
  top: 50%;
  left: 100%;
}

.about-text h2 {
  font-size: 18px;
  font-weight: 300;
  width: 35vw;
  padding-top: 5%;
  padding-left: 220px;
  line-height: 200%;
}

.jp {
  margin-top: 4%;
}

.aboutimg {
  display: block;
  margin-top: 20%;
  margin-left: auto;
  float: right;
  z-index: 1;
  position: relative;
  max-width: 45vw;
  height: 85vh;
}

.aboutimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media screen and (min-width: 1600px) {
  #About {
    display: flex;
  }
  
  .about-text {
    background-color: #EEEEEE;
    width: 70vw;
    height: 100%;
    padding-top: 6%;
    float: left;
    z-index: -1;
    position: absolute;
  }
  
  .about-text h1 {
    font-size: 34px;
    font-weight: 400;
    padding-left: 260px;
  }
  
  .title1 {
    align-items: center;
    position: relative;
    display: inline-block;
  }
  
  .title1::after {
    background-color: #545454;
    content: "";
    width: 50vh;
    height: 1.5px;
    margin-left: 30px;
    position: absolute;
    top: 50%;
    left: 100%;
  }
  
  .about-text h2 {
    font-size: 23px;
    font-weight: 300;
    width: 40vw;
    padding-top: 6%;
    padding-left: 260px;
    line-height: 220%;
  }
  
  .jp {
    margin-top: 0;
  }
  
  .aboutimg {
    margin-top: 25%;
  }
  
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
  #About {
    width: 100vw;
    height: 100vh;
    padding-bottom: 25%;
    display: block;
  }

  .about-text {
    width: 100vw;
    height: 600px;
    text-align: left;
    padding-top: 8%;
    padding-bottom: 8%;
    position: relative;
  }

  .about-text h1 {
    font-size: 24px;
    font-weight: 400;
    padding-left: 5%;
    padding-bottom: 3%;
  }

  .about-text h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 180%;
    width: 88vw;
    padding-left: 5%;
    margin-bottom: 5%;
  }

  .jp {
    margin-top: 0;
  }

  .title1::after {
    background-color: #545454;
    content: "";
    width: 70vw;
    height: 1.5px;
    margin-left: 40px;
    position: absolute;
    top: 33%;
    left: 100%;
  }

  .aboutimg {
    margin-top: 70%;
    max-width: 70vw;
    position: absolute;
    right: 0;
  }

  .aboutimg img {
    height: 80%;
  }

}

@media screen and (max-width: 599px) {
  #About {
    width: 100vw;
    height: 100vh;
    padding-bottom: 30%;
    display: block;
  }

  .about-text {
    width: 100vw;
    height: 65vh;
    text-align: left;
    padding-top: 10%;
    padding-bottom: 10%;
    position: relative;
  }

  .about-text h1 {
    font-size: 20px;
    font-weight: 400;
    padding-left: 4%;
  }

  .about-text h2 {
    font-size: 15px;
    font-weight: 300;
    line-height: 160%;
    width: 90vw;
    padding-left: 4%;
    margin-top: 6%;
    margin-bottom: 6%;
  }

  .jp {
    margin-top: 5%;
  }

  .title1::after {
    background-color: #545454;
    content: "";
    width: 68vw;
    height: 1px;
    margin-left: 20px;
    position: absolute;
    top: 50%;
    left: 100%;
  }

  .aboutimg {
    max-width: 70vw;
    height: auto;
    margin-top: -25%;
  }

}

/* Product */

#Product {
  padding-top: 150px;
  padding-left: 220px;
  padding-bottom: 200px;
}

.title2 {
  align-items: center;
  position: relative;
  display: inline-block;
}

.title2::after {
  background-color: #545454;
  content: "";
  width: 370px;
  height: 1.5px;
  margin-left: 25px;
  position: absolute;
  top: 50%;
  left: 100%;
}

#Product h1 {
  font-size: 30px;
  font-weight: 400;
}

#Product h2 {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.product-name {
  padding-top: 50px;
  padding-bottom: 20px;
}

#product-list2 {
  padding-top: 80px;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 200%;
}

.item {
  padding-right: 80px;
  width: 20%;
  position: relative;
}

.pc-img {
  display: block;
  margin: 0 auto;
}
.sp-img {
  display: none;
}

.item .caption {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #FBFBFB;
  padding-top: 45%;
  margin: 0 auto;
}

.item .mask {
  width: 320px;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(84, 84, 84, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.item .mask:hover{
  opacity: 1;
}

.item-name {
  font-size: 14px;
  width: 320px;
  padding-top: 3%;
  padding-bottom: 7%;
}

.item:not(:nth-child(3n+3)) {
  margin-right: 5%;
}

.item:nth-child(n+4) {
  margin-top: 30px;
}

@media screen and (min-width: 1600px) {
  #Product {
    padding-top: 180px;
    padding-left: 270px;
    padding-bottom: 180px;
  }

  .item {
    padding-right: 7%;
  }

  .pc-img {
    margin-left: 0;
  }

  #Product h1 {
    font-size: 34px;
  }

  .title2::after {
    width: 45vh;
  }

}

@media screen and (min-width: 600px) and (max-width: 1100px) {
  #Product .wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 5%;
    margin: 0 auto;
  }

  #Product .item {
    width: 28%;
    margin-top: 3%;
    margin-bottom: 3%;
    box-sizing: border-box;
  }

  .title2::after {
    background-color: #545454;
    content: "";
    width: 68vw;
    height: 1.5px;
    margin-left: 40px;
    position: absolute;
    top: 50%;
    left: 100%;
  }

  #Product h1 {
    padding-left: 5%;
    font-size: 24px;
  }

  #Product h2 {
    font-size: 13px;
    width: 175px;
  }

  #Product {
    padding-left: 0;
    padding-top: 10%;
  }

  .pc-img {
    display: none;
  }

  .sp-img {
    display: block;
  }

  .item-name {
    padding-top: 3%;
    font-size: 15px;
  }

  .item .mask {
    width: 175px;
    height: 175px;
  }

  .item .caption {
    font-size: 11px;
  }

  .product-name {
    padding-top: 5%;
    padding-bottom: 0;
  }

  .item {
    margin-right: 5%;
  }

  #product-list2 {
    padding-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  #Product .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-left: 4%;
    margin: 0 auto;
  }

  #Product .item {
    width: 45%;
    margin-top: 3%;
    margin-bottom: 3%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .title2::after {
    background-color: #545454;
    content: "";
    width: 63vw;
    height: 1px;
    margin-left: 20px;
    position: absolute;
    top: 50%;
    left: 100%;
  }

  #Product h1 {
    padding-left: 4%;
    font-size: 20px;
  }

  #Product h2 {
    font-size: 13px;
    width: 175px;
  }

  #Product {
    padding-left: 0;
    padding-top: 0;
  }

  .pc-img {
    display: none;
  }

  .sp-img {
    display: block;
  }

  .item-name {
    padding-top: 3%;
    font-size: 13px;
  }

  .item .mask {
    width: 175px;
    height: 175px;
  }

  .item .caption {
    font-size: 11px;
  }

  .product-name {
    padding-top: 6%;
    padding-bottom: 0;
  }

  .item {
    margin-right: 5%;
  }
  
  #product-list2 {
    padding-top: 30px;
  }

  #Product {
    padding-bottom: 100px;
  }

  .item:hover {
    transform:scale(1.1);
	  transition:0.3s;
  }
  


}

/* Contact */

#Contact {
  width: 100%;
  height: 820px;
  background-color: #EEEEEE;
  text-align: center;
}

#Contact h1 {
  font-size: 28px;
  font-weight: 300;
  padding-top: 100px;
  padding-bottom: 50px;
}

.contact-content {
  margin: 0 auto;
  text-align: center;
}

.form-item {
  width: 550px;
  height: 65px;
  font-size: 20px;
  font-family: "Inknut Antiqua";
  font-weight: 300;
  margin-bottom: 30px;
  padding-left: 20px;
  background-color: #EEEEEE;
  border: 1px solid rgba(84, 84, 84, 0.8);
}

textarea {
  width: 550px;
  height: 120px;
  font-size: 20px;
  font-family: "Inknut Antiqua";
  font-weight: 300;
  margin-bottom: 30px;
  padding-left: 20px;
  background-color: #EEEEEE;
  border: 1px solid rgba(84, 84, 84, 0.8);
}

#submit {
  width: 180px;
  height: 70px;
  font-size: 22px;
  font-family: "Inknut Antiqua";
  font-weight: 300;
  color: #545454;
  border: 2px solid #545454;
  background-color: #EEEEEE;
  margin-top: 50px;
}

#submit:hover {
  background-color: #545454;
  color: #FBFBFB;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  #Contact h1 {
    font-size: 18px;
    padding: 40px 0 30px 0;
  }

  .form-item {
    width: 240px;
    height: 40px;
    font-size: 13px;
    padding-left: 10px;
    border-radius: 0;
  }

  textarea {
    width: 240px;
    height: 80px;
    font-size: 13px;
    margin-bottom: 0;
    padding-left: 10px;
    border-radius: 0;
  }

  #submit {
    width: 140px;
    height: 50px;
    font-size: 16px;
    border: 1.3px solid #545454;
    margin-top: 30px;
  }

  #Contact {
    height: 520px;
  }
}

/* footer */

#footer {
  width: 100vw;
  height: 80px;
  background-color: #676262;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer h2 {
  font-size: 10px;
  font-weight: 300;
  color: #FBFBFB;
  text-align: center;
}


/* 商品詳細 */

.detail-logo {
  padding-left: 4%;
  padding-top: 2%;
}

#Details {
  display: flex;
  padding-top: 30px;
  margin-bottom: 100px;
}

.detail-spheader {
  display: none;
}

.detail-img {
  display: block;
  margin-left: 70px;
  position: relative;
}

.main-img {
  position: relative;
  width: 600px;
  height: 650px;
  object-fit: cover;
}

.spmain-img {
  display: none;
}

.arrow1 {
  position: absolute;
  top: 33%;
  left: 0;
  opacity: 0.7;
}

.arrow2 {
  position: absolute;
  top: 33%;
  right: 0;
  opacity: 0.7;
}


.swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}

.swiper-slide:nth-child(4n+1),
.swiper-slide:nth-child(4n+2),
.swiper-slide:nth-child(4n+3),
.swiper-slide:nth-child(4n+4),
.swiper-slide:nth-child(4n+5),
.swiper-slide:nth-child(4n+6),
.swiper-slide:nth-child(4n+7),
.swiper-slide:nth-child(4n+8) {
  width: 25%;
}

.swiper-slide {
  transition: opacity 0.3s ease; /* ホバー時のトランジションを設定 */
  object-fit: cover;
}

.swiper-slide:hover {
  opacity: 0.6; /* ホバー時の透明度を設定 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.detail-text {
  width: 650px;
  height: auto;
  margin-left: 70px;
  margin-right: 70px;
}

.detail-text h1 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 1%;
}

.detail-text h2 {
  font-size: 18px;
  color: rgba(203, 63, 58);
}

.wdh {
  font-size: 15px;
  padding-bottom: 3%;
}

.cta {
  font-weight: bold;
  margin-top: 50px;
  padding-top: 4%;
  padding-bottom: 4%;
  border-top: 1px solid rgba(84,84,84,0.5);
}

.sp-swiper-container {
  display: none;
}

.detail-contact {
  padding: 0.5em 5em;
  border: solid 1px #545454;
}

.detail-contact:hover {
  background-color: #545454;
  color: #FBFBFB;
}

.detail-info {
  font-size: 13px;
  padding-top: 5%;
  line-height: 3em;
}

.price {
  font-size: 24px;
}

.detail-jp {
  padding-top: 5%;
}

@media screen and (min-width: 1600px) {
  .detail-img {
    margin-left: 10%;
  }

  .detail-text {
    margin-left: 10%;
  }

  .detail-logo {
    padding-left: 10%;
  }
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
  .detail-logo {
    display: none;
  }

  #Details {
    display: block;
    width: 100vw;
    padding-top: 0;
  }

  .detail-spheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .main-img {
    display: none;
  }

  .spmain-img {
    display: flex;
    width: 100vw;
    height: 65vh;
    padding-top: 20px;
    padding-bottom: 20px;
    object-fit: cover;
  }

  .sp-swiper-container {
    display: none;
  }

  .swiper-wrapper {
    max-width: 90vw;
    margin: 0 auto;
  }

  .detail-text h1 {
    font-size: 22px;
    font-weight: bold;
  }

  .detail-text {
    width: 90vw;
    height: auto;
    margin: 5% 0;
    font-size: 18px;
    padding-left: 5%;
  }

  .detail-text p {
    line-height: 180%;
  }

  .detail-img {
    margin-left: 0;
  }

  .arrow1 {
    top: 35%;
  }

  .arrow2 {
    top: 35%;
  }

  .detail-info p {
    padding-top: 5%;
    width: 90vw;
    line-height: 2.5em;
    font-size: 13px;
  }

  .detail-contact {
    padding: 2% 33%;
    margin: 0 auto;
  }

  .wdh {
    padding-top: 2%;
    padding-bottom: 4%;
    font-size: 16px;
  }

  .cta {
    padding-top: 6%;
    padding-bottom: 8%;
  }
}

@media screen and (max-width: 599px) {
  .detail-logo {
    display: none;
  }

  #Details {
    display: block;
    width: 100vw;
    padding-top: 0;
  }

  .detail-spheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .main-img {
    display: none;
  }

  .spmain-img {
    display: flex;
    width: 100vw;
    height: 350px;
    padding-top: 20px;
    padding-bottom: 20px;
    object-fit: cover;
  }

  .sp-swiper-container {
    display: block;
  }

  .sp-swiper-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 5%;
    padding-right: 5%;
  }


  .sp-swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .swiper-wrapper .swiper-slide {
    display: none;
  }

  .detail-text h1 {
    font-size: 20px;
    font-weight: bold;
  }

  .detail-text {
    width: 90vw;
    height: auto;
    margin: 10% 0;
    font-size: 16px;
    padding-left: 5%;
  }

  .detail-text p {
    line-height: 180%;
  }

  .detail-img {
    margin-left: 0;
  }

  .arrow1 {
    top: 35%;
  }

  .arrow2 {
    top: 35%;
  }

  .detail-info p {
    padding-top: 6%;
    width: 90vw;
    line-height: 2.2em;
  }

  .detail-contact {
    padding: 2% 25%;
    margin: 0 auto;
  }

  .wdh {
    padding-top: 2%;
    padding-bottom: 5%;
  }

  .cta {
    padding-top: 6%;
    padding-bottom: 8%;
  }

  .price {
    font-size: 20px;
  }


}
