@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-size: 12px;
  font-family: '新ゴ R', 'Shin Go Regular', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 0 #B9B9B9;
}

img {
  max-width: 100%;
}

a {
  color: royalblue;
  text-decoration: none;
  border-bottom: 1px solid royalblue;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #000;
  border-bottom: none;
  opacity: 0.8;
}

/*-------------------- header --------------------*/

.wrapper-header {
  width: 100%;
  height: 100vh;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

header h1 {
  font-size: 1.2rem;
  line-height: 1.6em;
}

header .logo img {
  width: 120px;
  margin: 3.0em 0 1.0em;
}

header .name img {
  width: 150px;
  margin: 2.0em 0 5.0em;
}

header a {
  border-bottom: none;
}

header .description a {
  color: #000;
  text-decoration: none;
}

.social-button {
  margin: 1.0em 0 5.0em;
}

.social-button a {
  border-bottom: none;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
}

.scroll-down:after {
  position: absolute;
  content: "";
  top: 0;
  width: 2px;
  height: 30px;
  background: #000;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1.0;
  }
  30% {
    height: 30px;
    opacity: 1.0;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 1.0;
  }
}

/*-------------------- content --------------------*/

.content {
  width: 60%;
  margin: 0 auto;
  padding: 0 0 8.0em 0;
}

h2 {
  position: relative;
  margin: 4.0em 0 1.5em;
  padding-left: 1.0em;
  font-size: 1.3rem;
  line-height: 1.6em;
}

h2:before {
  position: absolute;
  content: '> ';
  top: -1px;
  left: 0;
}

h3 {
  font-size: 1.2rem;
  margin: 2.0em 0 1.5em;
}

h3:before {
  content: '・';
}

main p {
  font-size: 1.1rem;
  line-height: 2.0em;
  margin: 0 0 1.5em 1.0em;
}

main ol li,
main ul li,
main dl dt {
  font-size: 1.1rem;
  line-height: 2.0em;
  margin-left: 1.0em;
}

main dl dd {
  font-size: 1.1rem;
  line-height: 2.0em;
  margin: 0 0 1.0em 2.0em;
}

.date {
  padding-right: 1.0em;
  line-height: 2.5em;
}

/*-------------------- footer --------------------*/

footer {
  margin: 8.0em 0 5.0em;
}

footer a {
  border: none;
  color: #000;
}

ul.powered-by li {
  display: inline-block;
  margin-right: 10px;
}

ul.powered-by li:last-child {
  margin-right: 0;
}

ul.powered-by li img {
  width: 50px;
}

.copyright p {
  margin-top: -35px;
  font-size: 1.0rem;
  text-align: right;
}

/*-------------------- aside --------------------*/

aside {
  position: fixed;
  bottom: 1.0em;
  left: 0;
  width: 100%;
  z-index: 9999;
}

aside ul li {
  display: inline-block;
  margin-right: 1.0em;
  font-size: 2.0rem;
}

aside ul li:last-child {
  margin-right: 0;
}

aside ul li a {
  border-bottom: none;
}

aside ul li a:hover {
  opacity: 0.7;
}

.fa-twitter { color: #1da1f2; }
.fa-facebook { color: #3b5998; }
.fa-instagram { color: #833ab4; }
.fa-bandcamp { color: #629aa9; }
.fa-soundcloud { color: #ff3300; }

/*-------------------- important --------------------*/

.center { text-align: center !important; }

.mt0 { margin-top: 0 !important; }
.mt1 { margin-top: 1.0em !important; }
.mt1_5 { margin-top: 1.5em !important; }
.mb0_5 { margin-bottom: 0.5em !important; }
.mb1 { margin-bottom: 1.0em !important; }
.mb2 { margin-bottom: 2.0em !important; }

/*
.iPhone h2.mt1,
.iPad h2.mt1 {
  margin-top: -2.0em !important;
}

.iPad h2:before {
  top: 0 !important;
}
*/

/*-------------------- back-to-top --------------------*/

#back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  text-align: center;
  z-index: 10000;
}

#back-to-top a {
  display: block;
  padding: 15px;
  color: #FFF;
  background: #000;
  text-decoration: none;
  border-bottom: none;
  background: #000;
}

#back-to-top a:hover {
  text-decoration: none;
  background: #DE5E60;
}

/*-------------------- YouTube --------------------*/

.embed-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 1.0em;
  text-align: center;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.watch-youtube {
  position: absolute;
  bottom: 15px;
  left: 0;
  display: block;
  text-align: center;
  width: 100% !important;
  border: none !important;
}

.watch-youtube img {
  width: 50% !important;
}

a.video {
  cursor: pointer;
  border-bottom: none;
}

a.video img {
  width: 100%;
  border: 1px solid #EEE;
  margin-top: -56.25%;
}

/*-------------------- Swiper.js --------------------*/

.swiper-container {
  text-align: center;
  margin: 1.0em 0;
}

.swiper-container .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.swiper-container .swiper-slide {
  position: relative;
  width: 100%;
}

.slider-01-thumbs,
.slider-02-thumbs,
.slider-03-thumbs {
  height: 20%;
  padding: 10px 0;
  margin-bottom: 2.0em;
}

.slider-01-thumbs .swiper-slide,
.slider-02-thumbs .swiper-slide,
.slider-03-thumbs .swiper-slide {
  width: 30%;
  height: 100%;
  padding: 5px;
  opacity: 0.2;
  cursor: pointer;
  border: 1px solid #EEE;
}

.slider-01-thumbs .swiper-slide:before,
.slider-02-thumbs .swiper-slide:before,
.slider-03-thumbs .swiper-slide:before {
  content: none;
}

.slider-01-thumbs .swiper-slide-active,
.slider-02-thumbs .swiper-slide-active,
.slider-03-thumbs .swiper-slide-active {
  opacity: 1.0;
}

.youtube .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.youtube .swiper-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------- fleXcroll --------------------*/

.flexroll {
  position: relative;
  overflow: auto;
}

.scrollgeneric {
  line-height: 1.0px;
  font-size: 1.0px;
  position: absolute;
  top: 0;
  left: 0;
}

.vscrollerbase {
  width: 10px;
  background: #EEE;
}

.vscrollerbar {
  width: 10px;
  background: #000;
}

/*-------------------- particles.js --------------------*/

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -9999;
}

/*-------------------- Responsive --------------------*/

@media only screen and (max-width: 768px) {

  .content {
    width: 96%;
    padding: 0 0 6.0em 0;
  }

  header h1 {
    font-size: 0.8rem;
  }

  header .name img {
    width: 120px;
    margin-bottom: 3.0em;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1.0rem;
  }

  main ol li,
  main ul li,
  main dl dt,
  main dl dd,
  main p {
    font-size: 0.8rem;
  }

  ul.powered-by li img {
    width: 30px;
  }

  .copyright p {
    margin-top: -25px;
    font-size: 0.8rem;
  }

  aside ul li {
    font-size: 1.5rem;
  }

}