@charset "UTF-8";
/***********************************************************************
preset
**********************************************************************/
/***************************************************************************************************************************
module
**************************************************************************************************************************/
.mod-btn {
  border: 2px solid #e4007f;
  background: #e4007f;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: inline-block;
  margin: 0 auto;
}

.mod-btn a {
  display: block;
  padding: 10px 40px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #FFF;
}

.mod-btn:hover {
  background: #FFF;
  border: 2px solid #e4007f;
}
.mod-btn:hover a {
  color: #e4007f;
}

.mod-link {
  background: url("../img/right-arrow.png") no-repeat 0 7px;
  -webkit-transition: color 500ms;
  transition: color 500ms;
}
.mod-link a {
  padding-left: 15px;
}

.mod-link:hover {
  color: #000;
}

/***********************************************************************
media query
**********************************************************************/
@media only screen and (max-width: 750px) {
  .mod-btn {
    border: 2px solid #e4007f;
    background: #e4007f;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: inline-block;
    margin: 0 auto;
  }
  .mod-btn a {
    display: block;
    padding: 5px 30px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #FFF;
  }
  .mod-btn:hover {
    background: #FFF;
    border: 2px solid #e4007f;
  }
  .mod-btn:hover a {
    color: #e4007f;
  }
}
/***********************************************************************
reset style
**********************************************************************/
/* Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
select {
  text-transform: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

:target {
  scroll-margin-block: 5ex;
}

li {
  list-style-type: none;
}

/***********************************************************************
base style
**********************************************************************/
html {
  font-size: 62.5%;
}

