@charset "UTF-8";
/* CSS Document */
.p_box {
  position: relative;
}
/*header {
  background: #191816;
}*/


/* main_img
--------------------------------------------------------------------*/
#main_img {
  background-image: url("../img/tweezers_main_img.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
}
#main_img .txt_box {
  position: absolute;
  width: 100%;
  top: 31.5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #FFFFFF;
}
#main_img .txt_box .ttl {
  font-size: 48px;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}
#main_img .txt_box .copy {
  font-size: 24px;
  letter-spacing: 0.3em;
  margin-bottom: 40px;
}
#main_img .txt_box .copy span {
  font-weight: normal;
  padding: 0 5px;
}
#main_img .txt_box .txt {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin-bottom: 100px;
}
#main_img .txt_box .buy_bt {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 0.1em;
}
#main_img .txt_box .buy_bt span {
  padding-right: 10px;
}
#main_img .txt_box .buy_bt span img {
  width: 10px;
  vertical-align: middle;
}
#main_img .txt_box .buy_bt a {
  display: block;
  padding: 15px 0;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
#main_img .scroll_animation {
  text-align: center;
  font-size: 14px;
  letter-spacing: 4px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
#main_img .scroll_animation a {
  padding-bottom: 30px;
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 0.15em;
}
#main_img .scroll_animation a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  margin-left: -12px;
  border-bottom: 1px solid #FFFFFF;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}

@keyframes sdb {
  0% {
    transform: rotate(90deg) translate(30px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(90deg) translate(50px, 0px);
    opacity: 0;
  }
}

@media screen and (max-width:768px) {
  #main_img {
    background: url("../img/tweezers_main_img_sp.jpg") center center / cover no-repeat;
  }
  #main_img .txt_box {
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
  }
  #main_img .txt_box .ttl {
    text-align: center;
    letter-spacing: 0.25em;
    font-size: 28px;
    margin-bottom: 20px;
  }
  #main_img .txt_box .copy {
    font-size: 13px;
    letter-spacing: .3em;
  }
  #main_img .scroll_animation {
    bottom: 40px;
  }
}


/* product
--------------------------------------------------------------------*/
#product {
  width: 100%;
  margin-top: -10%;
  position: relative;
  z-index: 1;
}
#product .inner {
  width: 100%;
/*  padding-left: calc((100% - 1200px) / 2);*/
  padding: 0 24px;
}
#product .container {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
#product article {
  width: 270px;
  margin-left: 48px;
}
#product article:first-of-type {
  margin-left: 0;
}
#product article a {
  display: block;
  with: 100%;
  height: 100%;
}
#product article a .img_box figure img {
  aspect-ratio: 1 / 1;
  width: 100%;
}
#product article a .txt_box {
  margin-top: 14px;
}
#product article a .txt_box .ttl {
  font-size: 12px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
#product article a .txt_box .ttl.jp_txt {
  letter-spacing: 0.15em;
}
#product article a .txt_box .copy {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.3em;
}
#product article a .txt_box .price {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
#product article a .txt_box .price span {
  display: inline-block;
  padding-left: 0.5em;
  font-size: 10px;
}

/* 発売前対応 */
#product article > a[href=""] {
  pointer-events: none;
}

@media screen and (max-width:768px) {
  #product {
    margin-top: 60px;
  }
  #product .inner {
    padding: 0 20px;
  }
  #product article {
    width: calc((100vw - (24px * 3))  / 2 );
    margin-left: 20px;
  }
}


/* concept
--------------------------------------------------------------------*/
#concept {
  margin-top: 144px;
}
#concept .inner {
  max-width: calc(1200px + (24px * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
#concept .ttl {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: 26px;
  letter-spacing: 0.3em;
  text-align: center;
}
#concept .ttl:before {
  content: '"';
  position: absolute;
  top: 0;
  left: -1em;
  vertical-align: top;
}
#concept .ttl::after {
  content: '"';
  position: absolute;
  bottom: 0;
  right: -0.7em;
  vertical-align: top;
  transform: rotate(180deg);
}
#concept .copy {
  margin-top: 24px;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.25em;
}
#concept .txt {
  margin-top: 52px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 2.4;
}
#concept .txt + .txt {
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  #concept {
    margin-top: 60px;
  }
  #concept .ttl {
    width: 100%;
    font-size: 24px;
    letter-spacing: 0.2em;
  }
  #concept .ttl:before {
    left: 0;
  }
  #concept .ttl:after {
    right: 0;
  }
  #concept .copy {
    margin-top: 48px;
    font-size: 24px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  #concept .txt {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    text-align: left;
  }
}  

