@charset "UTF-8";
/* ---------------font--------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
.mincyou {
  font-family: "Noto Serif JP", serif;
}
.noto-sans {
  font-family: "Noto Sans JP", serif;
}
/* --------------------カラー-------------------- */
#BT{
  --color-brown: #A57B4D;
  --color-light-brown: #B08C64;
  --color-pink: #FF5A79;
  --color-gray: #767676;
  --color-light-gray: #707070;
  --color-blue: #4D70A5;
  --color-white: #FFFFFF;
  letter-spacing: 0;
}

/* --------------------共通-------------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', 'Noto Sans JP', sans-serif;
  background: var(--color-white);
}
@media screen and (min-width:767px) {
  body {
    min-width: auto;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  margin: 8rem 0 10rem;
  overflow: hidden;
}
.subtitle_pink {
  font-size: 4.6rem;
  color: var(--color-pink);
  text-align: center;
  font-weight: 500;
  margin-bottom: 6rem;
}
.text_brown {
  color: var(--color-brown);
  font-size: 4.6rem;
  font-weight: 500;
  margin: 1.6rem 0 6rem;
}
.lineup_img {
  margin: 0 auto;
}
.size_clothing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
.size_clothing span {
  color: var(--color-light-gray);
  border: .1rem solid var(--color-light-gray);
  padding: 0 1.4rem;
  text-align: center;
}
.price{
  font-size: 1.6rem;
  text-align: center;
  color: var(--color-light-gray);
}
.price > span {
  font-size: 1.3rem;
}
.color_correction {
  width: 16vw;
  text-align: center;
}
.color_correction img {
  margin: 0 auto;
  max-width: 100%;
}
.color_correction span {
  color: var(--color-gray);
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width:136rem) {
  .size_clothing span {
    padding: 0 .3rem;
  }
}
@media screen and (max-width:123rem) {
  .text_brown {
    font-size: 4rem;
  }
}
/* -

/* --------------------ボタン系-------------------- */
.btn_brown{
  max-width: 72rem;
  width: 50vw;
  background: var(--color-brown);
  text-align: center;
  margin: auto;
  position: relative;
}
.btn_brown a {
  height: 100%;
  display: block;
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.8rem;
  padding: 1.6rem;
}
.btn_brown img {
  position: absolute;
  top: 44%;
  right: 6%;
}
.approach_btn_brown,
.approach_btn_blue{
  width: 100%;
  max-width: 16.2rem;
  background: var(--color-brown);
  text-align: center;
}
.approach_btn_brown a,
.approach_btn_blue a {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
  padding: .7rem 0;
}
.approach_btn_blue{
  background: var(--color-blue);
}
.point_btn_brown,
.point_btn_blue {
  max-width: 39.4rem;
  background: var(--color-brown);
  position: relative; 
  text-align: center;
}
.point_btn_brown a,
.point_btn_blue a {
  display: block;
  padding: 1.6rem 2rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.2rem;
}
.point_btn_brown {
  width: 110%;
  left: 0%;
}
.point_btn_blue{
  background: var(--color-blue);
  width: 140%;
  left: 0%;
}

@media screen and (max-width:132rem) {
  .subtitle_pink {
    font-size: 3.8rem;
}
}
@media screen and (max-width:76.7rem) {
  .btn_brown{
    width: 80%;
    font-size: 1.8rem;
  }
}
/* -

/* --------------------MV-------------------- */
.mv {
  position: relative;
} 
.mv h1 img,
.subMV img {
  width: 100%;
}
/* --------------------ハンバーガーメニュー-------------------- */
.menu {
  position: absolute;
  top: 2%;
  left: 1.7%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 90;
}
.hamburger_menutext{
  color: #A97B50;
  font-size: 1.4rem;
  transform: translateY(-.4rem);
}

.hamburger_border {
  position: relative;
  display: block;
  width: 80%;
  height: 2.5rem;
  background: #A97B50;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.hamburger_border:nth-of-type(3) {
  transform: translateY(1rem);
}
.hamburger_border:nth-of-type(4) {
  transform: translateY(1.9rem);
}

#menu {
  display: none;
}
#menu:checked ~ .menu span:nth-of-type(2) {
  transform: translateY(1.5rem) rotate(45deg);
}

#menu:checked ~ .menu span:nth-of-type(3) {
  display: none;
}

#menu:checked ~ .menu span:nth-of-type(4) {
  transform: translateY(1.2rem) rotate(-45deg);
}