body {
  color: #FFF;
  background-color: #0a0a0a;
  background: url(../img/noise.gif) 0 0 repeat;
  overflow-x: hidden;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
  line-height: 1.71;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

img {
  vertical-align: top;
}

a {
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  text-decoration: none;
  color: #e4007f;
}

a:hover {
  text-decoration: none;
}

.glitch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.glitch {
  position: relative;
  font-size: 1.3888888889vw;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 3px;
  z-index: 1;
}

.glitch:before, .glitch:after {
  display: block;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  -webkit-animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
          animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #FFE100;
  z-index: -1;
}

.glitch:after {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #FF00FF;
  z-index: -2;
}

@-webkit-keyframes glitch-it {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-1px, 1px);
            transform: translate(-1px, 1px);
  }
  40% {
    -webkit-transform: translate(-1px, -1px);
            transform: translate(-1px, -1px);
  }
  60% {
    -webkit-transform: translate(1px, 1px);
            transform: translate(1px, 1px);
  }
  80% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes glitch-it {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-1px, 1px);
            transform: translate(-1px, 1px);
  }
  40% {
    -webkit-transform: translate(-1px, -1px);
            transform: translate(-1px, -1px);
  }
  60% {
    -webkit-transform: translate(1px, 1px);
            transform: translate(1px, 1px);
  }
  80% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/***********************************************************************
parts
**********************************************************************/
.sp-br {
  display: none;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

html, body {
  height: 100%;
}

html,
body {
  height: 100%;
}

body {
  overflow: hideen;
  margin: 0;
}

.global-header {
  margin: 0 auto;
  z-index: 1000;
  position: relative;
}
.global-header .drawer-menu {
  position: absolute;
  right: 20px;
  top: 20px;
}
.global-header .drawer-menu .menu {
  position: fixed;
  margin-left: -100px;
  width: 100px;
  height: 100px;
  background: url("../img/menu-btn.png") no-repeat 0 0;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.global-header .drawer-menu .menu a {
  display: block;
  width: 100px;
  height: 100px;
}
.global-header .drawer-menu.on .menu {
  background: url("../img/close-btn.png") no-repeat 0 0;
  background-size: contain;
}

/***********************************************************************
drawer
**********************************************************************/
.drawer-menu-contents {
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  text-align: center;
  display: none;
  padding-bottom: 40px;
  width: 100%;
  height: 10000px;
  background: #000;
  top: 0px;
  left: 0px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
}
.drawer-menu-contents .navi {
  margin-top: 30vh;
}
.drawer-menu-contents .navi li {
  margin-bottom: 30px;
}
.drawer-menu-contents .navi li:first-child a {
  color: #79DEE2;
}
.drawer-menu-contents .navi li:nth-child(2) a {
  color: rgb(182, 116, 116);
}
.drawer-menu-contents .sub-navi {
  font-size: 18px;
  font-size: 1.8rem;
}
.drawer-menu-contents .sub-navi li {
  padding: 0 0 20px 0;
}

.menu {
  z-index: 1000;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}

.menu:hover {
  opacity: 0.6;
}

.drawer-menu.on {
  height: 100%;
}

/***********************************************************************
wrapper
**********************************************************************/
.wrapper {
  position: relative;
}

.top {
  text-align: center;
  position: relative;
  /*
  .wrapper {
    height: 100dvh;
  }
    */
}
.top h1 img {
  width: 48.2777777778vw;
  margin: -40px auto 40px;
  display: inline-block;
}
.top .copy {
  font-size: 1.1888888889vw;
}
.top .global-footer {
  bottom: 20px;
  width: 100%;
  font-size: 11px;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top .global-footer img {
  width: 8.1944444444vw;
}
.top .global-footer span {
  padding-left: 30px;
}
.top .global-footer .copy-right {
  text-align: left;
}
.top .global-footer .kenri {
  padding-left: 0;
  padding-top: 5px;
  text-align: left;
}

/***********************************************************************
btn
**********************************************************************/
.btn-wrap {
  margin-top: 50px;
  margin-bottom: 120px;
}

.btn-glitch, .btn-glitch2, .btn-glitch3 {
  background: transparent;
  color: #FFF;
  border: 1px solid #FFF;
  padding: 20px 36px;
  font-size: 16px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-glitch:hover, .btn-glitch2:hover, .btn-glitch3:hover {
  -webkit-box-shadow: 0 0 20px rgba(255, 225, 0, 0.3);
          box-shadow: 0 0 20px rgba(255, 225, 0, 0.3);
  text-shadow: -2px 0 #000000, 2px 0 #FFE100;
}

.btn-glitch:active, .btn-glitch2:active, .btn-glitch3:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@media only screen and (max-width: 750px) {
  /***********************************************************************
  base style
  **********************************************************************/
  body {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    line-height: 1.71;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sp-br, .drawer-menu {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .gray-bg {
    height: 200px;
  }
  .inner {
    width: 92%;
    margin: 0 4%;
  }
  .inner .contents-block {
    padding: 30px 20px;
  }
  /***********************************************************************
  global-header
  **********************************************************************/
  .global-header {
    width: 100%;
  }
  .global-header .drawer-menu {
    position: absolute;
    right: 4%;
    top: 20px;
  }
  .global-header .drawer-menu .menu {
    position: fixed;
    margin-left: -50px;
    width: 50px;
    height: 50px;
    /*
    background: url("../img/menu-btn-sp.png") no-repeat 0 0;
    */
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .global-header .drawer-menu .menu a {
    width: 50px;
    height: 50px;
  }
  .global-header .drawer-menu.on .menu {
    width: 50px;
    height: 50px;
    /*
    background: url("../img/close-btn-sp.png") no-repeat 0 0;
    */
    background-size: contain;
  }
  .global-header .lead-text {
    font-size: 9px;
    font-size: 0.9rem;
    left: 4%;
    line-height: 1.4em;
    top: 20px;
  }
  .global-header h1 {
    position: absolute;
    left: 4%;
    top: 53px;
    text-indent: -9999px;
    width: 247px;
    height: 17px;
    /*
    background: url("../img/head-logo-sp.png") no-repeat 0 0;
    */
    background-size: contain;
  }
  .global-header h1 a {
    display: block;
  }
  .drawer-menu-contents {
    font-size: 20px;
    font-size: 2rem;
  }
  .drawer-menu-contents ul {
    padding-left: 0;
  }
  .drawer-menu-contents .navi {
    margin-top: 20vh;
  }
  .drawer-menu-contents .navi li {
    margin-bottom: 30px;
  }
  .drawer-menu-contents .sub-navi {
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .drawer-menu-contents .sub-navi li {
    display: block;
    padding: 0 0 20px 0;
  }
  /***********************************************************************
  wrapper
  **********************************************************************/
  .top {
    text-align: center;
    position: relative;
  }
  .top h1 img {
    width: 80%;
    margin: 0px auto 60px;
    display: inline-block;
  }
  .top .glitch-wrapper {
    padding: 0 4%;
    text-align: left;
  }
  .top .glitch {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .top .btn-wrap {
    width: 100%;
    margin: 40px auto 60px;
  }
  .top .btn-wrap .btn-glitch {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 15px 20px;
  }
  .top .global-footer {
    bottom: 20px;
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .top .global-footer img {
    margin-top: 10px;
    width: 59px;
    display: inline-block;
  }
  .top .global-footer span {
    padding-left: 0px;
    display: block;
    padding-top: 10px;
  }
  .top .global-footer .kenri {
    padding-top: 0;
  }
  /***********************************************************************
  global-footer
  **********************************************************************/
  .global-footer {
    height: auto;
  }
}