@charset "UTF-8";
/*------------------------------
media query
------------------------------*/
/*------------------------------
変数の定義
--------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*----------------------------------
色
----------------------------------*/
/*----------------------------------
アニメーション
----------------------------------*/
.fadeIn {
  opacity: 0;
}
.fadeIn.active {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInUp {
  opacity: 0;
}
.fadeInUp.active {
  animation: fadeInUp 1s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeZoomIn {
  opacity: 0;
}
.fadeZoomIn.active {
  animation: fadeZoomIn 2s cubic-bezier(0.3, 0.55, 0.45, 1) forwards;
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeSlideIn {
  opacity: 0;
}
.fadeSlideIn.active {
  animation: fadeSlideIn 0.6s ease-out 0.4s forwards;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*----------------------------------
text
----------------------------------*/
#about p {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 449px) {
  #about p {
    font-size: 3.2vw;
  }
}
#about p, #about a, #about h3, #about div {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

/*----------------------------------
上左右の余白15px をなくす
----------------------------------*/
.cmn-fluid {
  width: auto !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
  margin-top: -30px !important;
}
@media screen and (max-width: 768px) {
  .cmn-fluid {
    margin-top: -15px !important;
  }
}

/*----------------------------------
KV
----------------------------------*/
.kv_pc {
  display: flex;
  height: 70vh;
  min-height: 540px;
}
@media screen and (max-width: 768px) {
  .kv_pc {
    display: none;
  }
}
.kv_pc .kv_ph {
  width: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../img/about/kv_pc_1031.jpg);
}
.kv_pc .kv_text_area {
  width: 40%;
  background: linear-gradient(to bottom right, #fbe4e9 0%, #ffd3dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kv_pc .kv_text_area img {
  max-width: 319px;
  width: 80%;
}

.kv_sp {
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv_sp {
    display: block;
  }
}
.kv_sp .kv_ph {
  width: 100%;
}
.kv_sp .kv_ph img {
  display: block;
  width: 100%;
}
.kv_sp .kv_text_area {
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: auto;
  width: 70%;
  max-width: 530px;
}
.kv_sp .kv_text_area img {
  display: block;
  width: 100%;
}

/*----------------------------------
we_etude
----------------------------------*/
.we_etude {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../img/about/we_etude_bg_pc.webp);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .we_etude {
    background-image: url(../../img/about/we_etude_bg_sp.webp);
    padding: 60px 0;
  }
}
.we_etude > div {
  text-align: center;
  margin-bottom: 40px;
}
.we_etude .color img {
  width: 94px;
  height: auto;
  display: inline-block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .we_etude .color img {
    width: 20.18%;
  }
}
@media screen and (max-width: 449px) {
  .we_etude .color img {
    margin: 0 auto 10px;
  }
}
.we_etude .pink img {
  width: 75px;
  height: auto;
  display: inline-block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .we_etude .pink img {
    width: 16.27%;
  }
}
.we_etude .princess {
  margin-bottom: 0;
}
.we_etude .princess img {
  width: 141px;
  height: auto;
  display: inline-block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .we_etude .princess img {
    width: 30.33%;
  }
}
.we_etude .makeup_playlist {
  margin-top: 50px;
  margin-bottom: 0;
}
.we_etude .makeup_playlist img {
  width: 358px;
  height: auto;
  display: inline-block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .we_etude .makeup_playlist img {
    width: 77.6%;
  }
}

/*----------------------------------
concept
----------------------------------*/
.concept {
  background: linear-gradient(to bottom, #faeaee 0%, #ffd3dc 100%);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 60px 0;
  }
}
.concept img {
  display: block;
  width: 100%;
}
.concept .pc_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .concept .pc_flex {
    display: none;
  }
}
.concept .pc_flex .left {
  width: 46%;
}
.concept .pc_flex .right {
  width: 46%;
}
.concept .pc_flex .right .concept_text_area {
  margin-top: 60px;
}
.concept .pc_flex .right .concept_text_area h3 {
  font-size: 24px;
  color: #ffa2c9;
  font-weight: 700;
  width: 90%;
  margin: 40px auto 20px;
}
.concept .pc_flex .right .concept_text_area .txt {
  width: 90%;
  margin: auto;
  line-height: 2;
}
.concept .pc_flex .images {
  position: relative;
}
.concept .pc_flex .images .images_img {
  position: relative;
  overflow: hidden;
  background-color: rgba(250, 234, 238, 0.6);
}
.concept .pc_flex .images .images_img::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
}
.concept .pc_flex .images .images_img img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.concept .pc_flex .images .images_img01 {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
.concept .pc_flex .images .images_img01::after {
  padding-top: 141.66%;
}
.concept .pc_flex .images .images_img02 {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
.concept .pc_flex .images .images_img02::after {
  padding-top: 141.66%;
}
.concept .sp {
  width: 90%;
  margin: auto;
}
.concept .sp .concept_text_area {
  margin: 0 auto 60px;
}
.concept .sp .concept_text_area h3 {
  font-size: 24px;
  color: #ffa2c9;
  font-weight: 700;
  width: 90%;
  margin: 40px auto 20px;
}
.concept .sp .concept_text_area .txt {
  line-height: 2;
  width: 90%;
  margin: auto;
}
.concept .sp .images {
  position: relative;
}
.concept .sp .images .images_img {
  position: relative;
  overflow: hidden;
  background-color: rgba(250, 234, 238, 0.6);
}
.concept .sp .images .images_img::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
}
.concept .sp .images .images_img img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.concept .sp .images .images_img01 {
  width: 74%;
  margin-right: 0;
  margin-left: auto;
}
.concept .sp .images .images_img01::after {
  padding-top: 142.35%;
}
.concept .sp .images .images_img02 {
  position: relative;
  z-index: 1;
  width: 51%;
  margin-left: 0;
  margin-right: auto;
  margin-top: -20%;
}
.concept .sp .images .images_img02::after {
  padding-top: 141.41%;
}

/*----------------------------------
LOGO
----------------------------------*/
.logo {
  background-color: #ffd3dc;
  text-align: center;
  padding: 0 0 60px;
}
.logo img {
  width: 300px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .logo img {
    width: 45%;
    max-width: 250px;
  }
}

/*----------------------------------
texture
----------------------------------*/
.texture .images {
  position: relative;
}
.texture .images .wrapper {
  display: flex;
}
.texture .images .images_img {
  position: relative;
  overflow: hidden;
  background-color: rgba(250, 234, 238, 0.6);
}
.texture .images .images_img::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
}
.texture .images .images_img img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.texture .images .images_img01 {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}
.texture .images .images_img01::after {
  padding-top: 100%;
}
.texture .images .images_img01 img {
  display: block;
  width: 100%;
}
.texture .images .images_img02 {
  position: relative;
  z-index: 1;
  width: 50%;
  margin-left: 0;
  margin-right: auto;
}
.texture .images .images_img02::after {
  padding-top: 100%;
}
.texture .images .images_img02 img {
  display: block;
  width: 100%;
}