#menu:checked ~ .nav {
  left: 0;
  transition: left 500ms ease;
}

.nav {
  position: absolute;
  top: 0;
  left: -100%;
  width: 23%;
  height: 100%;
  background: rgba(242, 172, 188, 0.5);
  transition: left 500ms ease;
  z-index: 80;
}
.nav ul {
  margin: 10rem 0;
  text-align: left;
}
.nav ul li a {
  display: block;
  padding: 1.5rem 4rem;
  color: #A97B50;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav ul li a:hover {
  opacity: .7;
}
/* -

/* --------------------スキン-------------------- */
.skin_color {
  margin-bottom: 8rem;
}
.skin_color_inner {
  max-width: 138.4rem;
  margin: 0 auto;
  padding: 0 0 0 0;
}
.skin_color_stockings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7vw;
  margin-bottom: 6.4rem;
  position: relative;
}
.skin_color_texts img {
  max-width: 100%;
  margin-bottom: 2.4rem;
}
.skin_color_texts p {
  color: var(--color-gray);
  font-size: 3rem;
  font-weight: 500;
}
.skin_color_texts span {
  color: var(--color-gray);
  font-size: 2.4rem;
  font-weight: 400;
}
.skin_bg_gradation {
  position: absolute;
  top: -32%;
  left: 18%;
}
.skin_color_variations {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7vw;
  margin-bottom: 4.2rem;
}
.skin_color_variations_text {
  min-width: 16rem;
  background: #F7ACB3;
  border-radius: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem;
}
.skin_color_variations_text p {
  font-size: 4.6rem;
  color: var(--color-white);
  font-weight: 500;
}
.skin_color_variations_text p span {
  font-size: 3.4rem;
  display: block;
}
.skin_color_variations_color {
  display: flex;
  align-items: center;
  gap: 4rem
}
.skin_color_variations_color img {
  max-width: 100%;
}

