@charset "UTF-8";
@import url("https://use.typekit.net/vwb0efs.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: #C20D29;
  font-family: "bebas-neue-pro", sans-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: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #999999;
}

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: #C20D29;
  display: block;
}
#loader.active .logo {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 999;
}
header .inner h1 {
  color: #C20D29;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}
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: 15px;
}
header .inner ul li a {
  padding-left: 8px;
  position: relative;
  color: #C20D29;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in 0s;
}
header .inner ul li a:hover {
  color: #C20D29;
  opacity: 0.5;
}
header .inner ul li a::before {
  content: "";
  width: 3px;
  height: 12px;
  background-color: #C20D29;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

main {
  width: 100%;
  padding: 0 0 0 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
main .sec {
  width: 100%;
  padding: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .main_visual {
  width: calc((100vw - 1px) / 2);
  position: relative;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}
main .sec .main_visual .title {
  width: 100%;
  container-type: inline-size;
  position: absolute;
  bottom: 2.34375%;
  left: 50%;
  transform: translateX(-50%);
  /* 初期状態で隠す */
  /* h3 初期状態 */
  /* 表示 */
}
main .sec .main_visual .title h2 {
  white-space: nowrap;
  color: #C20D29;
  font-family: "kaneda-gothic", sans-serif;
  font-size: clamp(1.4rem, 35cqw, 35rem);
  font-weight: 900;
  line-height: 0.7em;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 20px;
}
main .sec .main_visual .title h3 {
  white-space: nowrap;
  color: #C20D29;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: clamp(1.4rem, 4.5cqw, 9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
main .sec .main_visual .title .textanimation {
  visibility: hidden;
}
main .sec .main_visual .title .textanimation.is-ready {
  visibility: visible;
}
main .sec .main_visual .title .textanimation span {
  display: inline-block;
  overflow: hidden;
}
main .sec .main_visual .title .textanimation > span > span {
  display: inline-block;
  transform: translateY(100%);
  animation: showTextFromBottom 0.3s ease forwards;
}
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 .subtitle.is-show {
  opacity: 1;
  transform: translateY(0);
}
main .sec .thumbs {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
main .sec .thumbs.thumb_1st {
  width: 50vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
main .sec .thumbs.thumb_1st .thumb {
  width: 50%;
  opacity: 1;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}
main .sec .thumbs > .thumb {
  width: 25vw;
  position: relative;
  overflow: hidden;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  opacity: 0;
  transition: all 0.5s ease-in;
}
main .sec .thumbs > .thumb.on {
  opacity: 1;
}
main .sec .thumbs > .thumb::after {
  content: "";
  width: 22px;
  height: 22px;
  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;
}

footer {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
footer .infoot {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
footer .infoot > div:nth-child(1) {
  width: calc(100% - 44px);
}
footer .infoot > div:nth-child(2) {
  width: 44px;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  display: flex;
  justify-content: center;
}
footer .infoot > div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 0 0 30px;
  margin-bottom: 100px;
}
footer .infoot > div ul li:not(:last-child) {
  margin: 0 0 20px 0;
}
footer .infoot > div ul li a {
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  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 .copy {
  width: 100%;
  padding: 15px 0 15px 30px;
  border-top: solid 1px #000;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}
footer .infoot > div.pgtop a {
  padding: 0;
  margin-bottom: 15px;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  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;
}

/* --------------------------------------------------------- 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: 68px 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: 26px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
}
#looks .close div {
  width: 26px;
  height: 26px;
  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: 30px;
  height: 1px;
  left: -1px;
  top: 12px;
  transform: rotate(45deg);
}
#looks .close div span:nth-child(2) {
  width: 30px;
  height: 1px;
  left: -1px;
  top: 12px;
  transform: rotate(-45deg);
}
#looks .close div:hover span {
  opacity: 0.5;
}
#looks .detail_head {
  width: 100vw;
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #FFF;
  opacity: 0.9;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#looks .detail_head h2 {
  padding-left: 20px;
  color: #000;
  font-family: "kaneda-gothic", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
}
#looks .look-combo {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look {
  width: calc((100% - 2px) / 2);
  padding: 0px;
  margin: 0px;
  position: relative;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  border-top: solid 1px #000;
  box-sizing: content-box;
}
#looks .look-combo .look:not(:last-child) {
  margin-bottom: 50px;
}
#looks .look-combo .look .set {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
#looks .look-combo .look .set .title {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .set .title p:nth-child(1) {
  width: calc((100% - 2px) / 2);
  padding: 14px 0;
  border-right: solid 1px #000;
  box-sizing: border-box;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
#looks .look-combo .look .set .title p:nth-child(2) {
  width: calc((100% + 2px) / 2);
  padding: 14px 0;
  box-sizing: border-box;
  background-color: #C20D29;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
#looks .look-combo .look .set .photo {
  width: calc((100% - 2px) / 2);
  position: relative;
  border-right: solid 1px #000;
  box-sizing: border-box;
  /*.thumbnail{
  	width: 100%;
  	overflow: hidden;
  	position: relative;
  	li{
  		border-right: solid 1px $col1;
  	}
  }*/
}
#looks .look-combo .look .set .photo .slider {
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .set .photo .thumbnail {
  width: 100%;
  display: flex;
  overflow: hidden;
}
#looks .look-combo .look .set .photo .thumbnail li {
  flex: 0 0 51%;
  border-right: solid 1px #000;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#looks .look-combo .look .set .photo .thumbnail li.is-hide {
  opacity: 0;
  pointer-events: none;
}
#looks .look-combo .look .set .text {
  width: calc((100% + 2px) / 2);
  padding: 0px;
}
#looks .look-combo .look .credits {
  width: 100%;
}
#looks .look-combo .look .credits > div {
  width: 100%;
  border-bottom: solid 1px #000;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd {
  width: auto;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a {
  display: none;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line {
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: underline;
  display: inline-block;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line:hover {
  color: #808080;
}
#looks .look-combo .look .credits > div dl.items__credit {
  width: 100%;
  padding: 12px 12px 12px 12px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl.items__credit dt {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong {
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong span {
  font-weight: 400;
  padding: 0 0 0 10px;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong span.items__price::after {
  content: none;
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-left: 5px;
  display: inline-block;
}
#looks .look-combo .look .credits > div dl.items__credit dt > span {
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
#looks .look-combo .look .credits > div dl.items__credit dt > span:last-child {
  width: 100%;
  padding: 4px 0 0 0;
}
#looks .look-combo .look .credits > div dl.items__credit dd {
  padding: 0;
  margin: 0 0 0 auto;
}
#looks .look-combo .look .credits > div dl.items__credit dd a {
  color: #000;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .credits > div dl.items__credit dd a:hover {
  opacity: 0.5;
}
#looks .look-combo .look .credits > div dl.items__credit dd a.line {
  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: 10px;
    left: 10px;
  }
  header .inner h1 {
    color: #C20D29;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  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: 8px;
  }
  header .inner ul li a {
    padding-left: 6px;
    color: #C20D29;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  header .inner ul li a::before {
    width: 2px;
    height: 10px;
  }
  main {
    padding: 0px;
    margin: 0 0 0 0;
  }
  main .sec .main_visual {
    width: 100%;
    position: relative;
    border-right: none;
    border-bottom: solid 1px #000;
  }
  main .sec .main_visual .title {
    width: 100%;
    bottom: 2.5641025641%;
    left: 50%;
    transform: translateX(-50%);
  }
  main .sec .main_visual .title h2 {
    white-space: nowrap;
    font-size: clamp(1.4rem, 35cqw, 35rem);
    margin-bottom: 12px;
  }
  main .sec .main_visual .title h3 {
    white-space: nowrap;
    color: #C20D29;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: clamp(1.4rem, 5.5cqw, 10rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
  }
  main .sec .thumbs {
    width: 100%;
  }
  main .sec .thumbs.thumb_1st {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
  main .sec .thumbs.thumb_1st .thumb {
    width: 50%;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
  }
  main .sec .thumbs > .thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  main .sec .thumbs > .thumb::after {
    width: 22px;
    height: 22px;
    right: 10px;
    bottom: 10px;
    z-index: 1;
  }
  main .sec .thumbs > .thumb {
    width: 50vw;
  }
  main .sec .thumbs > .thumb::after {
    content: "";
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
  }
  footer {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  footer .infoot > div:nth-child(1) {
    width: calc(100% - 37px);
  }
  footer .infoot > div:nth-child(2) {
    width: 37px;
  }
  footer .infoot > div ul {
    padding: 30px 0 0 20px;
    margin-bottom: 60px;
  }
  footer .infoot > div ul li:not(:last-child) {
    margin: 0 0 16px 0;
  }
  footer .infoot > div ul li a {
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  footer .infoot > div .copy {
    width: 100%;
    padding: 10px 0 10px 20px;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  footer .infoot > div.pgtop a {
    padding: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  #looks {
    width: 100%;
    height: 100vh;
    padding: 46px 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: 24px;
    position: fixed;
    top: 12px;
    right: 12px;
  }
  #looks .close div {
    width: 24px;
    height: 24px;
  }
  #looks .close div span {
    width: 10px;
    height: 10px;
  }
  #looks .close div span:nth-child(1) {
    width: 28px;
    height: 1px;
    left: -1px;
    top: 10px;
    transform: rotate(45deg);
  }
  #looks .close div span:nth-child(2) {
    width: 28px;
    height: 1px;
    left: -1px;
    top: 10px;
    transform: rotate(-45deg);
  }
  #looks .detail_head {
    width: 100vw;
    height: 46px;
  }
  #looks .detail_head h2 {
    padding-left: 10px;
    color: #000;
    font-family: "kaneda-gothic", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
  }
  #looks .look-combo {
    width: 100%;
  }
  #looks .look-combo .look {
    width: 100%;
    border-right: none;
  }
  #looks .look-combo .look:not(:last-child) {
    margin-bottom: 30px;
  }
  #looks .look-combo .look .set {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  #looks .look-combo .look .set .title {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #looks .look-combo .look .set .title p:nth-child(1) {
    width: calc((100% - 2px) * 0.6);
    padding: 10px 0;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  #looks .look-combo .look .set .title p:nth-child(2) {
    width: calc((100% + 2px) * 0.4);
    padding: 10px 0;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  #looks .look-combo .look .set .photo {
    width: calc((100% - 2px) * 0.6);
    position: relative;
  }
  #looks .look-combo .look .set .photo .slider {
    border-bottom: solid 1px #000;
  }
  #looks .look-combo .look .set .photo .thumbnail {
    position: relative;
  }
  #looks .look-combo .look .set .photo .thumbnail li {
    border-right: solid 1px #000;
  }
  #looks .look-combo .look .set .text {
    width: calc((100% + 2px) * 0.4);
    padding: 0px;
  }
  #looks .look-combo .look .credits {
    width: 100%;
  }
  #looks .look-combo .look .credits > div {
    width: 100%;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd {
    width: auto;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a {
    display: none;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line {
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  #looks .look-combo .look .credits > div dl.items__credit {
    width: 100%;
    padding: 8px 10px 8px 10px;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong {
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong span {
    padding: 0 0 0 5px;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong span.items__price::after {
    content: none;
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-left: 5px;
    display: inline-block;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt > span {
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt > span:last-child {
    width: 100%;
    padding: 4px 0 0 0;
  }
  #looks .look-combo .look .credits > div dl.items__credit dd {
    padding: 0;
    margin: 0 0 0 auto;
  }
  #looks .look-combo .look .credits > div dl.items__credit dd a {
    color: #000;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #looks .space {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */