@charset "UTF-8";
@import url("https://use.typekit.net/axb4xvk.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes change {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* --------------------------------------------------------- default & commons ----------------------------------------------------------- */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #999999;
  font-family: "big-caslon-fb", serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #FFF;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: auto;
  overflow-y: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

a {
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  opacity: 0.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 20px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  content: " ";
  background-color: #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #666666;
  color: #000; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*---------- //SLICK ----------*/
#loader {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  transition: opacity 0.5s ease-in 0s;
}
#loader .logo {
  width: 200px;
  height: 76px;
  background-image: url(../images/logo_2e.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  display: block;
}
#loader.active .logo {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  position: absolute;
  top: 50px;
  bottom: auto;
  left: 50px;
  z-index: 999;
}
header .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
header .inner ul li:not(:last-child) {
  margin-bottom: 12px;
}
header .inner ul li a {
  padding-left: 8px;
  position: relative;
  color: #FFF;
  font-family: "big-caslon-fb", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #FFF;
  opacity: 0.5;
}
header .inner ul li a::before {
  content: "";
  width: 2px;
  height: 13px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sub_title {
  width: 40vw;
  margin: 0;
  left: 3rem;
  top: 3rem;
  position: fixed;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sub_title img {
  width: 100%;
  display: block;
}
.sub_title.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.sub_title.is-show {
  opacity: 1;
}

main {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main .sec {
  width: 100%;
  padding: 0;
  position: relative;
}
main .sec .main_visual {
  width: 100%;
  margin: 0 auto 20rem;
  position: relative;
}
main .sec .main_visual .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
main .sec .main_visual .title.is-show {
  opacity: 1;
}
main .sec .main_visual .title h1 {
  width: 100%;
  margin: 0;
}
main .sec .main_visual .title h1 img {
  width: 100%;
  display: block;
}
main .sec .main_visual .title h2 {
  white-space: nowrap;
  color: #FFF;
  font-family: "big-caslon-fb", serif;
  font-size: clamp(1.2rem, 2.4cqw, 2.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0em;
}
main .sec .main_visual .title .textanimation {
  visibility: visible;
}
main .sec .main_visual .title .textanimation.is-ready {
  visibility: visible;
}
main .sec .main_visual .title .textanimation .char {
  display: inline-block;
}
main .sec .main_visual .title .textanimation .typing-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.88em;
  background-color: currentColor;
  margin-left: 0.04em;
  vertical-align: 0.02em;
  opacity: 0;
}
main .sec .main_visual .title .textanimation.is-typing .typing-cursor {
  opacity: 1;
  animation: blinkCursor 0.8s steps(1) infinite;
}
main .sec .main_visual .title .textanimation.is-done .typing-cursor {
  opacity: 0;
  animation: none;
}
@keyframes blinkCursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
main .sec .main_visual .title {
  /* h3 初期状態 */
}
main .sec .main_visual .title .subtitle {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
main .sec .main_visual .title {
  /* 表示 */
}
main .sec .main_visual .title .subtitle.is-show {
  opacity: 1;
  transform: translateY(0);
}
main .sec .main_visual .photo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
main .sec .main_visual .photo img {
  filter: blur(14px);
  transform: scale(1.06);
  transition: filter 1.2s ease, transform 1.2s ease;
}
main .sec .main_visual .photo.is-clear img {
  filter: blur(0);
  transform: scale(1);
}
main .sec_inner {
  margin: 0 auto;
}
main .sec_inner:not(:last-child) {
  margin-bottom: 15rem;
}
main .sec_inner.fade-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
main .sec_inner.fade-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
main .sec_inner .photo {
  width: 100%;
  margin: 0 auto;
}
main .sec_inner .photo.thumb {
  position: relative;
}
main .sec_inner .photo.thumb::after {
  content: "";
  width: 34px;
  height: 34px;
  background-image: url(../images/icon_plus.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
main .sec_inner.type1 {
  width: 50vw;
}
main .sec_inner.type2 {
  width: 40vw;
}
main .sec_inner.type3 {
  width: 40vw;
  height: 180vh;
  position: relative;
}
main .sec_inner.type3 .type3_stage {
  width: 100%;
  position: sticky;
  top: 0;
  height: 100vh;
}
main .sec_inner.type3 .photo.thumb {
  width: 100%;
  margin: 0;
}
main .sec_inner.type3 .bg-layer {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
main .sec_inner.type3 .bg-layer::after {
  display: none;
}
main .sec_inner.type3 .fade-layer {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.12s linear;
}
main .sec_inner.type3-flat, main .sec_inner.layout-flat {
  width: 70vw;
  height: auto;
}
main .sec_inner.type3-flat .type3_stage, main .sec_inner.layout-flat .type3_stage {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .sec_inner.type3-flat .photo, main .sec_inner.layout-flat .photo {
  width: 30vw;
  margin: 0;
}
main .sec_inner.type3-flat .photo.thumb, main .sec_inner.layout-flat .photo.thumb {
  width: 30vw;
}
main .sec_inner.type3-flat .bg-layer,
main .sec_inner.type3-flat .fade-layer, main .sec_inner.layout-flat .bg-layer,
main .sec_inner.layout-flat .fade-layer {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 30vw;
  opacity: 1;
  transition: none;
}
main .sec_inner.type3-flat .photo.thumb.fade-layer, main .sec_inner.layout-flat .photo.thumb.fade-layer {
  margin-top: var(--type3-flat-offset, 0px);
  transform: none;
}
main .sec_inner.type4 {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
main .sec_inner.type4 .photo:nth-child(1) {
  width: calc((100% - 3rem) / 2);
}
main .sec_inner.type4 .photo:nth-child(2) {
  width: calc((100% - 3rem) / 2.5);
}
main .sec_inner.type5 {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
main .sec_inner.type5 .photo:nth-child(1) {
  width: calc((100% - 3rem) / 2);
}
main .sec_inner.type5 .photo:nth-child(2) {
  width: calc((100% - 3rem) / 2.5);
  margin-top: 50%;
}
main .sec_inner.type6 {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
main .sec_inner.type6 .photo {
  width: calc((100% - 2rem) / 2);
}
main .sec_inner.type6stack, main .sec_inner.layout-stack {
  width: 100%;
  display: block;
  position: relative;
  overflow: visible;
}
main .sec_inner.type6stack .bg, main .sec_inner.layout-stack .bg {
  width: 40vw;
  margin: 6vw 0 0 12vw;
  position: relative;
  z-index: 1;
}
main .sec_inner.type6stack .photo, main .sec_inner.layout-stack .photo {
  position: relative;
  z-index: 2;
  width: auto;
}
main .sec_inner.type6stack .photo:first-child, main .sec_inner.layout-stack .photo:first-child {
  width: 42vw;
  margin: 0 auto;
  z-index: 3;
}
main .sec_inner.type6stack .photo:last-child, main .sec_inner.layout-stack .photo:last-child {
  width: 32vw;
  margin: -15vw 8vw 0 auto;
}
main .sec_inner.type7 {
  width: 100%;
  height: 165vh;
  position: relative;
}
main .sec_inner.type7 .type7_stage {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}
main .sec_inner.type7 .photo {
  width: 40vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: transform 0.22s ease-out;
}
main .sec_inner.type7 .photo#t10 {
  z-index: 2;
}
main .sec_inner.type7 .photo#t11 {
  z-index: 1;
}
main .sec_inner.type8 {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}
main .sec_inner.type8 .photo {
  width: calc((100% - 6rem) * 0.4);
}
main .sec_inner.type8 .bg {
  width: calc((100% - 6rem) * 0.5);
  margin-top: 24vw;
}
main .sec_inner.type9 {
  width: 60vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15rem;
}
main .sec_inner.type9 .photo:nth-child(1) {
  width: 70%;
  margin-left: 0;
}
main .sec_inner.type9 .photo:nth-child(2) {
  width: 70%;
  margin-right: 0;
}
main .sec_inner.type10, main .sec_inner.layout-column {
  width: 60vw;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10rem;
}
main .sec_inner.type10 .photo, main .sec_inner.layout-column .photo {
  width: calc((100% - 2rem) * 0.8);
}
main .sec_inner.type10 .photo:first-child, main .sec_inner.layout-column .photo:first-child {
  align-self: flex-start;
  margin-left: 0;
}
main .sec_inner.type10 .photo:last-child, main .sec_inner.layout-column .photo:last-child {
  align-self: flex-end;
  margin-right: 0;
}
main .sec .thumbs {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
main .sec .thumbs > .thumb {
  width: calc((100% - 20px) / 3);
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in;
}
main .sec .thumbs > .thumb.on {
  opacity: 1;
}
main .sec .thumbs > .thumb::after {
  content: "";
  width: 34px;
  height: 34px;
  background-image: url(../images/icon_plus.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
main .sec .thumbs > .thumb:nth-child(1) {
  order: 2;
}
main .sec .thumbs > .thumb:nth-child(2) {
  order: 1;
}
main .sec .thumbs > .thumb:nth-child(3) {
  order: 3;
}
main .sec .thumbs > .thumb:nth-child(4) {
  order: 6;
}
main .sec .thumbs > .thumb:nth-child(5) {
  order: 4;
}
main .sec .thumbs > .thumb:nth-child(6) {
  order: 5;
}
main .sec .thumbs > .thumb:nth-child(7) {
  order: 9;
}
main .sec .thumbs > .thumb:nth-child(8) {
  order: 8;
}
main .sec .thumbs > .thumb:nth-child(9) {
  order: 7;
}
main .sec .thumbs > .thumb:nth-child(10) {
  order: 10;
}
main .sec .thumbs > .thumb:nth-child(11) {
  order: 11;
}
main .sec .thumbs > .thumb:nth-child(12) {
  order: 13;
}
main .sec .thumbs > .thumb:nth-child(13) {
  order: 12;
}
main .sec .thumbs > .thumb:nth-child(14) {
  order: 14;
}
main .sec .thumbs > .thumb:nth-child(15) {
  order: 15;
}
main .sec .thumbs > .thumb:nth-child(16) {
  order: 16;
}
main .sec .thumbs > .thumb:nth-child(17) {
  order: 18;
}
main .sec .thumbs > .thumb:nth-child(18) {
  order: 17;
}
main .sec .staff {
  padding: 150px 0;
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

footer {
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  background-color: #aab2b3;
}
footer .infoot > div {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 50px 10px;
  padding-top: 50px;
}
footer .infoot > div ul {
  width: calc(100% - 44px);
  padding: 0;
  text-align: left;
}
footer .infoot > div ul li:not(:last-child) {
  margin: 0 0 20px 0;
}
footer .infoot > div ul li a {
  color: #FFF;
  font-family: "big-caslon-fb", serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div ul li a:hover {
  opacity: 0.5;
}
footer .infoot > div .pgtop {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: -8rem;
}
footer .infoot > div .pgtop a {
  padding: 0;
  color: #FFF;
  font-family: "big-caslon-fb", serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: right;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.25s ease-in 0s;
}
footer .infoot > div .pgtop a:hover {
  opacity: 0.5;
}
footer .infoot .copy {
  width: 100%;
  padding: 20px 0 20px 10px;
  color: #FFF;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}

/* --------------------------------------------------------- looks(modal) ----------------------------------------------------------- */
/*--------- SLICK -----------*/
.slick-next {
  right: 5px;
}

.slick-prev {
  left: 5px;
}

.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 10px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 8px;
  height: 8px;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
}

.slick-dots li button:before {
  width: 8px;
  height: 8px;
  content: " ";
  background-color: #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #666666;
  color: #000; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*--------- SLICK -----------*/
#looks {
  width: 100%;
  height: 100vh;
  padding: 85px 0 0 0;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0px;
  z-index: -999;
  overflow: scroll;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  pointer-events: none;
}
#looks.active {
  pointer-events: auto;
  z-index: 999;
}
#looks.active .close div {
  pointer-events: auto;
}
#looks .close {
  width: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
}
#looks .close div {
  width: 40px;
  height: 40px;
  position: relative;
  pointer-events: none;
  cursor: pointer;
}
#looks .close div span {
  width: 10px;
  height: 10px;
  background-color: #000;
  position: absolute;
  transition: all 0.25s ease-in 0s;
}
#looks .close div span:nth-child(1) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(45deg);
}
#looks .close div span:nth-child(2) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(-45deg);
}
#looks .close div:hover span {
  background-color: #000;
  opacity: 0.6;
}
#looks .look-combo {
  width: 46.875%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}
#looks .look-combo .look .item {
  width: 100%;
  padding: 0px;
}
#looks .look-combo .look .item:not(:last-child) {
  margin-bottom: 150px;
}
#looks .look-combo .look .item .item_numbering {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#looks .look-combo .look .item .item_numbering .look_title {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .item .item_numbering .look_title_number {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .item .ph {
  width: 100%;
  overflow: hidden;
  order: 1;
  position: relative;
}
#looks .look-combo .look .item .ph ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .item .ph ul li:not(:last-child) {
  margin-bottom: 20px;
}
#looks .look-combo .look {
  /* ---- common credits ---- */
}
#looks .look-combo .look .credits_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#looks .look-combo .look .credits_wrap .credits:not(:last-child) {
  padding-bottom: 20px;
}
#looks .look-combo .look .credits {
  width: 100%;
  padding-top: 20px;
}
#looks .look-combo .look .credits:not(:last-child) {
  margin-bottom: 30px;
}
#looks .look-combo .look .credits .note {
  padding-bottom: 10px;
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
}
#looks .look-combo .look .credits > div {
  width: 100%;
}
#looks .look-combo .look .credits > div:not(:last-child) {
  margin-bottom: 10px;
}
#looks .look-combo .look .credits > div {
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .credits > div:hover {
  opacity: 0.7;
}
#looks .look-combo .look .credits > div dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl dt {
  padding: 0;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#looks .look-combo .look .credits > div dl dt strong {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
