@charset "UTF-8";

/* all */

body {
  background-color: #ceff00;
  font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: .9em;
}
a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  color: #ceff00;
  text-decoration: none;
}

i {
  font-size: 1.2rem;
}

#wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
}

/*//akabane-css*/

/*img_bk*/
#img {
  background: #fff;
  position: fixed;
  z-index: 1;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 画像ファイルの指定 */
  background-image: url(../img/main.jpg);
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  /*background-attachment: fixed;*/
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #ceff00;
  width: 100vw;
  height: auto;
  min-height: 90vh;
}

#img_bk {
  position: fixed;
  z-index: 2;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
}

.img_bk_class {
  margin: 0;
  overflow: hidden;
}

#wrap {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto 0 auto;
  padding: 0;
  width: 100%;
  z-index: 9998;
  height: 100%;
  position: relative;
}

.wrap-cnt {
  overflow: hidden;
}

/* contents */
.slideConts {
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.slideContsMenu {
  transform: translate(0, -400%);
  transition-delay: 4.0s;
}

.slideContsMenuShow {
  transform: translate(0, 0) !important;
}

.slideContsL {
  transform: translate(0, -50%);
  transition-delay: 0.2s;
  z-index: 3;
}

.slideInLeft {
  transform: translate(0, 0) !important;
}

.slideContsR {
  transform: translate(100%, 0);
  transition-delay: 0.8s;
  z-index: 2;
}

.slideInRight {
  transform: translate(0, 0) !important;
}

.slideContsL3 {
  transform: translate(0, 50%);
  transition-delay: 1.1s;
  z-index: 1;
}

.slideInLeft3 {
  transform: translate(0, 0) !important;
}

.slideContsL3-blockquote {
  font-size: 0.7rem;
  bottom: 0;
}

/* nav */
nav {
  overflow-y: scroll;
}

button:focus {
  outline: 0;
}

.menu-icon {
  background: rgba(255, 255, 255, 0.0);
  z-index: 999;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  cursor: pointer;
}

.menu-trigger {
  position: relative;
  width: 25px;
  height: 20px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 8px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}


.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.open .menu-icon {
  background: rgba(255, 255, 255, 0.0);
  z-index: 999;
}

.open .menu-trigger span {
  background: #fff;
}

#gloval-nav {
  background: rgba(169, 209, 0);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.0em;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

.gloval-nav-cnt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gloval-nav-cnt-sns {
  line-height: 1.2em;
  letter-spacing: 0.05em;
}

#gloval-nav div {
  opacity: 0;
  transform: translateX(200px);
  transition: transform .6s ease, opacity .2s ease;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1.0;
}

.open #gloval-nav li {
  opacity: 1.0;
  transform: translateX(0);
  transition: transform 1s ease, opacity .9s ease;
}

.open #gloval-nav div {
  opacity: 1.0;
  transform: translateX(0);
  transition: transform 1s ease, opacity .9s ease;
}

.draw {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 1em 2em;
  font-size: inherit;
  font-weight: 700;
  position: relative;
  vertical-align: middle;
  z-index: 1;
}

.draw-a {
  position: relative;
  margin: 0;
  padding: 0;
  display: inherit;
  z-index: 3;
}

.draw-a-h1 {
  font-size: 4.0vmax;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}

.draw::before,
.draw::after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;


}

.draw::before,
.draw::after {
  border: 5px solid transparent;
  width: 0;
  height: 0;
}

.draw::before {
  top: 0;
  left: 0;
}

.draw::after {
  bottom: 0;
  right: 0;
}

.draw.drawshow {
  color: #fff;
}

.draw.drawshow::before,
.draw.drawshow::after {
  width: 100%;
  height: 100%;
}

.draw.drawshow::before {
  border-top-color: #fff;
  border-right-color: #fff;
  transition:
    border-top-color 0s ease-out 1.0s,
    border-right-color 0s ease-out 2.5s,
    width 1.5s ease-out 1.0s,
    height 1.0s ease-out 2.5s;
}

.draw.drawshow::after {
  border-bottom-color: #fff;
  border-left-color: #fff;
  transition:
    border-bottom-color 0s ease-out 1.0s,
    border-left-color 0s ease-out 2.5s,
    width 1.5s ease-out 1.0s,
    height 1.0s ease-out 2.5s;
  /*border-color 0s ease-out 3.5s,
          width 1.5s ease-out 3.5s,
          height 1.0s ease-out 5.0s;*/
}