@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/oqw4fij.css"); /*Cardo*/
@import url("https://use.typekit.net/nvi6fjw.css"); /*Athelas*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap"); /*Noto Sans JP 400*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap"); /*Noto Serif JP 400*/
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
  background-color: #dcdcd9;
}
@media screen and (min-width: 769px) {
  body {
    font-size: calc(13 / 16 * 1rem);
  }
}
body img,
body video,
body svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* ==================================================
  Animation
================================================== */
.fadein {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadein2 {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fadein2.is-visible {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
  background-color: #e9e4d5;
}
@media screen and (min-width: 769px) {
  .lp-container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .lp-container .left-block {
    width: 35%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .lp-container .right-block {
    width: 65%;
  }
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv__img {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.15s forwards;
}
.mv__left, .mv__right {
  position: absolute;
  top: 0;
  width: 29%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: fadeIn 1.2s ease 0.95s forwards;
  z-index: 10;
}
.mv__left {
  left: 0;
}
.mv__right {
  right: 0;
}
.mv .title1, .mv .title2, .mv__logo {
  position: absolute;
  bottom: calc(10 / 16 * 1rem);
  opacity: 0;
  animation: fadeIn 1.2s ease 1.75s forwards;
  z-index: 10;
}
.mv .title1 {
  width: 51.1%;
  right: -12%;
}
.mv .title2 {
  width: 15.5%;
  left: calc(5 / 16 * 1rem);
}
.mv__logo {
  width: 28.2%;
  left: 0;
  right: 0;
  margin: auto;
}

/* ==================================================
  Content
================================================== */
.content {
  position: relative;
}

.content-logo {
  width: 62.3%;
  margin: 0 auto calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-logo {
    padding-top: calc(50 / 16 * 1rem);
    width: 30%;
  }
}

.content div {
  position: relative;
}
.content__block1 {
  padding: calc(70 / 16 * 1rem) 0 calc(50 / 16 * 1rem);
}
.content .is-center {
  margin: 0 auto;
  padding-bottom: calc(100 / 16 * 1rem);
}
.content .is-center.mb {
  padding-bottom: calc(50 / 16 * 1rem);
}
.content .is-right {
  margin-left: auto;
}
.content .mb-s {
  margin-bottom: calc(14 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .mb-s {
    margin-bottom: calc(20 / 16 * 1rem);
  }
}
.content .mb-m {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .mb-m {
    margin-bottom: calc(180 / 16 * 1rem);
  }
}
.content .mb-l {
  margin-bottom: calc(120 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .mb-l {
    margin-bottom: calc(360 / 16 * 1rem);
  }
}
.content .line {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  background-color: #231815;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1s ease;
}
.content .line.is-visible {
  transform: scaleY(1);
}
.content .line.mb {
  margin-bottom: calc(80 / 16 * 1rem);
}
.content .bg-white {
  background-color: #FFF;
}
.content .img2 {
  width: 63.8%;
}
.content .img2 .heading1 {
  width: 126.8%;
  margin: 0 0 -8.2% -11.3%;
  z-index: 2;
}
.content .img2 .text1 {
  width: 84.5%;
}
.content .imgFull .text2 {
  width: 50%;
  margin: 0 0 0 8.5%;
}
.content .img4 {
  width: 81%;
}
.content .img4 .heading2 {
  width: 86.1%;
  margin: 0 auto -6.3%;
  z-index: 2;
}
.content .img4 .text3 {
  width: 62.6%;
}
.content .img5 {
  width: 70.3%;
}
.content .img5 .heading3 {
  width: 110%;
  margin: 0 0 -8.3% -6%;
  z-index: 2;
}
.content .img6 {
  width: 88%;
}
.content .img6 .text4 {
  width: 34.8%;
}
.content .itemPh {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.content .itemPh::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: url("https://feature-tool.like-s.com/assets/uploads/202606/e336d215-5e96-4947-98f7-c6bfd187089f/img/icon_plus.svg") 0 0/contain no-repeat;
  z-index: 10;
  transition: rotate 0.3s;
}
@media screen and (min-width: 769px) {
  .content .itemPh::after {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
}
.content .itemPh:hover::after {
  rotate: 90deg;
}
.content .itemPh {
  /*img{transition: all 0.7s 0s cubic-bezier(.29,.83,.35,1.02);
      &:hover{transform:scale(1.08,1.06); }
  }*/
}

/* ==================================================
  Footer
================================================== */
.footer {
  position: relative;
  background-color: #FFF;
  padding-bottom: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer {
    padding-bottom: calc(120 / 16 * 1rem);
  }
}
.footer__inner {
  position: relative;
  margin-bottom: calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__inner {
    margin-bottom: calc(100 / 16 * 1rem);
  }
}
.footer__text {
  position: absolute;
  width: 34.8%;
  top: 36.5%;
  left: 0;
  right: 0;
  margin: auto;
}
.footer__staff {
  width: 46%;
  position: absolute;
  left: calc(14 / 16 * 1rem);
  bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__staff {
    width: 23%;
    left: calc(40 / 16 * 1rem);
    bottom: calc(32 / 16 * 1rem);
  }
}
.footer__logo {
  width: 32%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
.footer__link {
  text-align: center;
  margin-bottom: calc(40 / 16 * 1rem);
}
.footer__link a {
  text-decoration: underline;
}
.footer__link a:hover {
  text-decoration: none;
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
  text-align: center;
}

/* ==================================================
  modal
================================================== */
#looks {
  background-color: #c9c9ca;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  margin: 0;
  overflow: scroll;
  position: fixed;
  left: 0;
  top: -100vh;
  z-index: 0;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}
#looks.active {
  top: 0;
  z-index: 9999;
}
#looks .close {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  #looks .close {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 30px;
  }
}
#looks .close::before, #looks .close::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #1f1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s 0s ease;
}
@media screen and (min-width: 769px) {
  #looks .close::before, #looks .close::after {
    width: 60px;
  }
}
#looks .close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#looks .close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
#looks .close:hover::before, #looks .close:hover::after {
  background-color: #CCC;
}

.look {
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .look {
    padding: 0;
    width: 680px;
    margin: 0 auto 180px;
  }
}
.look .credits {
  width: calc(100% - 30px);
  margin: calc(12 / 16 * 1rem) auto 0;
}
@media screen and (min-width: 769px) {
  .look .credits {
    width: 100%;
  }
}
.look .credits .item-d-none {
  display: none;
}
.look .credits__block {
  font-family: "cardo", serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: calc(11 / 16 * 1rem);
  margin-bottom: calc(4 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .look .credits__block {
    font-size: calc(13 / 16 * 1rem);
  }
}
.look .credits__block p {
  line-height: 1.2;
}
.look .credits__block p span {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .look .credits__block p span {
    font-size: calc(11 / 16 * 1rem);
  }
}
.look .credits__buy {
  margin-left: calc(6 / 16 * 1rem);
  text-decoration: underline;
}
.look .credits__buy:hover {
  text-decoration: none;
}
.look.look1 {
  padding-top: 60px;
}
.look.look6 {
  padding-bottom: 30px;
}
.look__img {
  margin-bottom: 12px;
}
.look__credit {
  margin-bottom: 12px;
}
.look__credt-text li {
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.look__credt-text li:last-child {
  margin-bottom: 0;
}
.look__credt-text li span {
  margin-left: 5px;
}
@media screen and (min-width: 769px) {
  .look__credt-text li {
    font-size: 11px;
  }
}

/* ==================================================
  Swiper
================================================== */
.swiper-main {
  position: relative;
  z-index: 5;
}/*# sourceMappingURL=style.css.map */