#looks .look-combo .look .credits > div dl dt strong:not(:first-child) {
  margin-left: 5px;
}
#looks .look-combo .look .credits > div dl dt span {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-left: 5px;
}
#looks .look-combo .look .credits > div dl dd {
  margin-left: 20px;
}
#looks .look-combo .look .credits > div dl dd > div.item-d-none a {
  display: none;
}
#looks .look-combo .look .credits > div dl dd > div.item-d-none span {
  display: block;
}
#looks .look-combo .look .credits > div dl dd > div.item-d-none span a {
  color: #000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0 0 2px;
  display: block;
  background-color: transparent;
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .credits > div dl dd a {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0 0 2px;
  display: block;
  background-color: transparent;
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .credits > div dl dd span {
  display: none;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  html {
    font-size: 2.6666666667vw;
    height: -webkit-fill-available;
  }
  #loader .logo {
    width: 180px;
    height: 68px;
  }
  header {
    top: 20px;
    bottom: auto;
    left: 20px;
    position: fixed;
  }
  header .inner h1 {
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .inner ul li:not(:last-child) {
    margin-bottom: 2px;
  }
  header .inner ul li a {
    padding-left: 6px;
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  header .inner ul li a::before {
    width: 2px;
    height: 10px;
  }
  .sub_title {
    display: none;
  }
  main {
    width: 100%;
    padding: 0 0 5px;
    margin: 0 auto;
    row-gap: 5px;
  }
  main .sec.sp_sticy {
    position: sticky;
    top: 0;
  }
  main .sec {
    background-color: #FFF;
  }
  main .sec .main_visual {
    width: 100%;
    position: relative;
    border-right: none;
    margin: 0 auto;
  }
  main .sec .main_visual .title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    transform: translate(-50%, -50%);
  }
  main .sec .main_visual .title h2 {
    font-size: clamp(1.4rem, 7cqw, 7rem);
    line-height: 0.68em;
    letter-spacing: 0.01em;
    display: inline-block;
    margin-bottom: 10px;
  }
  main .sec .main_visual .title h3 {
    white-space: nowrap;
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: clamp(1.2rem, 2.2cqw, 2.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec_inner:not(:last-child) {
    margin-bottom: 5rem;
  }
  main .sec_inner .photo.thumb::after {
    width: 24px;
    height: 24px;
    right: 5px;
    bottom: 5px;
  }
  main .sec_inner.type1 {
    width: 100vw;
  }
  main .sec_inner.type2 {
    width: 70vw;
  }
  main .sec_inner.type3 {
    height: 150vh;
  }
  main .sec_inner.type3-sp-wide {
    width: 100vw;
  }
  main .sec_inner.type4 {
    width: 100vw;
  }
  main .sec_inner.type4 .photo:nth-child(1) {
    width: 100%;
  }
  main .sec_inner.type4 .photo:nth-child(2) {
    width: 70vw;
  }
  main .sec_inner.type3-flat, main .sec_inner.layout-flat {
    width: 70vw;
    height: auto;
  }
  main .sec_inner.type3-flat .type3_stage, main .sec_inner.layout-flat .type3_stage {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
  }
  main .sec_inner.type3-flat .photo,
  main .sec_inner.type3-flat .photo.thumb,
  main .sec_inner.type3-flat .bg-layer,
  main .sec_inner.type3-flat .fade-layer, main .sec_inner.layout-flat .photo,
  main .sec_inner.layout-flat .photo.thumb,
  main .sec_inner.layout-flat .bg-layer,
  main .sec_inner.layout-flat .fade-layer {
    width: 70%;
  }
  main .sec_inner.type3-flat .bg-layer, main .sec_inner.layout-flat .bg-layer {
    align-self: flex-start;
  }
  main .sec_inner.type3-flat .photo.thumb.fade-layer, main .sec_inner.layout-flat .photo.thumb.fade-layer {
    align-self: flex-end;
    margin-top: 0;
  }
  main .sec_inner.type6 {
    height: auto;
  }
  main .sec_inner.type6 .photo {
    width: calc((100% - 1rem) / 2);
  }
  main .sec_inner.type5 {
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    overflow: hidden;
  }
  main .sec_inner.type5 .photo {
    width: 80vw;
    margin: 0;
  }
  main .sec_inner.type5 .photo:nth-child(1) {
    width: 80vw;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
  main .sec_inner.type5 .photo:nth-child(2) {
    width: 80vw;
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }
  main .sec_inner.type6stack, main .sec_inner.layout-stack {
    height: auto;
  }
  main .sec_inner.type6stack .photo, main .sec_inner.layout-stack .photo {
    width: auto;
  }
  main .sec_inner.type6stack .photo:first-child, main .sec_inner.layout-stack .photo:first-child {
    width: 80vw;
  }
  main .sec_inner.type6stack .photo:last-child, main .sec_inner.layout-stack .photo:last-child {
    width: 64vw;
    margin: 10vw 0 0 auto;
  }
  main .sec_inner.type6stack .bg, main .sec_inner.layout-stack .bg {
    width: 64vw;
    margin: 10vw 0 0 0;
  }
  main .sec_inner.type8 .photo {
    width: 60vw;
    margin-left: 0;
  }
  main .sec_inner.type8 .bg {
    width: 60vw;
    margin-top: 0;
    margin-right: 0;
    margin-left: auto;
  }
  main .sec_inner.type9 {
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    overflow: hidden;
  }
  main .sec_inner.type9 .photo {
    width: 70vw;
    margin: 0;
  }
  main .sec_inner.type9 .photo:nth-child(1) {
    width: 70vw;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
  main .sec_inner.type9 .photo:nth-child(2) {
    width: 70vw;
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }
  main .sec_inner.type10, main .sec_inner.layout-column {
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    overflow: hidden;
  }
  main .sec_inner.type10 .photo, main .sec_inner.layout-column .photo {
    width: 70vw;
    margin: 0;
  }
  main .sec_inner.type10 .photo:nth-child(1), main .sec_inner.layout-column .photo:nth-child(1) {
    width: 70vw;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
  }
  main .sec_inner.type10 .photo:nth-child(2), main .sec_inner.layout-column .photo:nth-child(2) {
    width: 70vw;
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }
  main .sec_inner.type5.fade-reveal, main .sec_inner.type9.fade-reveal, main .sec_inner.type10.fade-reveal, main .sec_inner.layout-column.fade-reveal {
    transform: none;
    transition: opacity 0.7s ease;
  }
  main .sec_inner.type5.fade-reveal .photo, main .sec_inner.type9.fade-reveal .photo, main .sec_inner.type10.fade-reveal .photo, main .sec_inner.layout-column.fade-reveal .photo {
    transition: transform 0.65s ease;
  }
  main .sec_inner.type5.fade-reveal .photo:nth-child(1), main .sec_inner.type9.fade-reveal .photo:nth-child(1), main .sec_inner.type10.fade-reveal .photo:nth-child(1), main .sec_inner.layout-column.fade-reveal .photo:nth-child(1) {
    transform: translate3d(-18px, 0, 0);
  }
  main .sec_inner.type5.fade-reveal .photo:nth-child(2), main .sec_inner.type9.fade-reveal .photo:nth-child(2), main .sec_inner.type10.fade-reveal .photo:nth-child(2), main .sec_inner.layout-column.fade-reveal .photo:nth-child(2) {
    transform: translate3d(18px, 0, 0);
    transition-delay: 0.12s;
  }
  main .sec_inner.type5.fade-reveal.is-visible, main .sec_inner.type9.fade-reveal.is-visible, main .sec_inner.type10.fade-reveal.is-visible, main .sec_inner.layout-column.fade-reveal.is-visible {
    transform: none;
  }
  main .sec_inner.type5.fade-reveal.is-visible .photo, main .sec_inner.type9.fade-reveal.is-visible .photo, main .sec_inner.type10.fade-reveal.is-visible .photo, main .sec_inner.layout-column.fade-reveal.is-visible .photo {
    transform: translate3d(0, 0, 0);
  }
  main .sec_inner.type7 {
    width: 100vw;
    height: auto;
    margin-top: 4rem;
    overflow: visible;
  }
  main .sec_inner.type7 .type7_stage {
    position: relative;
    top: auto;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
  main .sec_inner.type7 .photo {
    position: relative;
    left: auto;
    width: 80vw;
    margin: 0;
    top: auto;
    transform: translate3d(0, 24px, 0);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  main .sec_inner.type7 .photo.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  main .sec_inner.type7 .photo#t10 {
    align-self: center;
  }
  main .sec_inner.type7 .photo#t11 {
    align-self: center;
  }
  main .sec .thumbs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
  main .sec .thumbs > .thumb {
    width: calc((100% - 5px) / 2);
    position: relative;
  }
  main .sec .thumbs > .thumb::after {
    content: "";
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
  }
  main .sec .thumbs > .thumb:nth-child(1) {
    order: 1;
  }
  main .sec .thumbs > .thumb:nth-child(2) {
    order: 2;
  }
  main .sec .thumbs > .thumb:nth-child(3) {
    order: 3;
  }
  main .sec .thumbs > .thumb:nth-child(4) {
    order: 4;
  }
  main .sec .thumbs > .thumb:nth-child(5) {
    order: 5;
  }
  main .sec .thumbs > .thumb:nth-child(6) {
    order: 6;
  }
  main .sec .thumbs > .thumb:nth-child(7) {
    order: 7;
  }
  main .sec .thumbs > .thumb:nth-child(8) {
    order: 8;
  }
  main .sec .thumbs > .thumb:nth-child(9) {
    order: 9;
  }
  main .sec .thumbs > .thumb:nth-child(10) {
    order: 10;
  }
  main .sec .thumbs > .thumb:nth-child(11) {
    order: 12;
  }
  main .sec .thumbs > .thumb:nth-child(12) {
    order: 14;
  }
  main .sec .thumbs > .thumb:nth-child(13) {
    order: 15;
  }
  main .sec .thumbs > .thumb:nth-child(14) {
    order: 13;
  }
  main .sec .thumbs > .thumb:nth-child(15) {
    order: 11;
  }
  main .sec .thumbs > .thumb:nth-child(16) {
    order: 16;
  }
  main .sec .thumbs > .thumb:nth-child(17) {
    order: 17;
  }
  main .sec .thumbs > .thumb:nth-child(18) {
    order: 18;
  }
  main .sec .staff {
    padding: 80px 0;
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.03em;
    text-align: center;
  }
  footer {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
  footer .infoot > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
    padding-top: 30px;
  }
  footer .infoot > div ul {
    width: calc(100% - 34px);
    padding: 0;
    text-align: left;
  }
  footer .infoot > div ul li:not(:last-child) {
    margin: 0 0 10px 0;
  }
  footer .infoot > div ul li a {
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot > div ul li a:hover {
    opacity: 0.5;
  }
  footer .infoot > div .pgtop {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: -4rem;
  }
  footer .infoot > div .pgtop a {
    padding: 0;
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: right;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.25s ease-in 0s;
  }
  footer .infoot > div .pgtop a:hover {
    opacity: 0.5;
  }
  footer .infoot .copy {
    width: 100%;
    padding: 30px 0 20px;
    color: #FFF;
    font-family: "big-caslon-fb", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: left;
  }
  #looks {
    width: 100%;
    height: 100vh;
    padding: 50px 0 0 0;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0px;
    z-index: -999;
    overflow: scroll;
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    pointer-events: none;
  }
  #looks.active {
    pointer-events: auto;
    z-index: 999;
  }
  #looks.active .close div {
    pointer-events: auto;
  }
  #looks .close {
    width: 30px;
    top: 10px;
    right: 10px;
  }
  #looks .close div {
    width: 30px;
    height: 30px;
  }
  #looks .close div span {
    width: 30px;
    height: 30px;
  }
  #looks .close div span:nth-child(1) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(45deg);
  }
  #looks .close div span:nth-child(2) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(-45deg);
  }
  #looks .close div:hover span {
    background-color: #FFF;
    opacity: 0.6;
  }
  #looks .look-combo {
    width: 90%;
    margin: 0 auto;
  }
  #looks .look-combo .look .item:not(:last-child) {
    margin-bottom: 80px;
  }
  #looks .look-combo .look .item .ph {
    width: 100%;
  }
  #looks .look-combo .look {
    /* ---- common credits ---- */
  }
  #looks .look-combo .look .credits_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .credits_wrap .credits:not(:last-child) {
    padding-bottom: 15px;
  }
  #looks .look-combo .look .credits {
    width: 100%;
    padding-top: 15px;
  }
  #looks .look-combo .look .credits:not(:last-child) {
    margin-bottom: 20px;
  }
  #looks .look-combo .look .credits .note {
    padding-bottom: 10px;
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
  }
  #looks .look-combo .look .credits > div {
    width: 100%;
  }
  #looks .look-combo .look .credits > div:not(:last-child) {
    margin-bottom: 10px;
  }
  #looks .look-combo .look .credits > div {
    transition: all 0.25s ease-in 0s;
  }
  #looks .look-combo .look .credits > div:hover {
    opacity: 0.7;
  }
  #looks .look-combo .look .credits > div dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .credits > div dl dt {
    padding: 0;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .credits > div dl dt strong {
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .look-combo .look .credits > div dl dt strong:not(:first-child) {
    margin-left: 5px;
  }
  #looks .look-combo .look .credits > div dl dt span {
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-left: 5px;
  }
  #looks .look-combo .look .credits > div dl dd {
    margin-left: 10px;
  }
  #looks .look-combo .look .credits > div dl dd > div.item-d-none a {
    display: none;
  }
  #looks .look-combo .look .credits > div dl dd > div.item-d-none span {
    display: block;
  }
  #looks .look-combo .look .credits > div dl dd > div.item-d-none span a {
    color: #000;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .look-combo .look .credits > div dl dd a {
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0 0 2px;
  }
  #looks .look-combo .look .credits > div dl dd span {
    display: none;
  }
  #looks .space {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */