@charset "UTF-8";
/*--------------------------------------------------------------------
inview js Animaion
----------------------------------------------------------------------*/
.box--effectBlur {
  overflow: hidden;
  opacity: 0;
}

/*effectBlur*/
.effectBlur {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  /* ----------------------------------------------
  * Generated by Animista on 2018-11-27 15:52:19
  * w: http://animista.net, t: @cssanimista
  * ---------------------------------------------- */
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
/*fade_in_up*/
.box--fade_in_up {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateY(80px);
      -ms-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade_in_up {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

/*--------------------------------------------------------------------
mixin
----------------------------------------------------------------------*/
@-webkit-keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
@keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
.box--slide_in {
  width: 1px;
  opacity: 0;
}

.slide_in {
  -webkit-animation: slide_in 0.8s ease-in-out forwards;
          animation: slide_in 0.8s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes slide_in {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes slide_in {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
/*------------------------------------*\
    BORDERS
\*------------------------------------*/
/* Create a series of empty pseudo-elements... */
body:after,
body:before,
html:after,
html:before {
  content: "";
  position: fixed;
  display: block;
  z-index: 5;
  outline: solid 1px #222;
  outline-offset: 1px;
  /* 外側の線と内側の線の空き具合を調整*/
}

/* ...and position them! */
html:before {
  height: 1px;
  left: 20px;
  right: 20px;
  top: 20px;
}

html:after {
  width: 1px;
  top: 20px;
  right: 20px;
  bottom: 20px;
}

body:before {
  height: 1px;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

body:after {
  width: 1px;
  top: 20px;
  bottom: 20px;
  left: 20px;
}

/*--------------------------------------------------------------------
page_move
----------------------------------------------------------------------*/
.page_move {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 1;
}

.page_move:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-color: #000;
  z-index: 9999;
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.fadeout {
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  opacity: 0;
}

.fadeout:after {
  opacity: 1;
}

/*--------------------------------------------------------------------
header
----------------------------------------------------------------------*/
header {
  width: 100%;
  margin: 0 auto;
  padding: 20px 30px 0;
  z-index: 2;
  position: relative;
  /*←htmlに書いたshadowBoxのz-indexの影響で2と記述*/
}

.logo_no_go {
  width: 100%;
  padding: 0;
  text-align: center;
  margin-top: 20px;
  pointer-events: all;
}

.logo_no_go a {
  display: inline-block;
}

.logo_no_go a object {
  pointer-events: none;
  width: 50%;
}

/*--------------------------------------------------------------------
globalNav
----------------------------------------------------------------------*/
input#toggle {
  /* inputタグの表示位置の指定は不要。inputタグとlabelタグをfor属性でプログラム的に関連づけているため、inputタグはどこにあっても良い */
  display: none;
}

/*ハンバーガー close*/
.globalNav .hamburger {
  position: absolute;
  top: 50px;
  left: 80px;
  display: block;
  cursor: pointer;
  z-index: 4;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.globalNav .hamburger p {
  color: #777;
  font-size: 1.5rem;
  margin: 5px auto 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.globalNav .hamburger .bar {
  width: 45px;
  height: 1px;
  margin: 5px auto 4px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #777;
  opacity: 1;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translateX(-3px) rotate(-3deg);
      -ms-transform: translateX(-3px) rotate(-3deg);
          transform: translateX(-3px) rotate(-3deg);
}
.globalNav .hamburger .bar.bar:nth-child(2) {
  width: 40px;
  margin: 3px auto 2px 0;
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}
.globalNav .hamburger .bar.bar:nth-child(3) {
  width: 44px;
  margin: 3px auto 2px 0;
  -webkit-transform: translateX(5px) rotate(5deg);
      -ms-transform: translateX(5px) rotate(5deg);
          transform: translateX(5px) rotate(5deg);
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover .bar_name {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 4px auto 0;
  }
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover .bar {
    background-color: #845842;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 8px auto 4px 0;
  }
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover p {
    color: #845842;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover .bar:first-child {
    width: 32px;
  }
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover .bar:nth-child(2) {
    width: 20px;
  }
}

@media screen and (min-width: 960px) {
  .globalNav .hamburger:hover .bar:nth-child(3) {
    width: 58px;
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
}

/*--------------------------------------------------------------------
menu
----------------------------------------------------------------------*/
.menu {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  visibility: hidden;
  width: 80vw;
  height: 80vh;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  /* フェードインするための指定 */
  z-index: 3;
}

.menu .menuItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.01);
}

.menu .menuItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 20%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .menu .menuItem a:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

.menu .menuItem a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/nav/modal_home.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.menu .menuItem a:nth-child(2):after {
  background: url("../images/nav/modal_news.jpg");
  background-size: cover;
}

.menu .menuItem a:nth-child(3):after {
  background: url("../images/nav/modal_discography.jpg");
  background-size: cover;
}

.menu .menuItem a:nth-child(4):after {
  background: url("../images/nav/modal_biography.jpg");
  background-size: cover;
}

.menu .menuItem a:nth-child(5):after {
  background: url("../images/nav/modal_contact.jpg");
  background-size: cover;
}

.menu .menuItem a:hover:after {
  -webkit-transition: opacity 0.3s, -webkit-transform 2s ease-in-out;
  transition: opacity 0.3s, -webkit-transform 2s ease-in-out;
  -o-transition: opacity 0.3s, transform 2s ease-in-out;
  transition: opacity 0.3s, transform 2s ease-in-out;
  transition: opacity 0.3s, transform 2s ease-in-out, -webkit-transform 2s ease-in-out;
  opacity: 1;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.menu .menuItem a li {
  font-size: 2.5rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  opacity: 0;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 960px) {
  .menu .menuItem a li:hover {
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    color: #111;
  }
}

.menu .menuItem a li .nav_text {
  position: absolute;
  top: -40px;
  left: -50px;
}

.menu .menuItem a:hover li .nav_text {
  opacity: 1;
}

.menu .menuItem a li .nav_text_on {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: -40px;
  left: -50px;
}

.menu .menuItem a:hover li .nav_text_on {
  opacity: 1;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

/*クリックしたらメニューが開閉の動作*/
.globalNav #toggle:checked ~ .menu {
  visibility: visible;
  opacity: 1;
}

.globalNav #toggle:checked ~ .menu .menuItem a li {
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
@media screen and (min-width: 960px) {
  .globalNav #toggle:checked ~ .menu .menuItem a li:hover {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #111;
    font-size: 2.8rem;
  }
}

.globalNav #toggle:checked ~ .menu .menuItem a li.current_menu {
  opacity: 0.5;
}

a.current_link {
  pointer-events: none;
}

/*ハンバーガー メニュー開いた時*/
.globalNav #toggle:checked + label.hamburger {
  cursor: pointer;
  z-index: 4;
  position: fixed;
  top: 50px;
  left: 80px;
}
@media screen and (min-width: 960px) {
  .globalNav #toggle:checked + label.hamburger:hover {
    -webkit-transform: scale(0.92);
        -ms-transform: scale(0.92);
            transform: scale(0.92);
  }
}

/*ハンバーガー メニュー開いた時*/
.globalNav #toggle:checked + label.hamburger p {
  opacity: 0;
}

.globalNav #toggle:checked + label.hamburger .bar:first-child {
  -webkit-transform: translate(0px, 6px) rotate(390deg);
      -ms-transform: translate(0px, 6px) rotate(390deg);
          transform: translate(0px, 6px) rotate(390deg);
  width: 26px;
  -webkit-animation: bar_rotate1 0.6s ease-in-out forwards;
          animation: bar_rotate1 0.6s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.globalNav #toggle:checked + label.hamburger .bar:nth-child(2) {
  -webkit-transform: translateX(-60px);
      -ms-transform: translateX(-60px);
          transform: translateX(-60px);
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.globalNav #toggle:checked + label.hamburger .bar:nth-child(3) {
  -webkit-transform: translate(4px, 10px) rotate(-385deg);
      -ms-transform: translate(4px, 10px) rotate(-385deg);
          transform: translate(4px, 10px) rotate(-385deg);
  width: 52px;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

/* コンテンツ全体のオーバーレイ */
.contentsOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: black;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.globalNav #toggle:checked ~ .contentsOverlay {
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: -webkit-transform 0.5s ease-in;
  -o-transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  background: rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
}

/*--------------------------------------------------------------------
arrow
----------------------------------------------------------------------*/
/*--------------------------------------------------------------------
lang
----------------------------------------------------------------------*/
#lang {
  width: 94px;
  position: absolute;
  top: 45px;
  right: 60px;
  z-index: 0;
}

#lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#lang ul > li {
  color: #777;
  font-size: 2.2rem;
  font-weight: 300;
  padding: 0 3px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  #lang ul > li:not(.lang_arrow):hover {
    color: #845842;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}

#lang ul > li.lang_on {
  color: #845842;
}