/* fullImage
--------------------------------------------------------------------*/
.fullImage {
  width: 100%;
  margin-top: 144px;
}
.fullImage .inner {
  width: 100%;
}
.fullImage .inner figure {
  width: 100%;
}
.fullImage .inner figure img {
  width: 100%;
  height: auto;
}

@media screen and (max-width:768px) {
  .fullImage {
    margin-top: 92px;
  }
}

/* point
--------------------------------------------------------------------*/
#point {
  width: 100%;
  margin-top: 144px;
  margin-bottom: 144px;
}
#point .inner {
  width: 100%;
  max-width: calc(1200px + (24px * 2));
  margin: 0 auto;
  padding: 0 24px;
}
#point article {
  display: flex;
  justify-content: space-between;
  align-content: stretch;
  width: 100%;
  margin-top: 92px;
}
#point article:first-of-type {
  margin-top: 0;
}
#point article .img_box {
  width: 50%;
}
#point article .img_box figure {
  width: 100%;
  height: 100%;
}
#point article .img_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#point article .txt_box {
  width: 46%;
}
#point article .txt_box .ttl {
  font-size: 24px;
  letter-spacing: 0.2em;
}
#point article .txt_box .ttl_jp {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
#point article .txt_box .txt {
  margin-top: 48px;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 2.4;
}
#point article .txt_box .txt + .txt {
  margin-top: 30px;
  font-size: 12px;
}

#point article .txt_box .btn {
  display: inline-block;
  width: 60%;
  margin-top: 48px;
  padding-top: 16px;
  padding-right: 1em;
  padding-bottom: 16px;
  position: relative;
  border: rgba(25, 24, 22, .6) solid 1px;
  text-align: center;
  font-size: 12px;
}
#point article .txt_box .btn::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: calc(50% + ((4em + 1em - 6px) / 2));
  background: url("../../../img/btn_icon.svg") no-repeat;
  background-size: contain;
  transform: translateY(calc(-50% + 1px));
}
/* 発売前対応 */
#point article .txt_box .btn[href=""] {
  display: none;
}


@media screen and (max-width:768px) {
  #point {
    width: 100%;
    margin-top: 72px;
    margin-bottom: 92px;
  }
  #point .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #point article {
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
    margin-top: 72px;
  }
  #point article:first-of-type {
    margin-top: 0;
  }
  #point article .img_box {
    width: 100%;
  }
  #point article .txt_box {
    width: 100%;
    margin-top: 24px;
    padding: 0 24px;
  }
  #point article .txt_box .txt {
    margin-top: 24px;
  }

  #point article .txt_box .txt + .txt {
    font-size: 12px;
  }
  #point article .txt_box .btn {
    width: 100%;
  }

}

/* howto
--------------------------------------------------------------------*/
#howto {
  width: 100%;
  margin-top: 144px;
  position: relative;
  overflow: hidden;
}
#howto::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15%;
  left: 0;
  background: #191816;
  z-index: -1;
}
#howto .inner {
  width: 100%;
  max-width: calc(1000px + (24px * 2));
  margin: 0 auto;
  padding: 0 24px 92px;
}
#howto .mv_box {
  width: 100%;
}
#howto .btn {
  display: block;
  width: 325px;
  margin: 71px auto 0;
  padding-top: 16px;
  padding-right: 1em;
  padding-bottom: 16px;
  position: relative;
  border: rgba(255, 255, 255, .7) solid 1px;
  text-align: center;
  font-size: 12px;
  color: #ffffff
}
#howto .btn::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: calc(50% + ((4em + 1em - 6px) / 2));
  background: url("../../../img/btn_icon_wh.svg") no-repeat;
  background-size: contain;
  transform: translateY(calc(-50% + 1px));
}
@media screen and (max-width:768px) {
  #howto {
    margin-top: 92px;
    padding-top: 30px;
    background: #191816;
  }
  #howto::before {
    content: none;
  }
  #howto .btn {
    width: 100%;
    margin-top: 46px;
  }
}

