@charset "UTF-8";

/*--------------------------
Global
---------------------------*/
a[comingsoon],
[href="javascript:void(0)"] {
  pointer-events: none;
}
body {
  -webkit-text-size-adjust: 100%;
}
main [data-animated="false"] {
  opacity: 0;
}

main [data-animated="true"] {
  animation: scrollFadeInAnimation 1s cubic-bezier(0.31, 0.2, 0.13, 1) forwards;
}
@keyframes scrollFadeInAnimation {
  0% {
    opacity: 0;
    transform: translate(0, 4rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@media (hover: hover) {
  button,
  a {
    transition: opacity 0.3s;
  }
  button:hover,
  a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  main [id] {
    scroll-margin-top: 60px;
  }
}

/*--------------------------
Header
---------------------------*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  background: transparent !important;
  position: fixed;
  left: 0;
  top: 20px;
  z-index: 10;
}
.site-header .global-navi {
  width: 100%;
  height: 100vh;
  padding: 0 20px;
  /*background: linear-gradient(to right, #58508d, #733c75);
  box-shadow: -4px 6px 10px rgba(0, 0, 0, 0.1);*/
  background-image: url(../images/common/navi-bg.webp);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-y: scroll;
  opacity: 0;
  transform: translateY(-100%);
  transform-origin: center top;
  transition: transform 0s 0.7s, opacity 0.7s;
}
.site-header .global-navi.is-activated {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s, opacity 0.7s;
}
.site-header .global-navi::-webkit-scrollbar {
  width: 0;
}
.site-header .global-navi ul {
  max-width: 980px;
  padding: 80px 5%;
  margin: 100px auto;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.site-header .global-navi ul li {
  flex: 0 0 49%;
  max-width: 480px;
}
.site-header .global-navi ul li:nth-of-type(1),
.site-header .global-navi ul li:nth-of-type(2),
.site-header .global-navi ul li:nth-of-type(3) {
  flex: 1 1 100%;
  max-width: 100%;
}
.site-header .menu {
  width: 40px;
  height: 32px;
  position: relative;
  opacity: 1 !important;
  z-index: 2;
  transition: transform 0.2s;
  border: none;
  background: none;
}
.site-header .menu span {
  width: 40px;
  height: 4px;
  margin: auto;
  background: #231815;
  position: absolute;
  inset: 0;
  transition: all 0.2s;
}
.site-header .menu span:before,
.site-header .menu span:after {
  content: "";
  width: inherit;
  height: inherit;
  margin-inline: auto;
  background: #231815;
  position: absolute;
  left: 0;
  transform-origin: center center;
  transition: all 0.3s;
}
.site-header .menu span:before {
  top: -12px;
}
.site-header .menu span:after {
  bottom: -12px;
}
.site-header .menu.is-activated {
  transition: transform 0.5s;
}
.site-header .menu.is-activated span {
  background: none;
}
.site-header .menu.is-activated span:before {
  transform: rotate(45deg);
  top: 0;
}
.site-header .menu.is-activated span:after {
  transform: rotate(-45deg);
  bottom: 0;
}
@media (max-width: 767px) {
  .site-header {
    height: 60px;
    background: #fff !important;
    top: 0;
    border-bottom: 2px solid #e63b64;
    padding-inline: 16px 0px;
  }
  .site-header h1 {
    width: 155px;
  }
  .site-header .global-navi {
    padding: 0;
  }
  .site-header .global-navi ul {
    margin: 0;
    padding: 60px 16px 50px;
    gap: 15px;
  }
  .site-header .global-navi ul li {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .site-header .global-navi ul li img {
    width: 100%;
  }
  .site-header .menu {
    height: 100%;
    width: 60px;
  }
  .site-header .menu span {
    width: 24px;
    height: 3px;
    background: #e63b64;
  }
  .site-header .menu span:before,
  .site-header .menu span:after {
    background: #e63b64;
  }
  .site-header .menu span:before {
    top: -9px;
  }
  .site-header .menu span:after {
    bottom: -9px;
  }
}
/*--------------------------
Footer
---------------------------*/
#l-footer {
  margin-top: 100px;
}

aside.bgmv {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed; /* fixed の場合。absolute でも同じ */
  right: 0;
  top: 0;
  z-index: -1;
}
aside.bgmv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  pointer-events: none;
}
aside.bgmv iframe{
    box-sizing: border-box;
    height: 56.25vw;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
}
@media (max-width: 767px) {
    aside.bgmv iframe{
        height: 177.77777778vw;
        width: 56.25vh;
    }
}
@media (max-width: 767px) {
  #l-footer {
    margin-top: 50px;
  }
}
/*--------------------------
Top
---------------------------*/
#top main {
  max-width: 1020px;
  padding: 0 20px;
  margin: 100vh auto 0;
}
#top section + section {
  margin-top: 70px;
}
#top .sec-tryon {
  padding: 40px;
  background: rgb(250 248 202 / 90%);
  position: relative;
}
#top .sec-tryon picture {
  display: block;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #top .sec-tryon>picture img {
    min-width: 102.11%;
  }
}
#top .sec-tryon>a {
  display: grid;
  height: 60px;
  place-items: center;
  background: #E7456D;
}
#top .sec-tryon>a img {
  width: 220px;
}
#top .sec-beautycamp {
  padding: 40px;
  background: rgb(252 232 215 / 90%);
  position: relative;
}
#top .sec-beautycamp > a {
  display: block;
  width: 93%;
  margin: 1.5% 0 5% auto;
}
#top .sec-beautycamp ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin: 50px auto 0;
}
#top .sec-beautycamp ul li {
  flex: 0 1 48%;
}
#top .sec-beautycamp ul li:nth-of-type(n + 3) {
  flex: 1 1 100%;
}
#top .sec-beautycamp li a {
  display: grid;
  place-items: center;
  height: 60px;
  background: #e7456d;
}
#top .sec-mirror {
  padding: 40px 40px 50px;
  background: rgb(222 241 251 / 90%);
  position: relative;
}
#top .sec-mirror picture {
  display: block;
}
@media (min-width: 768px) {
  #top .sec-mirror picture img {
    min-width: 102.11%;
  }
}
#top .sec-event {
  background: linear-gradient(rgb(254 249 191 / 90%), rgb(248 210 226 / 90%) 90%);
  padding-bottom: 2rem;
}
#top .sec-event ol {
  display: flex;
  flex-wrap: wrap;
}
#top .sec-event ol > li:nth-of-type(2) {
  flex: 0 0 50.21%;
}
#top .sec-event ol > li:nth-of-type(3) {
  flex: 0 0 49.79%;
}
#top .sec-event ul {
  margin: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 22px;
}
#top .sec-event ul > li a {
  text-decoration: underline !important;
}
#top .sec-event ul > li p {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 1;
}
#top .sec-event ol+a {
  display: grid;
  height: 60px;
  place-items: center;
  background: #e7456d;
  margin: 40px 40px 0;
}
#top .sec-event ol+a img {
  width: 227px;
}
@media (max-width: 767px) {
  #top main img {
    width: 100%;
  }
  #top section + section {
    margin-top: 45px;
  }
  #top .sec-tryon {
    padding: 25px 20px;
  }
  #top .sec-tryon picture {
    margin-bottom: 30px;
  }
  #top .sec-tryon>a {
    height: 47px;
  }
  #top .sec-tryon>a img {
    width: 150px;
  }
  #top .sec-beautycamp {
    padding: 25px 20px;
  }
  #top .sec-beautycamp > a {
    display: block;
    width: 88%;
    margin: 6% 0 10% auto;
  }
  #top .sec-beautycamp ul {
    flex-direction: column;
    gap: 20px;
  }
  #top .sec-beautycamp ul li {
    flex: 1 1 100% !important;
  }
  #top .sec-beautycamp li a {
    height: 70px;
  }
  #top .sec-beautycamp li a img {
    height: 40px;
  }
  #top .sec-mirror {
    padding: 25px 20px 40px;
  }
  #top .sec-event ol {
    display: block;
  }
  #top .sec-event ul {
    margin: 0 5%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 3%;
  }
  #top .sec-event ul > li p {
    margin-top: 5%;
    font-size: 3.2vw;
    font-weight: bold;
  }
  #top .sec-event ol+a {
    height: 47px;
    margin: 30px 5% 0;
  }
  #top .sec-event ol+a img {
    width: 145px;
  }
}
