@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #F4F4F4;
  --gray: #696969;
  --d-gray: #404040;
  --dd-gray: #101010;
  --black: #060606;
  --border1: rgba(255,255,255,0.25);
  --border2: rgba(0,0,0,0.125);
  --color1: #E03531;
  --color1-d:#C62A2A;
  --color2: #1F0F07;
  --color3:#BFB6A6;
  --red: #E03531;

  --font1: 'MADE Outer Sans', sans-serif;
  --font2: 'Outfit', sans-serif;
  --font-d: 'Ciutadella', sans-serif;
  --mincho: 'しっぽり明朝', 'Shippori Mincho', serif;
}

@font-face {
  font-family: "MADE Outer Sans";
  font-weight: 900;
  src:
    url("../fonts/MADE-Outer-Sans/MADE-Outer-Sans-Black.woff") format("woff");
}
@font-face {
  font-family: "Ciutadella";
  font-weight: 700;
  src:
    url("../fonts/Ciutadella/Ciutadella-Bold.woff") format("woff");
}

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: opacity 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}

/*  Animation
================ */
.iv {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(5px);
  transition: .8s ease-out;
  transition-property: opacity, filter, transform;
}
.iv.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  /*animation: fadeinup .8s ease-out forwards;*/
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translateY(2rem);
    filter: blur(5px); }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0); }
}


.iv._fadein {
  transform: translateY(0);
}
.iv._fadein.show {
  /*animation: fadein .8s ease-out forwards;*/
}
@keyframes fadein {
  0% {
    opacity: 0;
    filter: blur(5px); }
  100% {
    opacity: 1;
    filter: blur(0); }
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 3.25vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 575px) {
  html { font-size: 85%; }
}
@media (min-width: 1440px) {
  html { font-size: 100%; }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  background: var(--black);
  color: var(--white);
}

#container {
  overflow-x: hidden;
  overflow: hidden;
}

body:not(.home) #inner-content {
  padding-top: 70px;
}
@media (min-width: 992px) {
  body:not(.home) #inner-content {
    padding-top: 110px;
  }
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

#content::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../img/kv/kv_b__sp.jpg) no-repeat center 20px / cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (orientation: landscape){
  #content::before {
    background: url(../img/kv/kv_b.jpg) no-repeat center center / cover;
  }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  font-family: var(--font2);
  font-size: 1.125rem;
  font-weight: 700;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo {
  margin: 0;
  flex: 0 0 min(160px, 50vw);
  margin: 0 15px;
  position: relative;
  z-index: 999;
}
#logo .logo__inner {
  display: block;
  margin: 0;
  color: inherit;
  position: relative;
}
#logo .logo__inner img {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #siteHeader {
    background: var(--black);
  }
}

@media (min-width: 992px) {
  #siteHeader {
    height: 110px;
  }
  .inner-header {
    justify-content: space-between;
  }
  #logo {
    flex: 0 0 min(200px, 18vw);
    margin: 0 30px;
  }
}

/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none; }
nav ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: .25em;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  padding: .5em 0;
}
nav ul li ul.sub-menu li a,
nav ul li ul.children li a {
  padding-left: 30px;
}
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal;
}
nav ul li a:hover {
  color: var(--color1);
}