@media (min-width: 1950px) {
  .skin_color_variations {
    gap: 8vw;
  }
}
@media screen and (max-width:1610px) {
  .skin_color_variations_text p {
    font-size: 3.2rem;
  }
  .skin_color_variations_text p span {
    font-size: 2.2rem;
  }
}
@media (max-width: 1500px) {
  .skin_color_variations {
    gap: 6vw;
  }
  .skin_color_variations_color img{
    width: 9vw;
  }
}
@media screen and (max-width:1320px) {
  .skin_color_variations_text {
    padding: 1rem;
 }
  .skin_color_texts p {
    color: var(--color-gray);
    font-size: 2.4rem;
    font-weight: 500;
  }
  .skin_color_texts span {
    font-size: 2rem;
  }
}
/* -

/* --------------------SNSクリエイター-------------------- */
.sns_creator {
  background: #F7E5E7;
  margin-bottom: 6rem;
  padding: 6rem 0 7rem;
}
.sns_creator_inner {
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 14rem;

}
.sns_creator_inner h2 {
  margin-bottom: 5.3rem;
  max-width: 100%;
}
.sns_creator_inner h2 img {
  margin: 0 auto;
  max-width: 100%;
}
.sns_creator_profile{
  max-width: 120rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sns_movie,
.sns_description {
  width: 36%;
  background: #EEAEBC;
  padding: 8rem 7.1rem;
}
.sns_description h3 {
  font-size: 3.4rem;
  color: var(--color-white);
  margin-bottom: 4rem;
  font-weight: 700;
}
.sns_description p {
  font-size: clamp(1rem, 0.167rem + 1.78vw, 1.5rem);
  color: var(--color-white);
  font-weight: 700;
}
.insta{
  overflow: hidden;
  padding-bottom: 125%;
  position: relative;
}
.sns_movie .insta iframe{
  max-width: 100%;
  min-width: auto !important;
  width: 100%;
  margin-top: -5.4rem !important;
  position: absolute;
}

@media (max-width: 1432px) {
  .sns_movie,
  .sns_description {
    width: 33%; 
  }
}
@media (max-width: 1240px) {
  .sns_movie,
  .sns_description {
    width: 29%; 
  }
}
/* -

/* --------------------アプローチ-------------------- */
.approach {
  width: 100%;
  margin-bottom:11.2rem;
}
.approach_inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.approach_inner p{
  font-size: 2.2rem;
  font-weight: 700;
  position: absolute;
  left: 2rem;
  bottom: 0;
}
.approach_inner p:nth-of-type(1){
  color: var(--color-brown);
  bottom: 22%;
}
.approach_inner p:nth-of-type(2){
  color: var(--color-blue);
  bottom: 2%;
}
.approach_color_img {
  width: 65vw;
  margin-left: auto;
}
.approach_colors {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.approach_stockings_type {
  width: 11.5vw; 
  display: flex;
  flex-direction: column;
}
.approach_stockings_type img {
  margin-bottom: 2.3rem;
  max-width: 100%;
}
.approach_top,
.approach_bottom {
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 1.1rem;
}
.approach_top {
  margin-bottom: 7.6rem;
}

@media screen and (max-width:1240px) {
  .approach_stockings_type {
    width: 10.5vw;
  }
  .approach_inner p{
    font-size: 2rem;
  }
}
@media screen and (min-width:1750px) {
  .approach_stockings_type {
    width: 10vw;
  }
}
@media screen and (min-width:1950px) {
  .approach_stockings_type {
    width: 8vw;
  }
}
@media screen and (min-width:2500px) {
  .approach_stockings_type {
    width: 7.1vw;
  }
}
/* -

/* --------------------アプローチ-------------------- */
.point {
  width: 100%;
}
.point_inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.point_inner h2 {
  width: 100%;
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-light-brown);
  text-align: center;
  margin-bottom: 4.6rem;
}
.point_inner h2::before,
.point_inner h2::after {
  content: "";
  width: 100%;
  height: .2rem;
  background: var(--color-light-brown);
  display: block;
}
.point_inner h2::before{
  margin-bottom: 2rem;
}
.point_inner h2::after{
  margin-top: 2rem;
}
.point_inner h2 span {
  font-size: 4.6rem;
  font-weight: 600;
}
.point_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 9rem;
  margin-bottom: 6.6rem;
}
.key_point {
  background: var(--color-light-brown);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--color-white);
  padding: .6rem 3.1rem;
  margin-bottom: 2rem;
  display: inline-block;
}
.point_subtitle {
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--color-light-brown);
  border-bottom: .2rem solid var(--color-light-brown);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  line-height: 1;
}
.point_subtitle:nth-of-type(1) {
  line-height: 1.5;
}
.point_texts {
  width: 57vw;
}
.color_correction {
  width: 16vw;
  min-width: 16rem;
  text-align: center;
}
.color_correction span {
  color: var(--color-gray);
  font-size: 1.6rem;
  font-weight: 600;
}
/* point1 */
.point1_description p {
  color: var(--color-gray);
  font-size: 1.8vw;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.point1_description span {
  font-size: 2.5rem;
  color: var(--color-gray);
  display: inline-block;
}
.point1_description span:nth-of-type(1) {
  margin-bottom: 2rem;
}
/* point2 */
.point2_text_beige {
  color: var(--color-light-brown);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.point2_text_black {
  color: var(--color-gray);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 8rem;
}
.point2_description_inner {
  display: flex;
  gap: 5%;
}
.point2_net_img {
  width: 100%;
}
.point2_net_img img {
  max-width: 100%;
}
.point2_right_img {
  margin-top: 7.2rem;
}
.point2_right_img img {
  max-width: 100%;
}

/* point3 */
.point3_box {
  width: 100%;
}
.color_about {
  max-width: 113.9rem;
  margin: 6rem auto 0;
}
.color_about_img img {
  margin: 0 auto;
  max-width: 100%;
}
.color_goods {
  position: relative;
  padding-left: 10%;
  padding-right: 20%;
  display: flex;
  gap: 10rem;
  margin: 6rem 0 8rem;
}
.color_goods:last-child {
  margin: 6rem 0;
}
.color_goods > img {
  position: absolute;
  top: 0;
  right: 2%;
  width: 10vw;
  max-width: 100%;
}
.color_goods_left,
.color_goods_right  {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.color_goods_left img,
.color_goods_right img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 3rem;
}
.pink_margin_bottom {
  margin-bottom: 4.1rem !important;
}
.color_goods_left_title,
.color_goods_right_title{
  color: var(--color-brown);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.color_goods_right_title {
  color: var(--color-blue);
}
.color_goods_detail {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  margin-bottom: 2.4rem;
}

@media screen and (max-width:1250px) {
  .point_inner h2 {
    font-size: 3.6rem;
  }
  .point_inner h2 span {
    font-size: 4rem;
  }
  .point_subtitle {
    font-size: 3.4rem;
  }
  .point1_description p {
    font-size: 2.1rem;
}
}
@media screen and (min-width:1950px) {
  .color_goods > img {
    width: 9vw;
  }
}
/* -
