@charset "UTF-8";
/* ---------------------------- */
/* Base
/* ---------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@font-face {
  font-family: "Neue Haas Unica";
  src: url("NeueHaasUnica-Regular.eot");
  src: local("Neue Haas Unica Regular"), local("NeueHaasUnica-Regular"), url("NeueHaasUnica-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Neue Haas Unica";
  src: url("NeueHaasUnica-Bold.eot");
  src: local("Neue Haas Unica Bold"), local("NeueHaasUnica-Bold"), url("NeueHaasUnica-Bold.eot?#iefix") format("embedded-opentype"), url("NeueHaasUnica-Bold.woff2") format("woff2"), url("NeueHaasUnica-Bold.woff") format("woff"), url("NeueHaasUnica-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
:root {
  --main-color: #000;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 150px;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}

img {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

/* ---------------------------- */
/* font
/* ---------------------------- */
/* 変更 */
main .l-inner {
  margin: 0 auto;
}

main .l-inner * {
  box-sizing: border-box;
}

main .l-inner article {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.ftool-wrapper {
  background-color: #fff;
}

.ftool-wrapper p {
  line-height: 1em;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

/*fix*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 2.5s;
  /* ここを変更 */
  animation-duration: 2.5s;
  /* ここも変更 */
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time03 {
  animation-delay: 0.3s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time14 {
  animation-delay: 1.4s;
}

.delay-time18 {
  animation-delay: 1.8s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time22 {
  animation-delay: 2.2s;
}

.delay-time3 {
  animation-delay: 3s;
}

.delay-time35 {
  animation-delay: 3.5s;
}

.delay-time4 {
  animation-delay: 4s;
}

.delay-time45 {
  animation-delay: 4.5s;
}

.box-wrapper {
  background-color: #fff;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "Noto Serif JP", "MS PMincho", "MS Mincho", serif;
  color: black;
  font-weight: 400;
}
.box-wrapper *,
.box-wrapper *::before,
.box-wrapper *::after {
  box-sizing: border-box;
}
.box-wrapper * {
  margin: 0;
}
.box-wrapper html,
.box-wrapper body {
  height: 100%;
  overflow-y: hidden;
}
.box-wrapper body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.box-wrapper img,
.box-wrapper picture,
.box-wrapper video,
.box-wrapper canvas,
.box-wrapper svg {
  display: block;
  max-width: 100%;
}
.box-wrapper input,
.box-wrapper button,
.box-wrapper textarea,
.box-wrapper select {
  font: inherit;
}
.box-wrapper p,
.box-wrapper h1,
.box-wrapper h2,
.box-wrapper h3,
.box-wrapper h4,
.box-wrapper h5,
.box-wrapper h6 {
  overflow-wrap: break-word;
}
.box-wrapper #root,
.box-wrapper #__next {
  isolation: isolate;
}
@media screen and (max-width: 750px) {
  .box-wrapper {
    padding-bottom: 0px;
  }
}
.box-wrapper * {
  color: var(--main-color);
  letter-spacing: 0.05em;
}
.box-wrapper a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
}
.box-wrapper img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.box-wrapper li {
  list-style: none;
}
.box-wrapper .is-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .box-wrapper .is-pc {
    display: none;
  }
}
.box-wrapper .is-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .box-wrapper .is-sp {
    display: block;
  }
}
.box-wrapper .mt-100 {
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .box-wrapper .mt-100 {
    margin-top: 0;
  }
}
.box-wrapper .logo {
  width: 9.375vw;
  max-width: 160px;
  position: absolute;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (max-width: 750px) {
  .box-wrapper .logo {
    bottom: auto;
    top: 3%;
    right: auto;
    left: 25px;
    width: 100px;
  }
}
.box-wrapper .logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #31269d !important;
}
.box-wrapper .logo svg rect {
  mix-blend-mode: difference;
}
.box-wrapper .header__logo.header__logo-white.is-active {
  display: none;
}
.box-wrapper .header__logo.header__logo-black {
  display: none;
}
.box-wrapper .header__logo.header__logo-black.is-active {
  display: block;
}
.box-wrapper .header__logo a {
  height: inherit;
}
@media screen and (min-width: 751px) {
  .box-wrapper {
    /* ---------------------------- */
    /*boxWrapper
    /* ---------------------------- */
    position: relative;
    /* ---------------------------- */
    /* parts
    /* ---------------------------- */
    /* ---------------------------- */
    /*loader
    /* ---------------------------- */
    /* ---------------------------- */
    /*my-header
    /* ---------------------------- */
    /* ---------------------------- */
    /*my-footer
    /* ---------------------------- */
    /* ---------------------------- */
    /*scroll-container
    /* ---------------------------- */
    /* ---------------------------- */
    /*story
    /* ---------------------------- */
    /* ---------------------------- */
    /*look
    /* ---------------------------- */
    /* ---------------------------- */
    /*product
    /* ---------------------------- */
  }
  .box-wrapper p,
  .box-wrapper a {
    color: black;
  }
  .box-wrapper .credit {
    font-size: 12px;
    font-weight: 500;
  }
  .box-wrapper .credit a {
    display: inline-block;
    margin-left: 15px;
    color: black;
  }
  .box-wrapper .credit a span {
    text-decoration: underline;
  }
  .box-wrapper section {
    background-color: white;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    position: relative;
  }
  .box-wrapper .loader {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    display: flex;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
  }
  .box-wrapper .loader.active {
    z-index: 1000;
    opacity: 1;
  }
  .box-wrapper .loader img {
    width: 200px;
    margin: auto;
  }
  .box-wrapper .my-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 100;
  }
  .box-wrapper .my-header__left {
    display: flex;
    align-items: center;
  }
  .box-wrapper .my-header__left li:first-child a img {
    width: 140px;
  }
  .box-wrapper .my-header__left li:last-child {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid black;
  }
  .box-wrapper .my-header__left li:last-child a img {
    width: 70px;
  }
  .box-wrapper .my-header__right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .box-wrapper .my-header__right ul li {
    margin-right: 40px;
  }
  .box-wrapper .my-header__right ul li:last-child {
    margin-right: 0;
  }
  .box-wrapper .my-header__right ul li a {
    font-size: 16px;
  }
  .box-wrapper .my-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 100;
  }
  .box-wrapper .my-footer__left {
    width: 194px;
    height: 2px;
    border-radius: 2px;
    background-color: #cccccc;
    position: relative;
  }
  .box-wrapper .my-footer__left .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: black;
    width: 0%;
    z-index: 10;
    border-radius: 2px;
  }
  .box-wrapper .my-footer__right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .box-wrapper .my-footer__right ul li {
    margin-right: 40px;
  }
  .box-wrapper .my-footer__right ul li:last-child {
    margin-right: 0;
  }
  .box-wrapper .my-footer__right ul li a {
    font-size: 16px;
  }
  .box-wrapper .my-footer__right ul li a img {
    width: 31px;
  }
  .box-wrapper .scroll-container {
    display: flex;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    /* スマホの横スワイプ許可（PCには無害） */
    /* スクロールバー非表示 */
    scrollbar-width: none;
    /* Firefox */
  }
  .box-wrapper .scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
  }
  .box-wrapper .story {
    width: 100vw;
    background-color: white;
    padding-left: 4.6875vh;
    padding-right: 4.6875vh;
  }
  .box-wrapper .story-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 450px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }
  .box-wrapper .story-inner__img {
    width: 508px;
    margin-right: 5%;
  }
  .box-wrapper .story-inner__desc {
    margin-bottom: 0;
    margin-top: auto;
    font-size: 12px;
    line-height: 1.6;
  }
  .box-wrapper .story-inner__desc span {
    font-size: 14px;
    display: block;
  }
  .box-wrapper .story-inner__desc span:first-child {
    margin-bottom: 20px;
  }
  .box-wrapper .story-inner__desc span:last-child {
    margin-top: 20px;
  }
  .box-wrapper .look-inner {
    margin-top: 8.25vh;
    margin-bottom: 8.25vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .box-wrapper .look-inner > * {
    flex-shrink: 0;
  }
  .box-wrapper .look-img01 {
    margin-left: 18px;
    margin-top: 7.5vh;
    width: 26.625vh;
  }
  .box-wrapper .look-img02 {
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: 3.75vh;
  }
  .box-wrapper .look-img02 img {
    margin-top: 20px;
    width: 33.25vh;
  }
  .box-wrapper .look-img03 {
    margin-left: 8.75vh;
    width: 125vh;
  }
  .box-wrapper .look-img04 {
    margin-left: 19.375vh;
    margin-top: 13.875vh;
    width: 41.625vh;
  }
  .box-wrapper .look-img05 {
    margin-left: -12.5vh;
    margin-top: 10vh;
  }
  .box-wrapper .look-img05 img {
    width: 52.125vh;
  }
  .box-wrapper .look-img05 p.credit {
    margin-left: 14.625vh;
    margin-top: 20px;
  }
  .box-wrapper .look-img06 {
    margin-left: 10.5vh;
    width: 151.25vh;
  }
  .box-wrapper .product {
    padding-left: 19vh;
    align-items: stretch;
  }
  .box-wrapper .product-img01 {
    margin-top: 12.5vh;
    flex-shrink: 0;
  }
  .box-wrapper .product-img01 img {
    width: 31.375vh;
  }
  .box-wrapper .product-img02 {
    margin-left: 18.75vh;
  }
  .box-wrapper .product-outro {
    margin-left: 25.625vh;
  }
  .box-wrapper .product-outro__inner {
    display: flex;
  }
  .box-wrapper .product-outro__main {
    margin-top: 12.5vh;
    flex-shrink: 0;
    width: 580px;
  }
  .box-wrapper .product-outro__main img {
    width: 100%;
  }
  .box-wrapper .product-outro__credits {
    margin-top: 21px;
    display: flex;
    justify-content: space-between;
  }
  .box-wrapper .product-outro__credits p.credit {
    width: 50%;
  }
  .box-wrapper .product-outro__bottom {
    margin-top: 60px;
  }
  .box-wrapper .product-outro__bottom p.ttl {
    font-size: 16px;
    text-align: center;
  }
  .box-wrapper .product-outro__bottom p.desc {
    margin: 20px auto 0;
    width: 250px;
    font-size: 12px;
    line-height: 1.6;
  }
  .box-wrapper .product-outro__totop {
    width: 50vh;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box-wrapper .product-outro__totop a {
    font-size: 16px;
    text-decoration: underline;
  }
}
@media screen and (max-width: 750px) {
  .box-wrapper {
    /* ---------------------------- */
    /*boxWrapper
    /* ---------------------------- */
    position: relative;
    /* ---------------------------- */
    /* parts
    /* ---------------------------- */
    /* ---------------------------- */
    /*loader
    /* ---------------------------- */
    /* ---------------------------- */
    /*my-header
    /* ---------------------------- */
    /* ---------------------------- */
    /*my-footer
    /* ---------------------------- */
    /* ---------------------------- */
    /*scroll-container
    /* ---------------------------- */
    /* ---------------------------- */
    /*story
    /* ---------------------------- */
    /* ---------------------------- */
    /*look
    /* ---------------------------- */
    /* ---------------------------- */
    /*product
    /* ---------------------------- */
  }
  .box-wrapper p,
  .box-wrapper a {
    color: black;
  }
  .box-wrapper .credit {
    font-size: 12px;
    font-weight: 500;
  }
  .box-wrapper .credit a {
    display: inline-block;
    margin-left: 15px;
    color: black;
  }
  .box-wrapper .credit a span {
    text-decoration: underline;
  }
  .box-wrapper section {
    background-color: white;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    position: relative;
  }
  .box-wrapper .loader {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
    overflow-y: hidden;
  }
  .box-wrapper .loader.active {
    z-index: 1000;
    opacity: 1;
  }
  .box-wrapper .loader img {
    width: 150px;
    margin: auto;
  }
  .box-wrapper .my-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 100;
  }
  .box-wrapper .my-header__left {
    display: flex;
    align-items: center;
  }
  .box-wrapper .my-header__left li:first-child a img {
    width: 104px;
  }
  .box-wrapper .my-header__left li:last-child {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid black;
  }
  .box-wrapper .my-header__left li:last-child a img {
    width: 51px;
  }
  .box-wrapper .my-header__right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .box-wrapper .my-header__right ul li {
    margin-right: 20px;
  }
  .box-wrapper .my-header__right ul li:last-child {
    margin-right: 0;
  }
  .box-wrapper .my-header__right ul li a {
    font-size: 12px;
  }
  .box-wrapper .my-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 100;
  }
  .box-wrapper .my-footer__left {
    width: 124px;
    height: 2px;
    border-radius: 2px;
    background-color: #cccccc;
    position: relative;
  }
  .box-wrapper .my-footer__left .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: black;
    width: 0%;
    z-index: 10;
    border-radius: 2px;
  }
  .box-wrapper .my-footer__right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .box-wrapper .my-footer__right ul li {
    margin-right: 15px;
  }
  .box-wrapper .my-footer__right ul li:last-child {
    margin-right: 0;
  }
  .box-wrapper .my-footer__right ul li a {
    font-size: 12px;
  }
  .box-wrapper .my-footer__right ul li a img {
    width: 25px;
  }
  .box-wrapper .scroll-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    /* iOSの慣性 */
    touch-action: pan-x;
    /* ← pan-y ではなく pan-x に */
    /* （任意）滑り改善のためのヒント */
    contain: content;
    will-change: scroll-position;
    /* 縦はブラウザ、横はJSで */
    /* スクロールバー非表示 */
    scrollbar-width: none;
    /* Firefox */
  }
  .box-wrapper .scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
  }
  .box-wrapper .story {
    background-color: white;
    padding-left: 15px;
    padding-right: 19.2901234568vh;
  }
  .box-wrapper .story-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 380px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }
  .box-wrapper .story-inner__img {
    width: 63.5802469136vh;
    margin-right: 10.8024691358vh;
  }
  .box-wrapper .story-inner__desc {
    margin-bottom: 0;
    margin-top: auto;
    font-size: 12px;
    line-height: 1.6;
  }
  .box-wrapper .story-inner__desc span {
    font-size: 14px;
    display: block;
  }
  .box-wrapper .story-inner__desc span:first-child {
    margin-bottom: 20px;
  }
  .box-wrapper .story-inner__desc span:last-child {
    margin-top: 20px;
  }
  .box-wrapper .look {
    padding-right: 19.2901234568vh;
  }
  .box-wrapper .look-inner {
    margin-top: 7.7160493827vh;
    margin-bottom: 7.7160493827vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .box-wrapper .look-inner > * {
    flex-shrink: 0;
  }
  .box-wrapper .look-img01 {
    margin-top: 4.6296296296vh;
    width: 26.6975308642vh;
  }
  .box-wrapper .look-img02 {
    margin-left: 15px;
    margin-top: auto;
    margin-bottom: 4.6296296296vh;
  }
  .box-wrapper .look-img02 img {
    margin-top: 15px;
    width: 37.3456790123vh;
  }
  .box-wrapper .look-img03 {
    margin-left: 9.2592592593vh;
    width: 126.5432098765vh;
  }
  .box-wrapper .look-img04 {
    margin-left: 19.1358024691vh;
    margin-top: 7.7160493827vh;
    width: 46.1419753086vh;
  }
  .box-wrapper .look-img05 {
    margin-left: -12.3456790123vh;
    margin-top: 10.4938271605vh;
  }
  .box-wrapper .look-img05 img {
    width: 51.3888888889vh;
  }
  .box-wrapper .look-img05 p.credit {
    margin-left: 13.8888888889vh;
    margin-top: 20px;
  }
  .box-wrapper .look-img06 {
    margin-left: 8.1790123457vh;
    width: 151.6975308642vh;
  }
  .box-wrapper .product {
    align-items: stretch;
  }
  .box-wrapper .product-img01 {
    margin-top: 12.3456790123vh;
    flex-shrink: 0;
  }
  .box-wrapper .product-img01 img {
    width: 31.3271604938vh;
  }
  .box-wrapper .product-img02 {
    margin-left: 19.2901234568vh;
    width: 275.1543209877vh;
    flex-shrink: 0;
  }
  .box-wrapper .product-outro {
    margin-left: 19.7530864198vh;
  }
  .box-wrapper .product-outro__inner {
    display: flex;
  }
  .box-wrapper .product-outro__main {
    margin: 10.8024691358vh auto 0;
    flex-shrink: 0;
    width: 59.2592592593vh;
  }
  .box-wrapper .product-outro__main img {
    width: 100%;
  }
  .box-wrapper .product-outro__credits {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .box-wrapper .product-outro__credits p.credit {
    margin-top: 15px;
  }
  .box-wrapper .product-outro__bottom {
    margin-top: 43px;
  }
  .box-wrapper .product-outro__bottom p.ttl {
    font-size: 16px;
    text-align: center;
  }
  .box-wrapper .product-outro__bottom p.desc {
    margin: 20px auto 0;
    width: 250px;
    font-size: 12px;
    line-height: 1.6;
  }
  .box-wrapper .product-outro__totop {
    width: 38.5802469136vh;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box-wrapper .product-outro__totop a {
    font-size: 12px;
    text-decoration: underline;
  }
}
@media screen and (max-width: 500px) {
  .box-wrapper .scroll-container {
    padding-bottom: 50px;
  }
  .box-wrapper .product-outro__main {
    margin: 5.4012345679vh auto 0;
    width: 38.5802469136vh;
  }
}

.body_wrap {
  cursor: url("../images/cursor_icon.svg") 20 20, default;
}
.body_wrap a {
  cursor: pointer !important;
}