/*----------------------------------
middle_kv
----------------------------------*/
.middle_kv {
  background-color: #faeaee;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .middle_kv {
    padding: 0;
  }
}
.middle_kv .ph {
  width: 90%;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .middle_kv .ph {
    width: 100%;
    max-width: none;
  }
}
.middle_kv .ph img {
  display: block;
  width: 100%;
}
.middle_kv .images {
  position: relative;
}
.middle_kv .images .images_img {
  position: relative;
  overflow: hidden;
  background-color: rgba(250, 234, 238, 0.6);
}
.middle_kv .images .images_img::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
}
.middle_kv .images .images_img img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.middle_kv .images .images_img01 {
  margin: auto;
}
.middle_kv .images .images_img01::after {
  padding-top: 126.66%;
}

/*----------------------------------
history
----------------------------------*/
.history {
  position: relative;
}
.history .history_text {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 60px;
}
.history .history_text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.history .history_text .txt {
  line-height: 2;
}
.history .history_bg {
  width: 100%;
}
.history .history_bg img {
  width: 100%;
  display: block;
}

/*----------------------------------
history
----------------------------------*/
.logo_footer {
  background-color: #ffd3dc;
  text-align: center;
  padding: 60px 0 60px;
}
.logo_footer img {
  width: 300px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .logo_footer img {
    width: 45%;
    max-width: 250px;
  }
}/*# sourceMappingURL=style.css.map */