* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #080807;
}

a {
  color: #080807;
}

.sp-on {
  display: none;
}

img {
  width: 100%;
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 5%;
  z-index: 10;
}

.header-logo img {
  width: 190px;
}


/* fv */

.fv {
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.fv-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  /* gap: 80px; */

  padding: 120px 40px 60px;
}


/* left */

.cocotok-img {
  max-width: 420px;
}

.fv-text {
  width: 48%;
}


.fv-lead {
  color: #F50404;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 20px;
}


.fv-title {
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(70px, 8vw, 130px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}


.fv-copy {
  margin-top: 26px;
  font-size: 26px;
  font-weight: 600;
}


.fv-desc {
  margin-top: 35px;
  font-size: 18px;
  line-height: 2.1;
  font-weight: 700;
  letter-spacing: 0.05em;
}



/* right */


.fv-image {
  width: 42%;
}


.fv-image img {
  width: 100%;
  display: block;
}

.gallery {
  padding: 120px 40px;
}


.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 32px;
  row-gap: 60px;
}



.gallery-card a {
  display: block;
  text-decoration: none;
  /* color: #111; */
}



/* サムネ */

.gallery-img {
  width: 100%;
  /* aspect-ratio: 16 / 9;

  background: #d9d9d9; */

  /* border-radius: 8px; */

  overflow: hidden;

  transition: .3s;
}


.gallery-img img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

}



/* hover */

.gallery-card:hover .gallery-img {

  transform: translateY(-6px);

  box-shadow:
    0 0 14px rgba(179, 175, 150, .25);

}



.gallery-title {

  margin-top: 17px;
  font-size: 15px;
  font-weight: 600;

}


@media(max-width: 768px) {


  .header {
    padding: 25px;
  }


  .header-logo img {
    width: 130px;
  }



  .fv {
    min-height: auto;
  }



  .fv-inner {

    flex-direction: column;

    gap: 40px;

    padding:
      120px 24px 60px;
  }



  .fv-text,
  .fv-image {

    width: 100%;
  }


  .fv-text {
    text-align: center;
  }


  .fv-lead {

    font-size: 20px;

  }


  .fv-title {

    font-size: 64px;

  }


  .fv-copy {

    font-size: 20px;

  }


  .fv-desc {

    font-size: 15px;
    line-height: 2;

  }



  .fv-image {

    max-width: 320px;

  }


}

@media(max-width:900px) {

  .gallery-inner {

    grid-template-columns:
      repeat(2, 1fr);

  }

}



@media(max-width:600px) {


  .gallery {

    padding:
      50px 24px;

  }


  .gallery-inner {

    grid-template-columns: 1fr;

    row-gap: 40px;

  }

  .sp-on {
    display: block;
  }

  .cocotok-img {
    width: 90%;
  }

}

.footer {
  position: relative;

  margin-top: 160px;
}


/* 赤べこ */

.footer-character {

  margin: 0 auto;
  text-align: center;
  width: 100%;

}


.footer-character img {

  width: 100px;
  display: inline-block;

}



/* 黒背景 */


.footer-bottom {

  height: 90px;

  background: #1c1c1c;


  display: flex;

  justify-content: center;

  align-items: center;

}



.footer-bottom p {

  color: #fff;

  font-size: 14px;

  margin: 0;

}

@media(max-width:768px) {


  .footer {

    margin-top: 100px;

  }


  .footer-character img {

    width: 60px;

  }



  .footer-bottom {

    height: 45px;

  }


  .footer-bottom p {

    font-size: 10px;

  }

}


.detail {

  max-width: 1200px;
  margin: 0 auto;

  padding: 100px 0;
  margin-top: 100px;
}


/* 横並び */

.preview {

  display: flex;
  justify-content: center;
  align-items: flex-start;

  gap: 40px;

}



.preview-pc {

  width: 840px;
  height: 520px;

  overflow-y: auto;
  overflow-x: hidden;

  border: 6px solid #111;
  border-radius: 8px;

  background: #fff;

}


.preview-sp {

  width: 320px;
  height: 520px;

  overflow-y: auto;
  overflow-x: hidden;

  border: 6px solid #111;
  border-radius: 8px;

  background: #fff;

}


.preview-pc img,
.preview-sp img {

  width: 100%;
  height: auto;

  display: block;

}

.preview-pc,
.preview-sp {

  overflow-y: auto;
  overflow-x: hidden;

}


/* スクロールバー */
.preview-pc::-webkit-scrollbar,
.preview-sp::-webkit-scrollbar {

  /* width: 8px; */

}


/* レール透明 */
.preview-pc::-webkit-scrollbar-track,
.preview-sp::-webkit-scrollbar-track {

  background: transparent;

}


/* つまみ */
.preview-pc::-webkit-scrollbar-thumb,
.preview-sp::-webkit-scrollbar-thumb {

  background: rgba(120, 120, 120, .8);
  border-radius: 20px;

}


/* タイトル */


.site-title {

  margin-top: 30px;

  font-size: 18px;

  font-weight: 700;

}


.visit-btn {

  position: relative;

  width: 330px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1C1C1C;

  border-radius: 6px;

  color: #fff;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 0.1em;

  transition: .3s;

  margin: 0 auto;
  margin-top: 80px;
}


/* 矢印 */

.visit-icon {

  position: absolute;

  right: 24px;
  top: 50%;

  transform: translateY(-50%);


  width: 18px;
  height: 18px;




  display: flex;
  align-items: center;
  justify-content: center;


}



/* hover */

.visit-btn:hover {

  opacity: .8;

}


.visit-btn:hover .visit-icon {

  transform:
    translate(4px, -50%);
  transition: 0.3s;

}

@media(max-width:768px) {


  .detail {

    padding:
      0px 24px;

  }



  .preview {

    flex-direction: column;

    align-items: center;

    gap: 30px;

  }



  /* PCスクショもスマホ幅へ */

  .preview-pc {

    width: 100%;

    height: 350px;

  }



  .preview-sp {
        width: 260px;
          height: 360px;

  }



  .site-title {

    font-size: 15px;
            text-align: center;

  }



  .visit-btn {

    width: 100%;
    max-width: 330px;

    height: 64px;

  }

  .fv-image img{
        width: 80%;
          margin: 0 auto;
  }

}