@charset "UTF-8";
@import url("https://use.typekit.net/ccx2eyc.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;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}
html {
  font-size: 70.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  color: #045c00;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  height: 100%;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
  overflow: 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: #999;
}
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;
}
*{
  margin: 0;
  padding: 0;
}
br.brsp {
  display: none;
}
.sp { display: none;}
.pc { display: block;}
.date {
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font {
  font-family: freightdispcmp-pro, serif;
  font-weight: 400;
  font-style: normal;
}
.jp {
  font-family: "游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic", "メイリオ", sans-serif;  
}
.thick {
  font-weight: 600;
}
.posiR {
  position: relative;
}
.posiA {
  position: absolute;
}
/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #045c00;
  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;
}
#loader .load div:nth-of-type(2) {
  padding-top: 30px;
  color: #fff;
  animation: flash 1s linear infinite;
  text-align: center;
}
@keyframes flash {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#loader.complete {
  opacity: 0;
  pointer-events: none;
}
main {
  width: 100%;
  margin: 0vh auto 0;
  background: #045c00;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 80px;
  border-bottom: 1px solid;
  overflow: hidden;
}
.ttl {
  margin: 100px auto;
}
.ttl span:nth-of-type(1) {
  max-width: 270px;
  width: 20%;
  display: block;
  margin: auto;
}
.ttl span:nth-of-type(2) {
  max-width: 160px;
  width: 12%;
  display: block;
  margin: 20px auto;
}
main .thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  align-items: flex-end;
}
.thumbs .thumb {
  width: 25%;
  padding: .5%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.thumbs .thumb:last-of-type span {
  display: block;
  background: #fff;
}
.thumbs .thumb .js-modal-open {
  cursor: pointer;
}
.thumbs .thumb .js-modal-open:hover {
  opacity: .8;
}
.thumbs .thumb .dli-plus span {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 1vw;
  bottom: 2vh;
  z-index: 10;
}
.thumbs .thumb .dli-plus span::before {
  content: "";
  display: block;
  background: #fff;
  -webkit-transform: rotate(0deg);
  transform: rotate(0);
  top: 48%;
  width: 107%;
  left: -3%;
  position: absolute;
  height: 1px;
}
.thumbs .thumb .dli-plus span::after {
  content: "";
  display: block;
  background: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 48%;
  width: 107%;
  left: -3%;
  position: absolute;
  height: 1px;
}
.sub .date {
  display: block;
  text-align: center;
  font-size: 1.1em;
}
span.date span {
  font-size: 0.8em;
  padding-left: 3px;
}
.sub .sub_ttl {
  text-align: center;
  display: block;
  line-height: 1;
  font-size: 27px;
  margin-top: 6px;
  margin-bottom: 13px;
}
.js-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: visible;
  z-index: 10;
}
.modal__bg {
  background: rgba(255,255,255,0.95);
  height: 100vh;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
}
.modal__content {
  width: 100%;
  height: 100vh;
  margin: 50px auto;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9999;
  overflow: scroll;
  transition: opacity 0.25s ease-in;
}
.modal_content_fixed {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 80px;
}
.js-modal .close span {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5%;
  top: 0vh;
  z-index: 1000;
  border: 1px solid #045c00;
}
.js-modal .close span::before {
  content: "";
  display: block;
  background: #045c00;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 48%;
  width: 144%;
  left: -22%;
  position: absolute;
  height: 1px;
}
.js-modal .close span::after {
  content: "";
  display: block;
  background: #045c00;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 48%;
  width: 144%;
  left: -22%;
  position: absolute;
  height: 1px;
}
.modals {
  overflow-y: scroll;
  overflow-x: hidden;
  display: block;
  position: fixed;
  z-index: 110;
}
.modal__content .modal_content_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  max-width: 1100px;
  margin: auto;
  width: 90%;
  margin-bottom: 100px;
}
.modal__content .modal_content_inner h6 {
  font-size: 46px;
}
.modal__content .modal_content_inner .look {
  width: 33.333333333%;
  padding: 0 10px;
  box-sizing: border-box;
}
#m1 .item_img {
  background: #000;
}
#m2 .item_img {
  background: #7f6438;
}
#m3 .item_img {
  background: #555;
}
#m4 .item_img {
  background: #d16a30;
}
#m5 .item_img {
  background: #dbdbdb;
}
#m6 .item_img {
  background: #ccc4be;
}
#m6 .modal__content .modal_content_inner .look {
  width: 50%;
  padding: 0 40px;
}
#m7 .item_img {
  background: #046700;
}


.credits {
  margin: 10px 0 50px;
}
.credits .creditBox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.credits .creditBox .items__name {
  font-size: 13px;
}
.credits .creditBox .items__name span::after {
  content: "/";
  padding: 0 8px;
}
.credits .creditBox .items__price::after {
  content: "" !important;
  padding: 0 !important;
}
.credits .creditBox .credit a {
  color: #fff;
  background: #045c00;
  padding: 1px 10px 2px;
}
.credits .creditBox .disable {
  display: none;
}

footer {
  width: 100%;
  margin: auto;
  padding: 100px 0;
  z-index: 1;
  position: relative;
  background: #fff;
}
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 10px 0;
}
footer .inner ul li a {
  color: #045c00;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .inner p.copy {
  color: #045c00;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: right;
}
footer .pgtop {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
footer .pgtop a {
  display: inline-block;
  vertical-align: middle;
  color: #045c00;
  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;
}
/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  .sp { display: block;}
  .pc { display: none;}
  br.brsp {
    display: block;
  }
  html {
    height: -webkit-fill-available;
  }
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  #loader {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #loader .load .muse_logo {
    width: 120px;
    margin-top: 50px;
  }
  #loader.complete {
    opacity: 0;
  }

  .modal {
    height: auto !important;
  }
  .modal__content {
    width: 100%;
    height: 90%;
  }
  .modal__content .modal_content_inner .look,
  #m6 .modal__content .modal_content_inner .look {
    width: 100%;
    padding: 0 5%;
  }
  .item_img.sp {
    margin-top: 10px;
  }


  main {
    padding-bottom: 0px;
  }
  .ttl {
    margin: 40px auto;
  }
  .ttl span:nth-of-type(1) {
    width: 50%;
  }
  .ttl span:nth-of-type(2) {
    width: 30%;
  }
  .thumbs .thumb {
    width: 50%;
    padding: 2%;
  }
  .thumbs .thumb .dli-plus span{
    right: 4vw;
  }
  .js-modal .close span {
    right: 2%;
  }
  main .thumbs {
    margin-bottom: 50px;
  }
  footer {
    padding: 60px 0 60px 0;
  }
  footer .inner .blog {
    width: 100%;
    padding: 15% 10% 6%;
    background: #000;
    margin-bottom: 50px;
  }
  footer .inner .blog .blog_btn {
    width: 80px;
    top: 9.5%;
  }
  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 10px 0;
  }
  footer .inner ul li a {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .inner ul li a:hover {
    text-decoration: underline;
    opacity: 1;
  }
  footer .inner p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }
  footer .pgtop {
    position: absolute;
    right: 20px;
    bottom: 0px;
  }
  footer .pgtop a {
  }
  footer .pgtop a:hover {
    opacity: 0.7;
  }
}
