/* ---------------------------------------
0.0 mixin
	0.1 mediaquery
	0.2 colors
	0.3 typography
	0.4 spacer
	0.5 chevron
	0.6 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 discography
	4.5 profile
-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
  height: 100%;
  -webkit-text-size-adjust: none;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
img,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}
embed {
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
i {
  font-style: normal;
}
img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
@media (min-width: 901px) {
  .btn {
    text-align: center;
    margin: 1em 0;
  }
  .btn--main {
    color: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-appearance: none;
    display: inline-block;
    min-width: 220px;
    text-align: center;
    text-decoration: none;
    line-height: 3.4;
    padding: 0 2em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    border: 1px solid #000;
  }
  .btn--main:hover {
    background: #fff;
    color: #000;
    letter-spacing: 0.1em;
  }
  .btn--sub {
    color: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-appearance: none;
    display: inline-block;
    min-width: 220px;
    text-align: center;
    text-decoration: none;
    line-height: 3.4;
    padding: 0 2em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    color: #000;
    border: 1px solid #000;
  }
  .btn--sub:hover {
    background: #000;
    color: #fff;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 900px) {
  .btn {
    text-align: center;
  }
  .btn--main {
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-appearance: none;
    display: inline-block;
    width: 55%;
    text-align: center;
    text-decoration: none;
    line-height: 3.4;
    padding: 0 2em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    border: 1px solid #000;
  }
  .btn--sub {
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-appearance: none;
    display: inline-block;
    width: 55%;
    text-align: center;
    text-decoration: none;
    line-height: 3.4;
    padding: 0 2em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    color: #000;
    border: 1px solid #000;
  }
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select select {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__select::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #f33;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: 0.2em;
  top: 70%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #000;
  border-color: #000;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #f33;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
  border-color: #000;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #f33;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #ddd;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #000;
  border-color: #000;
}
.form__toggle :checked ~ p::after {
  right: 0;
}
/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}
/* 2.3 list
------------------------------ */
/*  information */
.list--information {
  margin-bottom: 120px;
}
.list--information a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  position: relative;
}
.list--information .date {
  position: relative;
}
@media (min-width: 901px) {
  .list--information .tit {
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .list--information .date {
    color: inherit;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
  }
  .list--information .category {
    color: inherit;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 80px;
    margin: 0 15px 0 0;
    padding: 2px 5px;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .list--information .date {
    color: inherit;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
  }
  .list--information .category {
    color: inherit;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 65px;
    margin: 0 15px 0 0;
    padding: 1px 5px;
    text-align: center;
  }
  .list--information .tit {
    font-weight: bold;
    line-height: 1.4em;
    font-size: 15px;
  }
}
.list--information .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.list--information .thumb {
  line-height: 0;
}
.list--information .thumb img {
  width: 100%;
}
@media (min-width: 901px) {
  .list--information {
    margin: 0 -5.5% 120px;
  }
  .list--information .date {
    margin: 0 20px 0 0;
  }
  .list--information .tit {
    margin: -5px 0 0 0;
    width: 65%;
  }
}
.list--information .date.event {
  font-weight: 700;
  font-size: 15px;
}
.list--information li {
  position: relative;
  border-top: 1px solid #ddd;
}
.list--information li:last-child {
  border-bottom: 1px solid #ddd;
}
.list--information .new .date::after {
  content: '';
  width: 10px;
  height: 9px;
  margin: -4px 0 0 0;
  background: url(../../../day6/official/common/new.png) no-repeat 50% 50%;
  background-size: contain;
}
@media (min-width: 901px) {
  .list--information .new .date::after {
    position: absolute;
    display: block;
    z-index: 2;
    top: 10px;
    left: -20px;
  }
}
@media (max-width: 900px) {
  .list--information .new .date::after {
    display: inline-block;
    margin: 0 0 0 10px;
  }
}
@media (min-width: 901px) {
  .list--information a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 35px 5% 32px;
  }
  .list--information a::after {
    content: '';
    display: block;
    width: 36px;
    height: 7px;
    background: url(../../../day6/official/common/arrow.png) no-repeat 50% 50%;
    background-size: 100%;
    opacity: 0;
    position: absolute;
    top: 50%;
    right: 7%;
    margin-top: -4px;
    line-height: 0;
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .list--information a:hover {
    background: #ddd;
  }
  .list--information a:hover::after {
    opacity: 1;
    right: 5%;
  }
}
@media (max-width: 900px) {
  .list--information a {
    padding: 20px 5%;
  }
  .list--information a .category {
    margin-bottom: 15px;
  }
  .list--information a .date.event {
    margin: 0 0 5px;
  }
  .list--information a .tit {
    font-size: 16px;
  }
}
.list--information .day {
  font-size: 0.7em;
}
.list--information .no-data {
  padding: 35px 5%;
  border: none!important;
}
.list--contents {
  margin-bottom: 120px;
}
.list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  position: relative;
}
.list--contents .date {
  position: relative;
}
@media (min-width: 901px) {
  .list--contents .tit {
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .list--contents .date {
    color: inherit;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
  }
  .list--contents .category {
    color: inherit;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 80px;
    margin: 0 15px 0 0;
    padding: 2px 5px;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .list--contents .date {
    color: inherit;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
  }
  .list--contents .category {
    color: inherit;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 65px;
    margin: 0 15px 0 0;
    padding: 1px 5px;
    text-align: center;
  }
  .list--contents .tit {
    font-weight: bold;
    line-height: 1.4em;
    font-size: 15px;
  }
}
.list--contents .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.list--contents .thumb {
  line-height: 0;
}
.list--contents .thumb img {
  width: 100%;
}
/* menu */
.list--menu {
  border: 1px solid rgba(150, 150, 150, 0.5);
  border-left: none;
  border-right: none;
  padding: 0 0 0 5%;
  margin: 0 -5.5% 30px -5.5%;
}
.list--menu li {
  padding-right: 5%;
  position: relative;
}
.list--menu li:not(:last-child) {
  border-bottom: 1px solid rgba(150, 150, 150, 0.5);
}
.list--menu span {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding: 1em 0;
  position: relative;
  padding-right: 2em;
}
.list--menu a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.25em;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.list--menu label {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding: 1em 0;
  position: relative;
  padding-right: 50px;
}
.list--menu .menu__status {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.03em;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 0.5;
}
/* 2.4 pagenation
------------------------------ */
.pagenation {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  margin: -50px 0 60px;
  letter-spacing: -0.5em;
}
.pagenation li {
  position: relative;
  display: inline-block;
  width: calc(33.33333333%);
  padding: 0.5em 0;
  letter-spacing: 0.03em;
}
.pagenation li a,
.pagenation li span {
  display: block;
  min-width: 2.4em;
  height: 2.4em;
  line-height: 2.3em;
  padding: 0 0.5em;
}
.pagenation .current span {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.pagenation .nav__pager--newer {
  text-align: left;
  padding-left: 30px;
}
.pagenation .nav__pager--newer a::before,
.pagenation .nav__pager--newer span::before {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(../../../day6/official/common/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: .3s all;
  transition: .3s all;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.pagenation .nav__pager--newer a:hover::before {
  left: -8px;
}
.pagenation .nav__pager--older {
  text-align: right;
  padding-right: 30px;
}
.pagenation .nav__pager--older a::after,
.pagenation .nav__pager--older span::after {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(../../../day6/official/common/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: .3s all;
  transition: .3s all;
}
.pagenation .nav__pager--older a:hover::after {
  right: -8px;
}
.pagenation .nav__pager--newer span,
.pagenation .nav__pager--older span {
  opacity: 0.2;
}
#next a {
  display: block;
  width: 50px;
  height: 50px;
  margin: -80px auto 80px;
  line-height: 50px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 11px;
  background: #eee;
  color: #000;
  border-radius: 50%;
}
@media (max-width: 900px) {
  #next a {
    margin: -20px auto 40px;
  }
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 901px) {
  body {
    font-family: "Yu Gothic", "游ゴシ", YuGothic, "游ゴシ", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  }
}
@media (max-width: 900px) {
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  }
}
a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: .3s all;
  transition: .3s all;
}
@media (min-width: 901px) {
  .sp {
    display: none;
  }
}
@media (max-width: 900px) {
  .pc {
    display: none;
  }
}
.wrap {
  position: relative;
  min-height: 100%;
}
@media (min-width: 901px) {
  .wrap {
    padding-bottom: 212px;
  }
}
@media (max-width: 900px) {
  .wrap {
    padding-bottom: 369px;
  }
}
.inner {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 901px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 900px) {
  .inner {
    padding: 0 5%;
  }
}
.dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.showfade {
  position: relative;
  opacity: 0;
  top: 10px;
}
/* 3.2 header
------------------------------ */
header {
  z-index: 999;
  position: fixed;
  background: #000;
}
@media (min-width: 901px) {
  header {
    top: 20px;
    left: 3%;
    width: 94%;
    height: 70px;
    padding: 15px 5%;
    -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 900px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    -webkit-box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.2);
  }
}
header h1 {
  position: absolute;
  top: 24px;
  left: 3%;
  z-index: 2;
}
@media (max-width: 900px) {
  header h1 {
    left: 5%;
  }
}
header h1 svg {
  width: 113px;
  height: 20px;
  fill: #fff;
}
@media (min-width: 901px) {
  .menu-nav {
    position: absolute;
    top: 0;
    right: 3%;
  }
  .menu-nav li {
    display: inline-block;
    margin-left: 25px;
  }
  .menu-nav a {
    display: block;
    position: relative;
    color: #fff;
    font: 500 14px/70px 'Roboto', sans-serif;
  }
  .menu-nav a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    -moz-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    transform-origin: right;
    -moz-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .menu-nav a:hover::before {
    -moz-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  .menu-nav .youtubeIco {
    margin-left: 35px;
  }
  .menu-nav .fa {
    font-size: 20px;
  }
}
.home .menu-nav .naviHome {
  display: none;
}
@media (max-width: 900px) {
  .drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 0 0;
    background: #000;
    z-index: 1;
    -webkit-transition: none;
    transition: none;
    text-align: center;
  }
  .drawer nav {
    overflow: scroll;
  }
  .drawer li {
    margin: 0 0 35px;
  }
  .drawer a {
    display: block;
    color: #fff;
    font: 500 22px/1em 'Roboto', sans-serif;
    letter-spacing: 0.06em;
    overflow: hidden;
  }
  .drawer a span {
    display: inline-block;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 0.5s cubic-bezier(0.05, 0.46, 0.65, 0.99) 1.5s all;
    transition: 0.5s cubic-bezier(0.05, 0.46, 0.65, 0.99) 1.5s all;
  }
  .drawer .g-nav {
    padding: 50px 5%;
  }
  .drawer .youtubeIco,
  .drawer .twitterIco {
    display: inline-block;
    width: 40px;
    margin: 30px 0 0;
  }
  .drawer__btn {
    position: absolute;
    top: 25px;
    right: 5%;
    width: 30px;
    height: 20px;
    z-index: 999;
  }
  .drawer__btn span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .drawer__btn .top {
    top: 0;
  }
  .drawer__btn .middle {
    top: 50%;
    margin-top: -1px;
  }
  .drawer__btn .bottom {
    bottom: 0;
  }
  .menuOpen .drawer nav a span {
    -webkit-animation: navAnim 0.3s cubic-bezier(0.05, 0.46, 0.65, 0.99) 0.3s forwards;
    animation: navAnim 0.3s cubic-bezier(0.05, 0.46, 0.65, 0.99) 0.3s forwards;
  }
  .menuOpen .drawer__btn .top {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .menuOpen .drawer__btn .middle {
    width: 0;
    right: 0;
    left: auto;
  }
  .menuOpen .drawer__btn .bottom {
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}
@-webkit-keyframes navAnim {
  0 {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes navAnim {
  0 {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* 3.3 footer
------------------------------ */
footer {
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
  background: #000;
  color: #999;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* PC */
  /* SP */
}
@media (min-width: 901px) {
  footer .copyright {
    margin-top: 80px;
  }
  footer .company-logo {
    width: 160px;
    position: absolute;
    right: 0;
    bottom: 60px;
  }
  footer .company-logo img {
    width: 70px;
    margin: 0 0 0 10px;
  }
  footer .inner {
    padding: 40px 5% 60px;
  }
  footer .nav--support li {
    display: inline-block;
  }
  footer .nav--support li a {
    padding: 0 25px;
    color: #999;
  }
  footer .nav--support li a:hover {
    opacity: 0.5;
  }
}
@media (max-width: 900px) {
  footer .inner {
    padding: 50px 5% 60px;
  }
  footer ul {
    margin: 0 0 70px;
  }
  footer li {
    margin: 0 0 20px;
  }
  footer a {
    color: #999;
    font-size: 12px;
  }
  footer .copyright {
    font-size: 12px;
  }
  footer .company-logo img {
    width: 70px;
    margin: 0 10px 20px;
  }
}
/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.tit--page {
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 901px) {
  .tit--page {
    color: inherit;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    padding: 180px 5% 0;
    margin: 0 0 0.8em;
  }
}
@media (max-width: 900px) {
  .tit--page {
    color: inherit;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    padding: 110px 5% 1em;
  }
}
.tit--section {
  margin: 0 0 1em;
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 901px) {
  .tit--section {
    color: inherit;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 900px) {
  .tit--section {
    color: inherit;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
.tit--menu {
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
/* 4.2 home
------------------------------ */
/* ローング */
.home .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
}
.block__logo {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -17px 0 0 -100px;
}
.block__logo span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-animation: navAnim 0.5s cubic-bezier(0, 0.5, 0.6, 0.9) 0.3s forwards;
  animation: navAnim 0.5s cubic-bezier(0, 0.5, 0.6, 0.9) 0.3s forwards;
}
.block__logo svg {
  fill: #fff;
  width: 200px;
  height: 35px;
}
@media (min-width: 901px) {
  .home header {
    -webkit-transform: translateY(-130%);
    transform: translateY(-130%);
    -webkit-transition: .5s .5s all;
    transition: .5s .5s all;
  }
  .home.load header {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* キービジュアル */
.keyvisual {
  position: relative;
}
@media (min-width: 901px) {
  .keyvisual {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media (max-width: 900px) {
  .keyvisual {
    padding-top: 70px;
  }
  .keyvisual .ph {
    position: relative;
    line-height: 0;
  }
}
@media (min-width: 901px) {
  .keyvisual {
    background-attachment: scroll;
  }
}
/* リリース */
.block--release a {
  display: block;
  color: #fff;
  text-align: center;
}
.block--release .date {
  margin: 0 0 15px;
  font: 500 13px 'Roboto', sans-serif;
}
.block--release .tit {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: bold;
}
.block--release .tit span {
  display: block;
  font-size: 11px;
}
.block--release .buy {
  font: 500 14px/0 'Roboto', sans-serif;
}
.block--release .buy svg {
  width: 28px;
  height: 9px;
  margin: 0 10px 0 -28px;
  fill: #fff;
}
@media (min-width: 901px) {
  .block--release {
    overflow: hidden;
    z-index: 9;
    position: absolute;
    right: 5%;
    bottom: 70px;
    width: 320px;
    -webkit-transition: .5s 1s all;
    transition: .5s 1s all;
  }
  .block--release .date {
    margin: 0;
  }
  .block--release a {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.85);
    text-align: left;
    color: #fff;
  }
  .block--release .tit,
  .block--release .date {
    padding-right: 75px;
  }
  .block--release .buy {
    background: #000;
    position: absolute;
    font-size: 12px;
    line-height: 0;
    right: 25px;
    top: 50%;
    color: #999;
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .block--release .buy svg {
    display: none;
  }
  .block--release a:hover .buy {
    color: #fff;
  }
}
@media (max-width: 900px) {
  .block--release {
    padding: 30px 5%;
    background: #161616;
  }
  .block--release .blockAnime_inner {
    filter: blur(15px);
    -webkit-transition: .3s all;
    transition: .3s all;
  }
}
@media (min-width: 901px) {
  .block--release::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 99;
    -webkit-transform: translate3d(-101%, 0, 0);
    transform: translate3d(-101%, 0, 0);
    -webkit-transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
    transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
  }
  .show.block--release::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .show2.block--release::before {
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
  }
  .block--shop-link {
    position: relative;
    width: 600px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
  }
  .list--shop {
    margin: 0 0 40px;
  }
  .list--shop li {
    position: relative;
    top: 0;
    display: inline-block;
    width: 140px;
    margin: 0 5px 5px;
    border-radius: 3px;
    overflow: hidden;
    line-height: 0;
    -webkit-box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .list--shop li:hover {
    top: -5px;
  }
}
.block--shop-link .tit {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}
.block--shop-link .tit:before,
.block--shop-link .tit:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
}
.block--shop-link .tit:before {
  margin-right: 1rem;
}
.block--shop-link .tit:after {
  margin-left: 1rem;
}
@media (max-width: 900px) {
  .show.block--release .blockAnime_inner {
    opacity: 1;
    filter: blur(0);
  }
  .block--shop-link {
    color: #fff;
    padding: 20px 5%;
  }
  .list--shop {
    margin: 0 0 30px;
  }
  .list--shop li {
    float: left;
    width: 33%;
    padding: 5px;
    line-height: 0;
  }
  .list--shop li img {
    border-radius: 3px;
  }
}
/* バナー */
.section--bnr {
  position: relative;
  top: 0;
  background: #ddd;
  padding: 40px 0;
}
@media (min-width: 901px) {
  .section--bnr {
    -webkit-transition: .5s .5s all;
    transition: .5s .5s all;
  }
  .section--bnr a:hover {
    top: -10px;
  }
  .section--bnr a:hover img {
    -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
  }
  .section--bnr .normal li {
    float: left;
    width: 30%;
    margin: 0 4.5% 0 0;
  }
  .section--bnr .normal li:last-child {
    margin: 0;
  }
}
@media (max-width: 900px) {
  .section--bnr .normal li {
    width: 80%;
    margin: 0 auto;
  }
  .section--bnr .normal li + li {
    margin-top: 10px;
  }
}
.section--bnr a {
  position: relative;
  top: 0;
  display: block;
  line-height: 0;
}
.section--bnr a img {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: .3s all;
  transition: .3s all;
}
.section--bnr .slick-slider img {
  height: auto;
  margin: 0 auto;
}
@media (min-width: 901px) {
  .section--bnr .slick-slider img {
    width: 90%;
  }
}
@media (max-width: 900px) {
  .section--bnr .slick-slider img {
    width: 96%;
  }
}
.section--bnr .slick-list {
  padding-top: 10px!important;
  padding-bottom: 20px!important;
}
@media (max-width: 900px) {
  .section--bnr {
    padding: 30px 0;
  }
  .section--bnr .slick-dots {
    margin: -15px 0 0;
  }
  .section--bnr .inner {
    padding: 0;
    overflow: hidden;
  }
}
.slick-dots {
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: transparent;
  background-image: url(../../../day6/official/common/slick_dot_bk.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
  border-radius: 10px;
}
.slick-dots .slick-active button {
  background-image: url(../../../day6/official/common/slick_dot_bk_current.png);
}
@media (min-width: 901px) {
  .load .section--bnr {
    top: -50px;
  }
}
/* インフォメーション */
@media (min-width: 901px) {
  .section--info .inner {
    padding: 50px 0 90px;
  }
  .section--info .list--information {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .section--info .tit--section {
    padding: 0 5%;
  }
  .section--info .inner {
    padding: 50px 0;
  }
  .section--info .list--information {
    margin-bottom: 40px;
  }
}
/* プロフィール */
.section--about a {
  position: relative;
  left: 0;
  color: #fff;
  font: 500 18px 'Roboto', sans-serif;
}
.section--about a:hover {
  left: 10px;
}
.section--about .arrow {
  fill: #fff;
  width: 30px;
  height: 9px;
  margin-right: 10px;
}
@media (min-width: 901px) {
  .section--about {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
  }
  .section--about .tit--section {
    margin: 0 0 10px;
  }
  .section--about::before {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(8px);
  }
  .section--about .inner {
    max-width: 1100px;
    padding: 150px 0;
    color: #fff;
  }
  .section--about .ph {
    position: relative;
    float: left;
    width: 500px;
    -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
    line-height: 0;
  }
  .section--about .right {
    padding-left: 580px;
  }
  .section--about .tit--section .fa {
    padding: 0 5px;
    font-size: 14px;
    vertical-align: top;
  }
  .section--about .text {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .section--about .inner {
    padding: 0;
  }
  .section--about .tit--section {
    position: relative;
    z-index: 2;
    margin: -55px 0 30px;
  }
  .section--about .ph {
    position: relative;
    line-height: 0;
  }
  .section--about .right {
    padding: 40px 5% 60px;
    background: #000;
    color: #fff;
  }
  .section--about .tit--section .fa {
    padding: 0 5px;
    font-size: 10px;
    vertical-align: top;
  }
  .section--about .text {
    margin-bottom: 40px;
  }
  .section--about a {
    display: block;
    text-align: right;
  }
}
@media (min-width: 901px) {
  .section--about::before {
    background-attachment: scroll;
  }
}
/* SNS */
.section--video {
  background: #161616;
  color: #fff;
}
.section--video a {
  color: #fff;
}
@media (min-width: 901px) {
  .section--video {
    padding: 90px 0;
  }
  .section--video .inner {
    max-width: 1100px;
  }
  .section--video .left,
  .section--video .right {
    width: 50%;
    float: left;
  }
  .section--video .thumb {
    position: relative;
    margin: 0 0 20px;
  }
  .section--video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    margin: -30px 0 0 -30px;
    transform: rotateZ(0deg);
    -webkit-transition: .5s all;
    transition: .5s all;
  }
  .section--video .right {
    padding: 0 0 0 5%;
  }
  .section--video .left {
    padding: 0 5% 0 0;
    border-right: 1px solid #333;
  }
  .section--video a:hover .play {
    transform: rotateZ(360deg);
  }
}
@media (max-width: 900px) {
  .section--video .right,
  .section--video .left {
    padding: 50px 0;
  }
  .section--video .left {
    border-bottom: 1px solid #333;
  }
  .section--video .right iframe {
    width: 94%!important;
  }
  .section--video .tit {
    margin: 0 0 10px;
  }
  .section--video .thumb {
    position: relative;
  }
  .section--video .play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    margin: -30px 0 0 -30px;
  }
}
/*  モール */
.mfp-bg {
  background: rgba(0, 0, 0, 0.9);
}
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.mfp-iframe-holder .mfp-close {
  width: 60px;
  height: 60px;
  top: -80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mfp-iframe-holder .mfp-close:hover {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mfp-close span {
  position: absolute;
  display: block;
  background: #fff;
  height: 2px;
  width: 100%;
}
.mfp-close span.top {
  top: 30px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.mfp-close span.bottom {
  top: 30px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
@media (min-width: 901px) {
  #buyLink .mfp-close {
    top: -100px;
  }
}
@media (max-width: 900px) {
  #buyLink .mfp-close {
    top: -50px;
  }
}
/*  4.3 information
------------------------------ */
@media (max-width: 900px) {
  .section--list .list--information {
    margin: 0 -5.5% 60px;
  }
}
@media (min-width: 901px) {
  .block--category {
    position: absolute;
    right: 0;
    top: -120px;
  }
  .block--category li {
    display: inline-block;
  }
  .block--category a {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
    position: relative;
    display: block;
    margin: 0 0 0 25px;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
  }
  .block--category a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    -moz-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    transform-origin: right;
    -moz-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .block--category a:hover::before,
  .block--category a.current::before {
    -moz-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
@media (max-width: 900px) {
  .block--category {
    margin: 0 0 20px;
  }
  .block--category li {
    display: inline-block;
    width: 32%;
  }
  .block--category a {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
    position: relative;
    display: block;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }
  .block--category a::after {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 0;
    background: #000;
  }
  .block--category a.current::after {
    opacity: 1;
    height: 3px;
  }
}
.section--detail {
  overflow: hidden;
}
@media (min-width: 901px) {
  .section--detail .inner {
    width: 60%;
    min-width: 800px;
    padding: 200px 0 100px;
  }
  .section--detail .tit {
    color: inherit;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin: 0 0 1em;
  }
  .section--detail .event-start {
    margin: 0 0 1em;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .section--detail .event-start span {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .section--detail .inner {
    padding: 110px 5% 50px;
  }
  .section--detail .tit {
    color: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin: 0 0 1.2em;
  }
  .section--detail .event-start {
    margin: 0 0 1em;
    font-weight: bold;
  }
  .section--detail .event-start span {
    font-size: 11px;
  }
}
.section--detail .date {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #999;
}
.section--detail .date .category {
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #eee;
}
.section--detail .txt {
  line-height: 2em;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #8f8000;
}
.section--detail .txt a:hover {
  opacity: 0.5;
}
.block--share {
  text-align: right;
  margin: -30px 0 30px;
}
.block--share li {
  display: inline-block;
  vertical-align: middle;
  color: #999;
}
@media (min-width: 901px) {
  .block--share li {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 900px) {
  .block--share li {
    margin: 0 0 0 10px;
  }
}
.block--share .share {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}
.block--share .ico {
  font-size: 20px;
}
.block--share .ico svg {
  fill: #999;
}
.block--share a {
  color: #999;
}
.block--share a:hover {
  opacity: 0.5;
}
@media (min-width: 901px) {
  .block--share .line {
    display: none;
  }
}
.detail__btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
@media (min-width: 901px) {
  .detail__btn {
    margin: 50px 0 0;
  }
}
@media (max-width: 900px) {
  .detail__btn {
    margin: 30px 0 0;
  }
}
.detail__btn a {
  position: relative;
  left: 0;
  display: block;
  padding: 0 0 0 46px;
}
.detail__btn a::before {
  position: absolute;
  left: 0;
  bottom: 8px;
  content: '';
  display: block;
  width: 36px;
  height: 7px;
  background: url(../../../day6/official/common/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.detail__btn a:hover {
  left: -10px;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%!important;
  height: 100%!important;
}
/*  4.4 discography
------------------------------ */
.list--disco {
  margin-bottom: 120px;
}
.list--disco a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  position: relative;
}
.list--disco .date {
  position: relative;
}
@media (min-width: 901px) {
  .list--disco .tit {
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .list--disco .date {
    color: inherit;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
  }
  .list--disco .category {
    color: inherit;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 80px;
    margin: 0 15px 0 0;
    padding: 2px 5px;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .list--disco .date {
    color: inherit;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
  }
  .list--disco .category {
    color: inherit;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: #000;
    color: #fff;
    display: inline-block;
    min-width: 65px;
    margin: 0 15px 0 0;
    padding: 1px 5px;
    text-align: center;
  }
  .list--disco .tit {
    font-weight: bold;
    line-height: 1.4em;
    font-size: 15px;
  }
}
.list--disco .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.list--disco .thumb {
  line-height: 0;
}
.list--disco .thumb img {
  width: 100%;
}
@media (min-width: 901px) {
  .list--disco li {
    float: left;
    width: -webkit-calc(31.33333333%);
    width: calc(31.33333333%);
    margin: 0 3% 50px 0;
  }
  .list--disco li:nth-child(3n) {
    margin-right: 0;
  }
  .list--disco li:nth-child(3n+1) {
    clear: both;
  }
  .list--disco img {
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .list--disco .thumb {
    position: relative;
    top: 0;
    margin: 0 0 20px;
    background: #000;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .list--disco .thumb::before {
    opacity: 0;
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.8em 0 0 -80px;
    display: block;
    width: 160px;
    padding: 10px 0;
    text-align: center;
    background: transparent;
    color: #fff;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    border: 1px solid;
    -webkit-transition: .3s all;
    transition: .3s all;
    z-index: 2;
  }
  .list--disco .category {
    margin: 0 0 10px;
  }
  .list--disco .tit {
    margin: 0 0 10px;
  }
  .list--disco a:hover .thumb {
    top: -10px;
    -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
  }
  .list--disco a:hover .thumb img {
    opacity: 0.5;
  }
  .list--disco a:hover .thumb::before {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .list--disco {
    margin-bottom: 60px;
  }
  .list--disco li {
    margin: 0 0 30px;
  }
  .list--disco .thumb {
    position: relative;
    margin: 0 0 10px;
  }
  .list--disco .category,
  .list--disco .tit {
    margin: 0 0 10px;
  }
}
.jacket {
  margin: 0 0 20px;
}
.jacket .list--jacket.slick-slider {
  margin: 0 -6.5%;
}
.jacket .txt--sub {
  margin: 0 0 10px;
}
.jacket li.slick-slide {
  margin: 0 0 10px;
  text-align: center;
  color: #999;
}
.jacket li.slick-slide img {
  width: 98%;
}
.jacket .ph {
  position: relative;
  line-height: 0;
  margin: 0 0 10px;
}
.jacket .ph img {
  width: 100%;
}
@media (min-width: 901px) {
  .jacket {
    float: left;
    width: 45%;
  }
  .jacket .ph.one {
    margin: 0 0 10px;
  }
}
@media (max-width: 900px) {
  .jacket .ph.one {
    margin: 0 0 20px;
  }
}
@media (min-width: 901px) {
  .block--disc-detail {
    padding: 0 0 0 50%;
  }
}
@media (max-width: 900px) {
  .block--disc-detail .tit {
    margin: 0 0 10px;
    text-align: center;
  }
  .block--disc-detail .date {
    text-align: center;
  }
}
.block--disc-detail .date {
  margin: 0 0 30px;
}
.block--disc-detail .text {
  margin: 0 0 20px;
}
.block--disc-detail .text a {
  text-decoration: underline;
  color: #8f8000;
}
.block--disc-detail .text a:hover {
  opacity: 0.5;
}
.block--disc-detail ol {
  list-style: none;
  font-size: 13px;
}
.block--disc-detail ol li li {
  margin: 0 0 5px;
}
.block--disc-detail ol h2 {
  font-weight: bold;
}
.block--disc-detail ol .txt--sub {
  padding-left: 1em;
  color: #999;
}
.block-pulldown {
  margin: -10px 0 30px;
  padding: 3px 0;
  background: #fff;
  color: #000;
  border-bottom: 3px solid #000;
  position: relative;
}
.block-pulldown select {
  -webkit-appearance: none;
  -moz-appearance: button;
  width: 90%;
  height: 36px;
  background: #fff none repeat scroll 0 0;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: medium none;
  border-radius: 2px;
  box-sizing: border-box;
  line-height: 24px;
  padding: 0;
  position: relative;
}
.block-pulldown:before {
  display: block;
  content: "\f107";
  width: 13px;
  height: 8px;
  font-size: 20px;
  font-family: "FontAwesome";
  position: absolute;
  color: inherit;
  right: 14px;
  top: 50%;
  z-index: 10;
  margin-top: -17px;
}
/*  4.5 profile
------------------------------ */
.list--member {
  margin: 0 0 50px;
  letter-spacing: -0.5em;
  text-align: center;
}
.list--member li {
  display: inline-block;
  width: calc(31.33333333%);
  margin: 0 3% 50px 0;
  letter-spacing: 0.03em;
  background: #000;
  color: #fff;
}
.list--member li p {
  padding: 20px 0;
}
.list--member li img {
  width: 100%;
}
.list--member li.youngk,
.list--member li.dowoon {
  margin-right: 0;
}
.list--member li span {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.list--member li .name {
  font-size: 20px;
  line-height: 1.2em;
}
.list--member li .name i {
  display: block;
  font-size: 11px;
  font-weight: bold;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .list--member li {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
}
.blockAnime {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.blockAnime::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: #000;
  z-index: 99;
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0);
  -webkit-transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
}
.section--about .blockAnime::before {
  background: #fff;
}
.blockAnime_inner {
  opacity: 0;
}
.show2 .blockAnime_inner {
  opacity: 1;
}
.show.blockAnime::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.show2.blockAnime::before {
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
}
/*  4.10 support
------------------------------ */
section {
  margin: 0 auto 0 auto;
}


/*  _[EBhE
------------------------------ */
#popup{
	display:block;
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.85);
	z-index:1000;
}
#popup .closeBg{
	display:block;
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	z-index:1001;
}
#popup .popupIn{
	position:absolute;
	top:49%;
	left:50%;
	width:90%;
	max-width: 800px;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index:1100;
}
#popup .close span{
  	height:2px;
  	position:absolute;
  	background:#333;
}
#popup .close .top{
	position:absolute;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#popup .close .bottom{
	position:absolute;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#popup .inner{
  padding:0;
  text-align:center;
  line-height:0;
  /* background: #fff; */
  background: transparent;
}
#popup .inner iframe {
  height:450px;
}
#popup .inner a{
  display:block;
}
@media screen and (min-width: 960px) {
  #popup .close{
  	position:absolute;
  	width:40px;
  	height:40px;
  	top:-50px;
  	right:0;
  	cursor:pointer;
  	-webkit-transition: .3s;
  	transition: .3s;
  }
  #popup .close span{
  	top:20px;
  	width:40px;
  	-webkit-transition: .3s;
  	transition: .3s;
  }
  #popup .close:hover span{
  	background:#fff;
  }
}
@media screen and (max-width: 960px) {
  #popup .inner{
    padding: 0;
  }
  #popup .close{
  	position:absolute;
  	width:30px;
  	height:30px;
  	top:-40px;
  	right:-3px;
  }
  #popup .close span{
  	top:20px;
  	width:30px;
  }
  #popup .inner {
      height: 0;
      overflow: hidden;
      padding-bottom: 56.25%;
      padding-top: 30px;
      position: relative;
  }
  #popup .inner iframe {
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%;
  }
}