@charset "UTF-8";
@import url("https://use.typekit.net/ccx2eyc.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.css");
@keyframes arrow {
  0% {
    top: calc(50% - 175px);
  }
  25% {
    top: calc(50% - 175px);
  }
  50% {
    top: calc(50% - 125px);
  }
  75% {
    top: calc(50% - 125px);
  }
  100% {
    top: calc(50% - 175px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1 !important;
    visibility: visible;
  }
  100% {
    opacity: 0 !important;
    visibility: hidden;
  }
}
/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
html, body {
  width: 100%;
  height: auto;
}

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

ul, li {
  list-style: none;
}

body {
  color: #000;
  font-size: 14px;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  height: 100%;
  left: 0px;
  top: 0px;
  margin: 0;
}
body.loaded {
  position: static;
  overflow: scroll;
}
body.looking {
  overflow: hidden;
}
body.looking .sec {
  pointer-events: none;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* setting */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.psR {
  position: relative;
}

.psA {
  position: absolute;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.right {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.order_1 {
  order: 1;
}

.order_2 {
  order: 2;
}

.font_neue {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  color: #999;
  font-size: 0.9em;
}

.jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.font_thick {
  font-weight: 600;
}

.vertical {
  writing-mode: vertical-rl;
}

.none {
  display: none;
}

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

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

/* loader */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #1D1D1D;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 999999;
  transition: all 1s ease-in-out 0.5s;
}
#loader .load .muse_logo {
  width: 150px;
}
@media (max-width: 768px) {
  #loader .load .muse_logo {
    width: 120px;
    margin-top: 50px;
  }
}
#loader .load div:nth-of-type(2) {
  padding-top: 30px;
  color: #fff;
  animation: flash 1s linear infinite;
  text-align: center;
}
#loader.complete {
  opacity: 0;
  pointer-events: none;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* contents */
#container {
  font-size: 14px;
  color: #000;
  background-color: #FFF;
  line-height: 1.7;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  position: relative;
}
#container img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#container .sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 20%;
  padding-top: 50px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  #container .sticky {
    width: 43%;
    padding-left: 5%;
  }
}
#container .info {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 100px;
  display: flex;
  flex-wrap: wrap;
}
#container .info p {
  font-size: 0.9em;
  margin-bottom: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
#container .info p:nth-of-type(1) {
  width: 100%;
  margin-bottom: 100px;
  padding-right: 0;
}
#container .info .link {
  width: 40%;
  max-width: 400px;
}
@media (max-width: 768px) {
  #container .info .link {
    width: 100%;
    padding-right: 0;
  }
}
#container .info .link.none {
  display: none;
}

#main_visual {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
#main_visual .main_img {
  width: 100%;
  max-width: 100vw;
  background: #1D1D1D;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}
