@charset "UTF-8";
/* media query */
/* font setting */
/* spacer */
/* absolute : position:absolute; */
/* 配置*/
/* flexbox*/
/* clearfix*/
/* chevron*/
/* btn*/
/* link*/
/* transition*/
/* 2.3 form
------------------------------ */
/* error-list */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 3em 0 0.75em;
  font-size: 15px;
}
.form dd {
  margin: 0 0 1em;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* icon--required */
.icon--required {
  position: relative;
}
.icon--required:before {
  position: absolute;
  content: "必須";
  color: #FFFFFF;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 2px;
  color: #0B0B0B;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  background: #fff;
  color: #000;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]: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,
input[type=time].form__error,
input[type=date].form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
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,
input[type=time].form__error:focus,
input[type=date].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],
input[type=time][disabled],
input[type=date][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

.input--half {
  width: 50% !important;
}

.input--quarter {
  width: 25% !important;
}

/* textarea */
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  height: auto;
  line-height: 1.6;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
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::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #FFFFFF;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 1em 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* checkbox */
.form__checkbox label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio],
.form__checkbox input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #c31515;
}

/* radio */
.form__radio label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type=checkbox],
.form__radio input[type=radio],
.form__radio input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #c31515;
}

/* toggle button */
.form__toggle label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type=checkbox],
.form__toggle input[type=radio],
.form__toggle input[type=file] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #c31515;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}

/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal li .form__selectbox {
  display: inline-block !important;
}

