@charset "utf-8";
@import "html5reset-1.6.1.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Open+Sans:wght@300;400;700&display=swap');

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;/* 10px */
}
body{
  font-size: 1.6em;/* 16px */
  line-height: 1.8;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
.font_sans{
  font-family: 'Open Sans', 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
a{
  text-decoration: none;
  color: #fff;
  vertical-align: bottom;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}
.sp_view{
  display: block;
}
.pc_view{
  display: none;
}

.background {
  width: 100vw;
  height: 100vh;
  position:fixed;
  display:block;
  top: 0;
  left: 0;
  z-index: 0;
}

#wrapper{
  width: 100%;
  min-width: 32rem;
  position: relative;
}
main{
  position: relative;
  z-index: 1;
}
main section{
  width: 100%;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 10rem 0 0;
}
main.index section > *{
  opacity: 0;
}
main section h2{
  font-weight: 300;
  text-align: center;
  font-size: 4rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
main section h2 i{
  display: block!important;
  margin: 0 auto;
  font-size: 3rem;
}
main section h3{
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  text-align: center;
  letter-spacing: .2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}
.head_logo{
  width: calc(100% - 10rem);
  max-width: 32.3rem;
}
.btn_nav{
  display: flex;
  align-items: center;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
}
.btn_nav i{
  margin-right: .5rem;
}

/* ---------------------------------------------------------
nav
----------------------------------------------------------*/
nav{
  display: none;
}
.navOn nav{
  width: 100%;
  height: 100%;
  display: flex!important;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
}
nav ul li + li{
  margin-top: 2rem;
}
nav ul li a{
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
}
nav ul li a i{
  margin-right: 1rem;
  font-size: 2.5rem;
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer{
  margin-top: 5rem;
  padding: 2rem 1.5rem;
  font-size: 1.2rem;
  text-align: center;
}


@media screen and (min-width:751px){
  /* ---------------------------------------------------------
  common
  ----------------------------------------------------------*/
  a{
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  a:hover{
    opacity: .5;
  }
  #wrapper{
    min-width: 100rem;
  }
  .sp_view{
    display: none;
  }
  .pc_view{
    display: block;
  }

  .btn_nav{
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .btn_nav:hover{
    opacity: .5;
  }
  main section{
    width: 100%;
    max-width: 106rem;
    padding: 20rem 3rem 0;
  }
  main section h2{
    font-size: 5rem;
    line-height: 2;
    margin-bottom: 5rem;
  }
  main section h2 i{
    font-size: 5rem;
  }

  /* ---------------------------------------------------------
  header
  ----------------------------------------------------------*/
  header{
    padding: 0;
    margin: 0 auto;
    padding: 2rem 3rem;
  }
  .btn_nav{
    top: 4rem;
    right: 3rem;
  }

  /* ---------------------------------------------------------
  nav
  ----------------------------------------------------------*/
  nav ul li a{
    position: relative;
  }
  nav ul li a:hover{
    opacity: 1;
  }
  nav ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  nav ul li a:hover::after {
    transform: scale(1, 1);
  }

  /* ---------------------------------------------------------
  footer
  ----------------------------------------------------------*/
  footer{
    width: 100rem;
    margin: 15rem auto 0;
    padding: 5rem 0;
    text-align: right;
  }

  /* ---------------------------------------------------------
  cursor
  ----------------------------------------------------------*/
  *{
    cursor: none!important;
  }
  body {
    position: relative;
  }
  .cursor,
  .follower {
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: none;
    pointer-events: none;
  }
  .cursor {
    width: 1rem;
    height: 1rem;
    background-color: #eee;
    z-index: 10001;
  }
  .follower {
    padding: 3rem;
    border: 3px solid #eee;
    z-index: 10000;
  }
  .cursor.is-active{
    background-color: #000;
  }
  .follower.is-active{
    border: 0;
    background-color: #fff;
  }
}

/* ---------------------------------------------------------
information
----------------------------------------------------------*/
.information article h3{
  text-align: left;
}
.information article .contents p{
  margin-bottom: 2rem;
}
.information .pager{
  width: 100%;
  display: flex;
  font-size: 2rem;
}
.information .pager li a{
  padding: 1rem 2rem;
  border-bottom: 1px solid #000;
}
.information .pager .btn_prev{
  margin-right: auto;
}
.information .pager .btn_next{
  margin-left: auto;
}

@media screen and (min-width:751px){
  .information{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .information h2,
  .information article,
  .information .pager{
    width: 50%;
  }
  .information h2{
    margin: 0
  }
  .information .pager{
    margin-left: auto
  }
}

/* ---------------------------------------------------------
about
----------------------------------------------------------*/
.about h3{
  margin-top: 3rem;
}
.about table tr th{
  display: block;
  text-align: left;
}
.about table tr td{
  display: block;
  padding: 0 0 1rem 2rem;
}
.about dl{
  margin-top: 2rem;
}
.about dl dt{
  font-weight: bold;
  letter-spacing: .2rem;
}
.about dl dd{
  margin-top: 1rem;
  text-indent: -2rem;
  padding-left: 2rem;
}
.about dl dd:before{
  content: "■ ";
}
@media screen and (min-width:751px){
  .about h3{
    margin: 5rem 0;
  }
  .about_wrap{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .about table{
    width: 50%;
  }
  .about table tr th,
  .about table tr td{
    display: table-cell;
    padding: 2rem 0;
  }
  .about dl{
    width: 40%;
    margin-top: 0;
  }
  .about dl dd{
    font-size: 1.5rem;
    margin-top: .5rem;
  }
}

/* ---------------------------------------------------------
works
----------------------------------------------------------*/
.artist{
  margin-bottom: 3rem;
}
.artist h4{
  font-size: 1.8rem;
  letter-spacing: .2rem;
  margin-bottom: .5rem;
  position: relative;
}
.artist h4:before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
.artist:nth-of-type(even) h4{
  text-align: right;
}
.artist h4 span{
  padding: .5rem;
  background: #000;
  position: relative;
  z-index: 1;
}
.artist .ruby{
  font-size: 1.2rem;
}

.music{
  display: flex;
  justify-content: flex-end;
  flex-wrap:  wrap;
  position: relative;
  padding-bottom: 2rem;
}
.music:before{
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 5rem;
}
.music p{
  padding: .3rem .5rem;
  background: #000;
  position: relative;
  z-index: 1;
}
.music .date{
  margin-right: auto;
}
@media screen and (min-width:751px){
  .works{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .works h2{
    width: 100%
  }
  .artist_wrap,
  .music_wrap{
    width: 42%;
    margin: 0;
  }
  .artist{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0;
  }
  .artist + .artist{
    margin-top: 5rem;
  }

  .music{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5rem;
  }
  .music .ttl{
    width: 100%;
    padding: 0;
    text-align: right;
    background-color: transparent;
  }
}

/* ---------------------------------------------------------
contact
----------------------------------------------------------*/
.contact p a{
  border-bottom: 1px solid #fff;
}
.contact p + p{
  margin-top: 1rem;
}
.contact table{
  width: 100%;
  margin-top: 2rem;
}
.contact table tr th,
.contact table tr td{
  display: block;
}
.contact table tr th{
  margin: 1rem 0 .5rem;
  padding-left: .5rem;
  font-weight: normal;
  text-align: left;
  font-size: 1.4rem;
}
.contact table tr td input,
.contact table tr td textarea{
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  border: 1px solid #999;
  outline: none;
}
.contact table tr td textarea{
  min-height: 15rem;
}
.contact input[type="submit"],
.contact .back{
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0;
  display: block;
  border-radius: 1rem;
  font-size: 1.6rem;
  border: 1px solid #666;
  background-color: #888;
  color: #fff;
  text-align: center;
}
.contact input[type="submit"].highlight{
  background-color: #fff;
  color: #333;
  font-weight: bold;
}

.contact .buttons{
  display: flex;
}
.contact .buttons > *:first-of-type{
  margin-bottom: 1rem;
}
.contact .error_msg{
  color: #f00;
  font-weight: bold;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea{
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.privacy ul > li + li,
.privacy ol > li{
  margin-top: 2rem;
}
.privacy ul > li{
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.privacy ol > li p{
  padding-left: 2.5rem;
}
.privacy ol > li p:first-of-type{
  text-indent: -2.5rem;
  padding-left: 2.5rem;
}
.privacy ol > li p + ul{
  padding: 1rem 0 0 1rem;
}
.privacy ol > li p + ul li{
  margin-top: 1rem;
}

@media screen and (max-width:750px){
  .contact table tr th{
    font-weight: bold;
  }
  .contact table tr td{
    margin-bottom: 1rem;
  }
  .contact table tr td p{
    font-size: 1.4rem;
    margin-left: 1rem;
  }
  .contact .buttons{
    flex-direction: column;
  }
  .contact input[type="submit"].go_back{
    order: 2;
  }
  .contact input[type="submit"].highlight{
    order: 1;
  }
}
@media screen and (min-width:751px){
  .contact table{
    width: 80%;
    margin: 5rem auto 0;
  }
  .contact table tr th,
  .contact table tr td{
    display: table-cell;
    padding: 1rem 0;
  }
  .contact table tr th{
    width: 20rem;
    margin-top: 0;
    padding-left: 0;
    vertical-align: top;
  }
  .contact input[type="submit"],
  .contact .back{
    width: 40%;
    margin: 5rem auto 0;
  }
  .contact .buttons{
    justify-content:space-between;
  }
  .contact .buttons > *:first-of-type {
    margin-bottom: 0;
  }
  .contact .lead {
    text-align: center;
  }
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