#main_visual .main_img ul {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 50px 0;
}
@media (max-width: 768px) {
  #main_visual .main_img ul {
    padding: 20px 0 30px;
  }
}
#main_visual .main_img ul .ttl {
  max-width: 400px;
  width: 25%;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .ttl {
    width: 56%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
  }
}
#main_visual .main_img ul .muse {
  max-width: 400px;
  width: 25%;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .muse {
    width: 56%;
    left: 50%;
    top: 69%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
  }
}
#main_visual .main_img ul .img_wrap {
  width: 70%;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap {
    width: 98%;
    margin: auto;
  }
}
#main_visual .main_img ul .img_wrap div {
  position: absolute;
}
#main_visual .main_img ul .img_wrap div:nth-of-type(1) {
  width: 19%;
  transform: rotate(10deg);
  top: 4%;
  left: 15%;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(1) {
    width: 29%;
    transform: rotate(10deg);
    top: 2%;
    left: 0;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(2) {
  width: 18%;
  z-index: 2;
  transform: rotate(-3deg);
  top: 10%;
  left: 31%;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(2) {
    width: 30%;
    z-index: 2;
    transform: rotate(-3deg);
    top: 6%;
    left: 31%;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(3) {
  width: 33%;
  transform: rotate(1deg);
  position: relative;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(3) {
    width: 34%;
    transform: rotate(1deg);
    position: relative;
    margin: 0 10px 0 auto;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(4) {
  width: 28%;
  bottom: 10%;
  left: 15%;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(4) {
    width: 49%;
    bottom: 29%;
    left: -3%;
    transform: rotate(2deg);
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(5) {
  width: 37%;
  transform: rotate(-5deg);
  position: relative;
  margin: 0 10px 40px auto;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(5) {
    width: 44%;
    transform: rotate(-5deg);
    position: relative;
    margin: 0 10px 0px auto;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(6) {
  width: 16%;
  transform: rotate(-3deg);
  top: 0;
  left: -20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(6) {
    width: 32%;
    transform: rotate(-6deg);
    margin-top: 0;
    position: relative;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(7) {
  width: 16%;
  transform: rotate(4deg);
  top: 34%;
  left: 30px;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(7) {
    width: 29%;
    transform: rotate(4deg);
    top: unset;
    left: 35%;
    bottom: 4%;
  }
}
#main_visual .main_img ul .img_wrap div:nth-of-type(8) {
  width: 16%;
  left: -5px;
  bottom: 12%;
}
@media (max-width: 768px) {
  #main_visual .main_img ul .img_wrap div:nth-of-type(8) {
    width: 32%;
    left: unset;
    bottom: 3%;
    right: 0;
  }
}
#main_visual .main_img ul .img_wrap div img {
  border: 6px solid #fff;
  animation-delay: 1s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(1) {
  animation-delay: 1.3s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(2) {
  animation-delay: 1.9s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(3) {
  animation-delay: 1.3s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(4) {
  animation-delay: 1.6s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(5) {
  animation-delay: 1.9s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(6) {
  animation-delay: 1.6s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(7) {
  animation-delay: 1.9s;
}
#main_visual .main_img ul .img_wrap div img:nth-of-type(8) {
  animation-delay: 1.3s;
}
#main_visual .lead {
  width: 25%;
  max-width: 600px;
  color: #fff;
  position: absolute;
  top: 73%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 768px) {
  #main_visual .lead {
    width: 100%;
    margin: 70px auto;
    position: relative;
    color: #000;
  }
}
#main_visual .lead .lead_text {
  width: 100%;
  margin: auto;
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  #main_visual .lead .lead_text {
    line-height: 1.9;
    font-size: 14px;
    margin: auto;
  }
}

#contents {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
#contents .looks .look {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-end;
  margin: 50px auto 200px;
}
@media (max-width: 768px) {
  #contents .looks .look {
    margin: 80px auto 170px;
  }
}
#contents .looks .look:last-of-type {
  margin: 50px auto 100px;
}
#contents .looks .look .no {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4em;
}
@media (max-width: 768px) {
  #contents .looks .look .no {
    top: -60px;
    right: 5%;
    line-height: 1;
  }
}
#contents .looks .look .no span {
  font-size: 0.5em;
}
#contents .looks .look .img {
  flex: 1.4;
}
@media (max-width: 768px) {
  #contents .looks .look .img {
    flex: unset;
    width: 100%;
  }
}
#contents .looks .look .text {
  flex: 1;
  padding-left: 30px;
}
@media (max-width: 768px) {
  #contents .looks .look .text {
    flex: unset;
    width: 90%;
    margin: 20px auto;
    padding-left: 0;
  }
}
#contents .looks .look .text h2 {
  font-size: 2em;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #contents .looks .look .text h2 {
    font-size: 1.6em;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
#contents .looks .look .text h2 span {
  font-size: 0.5em;
  padding-right: 4px;
}
#contents .looks .look .text h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.3;
}
#contents .looks .look .text h3 span {
  font-size: 0.7em;
  padding-right: 4px;
}
#contents .looks .look .text .jp {
  margin-top: 10px;
  margin-bottom: 30px;
}
#contents .looks .look .text .ig img {
  width: 20px;
  padding-right: 10px;
  padding-bottom: 1px;
}
#contents .looks .look .text .ig a {
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#contents .looks .look .text .feature {
  width: 60%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #contents .looks .look .text .feature {
    width: 80%;
  }
}
#contents .looks .look .text .credit_box .credit {
  margin-bottom: 6px;
}
#contents .looks .look .text .credit_box .credit a {
  background: #000;
  color: #fff;
  padding: 4px 6px 4px 6px;
  margin-left: 14px;
  border: 1px solid #000;
  transition: 0.7s;
}
#contents .looks .look .text .credit_box .credit a:hover {
  background: #fff;
  color: #000;
}

footer {
  width: 100%;
  margin: auto;
  padding: 100px 0;
  z-index: 1;
  position: relative;
  background: #fff;
  border-top: 1px solid;
}
@media (max-width: 768px) {
  footer {
    padding: 60px 0 60px 0;
  }
}
footer .inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
footer .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 30px;
}
footer .inner ul li:not(:last-child) {
  margin: 0 0 6px 0;
}
footer .inner ul li a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .inner ul li a:hover {
  text-decoration: underline;
  opacity: 1;
}
footer .inner p.copy {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: right;
}
footer .pgtop {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
@media (max-width: 768px) {
  footer .pgtop {
    right: 20px;
    bottom: 0px;
  }
}
footer .pgtop a {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 3em;
  background: currentColor;
}
footer .pgtop a::before {
  content: "";
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -0.05em;
  right: 50%;
  box-sizing: border-box;
}
footer .pgtop a:hover {
  opacity: 0.7;
}

/* fadein */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 0px);
  transition: all 0.8s ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -7%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}/*# sourceMappingURL=style.css.map */