.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* common.scss
============================== */
html,
body {
  height: 100%;
  width: 100%;
  color: #0B0B0B;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-kerning: normal;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #FFFFFF;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wrap {
  background: #FFFFFF;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

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

.svg-parts, .svg-symbol {
  display: none;
}
@keyframes txt-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.section-tit, .block-tit {
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lead {
  margin-bottom: 30px;
}

.txt {
  margin: 0 0 1em;
}

.txt--sub,
.sub-txt-list {
  font-size: 0.85em;
  line-height: 1.4em;
}

.tit {
  word-break: break-word;
}

.copyright {
  letter-spacing: 0.09em;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-style: italic;
}

.jasrac {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.date, .category, .week {
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.category, .week {
  font-style: italic;
}

.new .tit {
  position: relative;
}
.new .tit::after {
  content: "NEW";
  display: inline-block;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  color: #FFE30D;
  margin-left: 10px;
}

/* list
------------------------------ */
.list--info li {
  width: 100%;
  height: auto;
  position: relative;
}
.list--info li:not(:last-child) {
  margin-bottom: 26px;
}
.list--info li:hover:before {
  transform: scaleX(1);
}
.list--info li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: #000;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.list--info li a {
  width: 100%;
  padding: 10px 0;
  color: #0B0B0B;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.list--info li a .date, .list--info li a .tit, .list--info li a .category, .list--info li a .week {
  display: inline-block;
  font-weight: bold;
}
.list--info li a .date {
  font-size: 16px;
  margin-right: 4%;
}
.list--info li a .tit {
  font-size: 16px;
}

.list--info.list--live li .block--date__item {
  margin-right: 4%;
}

.no-data {
  width: 100%;
  background: #FFFFFF;
  margin: 0;
  padding: 80px 0;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.no-data::before {
  display: none;
}

.list--video li a {
  display: block;
  width: 100%;
  color: #0B0B0B;
}
.list--video li a .thumb {
  line-height: 0;
  overflow: hidden;
  margin-bottom: 15px;
  height: 200px;
  position: relative;
}
.list--video li a .thumb::after {
  background: #FFE30D;
  transform-origin: right top;
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(-210%, -10%);
  transition: 0.3s;
  opacity: 0.8;
  z-index: 10;
}
.list--video li a .thumb img {
  width: 100%;
}
.list--video li a:hover .thumb::after {
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(360%, -10%);
}

.list--contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.list--contents li {
  width: 30vw;
  margin-right: 4.6666666667vw;
  margin-bottom: 60px;
  position: relative;
}
.list--contents li.no-data {
  width: 100% !important;
  margin: 0 !important;
}
.list--contents li a {
  display: block;
  width: 100%;
  color: #0B0B0B;
}
.list--contents li a:hover .thumb::after {
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(360%, -10%);
}
.list--contents li .thumb {
  line-height: 0;
  overflow: hidden;
  margin-bottom: 15px;
  height: 200px;
  position: relative;
}
.list--contents li .thumb::after {
  background: #FFE30D;
  transform-origin: right top;
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(-210%, -10%);
  transition: 0.3s;
  opacity: 0.8;
  z-index: 10;
}
.list--contents li .thumb img {
  width: 100%;
}
.list--contents li .thumb .blur {
  transform: scale(1.1);
  filter: blur(3px);
  background-size: cover;
}
.list--contents li .tit {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  background: #FFFFFF;
  padding: 0 4px;
  /*      -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        padding: 2px 4px;*/
  line-height: 1.5;
}
.list--contents li .block--text {
  line-height: 0;
  margin-top: -1px;
}
.list--contents li .category {
  display: inline-block;
  background: #FFFFFF;
  font-size: 13px;
  margin-left: 0;
  margin-bottom: 8px;
  padding: 2px 4px;
}
.list--contents li .date {
  display: inline-block;
  background: #FFFFFF;
  font-size: 13px;
  margin-right: -6px;
  margin-bottom: 8px;
  padding: 2px 4px;
}
.list--contents .list--btn {
  display: flex;
  flex-wrap: wrap;
}
.list--contents .list--btn__item {
  margin: 0 5px 5px 0;
  line-height: 1;
}
.list--contents .list--btn__item a {
  padding: 5px 8px;
  width: auto;
  height: auto;
  background: #0b0b0b;
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: bold;
  transition: 0.3s;
}
.list--contents .list--btn__item a:hover {
  background: #FFE30D;
  color: #0b0b0b;
}

.list--attention li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.list--attention li:not(:last-child) {
  margin-bottom: 1em;
}

.header h1 {
  width: 80px;
  z-index: 10;
  position: fixed;
  top: 20px;
  left: 21px;
  margin-bottom: 30px;
}
.header h1 a {
  display: block;
  line-height: 0;
}
.header .list--music_sns {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 110px;
  padding: 0px 8px;
  color: #fff;
  mix-blend-mode: difference;
}
.header .list--music_sns li {
  width: 40px;
  line-height: 0;
  margin: 0 0 10px;
}
.header .list--music_sns li a {
  display: block;
  line-height: 0;
  transition: 0.3s;
}
.header .list--music_sns li a:hover {
  opacity: 0.7;
}
.header .list--music_sns li:last-child {
  margin-bottom: 0;
}
.header .list--music_sns li:first-child {
  text-orientation: sideways;
  writing-mode: vertical-rl;
  line-height: 40px;
  border-bottom: 2px solid;
  padding-bottom: 12px;
  font-size: 17px;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
.header .request_link {
  position: fixed;
  z-index: 10;
  right: 140px;
  top: 0;
  transition: 0.3s;
}
.header .request_link:hover {
  opacity: 0.7;
}
.header .request_link a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  display: block;
  padding: 5px 15px;
}
.header .request_link::before, .header .request_link::after {
  content: "";
  display: block;
  background: #1f1d1a;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: skewX(15deg);
  bottom: 0;
  right: 0;
  transform-origin: right bottom;
}
.header .request_link::after {
  transform: skewX(-15deg);
}

body:not(.page--home) .header .list--music_sns {
  display: none;
}

body:not(.page--home) .header .request_link {
  display: none;
}

.drawer {
  padding: 35px 0 0 0;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  transform: translateY(-200%);
  transform-origin: top;
  background: #0B0B0B;
}

.drawer-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
.drawer-inner li {
  width: auto;
  height: 6vh;
  min-width: 26em;
  margin-bottom: 12px;
  position: relative;
  text-align: center;
}
.drawer-inner li:not(:last-child) {
  margin-bottom: 10px;
}
.drawer-inner li.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.drawer-inner li a {
  display: block;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  text-align: left;
  color: #FFFFFF;
  position: relative;
  word-break: break-all;
  line-height: 1;
  padding-left: 30px;
  letter-spacing: 0.01em;
  text-align: left;
}
.drawer-inner li a:hover .menu::after {
  width: 100%;
}
.drawer-inner li span.num {
  font-size: 15px;
  position: absolute;
  top: 5px;
  margin-right: 8px;
  letter-spacing: 0.01em;
  transition: 0.4s;
  color: #525252;
  left: 0;
}
.drawer-inner li span.menu {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-align: left;
  font-size: 6vh;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.drawer-inner li span.menu::after {
  content: attr(data-txt);
  display: block;
  width: 0;
  color: #FFE30D;
  font-size: 6vh;
  transition: 0.2s;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
.drawer-inner .g-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 40%;
  min-width: 480px;
  height: 100%;
}
.drawer-inner .img_airtist {
  width: 70%;
  height: 100%;
}
.drawer-inner .img_airtist img {
  height: 100%;
}

.drawer__btn {
  mix-blend-mode: difference;
  isolation: isolate;
  display: block;
  width: 121px;
  height: 79px;
  float: right;
  text-align: center;
  padding: 0;
  position: fixed;
  top: 0;
  right: -5px;
  cursor: pointer;
  z-index: 300;
  border-radius: 0;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.drawer__btn:hover span::after {
  opacity: 1;
  transition: 0.1s;
}
.drawer__btn:hover .mid::after {
  transition-delay: 0.05s;
}
.drawer__btn:hover .top::after {
  transition-delay: 0.1s;
}
.drawer__btn span {
  width: 100%;
  height: 16px;
  background: #fff;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  position: absolute;
  right: 0;
  z-index: 50;
  border-radius: 0;
  overflow: hidden;
}
.drawer__btn span::before, .drawer__btn span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.drawer__btn span::before {
  background: #FFFFFF;
}
.drawer__btn span::after {
  opacity: 0;
  background: #001cf2;
}
.drawer__btn .top {
  top: 0;
}
.drawer__btn .mid {
  top: 32px;
}
.drawer__btn .btm {
  top: 64px;
}

.drawer-visible .drawer {
  transform: translateY(0%);
  display: block;
  overflow: hidden;
  right: 0;
  padding: 0;
  top: 0;
  background-color: #0B0B0B;
}
.drawer-visible .g-nav li a .menu {
  opacity: 0;
  animation: txt-expand 0.3s cubic-bezier(0.22, 0.61, 0.65, 1.07) both;
}
.drawer-visible .g-nav li:nth-child(2) a .menu {
  animation-delay: 0.25s;
}
.drawer-visible .g-nav li:nth-child(2) a .menu {
  animation-delay: 0.3s;
}
.drawer-visible .g-nav li:nth-child(3) a .menu {
  animation-delay: 0.35s;
}
.drawer-visible .g-nav li:nth-child(4) a .menu {
  animation-delay: 0.4s;
}
.drawer-visible .g-nav li:nth-child(5) a .menu {
  animation-delay: 0.45s;
}
.drawer-visible .g-nav li:nth-child(6) a .menu {
  animation-delay: 0.5s;
}
.drawer-visible .g-nav li:nth-child(7) a .menu {
  animation-delay: 0.55s;
}
.drawer-visible .g-nav li:nth-child(8) a .menu {
  animation-delay: 0.6s;
}
.drawer-visible .g-nav li:nth-child(9) a .menu {
  animation-delay: 0.65s;
}
.drawer-visible .g-nav li:nth-child(10) a .menu {
  animation-delay: 0.7s;
}
.drawer-visible .g-nav li:nth-child(11) a .menu {
  animation-delay: 0.75s;
}
.drawer-visible .g-nav li:nth-child(12) a .menu {
  animation-delay: 0.8s;
}
.drawer-visible .drawer__btn {
  transform: rotate(180deg);
}
.drawer-visible .drawer__btn:hover span::after {
  opacity: 0;
  transition: 0s;
}
.drawer-visible .drawer__btn span {
  background: #fff !important;
}
.drawer-visible .drawer__btn .btm, .drawer-visible .drawer__btn .top {
  margin: 0;
}
.drawer-visible .drawer__btn .btm span, .drawer-visible .drawer__btn .top span {
  height: 10px;
}
.drawer-visible .drawer__btn .top {
  top: 40px;
  transform: rotate(12deg) skew(10deg, 10deg);
}
.drawer-visible .drawer__btn .mid {
  opacity: 0;
}
.drawer-visible .drawer__btn .btm {
  top: 40px;
  transform: rotate(148deg) skew(-30deg, 10deg);
}
.drawer-visible .img_airtist {
  width: 70%;
}
.drawer-visible .img_airtist img {
  width: 100%;
  background-size: cover;
}

.footer .inner a {
  display: block;
  line-height: 0;
}
.footer .inner ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.footer .inner ul li {
  margin: 0 10px;
}
.footer .inner ul img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 60px;
}
.footer .inner .list--sns {
  margin-bottom: 50px;
}
.footer .inner .list--sns li {
  width: 70px;
}
.footer .inner .list--sns .list--sns__mail {
  width: 47px;
}
.footer .inner .list--sns li a svg {
  fill: #0B0B0B;
  transition: 0.2s;
}
.footer .inner .list--sns li a:hover svg {
  fill: #FFE30D;
}
.footer .inner .list--official {
  margin-bottom: 60px;
}
.footer .inner .list--official li {
  width: 180px;
}
.footer .inner .list--official .funkykato {
  width: 190px;
  margin-right: -23px;
}
.footer .inner .list--official .funkykato a {
  position: relative;
  top: -5px;
}
.footer .inner .list--official .funkykato img {
  height: 69px;
}
.footer .inner .list--sub-bnr {
  margin-bottom: 50px;
}
.footer .inner .list--sub-bnr li a {
  border: 1px solid;
  transition: 0.1s;
}
.footer .inner .list--sub-bnr li a:hover {
  border-color: #FFE30D;
}
.footer .inner .block--sub-logo li {
  width: 60px;
}

body:not(.page--home) .wrap {
  padding: 100px 0 152px;
}
body:not(.page--home) footer {
  width: 100%;
  background: none;
  text-align: right;
  padding: 60px 5%;
  position: absolute;
  bottom: 0;
  left: 0;
}
body:not(.page--home) footer .list--sns, body:not(.page--home) footer .list--official, body:not(.page--home) footer .list--sub-bnr, body:not(.page--home) footer .block--sub-logo {
  display: none;
}
body:not(.page--home) footer .jasrac {
  margin-bottom: 5px;
}

.detail__btn, .list__more {
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.detail__btn a, .list__more a {
  transition: 0.1s;
}

.detail__btn {
  font-size: 15px;
  text-align: center;
}
.detail__btn a {
  padding: 10px 0;
  display: inline-block;
}

.page--home .wrap {
  background: #FFFFFF;
}
.page--home .header h1 {
  display: none;
}
.page--home .loading {
  display: none;
}
.page--home .loading > .loading__curtain {
  width: 100%;
  height: 33.3333333333vh;
  background: #0B0B0B;
  transform-origin: right;
  transition: 0.35s;
  position: fixed;
  left: 0;
  z-index: 999;
}
.page--home .loading > .loading__curtain:first-child {
  top: 0;
}
.page--home .loading > .loading__curtain:nth-child(2) {
  top: 33.3333333333vh;
}
.page--home .loading > .loading__curtain:nth-child(3) {
  top: 66.6666666667vh;
}
.page--home .drawer__btn {
  transform: translateX(100%);
}
.page--home .scroll {
  opacity: 0;
}
.page--home.no-first-animation .drawer__btn {
  transition: none;
  transform: none;
}
.page--home.no-first-animation .scroll {
  opacity: 1;
}
.page--home.loaded .loading .loading__curtain {
  transform: scaleX(0);
}
.page--home.loaded .loading .loading__curtain:nth-child(1) {
  transition-delay: 0.3s;
}
.page--home.loaded .loading .loading__curtain:nth-child(2) {
  transition-delay: 0.4s;
}
.page--home.loaded .loading .loading__curtain:nth-child(3) {
  transition-delay: 0.5s;
}
.page--home.loaded .drawer__btn {
  transform: translateX(0);
  transition: 0.35s 0.9s;
}
.page--home.loaded .scroll {
  opacity: 1;
  transition: 0.2s 1.2s;
}
.page--home.scrolling .scroll {
  opacity: 0 !important;
  transition: 0.3s !important;
}
.page--home [class^=section--] {
  margin: 0 0 150px 0;
  z-index: 1;
  position: relative;
}
.page--home [class^=section--] .section-tit {
  font-size: 80px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1;
}
.page--home [class^=section--] .section-tit.started {
  animation: txt-expand 0.3s cubic-bezier(0.22, 0.61, 0.65, 1.07) both;
}
.page--home [class^=section--] .list__more {
  text-align: center;
  font-size: 15px;
}
.page--home .section--top {
  height: 100vh;
  margin-bottom: 0;
}
.page--home .section--top .key_visual {
  position: relative;
}
.page--home .section--top .logo {
  width: auto;
  height: calc(100vh + 2px);
  position: fixed;
  top: -2px;
  left: 0;
}
.page--home .section--top .logo img, .page--home .section--top .logo svg {
  display: block;
  width: auto;
  height: 100%;
}
.page--home .section--top .scroll {
  position: absolute;
  top: 78vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 6vw;
  right: 3%;
}
.page--home .section--top .scroll svg {
  width: 100%;
  height: 3.7vw;
  fill: rgba(0, 0, 0, 0);
  animation: scroll 1s ease-in infinite both;
  transform: translateY(-10px);
}
.page--home .section--top .scroll svg:nth-child(3) {
  transform: translateY(-3.8vw);
  animation-delay: 0.35s;
}
.page--home .section--top .scroll svg:nth-child(2) {
  transform: translateY(-2.15vw);
  animation-delay: 0.25s;
}
.page--home .section--top .scroll svg:nth-child(1) {
  animation-delay: 0.15s;
}
.page--home .section--bnr-top {
  margin-bottom: 310px;
}
.page--home .section--bnr-top .list--bnr li:not(:last-of-type) {
  margin-right: 34px;
}
.page--home .section--bnr-top .list--bnr li a {
  display: block;
  width: 100%;
  color: #0B0B0B;
  position: relative;
  overflow: hidden;
}
.page--home .section--bnr-top .list--bnr li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FFE30D;
  transform-origin: right top;
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(-210%, -10%);
  transition: 0.4s;
  opacity: 0.8;
  z-index: 10;
}
.page--home .section--bnr-top .list--bnr li a:hover:after {
  transform: scaleX(0.5) scaleY(1.8) skew(103deg) translate(360%, -10%);
}
.page--home .section--info,
.page--home .section--media,
.page--home .section--live {
  margin: 0 15% 150px 15%;
  padding: 140px 7% 160px 7%;
}
.page--home .section--info .list__more,
.page--home .section--media .list__more,
.page--home .section--live .list__more {
  width: 30%;
  margin: 0 auto 70px;
}
.page--home .list--info li.no-data {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.page--home .list--info li.no-data::before, .page--home .list--info li.no-data::after {
  display: none !important;
}
.page--home .section--info {
  background: #FFFFFF;
}
.page--home .section--info .list--info li a .tit {
  width: 80%;
}
.page--home .section--info .list--info li a .date {
  margin-right: 10px;
  width: 15%;
}
.page--home .section--media {
  background: #0B0B0B;
  color: #fff;
}
.page--home .section--media .list--info li a,
.page--home .section--media .list__more a {
  color: #fff;
}
.page--home .section--media .list--info li {
  position: relative;
}
.page--home .section--media .list--info li:hover:before {
  transform: scaleX(1);
}
.page--home .section--media .list--info li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: #fff;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.page--home .section--media .list--info li .date {
  width: 7em;
  margin-right: 10px;
}
.page--home .section--media .list--info li .tit {
  width: 75%;
}
.page--home .section--media .list--info li .category {
  width: 10%;
  margin-right: 3%;
}
.page--home .section--media .list__more a:hover {
  text-shadow: 0.1em 0.2em rgba(255, 227, 13, 0.5);
}
.page--home .section--live {
  background: #FFFFFF;
}
.page--home .section--live .week {
  font-size: 14px;
  margin-left: 11px;
}
.page--home .section--live .list--info::after {
  content: "";
  display: block;
  clear: both;
}
.page--home .section--live .list--info li.no-data {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page--home .section--live .list--info li.no-data::before, .page--home .section--live .list--info li.no-data::after {
  display: none !important;
}
.page--home .section--live .list--info li a .date {
  width: 40%;
  margin-bottom: 5px;
}
.page--home .section--live .list--info li a .tit {
  width: 50%;
}
.page--home .section--live .list--info li a .category {
  margin-left: 13%;
}
.page--home .section--live .list--info li:first-of-type {
  position: relative;
  float: left;
  width: 48%;
  margin-right: 2%;
}
.page--home .section--live .list--info li:first-of-type a {
  flex-direction: column;
}
.page--home .section--live .list--info li:first-of-type::after {
  content: "NEXT LIVE";
  color: #0B0B0B;
  font-size: 20px;
  position: absolute;
  letter-spacing: 0.04em;
  top: -0.5em;
  font-family: ronnia-condensed, sans-serif;
  font-style: italic;
  font-weight: 800;
}
.page--home .section--live .list--info li:first-of-type .date {
  font-size: 70px;
  letter-spacing: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.page--home .section--live .list--info li:first-of-type .date .week {
  font-size: 22px;
  transform: rotate(90deg);
  margin: 0 0 0 -4px;
}
.page--home .section--live .list--info li:first-of-type .tit {
  width: 100%;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
}
.page--home .section--live .list--info li:not(:first-of-type) {
  float: right;
  width: 46%;
  left: 2%;
  margin-bottom: 10px;
  margin-top: -20px;
}
.page--home .section--video {
  margin: 0 0 280px 0;
}
.page--home .section--video .section-tit {
  display: none;
}
.page--home .section--video.single li {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}
.page--home .section--video .list--video li:not(:last-of-type) {
  margin-right: 60px;
}
.page--home .section--video .list--video .slick-prev {
  left: -6%;
}
.page--home .section--video .list--video .slick-prev,
.page--home .section--video .list--video .slick-next {
  margin-top: -30px;
}
.page--home .section--video .list--video .box--iframe {
  margin-bottom: 33px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
}
.page--home .section--video .list--video .box--iframe .thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  line-height: 0;
}
.page--home .section--video .list--video .box--iframe .thumb img {
  width: 100%;
}
.page--home .section--video .list--video .box--iframe .iframe-wrap {
  line-height: 0;
}
.page--home .section--video .list--video .box--iframe .iframe-wrap iframe {
  width: 100%;
}
.page--home .section--video .list--video .box--iframe .tit {
  margin-top: 33px;
  padding: 20px 2% 0;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  z-index: 10;
  color: #fff;
  left: 10px;
}
.page--home .section--video .slick-slide.slick-active {
  position: relative;
  /*.thumb::before{
    content: 'PLAY';
    @include var.font-add(var.$weight:700,var.$style:italic);
    color: var.$color-base;
    font-size: 16vw;
    position: absolute;
    z-index: 2;
    left: -9%;
    bottom: 0.65em;
    pointer-events: none;
  }*/
}
.page--home .section--video .slick-slide.slick-active .thumb::before {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.90196) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 49;
}
.page--home .footer {
  position: relative;
  margin: 0;
}
.page--home .footer .copyright {
  text-align: center;
}

.slick-slide a {
  display: block;
  height: 100%;
}
.slick-slide a img {
  width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}

.slick-dots {
  text-align: left;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 3px 0 0;
  display: inline-block;
}
.slick-dots li.slick-active button {
  filter: contrast(0.2);
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  border: 0;
}

.slick-prev,
.slick-next {
  display: block;
  width: 80px;
  height: 80px;
  background: none;
  color: #0B0B0B;
  font-size: 0;
  line-height: 0;
  padding: 0;
  position: absolute;
  top: 85px;
  top: 5vw;
  z-index: 99;
  cursor: pointer;
  border: none;
  outline: none;
  margin-top: -40px;
  transition: 0.4s;
  transform-origin: center;
}

.list--bnr .slick-prev {
  left: inherit;
  top: 50%;
  left: -80px;
}

.list--bnr .slick-next {
  left: inherit;
  top: 50%;
  right: -80px;
}

.list--bnr:hover .slick-next,
.list--video:hover .slick-next {
  right: 10% !important;
}
.list--bnr:hover .slick-prev,
.list--video:hover .slick-prev {
  left: 6% !important;
}

.list--bnr .slick-prev,
.list--bnr .slick-next {
  margin-top: -40px;
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
}

.slick-prev:before, .slick-next:before {
  content: "";
}

.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-right: 15px solid #FFE30D;
  border-top: 15px solid #FFE30D;
  position: absolute;
  top: 16px;
  left: 17px;
  transition: 0.15s;
}

.slick-prev::after {
  transform: rotate(-135deg);
}

.slick-next::after {
  left: 15px;
  transform: rotate(45deg);
}

.slick-slider .slick-prev:hover::after {
  border-color: #FFE30D;
  transform: rotate(-135deg) scale(1.2);
}

.slick-slider .slick-next:hover::after {
  border-color: #FFE30D;
  transform: rotate(45deg) scale(1.2);
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn .btn--main {
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: #0B0B0B;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3px;
}
.btn .btn--sub {
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3px;
  color: #FFE30D;
  box-shadow: 0 0 0px 1px #FFE30D inset;
}

.block--pager {
  text-align: center;
  margin: 50px auto 0;
  padding: 0;
  position: relative;
  background: #fff;
  padding: 10px;
}
.block--pager li {
  display: inline-block;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  margin: 0 5px;
  position: relative;
  vertical-align: middle;
}
.block--pager .pager__item--current {
  color: #FFE30D;
}
.block--pager .pager__item--current, .block--pager .pager__item--other a {
  padding: 0.5em;
  transition: 0.1s;
}
.block--pager .pager__item--current:hover, .block--pager .pager__item--other a:hover {
  color: #FFE30D;
}
.block--pager .pager__item--older, .block--pager .pager__item--newer {
  z-index: 2;
  padding: 0.5em 0;
}
.block--pager .pager__item--older span, .block--pager .pager__item--newer span {
  opacity: 0.1;
}
.block--pager .pager__item--older a, .block--pager .pager__item--older span, .block--pager .pager__item--newer a, .block--pager .pager__item--newer span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.5em;
}
.block--pager .pager__item--older a:hover::after, .block--pager .pager__item--newer a:hover::after {
  border-color: #FFE30D;
}
.block--pager .pager__item--older {
  left: -0.5em;
}
.block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 6px solid #0B0B0B;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.block--pager .pager__item--newer {
  right: -0.5em;
}
.block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 6px solid #0B0B0B;
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
}

.block--category {
  display: inline-block;
  font-size: 18px;
  vertical-align: 6px;
  position: relative;
  margin-left: 20px;
  font-family: ronnia-condensed, sans-serif;
  font-style: italic;
  font-weight: 800;
}
.block--category li {
  display: inline-block;
  margin: 0 0.25em;
}
.block--category li a {
  display: block;
  position: relative;
  line-height: 1.2;
  overflow: hidden;
}
.block--category li a::after {
  content: attr(data-txt);
  display: block;
  width: 0;
  color: #FFE30D;
  transition: 0.2s;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
}
.block--category li a:hover::after {
  width: 100%;
}
.block--category li a:hover {
  color: transparent;
  transition: color 0.3s 0.1s;
}
.block--category li.current a {
  color: transparent;
}
.block--category li.current a::after {
  width: 100%;
}
.block--category li.block--category__add {
  position: relative;
  padding-left: 40px;
}
.block--category li.block--category__add::before {
  content: "";
  width: 2px;
  height: 41px;
  background: #0B0B0B;
  transform: rotate(30deg);
  position: absolute;
  left: 14px;
  top: -12px;
}

.block--share {
  text-align: right;
  margin-bottom: 30px;
  margin-top: -50px;
}
.block--share .social-list {
  text-align: right;
}
.block--share li {
  display: inline-block;
  margin: 0 6px 0 0;
  width: 22px;
  height: 22px;
}
.block--share li:last-of-type {
  margin-right: 0;
}
.block--share li a:hover i {
  color: #FFE30D;
}
.block--share li a:hover svg {
  fill: #FFE30D;
}
.block--share li a {
  padding: 0 4px 0 !important;
  cursor: pointer;
}
.block--share li i {
  transition: 0.2s;
  font-size: 18px;
  vertical-align: text-bottom;
  color: #0B0B0B;
}
.block--share li.share {
  width: 50px;
  margin-right: 10px;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.1em;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
}
.block--share li.lineIco {
  vertical-align: -5px;
}
.block--share li.lineIco svg {
  transition: 0.2s;
}

.list__more a,
.detail__btn a {
  display: inline-block;
  padding: 10px 0;
  text-shadow: 0 0 transparent;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  line-height: 1;
  letter-spacing: 0.05em;
}
.list__more a:hover,
.detail__btn a:hover {
  text-shadow: 0.1em 0.2em #FFE30D;
}

.no-data {
  text-align: center;
  letter-spacing: 0.1em;
  margin: 30px auto;
}

.ph, .thumb {
  position: relative;
  margin: 1.5em 0;
  line-height: 0;
}
.ph::after, .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video, .youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
  margin: 20px auto;
}
.video iframe, .video video, .youtube iframe, .youtube video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer, .youtube .jstream-eqPlayer {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer *, .youtube .jstream-eqPlayer * {
  background-size: auto;
}
.video .jstream-eqPlayer * .eq-center-icon-play, .youtube .jstream-eqPlayer * .eq-center-icon-play {
  color: transparent;
}
.video .eq-icon-play,
.video .eq-icon-sound, .youtube .eq-icon-play,
.youtube .eq-icon-sound {
  color: transparent;
}

.block--player {
  height: 0;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
  background: #FFFFFF;
  line-height: 0;
  position: relative;
}
.block--player video,
.block--player img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes scroll {
  to {
    fill: #000;
  }
}
.section--list .list--info {
  background: #FFFFFF;
  position: relative;
  padding: 60px 30px;
}

.section--detail {
  width: 100%;
}
.section--detail.new {
  color: #0B0B0B;
}
.section--detail .block--main {
  max-width: 900px;
  background: #FFFFFF;
  position: relative;
  padding: 60px 8%;
  margin: 0 auto;
}
.section--detail .block--main .tit {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section--detail .block--main .date {
  margin-bottom: 30px;
}
.section--detail .block--main .block--txt a {
  text-decoration: underline;
}

.section--list,
.section--detail {
  padding: 0 8% 20px 113px;
  position: relative;
}
.section--list::before,
.section--detail::before {
  content: "";
  display: block;
  width: 1071px;
  height: 546px;
  background: no-repeat url(/static/funkymonkeybabys/common/logo_small.svg) center top;
  background-size: contain;
  pointer-events: none;
  position: fixed;
  top: 0px;
  left: -1px;
}
.section--list .section-tit,
.section--detail .section-tit {
  display: inline-block;
  font-size: 40px;
}
.section--list .block--title,
.section--detail .block--title {
  display: inline-block;
  background: #FFFFFF;
  padding: 0 30px;
  margin-bottom: 50px;
  margin-top: -1px;
  position: relative;
  top: 22px;
}

.page--info.category-11 .list--contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.page--info.category-11 .list--contents li {
  margin-bottom: 60px;
  /*
  .tit::before{
    content: 'PLAY';
    @include var.font-add(var.$style:italic);
    color: var.$color-txt;
    font-size: 50px;
    position: absolute;
    z-index: 2;
    left: -17px;
    top: -77px;
    pointer-events: none;
  }
  */
}
.page--info.category-11 .list--contents li .thumb {
  height: 100%;
  line-height: 0;
  margin-bottom: 30px;
}
.page--info.category-11 .list--contents li .tit {
  position: relative;
}

.page--info.category-2 .list--info .date {
  width: 5em;
  margin-right: 30px;
}
.page--info.category-2 .list--info .category {
  width: 5em;
  text-align: center;
  margin-right: 30px;
}
.page--info.category-2 .list--info .tit {
  width: calc(100% - 10em);
}

.page--info.category-3 .block--date {
  font-size: 29px;
}
.page--info.category-3 .section--detail .tit {
  font-size: 18px;
  margin-bottom: 30px;
}
.page--info.category-3 .block--share {
  margin-top: -20px;
}

.page--profile.section--detail .block--main {
  max-width: 1100px;
}
.page--profile.section--detail .block--main .thumb {
  margin-bottom: 80px;
}
.page--profile.section--detail .block--main .thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.page--profile.section--detail .block--bio .artist-name {
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.page--profile.section--detail .block--bio .artist-name img {
  width: 60%;
}
.page--profile.section--detail .block--bio .artist-name::after {
  content: attr(data-txt);
  display: block;
  text-align: center;
  line-height: 0;
  font-size: 12px;
  position: relative;
  bottom: -12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.page--profile.section--detail .block--bio .txt--basic {
  margin-bottom: 1em;
}
.page--profile.section--detail .block--bio .txt--basic a {
  text-decoration: underline;
}
.page--profile.section--detail .block--bio .txt--basic a:hover {
  text-decoration: none;
}
.page--profile.section--detail .block--profile {
  padding-top: 30px;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.page--profile.section--detail .block--profile__item {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
}
.page--profile.section--detail .block--profile__item a {
  display: inline-block;
  width: 270px;
  text-align: center;
  font-size: 16px;
  background: #0B0B0B;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 20px 20px 17px;
  line-height: 1;
  transition: 0.1s;
  position: relative;
}
.page--profile.section--detail .block--profile__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFE30D;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: 0.1s;
}
.page--profile.section--detail .block--profile__item a span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.page--profile.section--detail .block--profile__item a:hover {
  color: #0B0B0B;
}
.page--profile.section--detail .block--profile__item a:hover::before {
  transform: scaleY(1);
}

.page--disco .list--contents li {
  width: 24vw;
  margin-right: 5vw;
}
.page--disco .list--contents li:nth-child(3n) {
  margin-right: 0;
}
.page--disco .list--contents li .thumb {
  height: 24vw;
  /*background: var.$color-txt;*/
}
.page--disco .list--contents li .thumb img:not(.blur) {
  position: relative;
  background-size: contain;
  z-index: 2;
}
.page--disco .list--contents li .thumb img.blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .list--contents li .btn--main {
  width: auto;
  display: inline-block;
  font-size: 12px;
  letter-spacing: -0.02em;
  padding: 5px 8px;
  height: auto;
  line-height: 1;
  transition: 0.3s;
  font-weight: bold;
  transition: 0.3s;
}
.page--disco .list--contents li .btn--main:hover {
  background: #FFE30D;
  color: #0b0b0b;
}
.page--disco.page--disco__detail .section--detail::before {
  display: none;
}
.page--disco.page--disco__detail .block--bg {
  width: 60vw;
  height: 60vw;
  position: fixed;
  top: -6vw;
  left: -90px;
  background: no-repeat center/contain;
}
.page--disco.page--disco__detail .block--jacket {
  padding-left: 40px;
  width: 37%;
}
.page--disco.page--disco__detail .list--jacket .thumb {
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}
.page--disco.page--disco__detail .list--jacket .thumb img {
  margin: 0 auto;
}
.page--disco.page--disco__detail .list--jacket li {
  margin-bottom: 50px;
}
.page--disco.page--disco__detail .list--jacket .name {
  text-align: center;
  font-size: 12px;
}
.page--disco.page--disco__detail .block--review {
  margin-bottom: 50px;
}
.page--disco.page--disco__detail .block--review .btn a {
  margin: 0;
}
.page--disco.page--disco__detail .block--review .list--btn {
  display: flex;
  flex-wrap: wrap;
}
.page--disco.page--disco__detail .block--review .list--btn__item {
  margin: 0 8px 8px 0;
}
.page--disco.page--disco__detail .block--review .list--btn__item a {
  padding: 10px 23px;
  color: #ffffff;
  background: #0b0b0b;
  display: inline-block;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: bold;
  transition: 0.3s;
}
.page--disco.page--disco__detail .block--review .list--btn__item a:hover {
  color: #0b0b0b;
  background: #FFE30D;
}
.page--disco.page--disco__detail .detail__btn {
  text-align: left;
}
.page--disco .area--disco-detail {
  display: flex;
  justify-content: flex-start;
  padding-top: 40px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}
.page--disco .area--disco-detail .block--detail {
  padding-left: 45px;
  width: 63%;
}
.page--disco .area--disco-detail .block--detail .tit {
  font-size: 28px;
  margin: -0.3em 0 10px;
  font-weight: 500;
}
.page--disco .area--disco-detail .block--detail .category {
  display: inline-block;
}
.page--disco .area--disco-detail .block--detail .date {
  display: inline-block;
  margin-bottom: 20px;
}
.page--disco .area--disco-detail .block--comment {
  line-height: 1.3;
  margin-bottom: 50px;
  font-weight: 300;
}

.page--attention.section--detail .block--main .tit {
  font-size: 22px;
  border-bottom: 1px solid;
  margin-bottom: 1em;
}
.page--attention.section--detail .block--main .tit:not(:first-child) {
  margin-top: 40px;
}
.page--attention.section--detail .block--main h3.tit,
.page--attention.section--detail .block--main .block--main__tit {
  border: none;
  background: #c00;
  color: #fff;
  padding: 10px 0 9px 10px;
  text-align: center;
  margin-bottom: 40px;
}
.page--attention.section--detail .block--main h3.tit {
  margin-top: 60px;
}
.page--attention.section--detail .block--main .block--main__tit {
  font-size: 22px;
  background: #0B0B0B;
}
.page--attention.section--detail .block--main .txt--basic:not(.last-child) {
  margin-bottom: 1em;
}

.page--sns.section--detail .block--main {
  padding: 0;
  background: none;
}
.page--sns.section--detail .block--sns {
  background: #FFFFFF;
  padding: 60px 8% 30px;
}
.page--sns.section--detail .block--sns:first-child {
  padding: 60px 8% 0;
}
.page--sns.section--detail .block--sns:first-child .list--sns {
  padding-bottom: 60px;
  border-bottom: 4px solid #000;
}
.page--sns.section--detail .block--main .tit {
  font-size: 16px;
  margin-bottom: 3px;
}
.page--sns.section--detail .list--sns li {
  display: inline-block;
  margin-right: 0.5em;
  position: relative;
  padding-left: 20px;
}
.page--sns.section--detail .list--sns li:first-child {
  padding-left: 0;
}
.page--sns.section--detail .list--sns li:first-child::before {
  display: none;
}
.page--sns.section--detail .list--sns li::before {
  content: "";
  display: block;
  width: 2px;
  height: 26px;
  background: #0B0B0B;
  position: absolute;
  left: 3px;
  top: 4px;
  transform: rotate(30deg);
}
.page--sns.section--detail .list--sns li a {
  display: block;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.page--sns.section--detail .list--sns li a:hover::after {
  width: 100%;
}
.page--sns.section--detail .list--sns li a:hover {
  color: transparent;
  transition: 0s color 0.2s;
}
.page--sns.section--detail .list--sns li a::after {
  content: attr(data-txt);
  display: block;
  width: 0;
  color: #FFE30D;
  transition: 0.2s;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
.page--sns.section--detail .block--artist {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 80px;
}
.page--sns.section--detail .block--main .tit {
  font-size: 20px;
  margin-bottom: 8px;
}
.page--sns.section--detail .list--sns li {
  padding-left: 8px;
}
.page--sns.section--detail .list--sns li span {
  font-size: 20px;
}
.page--sns.section--detail .list--sns li a::after, .page--sns.section--detail .list--sns li::before {
  display: none;
}
.page--sns.section--detail .list--sns li a:hover {
  color: #ffe30d;
}
.page--sns.section--detail .block--sns__item:first-child {
  margin-right: 10%;
}

.page--entry .block--main {
  max-width: 900px;
  background: #FFFFFF;
  position: relative;
  padding: 60px 8%;
  margin: 0 auto;
}
.page--entry .block--main .section-tit {
  display: block;
  width: 80%;
  margin: 0 auto 40px;
}
.page--entry .block--contents {
  margin-top: 40px;
}
.page--entry .block--contents .block-tit {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
.page--entry .block--contents .list--contents {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.page--entry .block--contents .list--contents li {
  width: 48%;
  background: #0B0B0B;
  color: #FFFFFF;
  padding: 40px;
  margin-right: 0;
  margin-bottom: 4%;
}
.page--entry .block--contents .list--contents li .tit {
  font-size: 18px;
  font-weight: bold;
  background: none;
  margin-bottom: 15px;
  padding: 0;
}
.page--entry .table--site-info {
  margin: 60px auto;
  border: 5px solid;
  font-size: 12px;
}
.page--entry .table--site-info tr {
  border-bottom: 1px solid #222;
}
.page--entry .table--site-info th {
  width: 30%;
  font-size: 14px;
  background: #0B0B0B;
  color: #FFFFFF;
}
.page--entry .table--site-info td {
  padding: 20px;
}
.page--entry .table--site-info td figure {
  width: 100px;
  margin: 0;
  left: -10px;
}
.page--entry .table--site-info td .flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.page--entry .table--site-info td .flex > div {
  font-size: 12px;
}
.page--entry .table--site-info td .flex > div p:first-child {
  font-weight: bold;
}
.page--entry .list--note {
  font-size: 13px;
}
.page--entry .list--note li {
  padding-left: 1em;
  text-indent: -1em;
}
.page--entry .list--note li:not(last-child) {
  margin-bottom: 5px;
}
.page--entry dl dt {
  font-weight: bold;
}
.page--entry dl dd:not(last-child) {
  margin-bottom: 1em;
}

#top_popup {
  width: 100%;
  display: flex;
  overflow: initial;
  position: fixed;
  background: rgba(0, 0, 0, 0.3411764706);
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  padding: 0 4%;
  z-index: 900;
  box-sizing: border-box;
}

#top_popup .popup_inner {
  width: 100%;
  font-weight: 500;
  max-width: 850px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  position: relative;
}

#top_popup .close-small {
  position: absolute;
  top: -40px;
  right: 0;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  font: 45px/1 Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #fff;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  cursor: pointer;
  background: none;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 100;
}

#top_popup .popup_inner .pop_bnr {
  line-height: 0;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.168627451);
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  /*ヘッダー
  ------------------------------ */
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #FFFFFF;
    transform: translateX(150%) skew(15deg);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .nav {
    height: 100%;
    background: none;
    padding: 40px 0 10px;
    position: relative;
  }
  .nav li {
    margin-bottom: 5px;
  }
  .nav li a {
    display: block;
    font-weight: normal;
    font-size: 14px;
    padding: 5px 0;
    z-index: 50;
    position: relative;
    color: #fff;
    line-height: 1.3;
  }
  /* フッター
  ------------------------------ */
  footer {
    background: #FFFFFF;
    padding: 100px 5% 60px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  footer .copyright {
    font-size: 10px;
    color: #0B0B0B;
  }
  /* page--questionnaire
  ------------------------------ */
  .page--questionnaire .section-tit {
    margin-bottom: 20px;
  }
  .page--questionnaire .section--detail .section--tit {
    display: none;
  }
  .page--questionnaire .section--detail.section--input .section--tit {
    display: block !important;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 10px;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    font-weight: bold;
    margin: 20px 0 5px;
    border-left: 3px solid #FFE30D;
    padding-left: 5px;
  }
  .page--questionnaire .form--post select {
    width: 100%;
    border: 1px solid #888;
    border-radius: 3px;
    background: #FFFFFF;
  }
  .page--questionnaire .form--post input:not(.btn--main),
  .page--questionnaire .form--post textarea {
    border: 1px solid #888;
    border-radius: 3px;
    padding: 10px 5px 10px;
    margin: 0;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    padding: 10px 1em 10px 5px;
  }
  .page--questionnaire .form--post input[type=email] + input[type=email] {
    margin-top: 10px;
  }
  .page--questionnaire .form--post .form__selectbox {
    position: relative;
  }
  .page--questionnaire .form--post .form__selectbox label p {
    display: inline-block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
  }
  .page--questionnaire .form--post .form__selectbox input[type=checkbox],
  .page--questionnaire .form--post .form__selectbox input[type=radio],
  .page--questionnaire .form--post .form__selectbox input[type=file] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }
  .page--questionnaire .form--post .form__selectbox.form__error {
    color: #c31515;
  }
  .page--questionnaire .form--post .form__selectbox::after {
    position: absolute;
    top: 1em;
    right: 1em;
    transform: rotate(135deg);
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    position: relative;
  }
  .page--questionnaire .form--post label {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    width: 5%;
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding-right: 0;
  }
  .page--questionnaire .form--post input[type=radio]:before,
  .page--questionnaire .form--post input[type=checkbox]:before {
    width: 5%;
    height: auto;
    text-indent: 0;
    font-size: 16px;
    font-family: "FontAwesome";
    color: #888;
    padding-left: 1px;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 0;
  }
  .page--questionnaire .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--questionnaire .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--questionnaire .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #FFE30D;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #FFE30D;
  }
  .page--questionnaire .form--post .icon--required {
    position: relative;
  }
  .page--questionnaire .form--post .icon--required:before {
    color: #fff;
  }
  .page--questionnaire .block--error {
    background: #ffcbbe;
    padding: 7px 3%;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .page--questionnaire .block--error li:not(:last-child) {
    margin-bottom: 8px;
  }
  .page--questionnaire .block--error li {
    position: relative;
  }
  .page--questionnaire .section--detail .txt, .page--questionnaire .section--detail .center.txt--basic {
    text-align: center;
    margin-bottom: 10px;
  }
  .page--questionnaire .section--detail .form--confirm {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dl {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dd {
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }
  .page--questionnaire .section--detail .block--form dt {
    font-size: 12px;
  }
  .page--questionnaire .section--detail .block--form dd {
    font-weight: bold;
  }
  .page--questionnaire .section--detail.section--done .detail__btn a::before {
    background: none;
  }
  .page--questionnaire .btn--sub {
    width: 90% !important;
    margin: 0 auto 10px !important;
    border: none !important;
  }
  /* .page--privacy
  ------------------------------ */
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  /* .page--error
  ------------------------------ */
  .page--error .section-tit {
    text-align: center;
    margin-bottom: 40px;
  }
  .page--error .detail__btn {
    margin-top: 60px;
  }
}
/* tablet
============================== */
@media screen and (min-width: 600px) and (max-width: 960px) {
  html, body {
    font-size: 16px;
  }
  .detail #container {
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 1px) and (max-width: 961px) {
  .sp {
    display: none !important;
  }
  /*ヘッダー
  ------------------------------ */
  .drawer {
    overflow: auto;
    transform: translateX(150%) skew(15deg);
  }
  .drawer .drawer-inner {
    flex-wrap: wrap;
  }
  .drawer .drawer-inner li span.menu {
    height: 6vh;
  }
  .drawer .drawer-inner li span.menu::after {
    display: none;
  }
  .drawer .drawer-inner .g-nav {
    display: block;
    width: 100%;
    height: 50vh;
    padding: 110px 0;
  }
  .drawer .drawer-inner .g-nav li {
    display: inline-block;
    min-width: inherit;
  }
  .drawer .drawer-inner .img_airtist {
    width: 100%;
    height: 50vh;
  }
  /* フッター
  ------------------------------ */
  footer {
    background: #FFFFFF;
    padding: 100px 5% 60px;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  footer .copyright {
    font-size: 10px;
    color: #0B0B0B;
  }
  /* lsit
  ------------------------------ */
  .list--info li a .date {
    width: 5.5em;
  }
  .list--info li:not(:last-child) {
    margin-bottom: 10px;
  }
  .list--info li:before {
    display: none;
  }
  .block--category {
    font-size: 1.8vw;
    margin: 0;
  }
  .block--category li.block--category__add {
    padding-left: 30px;
  }
  .block--category li.block--category__add::before {
    content: "";
    height: 30px;
    left: 9px;
    top: -6px;
  }
  /* common
  ------------------------------ */
  body:not(.page--home) .wrap {
    padding-top: 80px;
  }
  .section--list,
  .section--detail {
    padding: 0 8% 20px 8.4vw;
  }
  .section--list::before,
  .section--detail::before {
    width: 80vw;
    height: 42vw;
  }
  /* .page--home
  ------------------------------ */
  .page--home .section--top .logo {
    top: 0;
    left: 15%;
    width: 70%;
  }
  .page--home .section--top .logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page--home .section--info,
  .page--home .section--media,
  .page--home .section--live {
    margin: 0 10% 80px 10%;
    padding: 80px 5% 90px 5%;
  }
  .page--home .section--live .list--info li a .date {
    width: 38%;
  }
  .page--home .section--live .list--info li:first-of-type {
    width: 40%;
  }
  .page--home .section--live .list--info li:first-of-type::after {
    font-size: 2vw;
    top: -0.8em;
  }
  .page--home .section--live .list--info li:first-of-type .date {
    font-size: 6vw;
  }
  .page--home .section--live .list--info li:first-of-type .tit {
    font-size: 2vw;
  }
  .page--home .section--live .list--info li:first-of-type .week {
    font-size: 2.5vw;
    transform: rotate(90deg);
  }
  .page--home .section--live .list--info li:not(:first-of-type) {
    width: 57%;
  }
  /* .page--info
  ------------------------------ */
  .page--info.category-2 .section--list .tit {
    width: calc(100% - 10.5em);
  }
  .page--info.category-3 .tit {
    margin-bottom: 0;
  }
  .page--info.category-11 .list--contents li {
    width: 48%;
    margin-right: 4%;
  }
  .page--info.category-11 .list--contents li:nth-child(even), .page--info.category-11 .list--contents li:nth-child(4n) {
    margin-right: 0;
  }
  /* .page--discography
  ------------------------------ */
  .page--disco .list--contents li {
    width: 48%;
    margin-right: 4%;
  }
  .page--disco .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--disco .list--contents li:nth-child(3n) {
    margin-right: 4%;
  }
  .page--disco .list--contents li .thumb {
    height: 100%;
  }
  /* page--questionnaire
  ------------------------------ */
  .page--questionnaire .section-tit {
    margin-bottom: 20px;
  }
  .page--questionnaire .section--detail .section--tit {
    display: none;
  }
  .page--questionnaire .section--detail.section--input .section--tit {
    display: block !important;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 10px;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    font-weight: bold;
    margin: 20px 0 5px;
    border-left: 3px solid #FFE30D;
    padding-left: 5px;
  }
  .page--questionnaire .form--post select {
    width: 100%;
    border: 1px solid #888;
    border-radius: 3px;
    background: #FFFFFF;
  }
  .page--questionnaire .form--post input:not(.btn--main),
  .page--questionnaire .form--post textarea {
    border: 1px solid #888;
    border-radius: 3px;
    padding: 10px 5px 10px;
    margin: 0;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    padding: 10px 1em 10px 5px;
  }
  .page--questionnaire .form--post input[type=email] + input[type=email] {
    margin-top: 10px;
  }
  .page--questionnaire .form--post .form__selectbox {
    position: relative;
  }
  .page--questionnaire .form--post .form__selectbox label p {
    display: inline-block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
  }
  .page--questionnaire .form--post .form__selectbox input[type=checkbox],
  .page--questionnaire .form--post .form__selectbox input[type=radio],
  .page--questionnaire .form--post .form__selectbox input[type=file] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }
  .page--questionnaire .form--post .form__selectbox.form__error {
    color: #c31515;
  }
  .page--questionnaire .form--post .form__selectbox::after {
    position: absolute;
    top: 1em;
    right: 1em;
    transform: rotate(135deg);
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    position: relative;
  }
  .page--questionnaire .form--post label {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    width: 5%;
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding-right: 0;
  }
  .page--questionnaire .form--post input[type=radio]:before,
  .page--questionnaire .form--post input[type=checkbox]:before {
    width: 5%;
    height: auto;
    text-indent: 0;
    font-size: 16px;
    font-family: "FontAwesome";
    color: #888;
    padding-left: 1px;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 0;
  }
  .page--questionnaire .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--questionnaire .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--questionnaire .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #FFE30D;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #FFE30D;
  }
  .page--questionnaire .form--post .icon--required {
    position: relative;
  }
  .page--questionnaire .form--post .icon--required:before {
    color: #fff;
  }
  .page--questionnaire .block--error {
    background: #ffcbbe;
    padding: 7px 3%;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .page--questionnaire .block--error li:not(:last-child) {
    margin-bottom: 8px;
  }
  .page--questionnaire .block--error li {
    position: relative;
  }
  .page--questionnaire .section--detail .txt, .page--questionnaire .section--detail .center.txt--basic {
    text-align: center;
    margin-bottom: 10px;
  }
  .page--questionnaire .section--detail .form--confirm {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dl {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .form--confirm dd {
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }
  .page--questionnaire .section--detail .block--form dt {
    font-size: 12px;
  }
  .page--questionnaire .section--detail .block--form dd {
    font-weight: bold;
  }
  .page--questionnaire .section--detail.section--done .detail__btn a::before {
    background: none;
  }
  .page--questionnaire .btn--sub {
    width: 90% !important;
    margin: 0 auto 10px !important;
    border: none !important;
  }
  /* .page--profile
  ------------------------------ */
  .page--profile.section--detail {
    justify-content: space-between;
  }
  .page--profile.section--detail .block--profile__item {
    width: 40%;
  }
  .page--profile.section--detail .block--profile__item a {
    width: 100%;
    font-size: 13px;
    padding: 20px 10px 17px;
  }
  /* .page--privacy
  ------------------------------ */
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  /* .page--error
  ------------------------------ */
  .page--error .section-tit {
    text-align: center;
    margin-bottom: 40px;
  }
  .page--error .detail__btn {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1px) and (max-width: 458px) {
  .header h1 {
    width: 50px;
    top: 8px;
    left: 9px;
  }
  body:not(.page--home) footer {
    padding: 40px 5%;
  }
  body:not(.page--home) .wrap {
    padding-bottom: 123px;
  }
  .drawer__btn {
    width: 80px;
    height: 60px;
  }
  .drawer__btn span {
    height: 12px;
  }
  .drawer__btn .mid {
    top: 22px;
  }
  .drawer__btn .btm {
    top: 44px;
  }
  .drawer .drawer-inner .g-nav {
    padding: 70px 10px;
    min-width: inherit;
  }
  .drawer-visible .drawer__btn .top {
    top: 30px;
  }
  .drawer-visible .drawer__btn .btm {
    top: 30px;
  }
  .drawer-inner li {
    height: 4vh;
  }
  .drawer-inner li a {
    padding-left: 10px;
  }
  .drawer-inner li span.menu {
    font-size: 4vh;
  }
  .list--info li a .tit {
    font-size: 14px;
  }
  .list--info li a .date {
    font-size: 13px;
  }
  .block--pager {
    margin: 10px auto 0;
    padding: 0;
  }
  .block--pager li {
    font-size: 6vw;
  }
  .section--list, .section--detail {
    padding: 0 5% 20px 5%;
  }
  .section--list .section-tit, .section--detail .section-tit {
    font-size: 7vw;
  }
  .section--list .list--info,
  .section--detail .block--main {
    padding: 20px 5%;
  }
  .section--detail .block--main .tit {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .block--category {
    margin-top: 2vw;
    font-size: 4vw;
  }
  .page--info.category-2 .list--info li a {
    flex-wrap: wrap;
  }
  .page--info.category-2 .list--info li a .date {
    margin-right: 5px;
  }
  .page--info.category-2 .list--info li a .category {
    text-align: left;
  }
  .page--info.category-2 .list--info li a .tit {
    width: 100%;
    margin-top: 9px;
  }
  .page--info.category-3 .block--date {
    font-size: 22px;
  }
  .page--info.category-3 .section--detail .tit {
    font-size: 16px;
  }
  .page--profile.section--detail .block--profile__item {
    width: 48%;
    margin: 0 auto;
  }
  .page--profile.section--detail .block--profile {
    align-items: stretch;
  }
  .page--profile.section--detail .block--main .thumb {
    margin-bottom: 30px;
  }
  .page--profile.section--detail .block--bio .artist-name {
    margin-bottom: 40px;
  }
  .page--profile.section--detail .block--profile__item a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page--disco .area--disco-detail .block--detail {
    padding: 30px 5%;
  }
  .page--disco .area--disco-detail .block--detail .tit {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .page--entry .block--contents .list--contents li {
    width: 100%;
  }
  .page--entry .table--site-info tr {
    border-bottom: 1px solid #222;
    display: block;
  }
  .page--entry .table--site-info th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
  }
  .page--entry .table--site-info td {
    padding: 10px;
  }
  .page--sns.section--detail .block--sns:first-child {
    padding: 30px 5% 0;
  }
  .page--sns.section--detail .block--sns:first-child .list--sns {
    padding-bottom: 20px;
  }
  .page--sns.section--detail .block--main .tit {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .page--sns.section--detail .list--sns li {
    padding-left: 0;
  }
  .page--sns.section--detail .list--sns li a {
    font-size: 5vw;
  }
  .page--sns.section--detail .block--sns {
    padding: 30px 5% 30px;
  }
  .page--attention.section--detail .block--main h3.tit {
    margin-top: 0;
    text-align: left;
  }
  .page--attention.section--detail .block--main .tit {
    font-size: 16px;
  }
}
/* ==============================================================
*  base
* ============================================================ */
/* ==============================================================
*  contents
* ============================================================ *//*# sourceMappingURL=official-service.css.map */