/*--------------------------------------*
 * foundation
 *--------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Shippori+Mincho:wght@400;600&display=swap");
@font-face {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 500;
  display: swap;
}
@font-face {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 600;
  display: swap;
}
@font-face {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
html {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 15px;
  }
}

html.loading #home {
  display: none;
}

html.loading #loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

img {
  width: 100%;
}

.inner {
  width: calc(100% - 100px);
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .inner {
    width: calc(100% - 40px);
  }
}
a {
  text-decoration: none;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (min-width: 641px) {
  .is-hidePcTab {
    display: none;
  }
}

.l-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 80px;
  height: 80px;
  background-color: #000;
  cursor: pointer;
  outline: none;
}
@media screen and (max-width: 959px) {
  .l-header__hamburger {
    width: 60px;
    height: 60px;
  }
}
.l-header__hamburger.active .hamburger__line {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}
.l-header__hamburger.active .hamburger__line:nth-of-type(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.l-header__hamburger.active .hamburger__line:nth-of-type(2) {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.l-header__hamburger.active .hamburger__line:nth-of-type(3) {
  opacity: 0;
}
.l-header__hamburger .hamburger__line {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 1px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  pointer-events: none;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media screen and (max-width: 959px) {
  .l-header__hamburger .hamburger__line {
    right: 10px;
    width: 40px;
  }
}
.l-header__hamburger .hamburger__line:nth-of-type(1) {
  top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#FFFF00), color-stop(10%), color-stop(30%, #00FFFF), color-stop(75%, #FF0000));
  background: linear-gradient(90deg, #FFFF00, 10%, #00FFFF 30%, #FF0000 75%);
}
@media screen and (max-width: 959px) {
  .l-header__hamburger .hamburger__line:nth-of-type(1) {
    top: 15px;
  }
}
.l-header__hamburger .hamburger__line:nth-of-type(2) {
  top: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#FFFF00), color-stop(40%), color-stop(50%, #00FFFF), color-stop(75%, #FF0000));
  background: linear-gradient(90deg, #FFFF00, 40%, #00FFFF 50%, #FF0000 75%);
}
@media screen and (max-width: 959px) {
  .l-header__hamburger .hamburger__line:nth-of-type(2) {
    top: 30px;
  }
}
.l-header__hamburger .hamburger__line:nth-of-type(3) {
  width: 30px;
  bottom: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#FFFF00), color-stop(60%), color-stop(70%, #00FFFF), color-stop(95%, #FF0000));
  background: linear-gradient(90deg, #FFFF00, 60%, #00FFFF 70%, #FF0000 95%);
  margin: 0;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .l-header__hamburger .hamburger__line:nth-of-type(3) {
    width: 30px;
    bottom: 15px;
  }
}

.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  z-index: 900;
}
.l-header__nav.active {
  visibility: visible;
  opacity: 1;
}
.l-header__nav.active .l-header__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.l-header__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header__list .l-header__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}
.l-header__list .l-header__item:nth-child(n+2) {
  margin-top: 30px;
}
.l-header__list .l-header__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.l-header__list .l-header__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-header__list .l-header__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.l-header__list .l-header__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.l-header__list .l-header__item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.l-header__link {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: color 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  line-height: 1;
  font-family: Cormorant;
}
@media screen and (max-width: 640px) {
  .l-header__link {
    font-size: 20px;
  }
}
.l-header__link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  height: 1px;
  width: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFFF00), color-stop(50%), color-stop(60%, #00FFFF), color-stop(75%, #FF0000));
  background: linear-gradient(90deg, #FFFF00, 50%, #00FFFF 60%, #FF0000 75%);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (min-width: 641px) {
  .l-header__link:hover:before {
    width: 100%;
  }
}

.l-header__sns {
  display: inline-block;
}
.l-header__sns .l-header__ig {
  width: 30px;
  height: 30px;
  display: block;
}
@media screen and (max-width: 640px) {
  .l-header__sns .l-header__ig {
    width: 30px;
    height: 30px;
  }
}

.l-header__img {
  width: auto;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*--------------------------------------*
 * foundation
 *--------------------------------------*/
.l-footer {
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  display: block;
}
@media screen and (max-width: 959px) {
  .l-footer {
    padding: 50px 0 20px;
  }
}
.l-footer .l-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto 30px;
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__wrap {
    display: block;
    margin: 0 0 20px;
    text-align: left;
  }
}
.l-footer .l-footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*@include tab {
  	width: calc(100% - 30px);
  	margin-right: 30px;
  }*/
}
@media screen and (min-width: 960px) {
  .l-footer .l-footer__box {
    width: calc(100% - 100px);
    margin-right: 100px;
  }
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__box {
    display: block;
  }
}
.l-footer .l-footer__logo {
  display: inline-block;
  width: 215px;
  margin-right: 10%;
}
.l-footer .l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
  width: calc(100% - 280px);
}
@media screen and (max-width: 959px) and (min-width: 641px) {
  .l-footer .l-footer__list {
    line-height: 1;
  }
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__list {
    display: block;
    margin-top: 30px;
  }
}
.l-footer .l-footer__item {
  display: inline-table;
  line-height: 0;
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__item {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .l-footer .l-footer__item:nth-child(n+2) {
    margin-left: 8%;
  }
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__item:nth-child(n+2) {
    margin-top: 20px;
  }
}
.l-footer .l-footer__link {
  position: relative;
  font-size: 24px;
  font-family: Cormorant;
  line-height: 1.2;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .l-footer .l-footer__link {
    font-size: 18px;
    line-height: 1;
  }
}
.l-footer .l-footer__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: inline-block;
  height: 1px;
  width: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFFF00), color-stop(50%), color-stop(60%, #00FFFF), color-stop(75%, #FF0000));
  background: linear-gradient(90deg, #FFFF00, 50%, #00FFFF 60%, #FF0000 75%);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}
.l-footer .l-footer__link:hover:after {
  width: 100%;
}
.l-footer .l-footer__sns {
  display: inline-block;
}
.l-footer .l-footer__sns .l-footer__ig {
  width: 29px;
  height: 29px;
  display: block;
}
.l-footer .l-footer__top {
  display: block;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .l-footer .l-footer__top {
    margin: 0 auto;
  }
}
.l-footer .l-footer__top .l-footer__link {
  position: relative;
  padding-left: 20px;
}
.l-footer .l-footer__top .l-footer__link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  display: block;
  width: 13px;
  height: 18px;
  background: url("../img/page-top.svg") no-repeat center/contain;
}
@media screen and (max-width: 640px) {
  .l-footer .l-footer__top .l-footer__link:before {
    bottom: 2px;
  }
}
.l-footer .copyright {
  color: #808080;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: inherit;
}