/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
}
.mv_slider {
  position: relative;
  z-index: 1;
}
.mv_slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.scrolldown {
  position: absolute;
  bottom: 0px;
  right: 10%;
  z-index: 3;
}
.scrolldown span {
  position: absolute;
  left: 5px;
  bottom: 115px;
  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 3px;
  height: 20px;
  background: #000;
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 125px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 160px;
  background: #000;
}
.concept_bg {
  padding: 3em 0 2em;
  background: #000;
  text-align: left;
  color: #fff;
}
.concept {}
.concept_l {
  display: none;
}
.concept_r {
  width: 80%;
  margin: auto;
}
.concept_r h2 {
  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
  font-size: 5rem;
}
.concept_r div {
  margin: 0 auto 1em;
  font-size: 1.5rem;
}
.concept_r div span{
	  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
	font-size: 2.5rem;
}

.concept_r p {
  margin: 1em auto 0;
  line-height: 2.3;
}
.concept_r p img {
  display: none;
}
.concept_img {
  width: 90%;
  margin: 3em 0 0 auto;
  position: relative;
}
.concept_img div {
  position: absolute;
  bottom: 4em;
  left: -20px;
  width: 40%;
}
.product_heading {
  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
  color: #EFEFEF;
  font-size: 1.6rem;
}
.product_heading span {
  display: block;
  color: #fff;
  font-size: 5rem;
  line-height: 1.2;
}
.product_slider {
  margin: 1em auto 0;
}
.product_slider .slick-slide {
  margin: 0 10px;
}
.instagram {
  width: 90%;
  max-width: 1300px;
  margin: 1em auto 2em;
}
.news_bg {
  padding: 1em 0 3em;
  width: 85%;
  margin: auto;
}
.news_bg .news {
  margin: 0 auto 2em;
}
/* ------------------------------------ */
/* ▼PC用デザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .mv_slider img {
    height: 70vh;
  }
  .scrolldown {
    right: 5%;
  }
  .scrolldown span {
    bottom: 110px;
  }
  .concept_bg {
    padding: 7em 0 5em;
    overflow: hidden;
  }
  .concept {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .concept_l {
    position: relative;
    display: block;
    width: 50%;
  }
  .concept_l img:last-of-type {
    position: absolute;
    bottom: -4em;
    left: -4em;
    width: 50%;
    z-index: 3;
  }
  .concept_r {
    width: 40%;
    margin: 0;
  }
  .concept_r h2 {
    font-size: 8rem;
    line-height: 1;
  }
  .concept_r div {
    margin: 1.5em auto 1em;
    font-size: 2rem;
    letter-spacing: 6px;
  }
	
	.concept_r div span{
	
	font-size: 3.5rem;
}
	
  .concept_r p {
    margin: 1em auto 0;
    line-height: 2.3;
    letter-spacing: 5px;
    position: relative;
  }
  .concept_r p img {
    display: block;
    position: absolute;
    top: calc(100% + 100px);
    left: -45%;
    width: 60vw;
  }
  .concept_r > img {
    display: none;
  }
  .concept_img {
    display: none;
  }
  .product_heading {
    font-size: 2.5rem;
  }
  .product_heading span {
    letter-spacing: 6px;
    font-size: 8rem;
    line-height: 1;
  }
  .product_slider {
    margin: 2em auto 0;
  }
  .news_bg {
    padding: 1em 0 5em;
    width: 90%;
    max-width: 1000px;
  }
}