@charset "utf-8";

/* **************************************************

  elements
  
************************************************** */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
@-ms-viewport { width: device-width; }
:after,
:before { box-sizing: border-box; }
html,
body { background: #080807; }
body {
  font-smooth: always;
	text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}
body {
  font-family: "Heebo", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 3.2vw;
  line-height: 1.5;
	color: #1d1d1a;
}
html.desktop.has-effect *[data-effect="no"],
html.desktop.has-effect *[data-effect="no"] * {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}
* { outline: none; }
*::selection { background: #deddd5 ; color: #fcfcfc; }
*::-moz-selection { background: #deddd5 ; color: #fcfcfc; }
a {
	color: #1d1d1a;
	text-decoration: none;
}
a:link, a:visited { text-decoration: none; }
a.underline { text-decoration: underline; }
a img { border: none; }
img {
	vertical-align: bottom;
  max-width: 100%;
  height: auto;
	border: none;
	outline: none;
	-ms-interpolation-mode: bicubic;
}
table { line-height: 1.5; }
input,
textarea { font-family: "Heebo", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif; }
input,
textarea,
select {
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
::-ms-expand { display: none; }
*::-webkit-input-placeholder { color: #969da4; }
*:placeholder-shown { color: #969da4; }

@media screen and (min-width:600px) {
body { font-size: 12px; }
}

@media screen and (min-width:768px) {
html:not(.touch).desktop body,
html:not(.touch).desktop body * { cursor: none; }
a {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
}

/* ==============================
  is-menu-open
============================== */
.is-menu-open body,
.is-search-open body {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100% !important;
  left: 0;
}



/* **************************************************

  splash
  
************************************************** */
#splash {
  font-size: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}
#splash:before,
#splash:after {
  background: #fcfcfc;
  display: block;
  content: "";
  width: 100%;
  height: 52%;
  position: absolute;
  left: 0;
}
#splash:before { top: 0; }
#splash:after { bottom: 0; }
#splash .logo {
  width: 180px;
  height: 162px;
  z-index: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) scale(1.2);
  transform: translate(-50%,-50%) scale(1.2);
}
#splash .logo .symbol img { width: 100%; }

/* --------------------
  is-init
-------------------- */
.is-init #splash .logo {
  opacity: 1;
  -webkit-transform: translate(-50%,-50%) scale(0.8);
  transform: translate(-50%,-50%) scale(0.8);
  -webkit-transition: -webkit-transform 10s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 1.5s ease-out;
  transition: transform 10s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 1.5s ease-out;
}

/* --------------------
  is-done
-------------------- */
.is-done #splash .logo {
  opacity: 0;
  -webkit-transform: translate(-50%,-50%) scale(0.4);
  transform: translate(-50%,-50%) scale(0.4);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: transform 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.is-done #splash:before,
.is-done #splash:after {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
}

/* --------------------
  is-complete
-------------------- */
.is-complete #splash { display: none; }


/* ==============================
  show-symbol
============================== */
.show-symbol #splash .logo {
  width: 100px;
  height: 90px;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

/* --------------------
  is-start
-------------------- */
.show-symbol.is-start #splash .logo {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

/* --------------------
  is-done
-------------------- */
.show-symbol.is-done #splash .logo {
  opacity: 0;
  -webkit-transform: translate(-50%,-50%) scale(0.4);
  transform: translate(-50%,-50%) scale(0.4);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/* **************************************************

  wraper
  
************************************************** */
#wrapper {
  background: #fcfcfc;
  overflow: hidden;
}



/* **************************************************

  header
  
************************************************** */
#header {
  box-sizing: border-box;
  width: 100%;
  padding: 0 5.333333333333333vw;
  position: absolute;
  top: 0;
  left: 0;
}
#header > .inner { position: relative; }
#header .header-logo {
  font-size: 0;
  width: 45px;
  z-index: 998;
  position: absolute;
  top: 12px;
  left: 0;
}

@media screen and (min-width:600px) {
#header { padding: 0 50px; }
#header .header-logo {
  width: 72px;
  top: 30px;
}
}


/* ==============================
  header-nav
============================== */
#header .header-nav { display: none; }

@media screen and (min-width:768px) {
#header .header-nav {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: #fcfcfc;
  display: block;
  z-index: 998;
  position: absolute;
  top: 10px;
  right: 70px;
}
#header .header-nav a {
  color: #fcfcfc;
  display: inline-block;
  vertical-align: top;
}
#header .header-nav > ul {
  letter-spacing: -0.4em;
  white-space: nowrap;
}
#header .header-nav > ul > li {
  display: inline-block;
  letter-spacing: 0.17em;
  vertical-align: top;
  padding: 36px 0;
  position: relative;
}
#header .header-nav > ul > li:nth-child(n+2) { margin-left: 3em; }
#header .header-nav > ul > li.current_page_parent:after,
#header .header-nav > ul > li.current-menu-parent:after,
#header .header-nav > ul > li.current-menu-item:after {
  background: #fcfcfc;
  display: block;
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header .header-nav > ul > li.menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 1em;
  left: 0;
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s;
}
#header .header-nav > ul > li.menu-item-has-children.current-menu-item .sub-menu { bottom: 0; }
#header .header-nav > ul > li.menu-item-has-children .sub-menu li:nth-child(n+2) { margin-top: 1.8em; }
#header .header-nav > ul > li.menu-item-has-children:not(:hover) .sub-menu {
  -webkit-transition-delay: 0.4s, 0.4s, 0.9s;
  transition-delay: 0.4s, 0.4s, 0.9s;
}
#header .header-nav > ul > li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

#header .header-nav > ul > li .marker .marker-bar {
  background-image: -webkit-linear-gradient(left, #fcfcfc 50%, transparent 50%);
  background-image: linear-gradient(to right, #fcfcfc 50%, transparent 50%);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#header .header-nav > ul > li .marker:hover .marker-bar {
  color: #1d1d1a;
  background-position: 0% 0%;
}
}



/* **************************************************

  gnav
  
************************************************** */
#gnav-background,
#gnav {
  width: 100vw;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
#gnav-background {
  -webkit-transition: visibility 0s 0.4s;
  transition: visibility 0s 0.4s;
}
#gnav-background .line {
  background: #080807;
  width: 100%;
  height: 0;
  margin-top: 33.3%;
  position: absolute;
  left: 0;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gnav-background .line:nth-child(1) { top: 0; }
#gnav-background .line:nth-child(2) { top: 33.3%; }
#gnav-background .line:nth-child(3) { top: 66.6%; }
#gnav {
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s 0.5s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s 0.5s;
}
#gnav,
#gnav a { color: #fcfcfc; }
#gnav .content {
  display: table;
  table-layout: fixed;
  width: 100%;
}
#gnav .content > .inner {
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  padding: 2.333333333333334vw 9.333333333333333vw;
}
#gnav .nav-logo {
  font-size: 0;
  width: 16vw;
}
#gnav .nav-logo a { display: block; }
#gnav .nav-list {
  font-size: 10.26666666666667vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.4em;
  margin-top: 13.33333333333333vw;
}
#gnav .nav-list li {
  letter-spacing: -0.02em;
  position: relative;
}
#gnav .nav-list > li:nth-child(n+2) { margin-top: 0.25em; }
#gnav .nav-list > li .num {
  font-size: 1.6vw;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1em;
  position: absolute;
  top: -1.5em;
  left: 0.4em;
}
#gnav .nav-list > li .num[data-num]:before { content: attr(data-num); }
#gnav .nav-list > li .num[data-num]:after {
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  content: " /";
}
#gnav .nav-list > li a {
  padding-right: 0.1em;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
#gnav .nav-list > li a .crop {
  display: block;
  -webkit-transform: translateY(1em);
  transform: translateY(1em);
  -webkit-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gnav .nav-list > li .sub-menu { margin-top: 0.25em; }