.select_lang {
  position: relative;
}

.lang_small_link_bar {
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: #777;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 19px;
  right: 40px;
  z-index: 1;
  pointer-events: none;
}

.lang_small_link_circle {
  background-color: #777;
  width: 3px;
  height: 3px;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 18px;
  right: 52px;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: 0.3s lang_circle_move ease-in forwards;
          animation: 0.3s lang_circle_move ease-in forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  pointer-events: none;
}

@-webkit-keyframes lang_circle_move {
  0% {
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes lang_circle_move {
  0% {
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.lang_small_link_circle_reverse {
  animation-direction: reverse;
}

.lang_small_link_circle:after {
  position: absolute;
  content: "";
  top: -3px;
  left: -3px;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #777;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-animation: 0.3s lang_circle_large_move ease-in forwards;
          animation: 0.3s lang_circle_large_move ease-in forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes lang_circle_large_move {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lang_circle_large_move {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------------
Nav SNS
----------------------------------------------------------------------*/
ul.navSns {
  /* Desktopでは非表示 */
  display: none;
}

/*--------------------------------------------------------------------
secton
  ----------------------------------------------------------------------*/
section {
  width: 100%;
  position: relative;
}

.contentsBox {
  width: 900px;
  margin: 0 auto 60px;
  padding: 0 0 100px;
  position: relative;
}

.contentsBox p::first-letter {
  font-size: 3rem;
}

/*--------------------------------------------------------------------
headline
  ----------------------------------------------------------------------*/
.box_page_headline {
  margin: 0 auto 60px;
  padding: 180px 0;
  width: 1000px;
  height: 610px;
  color: #777;
  position: relative;
  z-index: 1;
}

.box_page_headline:after {
  position: absolute;
  content: "";
  top: 220px;
  right: 0;
  width: 715px;
  height: 360px;
  border: 1px solid #222;
  z-index: -1;
  -webkit-animation: box_page_headline_border_anim 12s ease-in-out forwards;
          animation: box_page_headline_border_anim 12s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes box_page_headline_border_anim {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes box_page_headline_border_anim {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.page_headline_img_bg {
  position: relative;
  z-index: 0;
  width: 0;
  height: 360px;
  overflow: hidden;
  -webkit-animation: slide_in 0.8s ease-out forwards;
          animation: slide_in 0.8s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.page_headline_img_bg img {
  width: 715px;
  height: 360px;
  position: relative;
  z-index: 1;
  -webkit-animation: page_headline_img_bg_anim 15s ease-in-out forwards;
          animation: page_headline_img_bg_anim 15s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes page_headline_img_bg_anim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes page_headline_img_bg_anim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.page_headline {
  position: absolute;
  top: 374px;
  right: 40px;
  font-size: 4rem;
  font-weight: 300;
  text-align: right;
  z-index: 2;
}

.page_headline img {
  width: 65%;
}

.page_headline_gray {
  position: absolute;
  top: 405px;
  right: 70px;
  z-index: 1;
  -webkit-animation: box_page_headline_bg_anim 0.5s ease-in-out forwards;
          animation: box_page_headline_bg_anim 0.5s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  width: 0;
  overflow: hidden;
}

@-webkit-keyframes box_page_headline_bg_anim {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 280px;
    opacity: 1;
  }
}

@keyframes box_page_headline_bg_anim {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 280px;
    opacity: 1;
  }
}
.page_headline:after {
  position: absolute;
  content: "";
  top: 770px;
  right: -360px;
  background: -webkit-gradient(linear, left top, right top, from(#845842), color-stop(#a87f42), color-stop(#50682b), to(#1d5c48));
  background: -o-linear-gradient(left, #845842, #a87f42, #50682b, #1d5c48);
  background: linear-gradient(to right, #845842, #a87f42, #50682b, #1d5c48);
  width: 1000px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.page_headline:after {
  position: absolute;
  content: "";
  top: 400px;
  right: -240px;
  background: -webkit-gradient(linear, left top, right top, from(#845842), color-stop(#a87f42), color-stop(#50682b), to(#1d5c48));
  background: -o-linear-gradient(left, #845842, #a87f42, #50682b, #1d5c48);
  background: linear-gradient(to right, #845842, #a87f42, #50682b, #1d5c48);
  width: 500px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

/*--------------------------------------------------------------------
contents_headline
----------------------------------------------------------------------*/
.contents_headline {
  width: 900px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  color: #777;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0;
  z-index: 0;
}

.contents_headline:after {
  position: absolute;
  content: "";
  top: 150px;
  left: 200px;
  background: -webkit-gradient(linear, left top, right top, from(#845842), color-stop(#a87f42), color-stop(#50682b), to(#1d5c48));
  background: -o-linear-gradient(left, #845842, #a87f42, #50682b, #1d5c48);
  background: linear-gradient(to right, #845842, #a87f42, #50682b, #1d5c48);
  width: 200px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.contents_headline:before {
  position: absolute;
  content: "";
  top: 240px;
  left: 240px;
  width: 100vw;
  height: 280px;
  background: url("../images/contents_headline_bg_pattern.jpg") repeat 0 0;
  z-index: -1;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*--------------------------------------------------------------------
contents_subhead
----------------------------------------------------------------------*/
.contents_subhead {
  width: 900px;
  margin: 0 auto;
  position: relative;
  color: #777;
  font-size: 2.4rem;
  margin-bottom: 0;
  z-index: 0;
}

.contents_subhead:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #777;
  margin: 20px 0;
}

/*--------------------------------------------------------------------
copy_headline
----------------------------------------------------------------------*/
.icon_new {
  font-weight: 300;
  color: #b3b3b3;
  width: 48px;
  height: 23px;
  border-radius: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#845842), color-stop(#a87f42), color-stop(#50682b), to(#1d5c48));
  background: -o-linear-gradient(left, #845842, #a87f42, #50682b, #1d5c48);
  background: linear-gradient(to right, #845842, #a87f42, #50682b, #1d5c48);
  display: inline-block;
  text-align: center;
  padding: 1px 0 0 3px;
  margin-bottom: 6px;
}

.copy_headline {
  font-size: 3.5rem;
}

.copy_headline:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #777;
  margin: 20px 0;
}

.copy_date {
  text-align: right;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------------
linkBtn
----------------------------------------------------------------------*/
.linkBtn {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: #999;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-box-shadow: inset 1px 0 0 0 #845842, inset 0 1px 1px 0 #a87f42, inset 0 0 0 1px #50682b, inset -1px 0 1px 1px #1d5c48;
          box-shadow: inset 1px 0 0 0 #845842, inset 0 1px 1px 0 #a87f42, inset 0 0 0 1px #50682b, inset -1px 0 1px 1px #1d5c48;
  margin: 0 0 40px;
}
.linkBtn .bg {
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#845842), color-stop(#a87f42), color-stop(#50682b), to(#1d5c48));
  background: -o-linear-gradient(left, #845842, #a87f42, #50682b, #1d5c48);
  background: linear-gradient(to right, #845842, #a87f42, #50682b, #1d5c48);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.linkBtn:hover .bg {
  opacity: 1;
}
.linkBtn:hover .text {
  color: #bfbfbf;
}

.text {
  position: relative;
  z-index: 1;
  display: inline-block;
  top: 0;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 8px 22px;
}

.textMore {
  color: #999;
  font-size: 2.4rem;
}

.linkBtn--radius {
  border-radius: 100px;
}
.linkBtn--radius .bg {
  border-radius: 100px;
}

/*--------------------------------------------------------------------
btn_small
----------------------------------------------------------------------*/
.arrowLink--solid_box {
  position: relative;
}

.arrowLink--solid {
  font-size: 2rem;
  font-weight: 400;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateX(0em);
      -ms-transform: translateX(0em);
          transform: translateX(0em);
  display: inline-block;
  margin: 0 0 20px;
  color: #999;
  cursor: pointer;
  border-radius: 60px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .arrowLink--solid:hover {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.small_link_bar {
  display: inline-block;
  width: 14px;
  height: 1px;
  margin: 1px 0 3px 6px;
  background-color: #999;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 9px;
  right: -20px;
  z-index: 1;
}

.small_link_circle {
  background-color: #999;
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 8px;
  right: -22px;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

.small_link_circle:after {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid #845842;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.arrowLink--solid:hover .small_link_bar {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
  width: 0;
}

.arrowLink--solid:hover .small_link_circle {
  background-color: #845842;
}

.arrowLink--solid:hover .small_link_circle:after {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*--------------------------------------------------------------------
box_btnBack
----------------------------------------------------------------------*/
/*--------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
footer {
  width: 100%;
  height: 170px;
  margin: 0 auto;
  padding: 50px 0 70px;
}

.snsBox {
  width: 270px;
  margin: 20px auto;
}

.snsBox .snsBox_ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  padding: 0 0 0 10px;
}

.snsBox .snsBox_ul .snsBox_li {
  font-size: 2rem;
  margin-bottom: 30px;
}

.snsBox .snsBox_ul .snsBox_li a {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #444444;
}
@media screen and (min-width: 960px) {
  .snsBox .snsBox_ul .snsBox_li a:hover {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #845842;
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98);
  }
}

.snsBox_img {
  background: url("../images/bandcamp.png") no-repeat;
  /* ロールオーバー時のチラつき防止 */
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  margin: -35px 0 -35px -10px;
  display: inline-block;
}

.snsBox_img a {
  width: 52px;
  height: 52px;
  background: url("../images/bandcamp.png") no-repeat;
  display: block;
  text-indent: -9999px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 960px) {
  .snsBox_img a:hover {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-image: url("../images/bandcamp_on.png");
  }
}

address {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
  text-align: center;
}

/*--------------------------------------------------------------------
Media Query
----------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  /*------------------------------------*\
      BORDERS -small
  \*------------------------------------*/
  html:before {
    height: 1px;
    left: 6px;
    right: 6px;
    top: 6px;
  }

  html:after {
    width: 1px;
    top: 6px;
    right: 6px;
    bottom: 6px;
  }

  body:before {
    height: 1px;
    right: 6px;
    bottom: 6px;
    left: 6px;
  }

  body:after {
    width: 1px;
    top: 6px;
    bottom: 6px;
    left: 6px;
  }

  /*--------------------------------------------------------------------
  header -small
  ----------------------------------------------------------------------*/
  header {
    padding: 12px 0;
  }

  .logo_no_go {
    margin-top: 10px;
  }

  .logo_no_go a object {
    width: 38px;
  }

  /*--------------------------------------------------------------------
  globalNav small
  ----------------------------------------------------------------------*/
  /*ハンバーガー close*/
  .globalNav .hamburger {
    top: 26px;
    left: 20px;
    -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
            transform: scale(0.75);
  }

  .globalNav .hamburger:hover {
    opacity: 1;
  }

  /*ハンバーガー メニュー開いた時*/
  .globalNav #toggle:checked + label.hamburger {
    top: 26px;
    left: 20px;
  }

  .globalNav #toggle:checked ~ .contentsOverlay {
    background: rgba(0, 0, 0, 0.7);
  }

  /*--------------------------------------------------------------------
  menu -small
  ----------------------------------------------------------------------*/
  .menu {
    width: 100%;
    height: 100%;
  }

  .menu .menuItem {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    background: none;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    padding: 30px 0 0 0;
  }

  .menu .menuItem a {
    width: 200px;
    margin: 0 auto;
  }

  .menu .menuItem a:after {
    display: none;
  }

  .menu .menuItem a li {
    line-height: 2.2em;
  }

  .menu .menuItem a li .nav_text {
    position: static;
  }

  .menu .menuItem a:hover li .nav_text {
    opacity: 0;
  }

  .menu .menuItem a:hover li .nav_text_on {
    opacity: 0;
  }

  /*--------------------------------------------------------------------
  lang -small
  ----------------------------------------------------------------------*/
  #lang {
    top: 21px;
    right: 10px;
    z-index: 0;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }

  /*--------------------------------------------------------------------
  secton -small
    ----------------------------------------------------------------------*/
  .contentsBox {
    width: 84%;
    margin: 0 auto 100px;
    padding: 30px 0;
  }

  /*--------------------------------------------------------------------
  headline -small
    ----------------------------------------------------------------------*/
  .box_page_headline {
    margin: 0 auto 60px;
    padding: 0;
    width: 100%;
    height: auto;
    position: relative;
  }

  .box_page_headline:after {
    display: none;
  }

  .page_headline_img_bg {
    width: 100%;
    height: 100%;
    -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
            animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }

  .page_headline_img_bg img {
    width: 100%;
    height: 100%;
    min-width: 375px;
  }

  .page_headline {
    position: absolute;
    top: 172px;
    right: 30px;
    padding: 15px 50px 12px;
  }

  .page_headline_news {
    top: 180px;
  }

  .page_headline img {
    width: 160px;
  }

  .page_headline_gray {
    top: 200px;
    right: 0;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }

  .page_headline:after {
    top: 290px;
    right: -140px;
    width: 390px;
  }

  /*--------------------------------------------------------------------
  contents_headline -small
  ----------------------------------------------------------------------*/
  .contents_headline {
    width: 84%;
    height: 80px;
    font-size: 2.8rem;
  }

  .contents_headline:after {
    top: 80px;
    right: 0;
    width: 100px;
  }

  .contents_headline:before {
    top: 140px;
    height: 160px;
  }

  /*--------------------------------------------------------------------
  contents_subhead -small
  ----------------------------------------------------------------------*/
  .contents_subhead {
    width: 84%;
    margin: 0 auto;
    position: relative;
    color: #777;
    font-size: 2.2rem;
    margin-bottom: 0;
    z-index: 0;
  }

  .contents_subhead:after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #777;
    margin: 20px 0;
  }

  /*--------------------------------------------------------------------
  copy_headline
  ----------------------------------------------------------------------*/
  .copy_headline {
    font-size: 2.8rem;
  }

  /*--------------------------------------------------------------------
  linkBtn -small
  ----------------------------------------------------------------------*/
  .linkBtn {
    font-size: 2.6rem;
    margin: 0 auto 40px;
  }

  .text {
    font-size: 1.65rem;
  }

  .textMore {
    font-size: 2.2rem;
  }

  /*--------------------------------------------------------------------
  btn_small -small
  ----------------------------------------------------------------------*/
  .arrowLink--solid_box {
    text-align: center;
  }

  .arrowLink--solid {
    font-size: 2rem;
    margin: 0 0 20px -20px;
  }

  /*--------------------------------------------------------------------
  footer -small
  ----------------------------------------------------------------------*/
  footer {
    height: auto;
    padding: 20px 0 0;
  }

  address {
    font-size: 0.8em;
    padding-bottom: 40px;
  }
}