.gNav {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav .navBar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.gNav .navBar ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.gNav .navBar ul li a span {
  display: block;
}
.gNav .navBar > ul > li > a,
.gNav .navBar .has-children > a,
.gNav .navBar .has-children .menu-parent {
  display: flex;
  align-items: center;
}

/* Sub menu */
.gNav .sub-menu {
  background: var(--color2);
}

.gNav .navBar .sub-nav li a {
  justify-content: center;
  font-family: var(--font1);
  white-space: nowrap;
  border: 1px solid var(--white);
  padding: .85em 1.5em;
  position: relative;
}

.gNav .navBar ul.social {
  gap: 1em;
  justify-content: center;
}
@media(min-width: 992px){
  nav ul {
    row-gap: 1em;
  }
  .gNav .navBar ul.social {
    position: fixed;
    bottom: 1.5rem;
    left: calc(15px + .5em);
    flex-direction: column;
    gap: .25em;
  }
  body:not(.home) .gNav .navBar ul.social {
    display: none;
  }
}

/* ==========================================================================
   PC Global Navigation
========================================================================== */
@media(min-width: 992px){
  .gNav{
    display: block !important;   
  }
  .gNav__inner {
    align-items: center;
  }
  .gNav .navBar{
    letter-spacing: 0;
    margin-right: 30px;
  }
  .gNav .navBar ul {
    align-items: center;
  }
  .gNav .has-children > .sub-menu{
    position: absolute;
  }
  .gNav .navBar > ul > li > a,
  .gNav .navBar .has-children > a,
  .gNav .navBar .has-children .menu-parent {
    flex-direction: column;
    justify-content: center;
  }

  .gNav .navBar ul li a {
    padding: .5em .0;
  }

  /* Sub Navigation */
  .gNav .navBar .sub-nav {
    margin-left: 3em;
  }

  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   SP Global Navigation
========================================================================== */
@media(max-width: 991px){
  .gNav{
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    display: none;   
  }
  .gNav__inner {
    flex-direction: column;
    width: 100%;
    height: auto;
    background: var(--black);
      
    opacity: 0;
    transform: translateY(-70px);
    pointer-events: none;
    transition: .3s;
    transition-property: opacity, transform;
  }
  .gNav .navBar {
    max-width: 30rem;
    flex-direction: column;
    justify-content: flex-start;
    margin: 70px auto 0;
    font-size: 1.071em;
    overflow-y: auto;
  }
  .gNav .navBar ul:not(.social) {
    flex-direction: column;
    margin: 15px 40px;
  }
  .gNav .navBar ul:not(.social) li a {
    justify-content: center;
    padding: .75em 0;
    position: relative;
  }

  /* OPEN */
  .gNav.on .gNav__inner{
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
  }

  /* Nav Btn */
  .nav-btn {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 80px;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .nav-btn i{
    display: block;
    background: currentColor;
    height: 2px;
    position: absolute;
    right: calc(40px/2);
    left: calc(40px/2);
    margin-top: -0.5px;
    transition: background .3s .3s, top .3s .3s, transform .3s;
  }
  .nav-btn i:nth-of-type(1){
    top: calc(50% - 4px);
  }
  .nav-btn i:nth-of-type(2){
    top: calc(50% + 4px);
  }
  .nav-btn.on i{
    border-radius: 2px;
    background: #B9B9B9;
    transition: background .3s, top .3s, transform .3s .3s;
  }
  .nav-btn.on i:nth-of-type(1){
    top: 50%;
    transform: rotate(20deg);
  }
  .nav-btn.on i:nth-of-type(2){
    top: 50%;
    transform: rotate(-20deg);
  }

  .gNav .navBar ul.social {
    justify-content: center;
    padding: 15px 40px 30px;
  }
}

/* ==========================================================================
   Social links
========================================================================== */
ul.social {
  list-style-type: none;
  display: flex;
  align-items: center;
}
ul.social li a {
  display: inline-block;
  line-height: 1;
  padding: .35em;
}
ul.social li a svg {
  width: auto;
  height: 1.25em;
  vertical-align: bottom;
}
ul.social li a svg.icon-youtube {
  height: 1.75em;
}


/* ==========================================================================
   Sidebar
========================================================================== */
.sidebar .side-box {
  margin-bottom: 3em;
}
.sidebar .side-ttl {
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--color1);
  border-bottom: 1px solid var(--gray);
  position: relative;
}
.sidebar ul {
  list-style-type: none;
  line-height: 1.5;
  margin: 1em 0;
}
.sidebar ul li {
  margin-bottom: .25em;
}
.sidebar ul li a {
  display: inline-block;
  padding: .125em 0;
}

@media(min-width: 992px){
  .sidebar .side-ttl {
    text-align: right;
  }
  .sidebar ul li a {
    font-size: .933em;
  }
}


/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: rgba(0, 0, 0, .75);
  padding-top: 2.5em;
  padding-bottom: calc(2.5em + 60px);
  position: relative;
}
#siteFooter a:hover {
  opacity: .5;
}
#siteFooter .inner-footer {
  text-align: center;
  padding-top: 2.5em;
  padding-bottom: 1.5em;
}
#siteFooter .footer-info p {
  line-height: 1.9;
  margin-top: 1.5em;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}
#siteFooter ul.social {
  font-size: 1.25em;
}

#siteFooter .footer-bottom {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  font-size: .8rem;
}
#siteFooter .footer-bottom nav ul {
  align-items: center;
}

#siteFooter .copyright {
  font-family: var(--font2);
  margin-top: 1.5rem;
  text-align: center;
}


@media(max-width: 991px){
  #siteFooter ul {
    justify-content: center;
  }
  #siteFooter #footerLogo {
    margin-bottom: .75em;
  }
}

@media(min-width: 992px){
  #siteFooter {
    padding-top: 5.5em;
    padding-bottom: 5.5em;
  }
  #siteFooter .inner-footer {
    text-align: left;
  }
  #siteFooter .copyright {
    margin-top: 0;
  }
}


/* ==========================================================================
   PC Footer Navigation
========================================================================== */
@media(min-width: 992px){
  .fNav .navBar {
    font-family: var(--font2);
    display: flex;
    justify-content: flex-end;
  }
  .fNav .navBar ul {
    margin-left: 3em;
    white-space: nowrap;
  }
  .fNav .navBar ul li {
    margin-bottom: .5em;
  }
}



/* Fixed menu */
#fixed-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 888;
}
#fixed-menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color1);
  font-size: 1.25rem;
  line-height: 1.65;
}
#fixed-menu a:hover {
  background: var(--color1-d);
  opacity: 1;
}
@media (orientation: portrait){
  #fixed-menu a {
    width: 100vw;
    height: 60px;
  }
}
@media (orientation: landscape){
  #fixed-menu a{
    width: 60px;
    height: 240px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: .1em;
  }
}


.grecaptcha-badge { visibility: hidden; }
.reCAPTCHA-notes {
  font-size: .75em;
  text-align: center;
  margin-top: 4.5rem;
}
.reCAPTCHA-notes a {
  text-decoration: underline;
}