/* ==============================
  is-loaded
============================== */
.is-loaded #gnav-background,
.is-loaded #gnav { display: block; }

/* ==============================
  is-menu-open
============================== */
.is-menu-open #gnav-background,
.is-menu-open #gnav { visibility: visible;  }
.is-menu-open #gnav-background {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.is-menu-open #gnav-background .line {
  height: 33.4%;
  margin-top: 0;
}
.is-menu-open #gnav {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}
.is-menu-open #gnav .nav-list > li a .crop {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.is-menu-open #gnav .nav-list >  li:nth-child(1) a .crop {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.is-menu-open #gnav .nav-list >  li:nth-child(2) a .crop {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}
.is-menu-open #gnav .nav-list >  li:nth-child(3) a .crop {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.is-menu-open #gnav .nav-list >  li:nth-child(4) a .crop {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
.is-menu-open #gnav .nav-list >  li:nth-child(5) a .crop {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

@media screen and (min-width:600px) {
#gnav .content > .inner { padding: 35px 70px; }
#gnav .nav-logo { width: 72px; }
#gnav .nav-list {
  font-size: 7.083333333333333vw;
  margin-top: 100px;
}
#gnav .nav-list li .num { font-size: 10px; }
}

@media screen and (max-width:767px) {
#gnav .nav-logo a {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
}

@media screen and (min-width:768px) {
#gnav .content > .inner { padding: 4.166666666666667vw 8.333333333333333vw; }
#gnav .nav-logo {
  position: absolute;
  right: 100px;
  bottom: 100px;
}
#gnav .nav-list { margin-top: 0; }
#gnav .nav-list > li { padding-left: 0.5em; }
#gnav .nav-list > li:nth-child(n+2) { margin-top: 0; }
#gnav .nav-list > li.menu-item-has-children { letter-spacing: -0.4em; }
#gnav .nav-list > li.menu-item-has-children > a,
#gnav .nav-list > li.menu-item-has-children > .sub-menu {
  display: inline-block;
  letter-spacing: -0.02em;
  vertical-align: top;
}
#gnav .nav-list > li.menu-item-has-children > .sub-menu {
  margin: 0 0 0 0.8235294117647059em;
  position: relative;
}
#gnav .nav-list > li.menu-item-has-children > .sub-menu:before {
  background: rgba(255,255,255,0.3);
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  left: -0.411764705882353em;
  -webkit-transform: translateY(-65%) skewX(-20deg) scaleY(0.8);
  transform: translateY(-65%) skewX(-20deg) scaleY(0.8);
}
#gnav .nav-list > li .num {
  top: 0.8em;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
#gnav .nav-list > li .sub-menu { margin-top: 0; }


/* ==============================
  hover
============================== */
#gnav.fix .nav-list >  li a .crop {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}
#gnav .nav-list > li a:after {
  color: transparent;
  display: block;
  content: attr(data-txt);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 1px #fcfcfc;
  -webkit-transform: translateY(1em);
  transform: translateY(1em);
  -webkit-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#gnav .nav-list > li a:hover:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#gnav .nav-list > li a:hover .crop {
  -webkit-transform: translateY(-1em);
  transform: translateY(-1em);
}
html.ie #gnav .nav-list > li a:after { color: rgba(255,255,255,0.2); }

/* ==============================
  is-menu-open
============================== */
.is-menu-open #gnav .nav-list > li:nth-child(1).menu-item-has-children > .sub-menu .crop {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.is-menu-open #gnav .nav-list > li:nth-child(2).menu-item-has-children > .sub-menu .crop {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}
}

@media screen and (min-width:1200px) {
#gnav .nav-list { font-size: 85px; }
#gnav .content > .inner { padding: 50px 100px; }
}




/* **************************************************

  header-menu
  
************************************************** */
#header-menu {
  width: 32px;
  height: 20px;
  z-index: 1000;
  position: fixed;
  top: 19px;
  right: 5.333333333333333vw;
  /*cursor: pointer;*/
}
#header-menu .icon {
  background: #fcfcfc;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: background 0.1s ease, width 0.4s ease, top 0.4s ease-in-out, -webkit-transform 0.4s ease, opacity 0.4s ease-in-out;
  transition: background 0.1s ease, width 0.4s ease, top 0.4s ease-in-out, transform 0.4s ease, opacity 0.4s ease-in-out;
}
#header-menu .icon:nth-child(1) { top: 0; }
#header-menu .icon:nth-child(2) { top: 9px; }
#header-menu .icon:nth-child(3) {
  width: 62.5%;
  top: 18px;
}

/* --------------------
  is-change-menu
-------------------- */
.is-change-menu #header-menu .icon { background: #1d1d1a; }

/* --------------------
  is-menu-open
-------------------- */
.is-menu-open #header-menu .icon { background: #fcfcfc !important; }
.is-menu-open #header-menu .icon:nth-child(1) {
  width: 120%;
  top: 9px;
  -webkit-transform: translateX(3px) rotate(210deg);
  transform: translateX(3px) rotate(210deg);
}
.is-menu-open #header-menu :nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.is-menu-open #header-menu .icon:nth-child(3) {
  width: 120%;
  top: 9px;
  -webkit-transform: translateX(3px) rotate(-210deg);
  transform: translateX(3px) rotate(-210deg);
}

@media screen and (min-width:600px) {
#header-menu {
  top: 42px;
  right: 40px;
}
}

@media screen and (min-width:960px) {
#header-menu { right: 50px; }
}



/* **************************************************

  footer
  
************************************************** */
#footer {
  color: #fcfcfc;
  background: #080807;
  text-align: center;
  padding: 40px 5.333333333333333vw;
}
#footer .footer-logo { font-size: 0; }
#footer .footer-logo img {
  display: inline-block;
  width: 52px;
  transform: translateX(12%);
}
#footer .footer-pmark { font-size: 0; margin-top: 20px; }
#footer .footer-pmark img {
  display: inline-block;
  width: 32px;
  transform: translateX(12%);
}
#footer .footer-copy {
  font-size: 2.133333333333333vw;
  letter-spacing: 0.02em;
  margin-top: 2em;
}

@media screen and (min-width:600px) {
#footer { padding: 60px 50px; }
#footer .footer-logo img { width: 64px; }
#footer .footer-pmark img { width: 40px; }
#footer .footer-copy { font-size: 10px; }
}


/* **************************************************

  cursor
  
************************************************** */
@media screen and (min-width:768px) {
.desktop .cursor,
.desktop .cursor-follower {
  border-radius: 100%;
  user-select: none;
  pointer-events: none;
  z-index: 9998;
  position: fixed;
}
.desktop .cursor {
  background: #fcfcfc;
  width: 6px;
  height: 6px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33), opacity 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33), background 0.2s ease;
  transition: transform 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33), opacity 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33), background 0.2s ease;
}
.desktop .cursor.hover {
  opacity: 0.5;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.desktop .cursor-follower {
  background: rgba(252,252,252,0.3);
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33), opacity 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33), background 0.2s ease;
  transition: transform 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33), opacity 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33), background 0.2s ease;
  -webkit-transform: translate(5px, 5px);
  transform: translate(5px, 5px);
}
.desktop .cursor-follower.hover {
  opacity: 0.7;
  -webkit-transform: scale(3);
  transform: scale(3);
}

/* --------------------
  mobile
-------------------- */
html.touch .cursor,
html.touch .cursor-follower,
html:not(.desktop) .cursor,
html:not(.desktop) .cursor-follower { display: none !important; }

/* --------------------
  is-change-menu-over
-------------------- */
.desktop.is-change-menu-over .cursor { background: #080807; }
.desktop.is-change-menu-over .cursor-follower { background: rgba(8,8,7,0.3); }
}



/* **************************************************

  grecaptcha-badge
  
************************************************** */
.grecaptcha-badge { visibility: hidden; }




