@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/* 2.3 form
------------------------------ */
.form dt {
  margin: 3em 0 1em;
}
.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: #FDFDFD;
  font-size: 11px;
  text-align: center;
  line-height: 1;
  padding: 1px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 4px;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number] {
  font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  background: #fff;
  border: 1px solid #000;
}
@media screen and (min-width: 961px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number] {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number] {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
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: #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 {
  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 {
  font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  height: auto;
  line-height: 1.6;
  border: 1px solid #000;
}
@media screen and (min-width: 961px) {
  textarea {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
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 #FDFDFD;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  padding-right: 1.5em;
  border: 1px solid #000;
}
@media screen and (min-width: 961px) {
  .form__select select {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.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] {
  -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] {
  -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] {
  -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;
}

/* ==============================================================
*  contents
* ============================================================ */
/* ==============================================================
*  base
* ============================================================ */
/* common.scss
============================== */
html,
body {
  height: 100%;
  width: 100%;
  background: #F8F8F8;
  color: #2B2927;
  padding: 0;
  font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-kerning: normal;
          font-kerning: normal;
}
@media screen and (min-width: 961px) {
  html,
  body {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  html,
  body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

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

.wrap {
  position: relative;
  min-height: 100%;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.svg-parts {
  display: none;
}

.footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.footer .copyright {
  color: #2B2927;
}

.page--home .wrap {
  opacity: 0;
  transition: all 0.6s ease-out 1s;
  -webkit-transition: all 0.6s ease-out 1s;
}
.page--home .wrap > h1.logo {
  display: none;
}
.page--home.loaded .section--top .keyvisual .thumb img {
  -webkit-animation: mask-anm 2s both 1.3s;
          animation: mask-anm 2s both 1.3s;
}
.page--home.loaded .wrap {
  opacity: 1;
  background: #F8F8F8;
}
@-webkit-keyframes mask-anm {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mask-anm {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.page--home .section--top {
  height: 98vh;
}
.page--home .section--top .keyvisual {
  position: fixed;
  pointer-events: none;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.page--home .section--top .keyvisual .ieonly {
  display: none;
}
@media screen and (min-width: 961px) {
  .page--home .section--top .keyvisual {
    top: -50px;
    right: -30px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--top .keyvisual {
    right: -35vw;
    top: 30%;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .page--home .section--top .keyvisual .not-ie {
    display: none !important;
  }
  .page--home .section--top .keyvisual .ieonly {
    display: block !important;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 961px), screen and (-ms-high-contrast: none) and (min-width: 961px) {
  .page--home .section--top .keyvisual {
    right: 0 !important;
  }
  .page--home .section--top .keyvisual .thumb {
    width: 64vw !important;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 1px) and (max-width: 960px), screen and (-ms-high-contrast: none) and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--top .keyvisual {
    right: -40vw !important;
  }
  .page--home .section--top .keyvisual .thumb {
    width: 80% !important;
  }
}
.page--home .section--top .keyvisual .thumb {
  z-index: 0;
}
@media screen and (min-width: 961px) {
  .page--home .section--top .keyvisual .thumb {
    width: 88vw;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  .page--home .section--top .keyvisual .thumb img {
    background-size: auto;
    background-position: right 150%;
    mask: url(/static/kinashinoritake/common/trapezium.svg) no-repeat;
    -webkit-mask: url(/static/kinashinoritake/common/trapezium.svg) no-repeat;
    -webkit-mask-size: cover;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--top .keyvisual .thumb {
    width: 700px;
  }
  .page--home .section--top .keyvisual .thumb img {
    mask: url(/static/kinashinoritake/common/trapezium_sp.svg) no-repeat;
    -webkit-mask: url(/static/kinashinoritake/common/trapezium_sp.svg) no-repeat;
    -webkit-mask-position: 80% bottom;
    -webkit-mask-size: contain;
  }
}
.page--home .section--top .keyvisual .thumb img {
  width: 100%;
  display: block;
}
.page--home .section--top .keyvisual.opacity {
  opacity: 0.5;
}
.page--home .section--top .name-wrap {
  position: relative;
  z-index: 1;
}
.page--home .section--top .name-wrap .site {
  display: inline;
  font-family: "Overpass", sans-serif;
  font-weight: 700;
}
.page--home .section--member .flex-wrap,
.page--home .section--member .block--contents,
.page--home .section--member .block--menu {
  z-index: 2;
  position: relative;
}
.page--home .section--member .block--contents.block--latest .block-inner {
  -webkit-transform: skewY(11deg);
          transform: skewY(11deg);
  background-image: url("/static/kinashinoritake/fanclub/art/kinashi_live4_cdsa.jpg");
  background-repeat: no-repeat;
  background-size: 200vw;
  background-position: center;
  background-position: center;
}
.page--home .section--member .block--contents.block--latest .block-inner .member-info, .page--home .section--member .block--contents.block--latest .block-inner .block-tit, .page--home .section--member .block--contents.block--latest .block-inner .list--contents {
  -webkit-transform: skewY(-11deg);
          transform: skewY(-11deg);
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--member .block--contents.block--latest .block-inner {
    background-size: 350% auto;
    background-position: center;
  }
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .page--home .section--member .block--contents.block--latest .block-inner {
    background-size: 200% auto !important;
  }
}
.page--home .section--member .block--menu {
  background-image: url("/static/kinashinoritake/fanclub/art/w_otetsuki.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page--home .section--member .block--menu .inner {
  background: #FDFDFD;
}
.page--home .section--member .block--menu .tit-logo {
  width: 147px;
}
.page--home .section--member .block--menu .tit-logo img {
  display: block;
  width: 100%;
}
.page--home .section--member .block--menu .nav__list--fc {
  font-weight: bold;
  font-size: 14px;
}
.page--home .section--member .block--menu .nav__list--fc li:not(:last-of-type) {
  margin-right: 2.5%;
}
.page--home .section--member .block--menu .list--support {
  font-size: 12px;
}
.page--home .section--member .block--menu .list--support li:not(:last-of-type) {
  margin-right: 2.5%;
}

@media screen and (min-width: 1px) and (max-width: 960px) {
  .login.page--home .section--member .block--contents.block--latest .block-inner {
    padding: 10px 0 110px;
    background-size: 430% auto;
    background-position: 57% 70%;
  }
}

.section-tit {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
}

.contents-tit {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  letter-spacing: 0.85em;
}

.scroll {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  letter-spacing: 0.1em;
}

.date {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.txt {
  margin: 0 0 1em;
}

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

.copyright {
  font-size: 12px;
  opacity: 0.3;
}
.copyright small {
  letter-spacing: 0.04em;
}

.block--pager {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 14px;
}

.detail__btn,
.list__more {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.25em;
  font-size: 14px;
}

.no-data {
  text-align: center;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.lead {
  margin-bottom: 30px;
  font-weight: 400;
}

.slick-slide img {
  width: 100%;
}

.slick-prev,
.slick-next {
  opacity: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: none;
  color: #FDFDFD;
  font-size: 0;
  line-height: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 99;
  cursor: pointer;
  border: none;
  outline: none;
  background: #FDFDFD;
  border-radius: 50%;
  margin-top: -20px;
  transition: 0.4s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.slick-prev {
  left: 40px;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.slick-next {
  right: 40px;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

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

.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 4px solid #C3A732;
  border-top: 4px solid #C3A732;
  position: absolute;
  top: 18px;
  transition: 0.3s;
}

.slick-prev::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  left: 20px;
}

.slick-next::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 20px;
}

.btn .btn--main {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border-radius: 3em;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 170px;
  height: 46px;
  line-height: 46px;
  background: #2B2927;
  letter-spacing: 0.08em;
  box-sizing: content-box;
  font-weight: 400;
  color: #FDFDFD;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    transition: all 0.4s ease;
  }
}
.btn .btn--main:hover {
  background: #C3A732;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    font-size: 13px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .btn .btn--main {
    font-size: 15px;
  }
}
.btn .btn--sub {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border-radius: 3em;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 170px;
  height: 46px;
  line-height: 46px;
  background: transparent;
  letter-spacing: 0.08em;
  box-sizing: content-box;
  font-weight: 400;
  font-size: 1em;
  color: #2B2927;
  border: 1px solid #2B2927;
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    transition: all 0.4s ease;
  }
}
.btn .btn--sub:hover {
  background: #C3A732;
  color: #fff;
}
.btn .btn--sub:hover {
  background: #2B2927;
  color: #FDFDFD;
}

.block--pager {
  text-align: center;
}
.block--pager li {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .block--pager li a,
  .block--pager li span {
    padding: 5px 0.6em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--pager li a,
  .block--pager li span {
    padding: 0 0.6em;
  }
}
.block--pager li.pager__item--older span, .block--pager li.pager__item--newer span {
  opacity: 0.5;
}
.block--pager li.pager__item--older {
  float: right;
}
.block--pager li.pager__item--older span::after,
.block--pager li.pager__item--older a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #2B2927;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
}
.block--pager li.pager__item--newer {
  float: left;
}
.block--pager li.pager__item--newer span::after,
.block--pager li.pager__item--newer a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #2B2927;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
}
.block--pager li.pager__item--current {
  color: #c5a621;
}
@media screen and (min-width: 961px) {
  .block--pager .pager__item--current,
  .block--pager .pager__item--other {
    margin-right: 2px;
  }
  .block--pager .pager__item--current a,
  .block--pager .pager__item--other a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .block--pager .pager__item--current a:hover,
  .block--pager .pager__item--other a:hover {
    color: #C3A732;
  }
  .block--pager .pager__item--older a:after,
  .block--pager .pager__item--newer a:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .block--pager .pager__item--older:hover a:after {
    border-color: #C3A732;
  }
  .block--pager .pager__item--newer:hover a:after {
    border-color: #C3A732;
  }
}

.block--category .list--sort li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  font-size: 0.85em;
}
.block--category .list--sort li input[type=checkbox] {
  display: none;
}
.block--category .list--sort li input[type=checkbox]:not(:checked) + .category {
  background: rgba(113, 113, 113, 0.22);
  color: #2B2927;
}
.block--category .list--sort li span {
  font-family: "Overpass", sans-serif;
  font-weight: 400;
}
.block--category .list--sort li.current span {
  background: #C3A732;
  color: #2B2927;
}
.block--category .list--sort li:hover a span {
  color: #C3A732;
}
.block--category .list--sort li:not(.current) span {
  background: #eee;
  color: #2B2927;
}

.block--month {
  margin: 0 0 20px;
}
.block--month .tit {
  float: left;
}
.block--month .tit span.month {
  font-size: 24px;
}
.block--month .tit span.year {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 961px) {
  .block--month .tit span.year {
    font-size: 15px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--month .tit span.year {
    font-size: 13px;
    padding-left: 8px;
  }
}

.block--share .share {
  font-size: 0.8em;
}
.block--share li {
  display: inline-block;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

@media screen and (min-width: 961px) {
  .nav__list--fc,
  .nav--support {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .nav__list--fc,
  .nav--support {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.nav__list--fc li,
.nav--support li {
  display: inline-block;
}

.list--login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.list--login li {
  display: inline-block;
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-right: 40px;
}
.list--login li:last-of-type {
  margin-right: 0;
}

.list__more,
.detail__btn {
  display: inline-block;
}
.list__more a,
.detail__btn a {
  position: relative;
  opacity: 0.7;
}
.list__more a:before,
.detail__btn a:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #707070;
  opacity: 0.7;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 961px) {
  .list__more a,
  .detail__btn a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list__more a:hover,
  .detail__btn a:hover {
    letter-spacing: 0.4em;
  }
}

.list--info li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 961px) {
  .list--info li {
    margin-bottom: 30px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--info li:hover {
    opacity: 0.5;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  .list--info li a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .list--info li .date {
    margin-right: 18px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .list--info li {
    margin-bottom: 22px;
  }
  .list--info li a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .list--info li .tit {
    line-height: 1.6;
  }
}
.list--info span.new {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  color: #C3A732;
  letter-spacing: 0.05em;
}
.list--info .date {
  opacity: 0.5;
}

.list--info.schedule .date {
  margin-right: 0;
  font-size: 18px;
}
@media screen and (min-width: 961px) {
  .list--info.schedule a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .list--info.schedule a .event-date {
    width: 25%;
  }
  .list--info.schedule a .tit-wrap {
    width: 75%;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .list--info.schedule li {
    margin-bottom: 24px;
  }
  .list--info.schedule a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .list--info.schedule a .event-date {
    width: 35%;
  }
  .list--info.schedule a .tit-wrap {
    width: 65%;
  }
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .list--info.schedule a .event-date {
    flex-basis: 120px;
  }
  .list--info.schedule a .tit-wrap {
    flex: 7;
  }
}
.list--info.schedule .event-date .date {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 1;
}
.list--info.schedule .event-date .event-end {
  position: relative;
}
.list--info.schedule .event-date .event-end:before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgba(43, 41, 39, 0.3);
  opacity: 0.4;
}
.list--info.schedule .tit-wrap {
  border-left: 1px solid rgba(43, 41, 39, 0.3);
}
.list--info.schedule .tit-wrap .category {
  font-family: "Overpass", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.4;
  line-height: 1;
}

.list--contents li {
  margin-right: 2%;
  width: 31%;
  display: inline-block;
}
.list--contents li:last-of-type {
  margin-right: 0;
}
.list--contents li a {
  width: 100%;
}
.list--contents li a .thumb {
  overflow: hidden;
}
.list--contents li a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
@media screen and (min-width: 961px) {
  .list--contents li a .thumb img {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--contents li a:hover .thumb img {
    -webkit-transform: scale(1.1) rotate(5deg);
            transform: scale(1.1) rotate(5deg);
  }
}

.ph {
  position: relative;
  margin-bottom: 30px;
  line-height: 0;
}
.ph .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video, .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video iframe, .youtube iframe {
  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;
  padding-top: 56.25%;
  background: #05010a;
  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;
}

.page--home .section--member .block--contents.block--sns .cokka {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 961px) {
  .page--home .section--member .block--contents.block--sns .cokka {
    width: 100px;
    top: -150px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--member .block--contents.block--sns .cokka {
    width: 70px;
    top: -100px;
  }
}
.page--home .section--member .block--contents.block--sns .cokka.delighter.started {
  -webkit-animation: cokka-walk 3s both 0.8s;
          animation: cokka-walk 3s both 0.8s;
}

@-webkit-keyframes cokka-walk {
  0% {
    -webkit-transform: translate(0) rotate(-5deg);
            transform: translate(0) rotate(-5deg);
  }
  10% {
    -webkit-transform: translate(-5px, -20px) rotate(2deg);
            transform: translate(-5px, -20px) rotate(2deg);
  }
  20% {
    -webkit-transform: translate(-15px, 0px) rotate(-2deg);
            transform: translate(-15px, 0px) rotate(-2deg);
  }
  40% {
    -webkit-transform: translate(-25px, -15px) rotate(8deg);
            transform: translate(-25px, -15px) rotate(8deg);
  }
  60% {
    -webkit-transform: translate(-35px, 10px) rotate(-4deg);
            transform: translate(-35px, 10px) rotate(-4deg);
  }
  80% {
    -webkit-transform: translate(-50px, -20px) rotate(2deg);
            transform: translate(-50px, -20px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(100%) rotate(0);
            transform: translateX(100%) rotate(0);
  }
}

@keyframes cokka-walk {
  0% {
    -webkit-transform: translate(0) rotate(-5deg);
            transform: translate(0) rotate(-5deg);
  }
  10% {
    -webkit-transform: translate(-5px, -20px) rotate(2deg);
            transform: translate(-5px, -20px) rotate(2deg);
  }
  20% {
    -webkit-transform: translate(-15px, 0px) rotate(-2deg);
            transform: translate(-15px, 0px) rotate(-2deg);
  }
  40% {
    -webkit-transform: translate(-25px, -15px) rotate(8deg);
            transform: translate(-25px, -15px) rotate(8deg);
  }
  60% {
    -webkit-transform: translate(-35px, 10px) rotate(-4deg);
            transform: translate(-35px, 10px) rotate(-4deg);
  }
  80% {
    -webkit-transform: translate(-50px, -20px) rotate(2deg);
            transform: translate(-50px, -20px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(100%) rotate(0);
            transform: translateX(100%) rotate(0);
  }
}
.page--movie.page--list .wrap,
.page--photo.page--list .wrap, .page--goods.page--list .wrap {
  background: #F8F8F8;
}
.page--movie .section--list,
.page--photo .section--list, .page--goods .section--list {
  z-index: 0;
  position: relative;
}
.page--movie .bg,
.page--photo .bg, .page--goods .bg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
}
.page--movie .bg::before,
.page--photo .bg::before, .page--goods .bg::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: -1;
  pointer-events: none;
  -webkit-filter: opacity(0.6);
          filter: opacity(0.6);
  -webkit-transform: skewY(11deg);
          transform: skewY(11deg);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .page--movie .bg::before,
  .page--photo .bg::before, .page--goods .bg::before {
    opacity: 0.4;
  }
}

.page--movie .bg {
  background-image: url("/static/kinashinoritake/fanclub/art/kinashi_live1_rwy0.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 961px) {
  .page--photo.page--list .header {
    color: #fff;
  }
}
.page--photo.page--list .header .g-nav li.menu-nav__member span {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.page--photo .bg {
  background-image: url("/static/kinashinoritake/fanclub/art/kinashi_live2_yk3r.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page--photo .list--contents li a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  -ms-user-select: none;
      user-select: none;
}

.page--goods .section--detail {
  position: relative;
  z-index: 0;
}
.page--goods .bg {
  background-image: url("/static/kinashinoritake/fanclub/art/kinashi_live3_l3pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#swipebox-slider .slide-loading {
  background-image: none !important;
}
#swipebox-slider .slide img {
  max-height: 80%;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.2;
}

#swipebox-action #swipebox-close {
  top: 10px;
  background: none;
}

#swipebox-action #swipebox-close::before,
#swipebox-action #swipebox-close::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 20px;
  transition: all 0.6s ease-out 0s;
}

#swipebox-action #swipebox-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#swipebox-action #swipebox-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next {
  background: none;
  color: #fff;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#swipebox-action #swipebox-prev {
  left: 3%;
}

#swipebox-action #swipebox-prev::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-left: 1em;
  margin-top: 1em;
}

#swipebox-action #swipebox-next {
  right: 3%;
}

#swipebox-action #swipebox-next::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
}

#swipebox-caption {
  width: 100%;
  max-width: 800px;
  padding: 0 8%;
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 50%;
  color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  a {
    cursor: pointer;
  }
  .wrap {
    overflow-x: hidden;
  }
  .wrap > h1.logo {
    display: none;
  }
  /* header
  ============================== */
  .header {
    width: 100%;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 999;
    transition: 0.2s;
  }
  .header .drawer__btn {
    display: none;
  }
  .header .nav--free,
  .header .nav--member {
    text-align: right;
  }
  .header .g-nav {
    position: absolute;
    right: 4%;
  }
  .header .g-nav li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.2;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    display: inline-block;
  }
  .header .g-nav li a {
    padding: 4px 0.5em;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .header .g-nav li a:hover {
    opacity: 0.5;
  }
  .header .g-nav li:last-of-type {
    margin-right: 0;
  }
  .header .g-nav li.menu-nav__member {
    position: relative;
    margin-bottom: 6px;
  }
  .header .g-nav li.menu-nav__member span {
    padding: 4px 0.5em;
    cursor: pointer;
  }
  .header .g-nav li.menu-nav__member span svg {
    width: 80px;
    height: 26px;
    vertical-align: middle;
    transition-delay: 0.2s;
    fill: #2B2927;
  }
  .header .g-nav li.menu-nav__member .nav__list--fc {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    opacity: 0;
    background: #2B2927;
    color: #FDFDFD;
    padding: 20px 10px 5px;
    flex-direction: column;
    position: absolute;
    top: 110%;
    left: 0;
    pointer-events: none;
  }
  .header .g-nav li.menu-nav__member .nav__list--fc li {
    white-space: nowrap;
  }
  .header .g-nav li.menu-nav__member:hover .nav__list--fc {
    opacity: 1;
    pointer-events: visible;
  }
  .header.show .g-nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* footer
  ============================== */
  .footer .inner {
    position: relative;
  }
  .footer .copyright {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    position: absolute;
    right: 0;
    bottom: 70px;
  }
  .footer .list--sns {
    margin-bottom: 30px;
  }
  .footer .list--sns li {
    position: relative;
  }
  .footer .list--sns li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .footer .list--sns li a:hover {
    opacity: 0.5;
  }
  .footer .list--sns li:not(:first-of-type):before {
    position: absolute;
    top: 50%;
    left: -45px;
    content: "";
    width: 28px;
    height: 1px;
    background: #2B2927;
  }
  .footer .list--sns li:not(:last-of-type) {
    margin-right: 55px;
  }
  .footer .list--bnr li {
    display: inline-block;
    width: 200px;
    line-height: 0;
    margin-right: 1%;
  }
  .footer .list--bnr li img {
    display: block;
    width: 100%;
  }
  .footer .list--bnr li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .footer .list--bnr li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .footer .list--bnr li:nth-child(5n) {
    margin-right: 0;
  }
  body.page--home footer {
    padding: 0 0 100px;
    position: inherit;
    background: #f8f8f8;
  }
  body.page--home footer .inner {
    padding: 0 7%;
  }
  body.page--home footer .inner:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 170px 102vw;
    border-color: transparent transparent #f8f8f8 transparent;
    position: absolute;
    top: -170px;
    left: 0;
    z-index: -1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  body.page--home footer .list--sns {
    font-weight: 600;
    font-size: 13px;
  }
  body.page--home footer .list--sns li {
    display: inline-block;
  }
  body:not(.page--home) .footer {
    padding: 30px 0;
  }
  body:not(.page--home) .footer .list--sns,
  body:not(.page--home) .footer .list--bnr {
    display: none;
  }
  /* page--home
  ============================== */
  .page--home .header .g-nav {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    transition: -webkit-transform 0.4s ease-out 0.3s;
    transition: transform 0.4s ease-out 0.3s;
    transition: transform 0.4s ease-out 0.3s, -webkit-transform 0.4s ease-out 0.3s;
    -webkit-transition: transform 0.4s ease-out 0.3s;
    pointer-events: none;
  }
  .page--home .header.show .g-nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: visible;
  }
  .page--home .header.color {
    color: #FDFDFD;
    mix-blend-mode: difference;
  }
  .page--home .header.color svg {
    fill: #FDFDFD !important;
  }
  .page--home .section--top {
    position: relative;
    height: 82vh;
  }
  .page--home .section--top .g-nav-top {
    position: absolute;
    top: 110px;
    margin-left: 4%;
    z-index: 10;
  }
  .page--home .section--top .g-nav-top li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .page--home .section--top .g-nav-top li a {
    padding: 4px 0.5em;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--top .g-nav-top li a:hover {
    opacity: 0.5;
  }
  .page--home .section--top .g-nav-top li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--top .g-nav-top li.menu-nav__member {
    position: relative;
    margin-top: 20px;
    margin-bottom: 6px;
  }
  .page--home .section--top .g-nav-top li.menu-nav__member img {
    cursor: pointer;
    width: 90px;
    vertical-align: middle;
  }
  .page--home .section--top .g-nav-top li.join, .page--home .section--top .g-nav-top li.login {
    font-size: 12px;
  }
  .page--home .section--top .name-wrap {
    position: absolute;
    top: 50%;
    left: 10%;
    min-width: 550px;
    width: 34%;
  }
  .page--home .section--top .scroll {
    position: absolute;
    top: 87vh;
    left: 0;
    margin-left: 4%;
  }
  .page--home .section--top .scroll span {
    -webkit-animation: scroll 1.4s ease 1s infinite;
            animation: scroll 1.4s ease 1s infinite;
    width: 65px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 50%;
    right: -75px;
    display: inline-block;
  }
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(100%, 0);
              transform: translate(100%, 0);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      -webkit-transform-origin: top;
              transform-origin: top;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(100%, 0);
              transform: translate(100%, 0);
      -webkit-transform-origin: bottom;
              transform-origin: bottom;
    }
  }
  .page--home .section--bnr {
    margin: 90px 0 130px 0;
  }
  .page--home .section--bnr .slick-list {
    overflow: visible;
  }
  .page--home .section--bnr .list--bnr .slick-prev {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page--home .section--bnr .list--bnr .slick-next {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev,
  .page--home .section--bnr .list--bnr:hover .slick-next {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev:hover,
  .page--home .section--bnr .list--bnr:hover .slick-next:hover {
    background-color: #C3A732;
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev:hover:after,
  .page--home .section--bnr .list--bnr:hover .slick-next:hover:after {
    border-color: #FDFDFD;
  }
  .page--home .section--bnr .list--bnr a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--bnr .list--bnr li {
    margin-right: 24px;
  }
  .page--home .section--bnr .list--bnr li a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .page--home .section--bnr .list--bnr li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--info {
    margin: 0 4% 230px;
    z-index: 2;
    position: relative;
  }
  .page--home .section--info .block--tit {
    position: relative;
  }
  .page--home .section--info .block--tit .contents-tit {
    font-size: 18px;
    line-height: 1;
  }
  .page--home .section--info .block--tit span {
    display: inline-block;
    line-height: 0;
    width: 1px;
    height: 35px;
    background: #707070;
    margin: 20px 0 18px;
  }
  .page--home .section--info .block--news {
    margin-bottom: 100px;
  }
  .page--home .section--info .block--schedule {
    margin-bottom: 100px;
  }
  .page--home .section--info .block--schedule .event-date {
    flex-basis: 120px;
    position: relative;
  }
  .page--home .section--info .block--schedule .event-date .date {
    font-size: 18px;
  }
  .page--home .section--info .block--schedule .event-date .event-end {
    margin-top: 10px;
  }
  .page--home .section--info .block--schedule .event-date .event-end:before {
    position: absolute;
    top: -11px;
    left: 37%;
  }
  .page--home .section--info .block--schedule .tit-wrap {
    margin-left: 20px;
  }
  .page--home .section--info .block--schedule .category {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .page--home .section--info .block--schedule .tit {
    font-size: 15px;
  }
  .page--home .section--info .list--info {
    margin-bottom: 24px;
    width: 60%;
  }
  .page--home .section--member .flex-wrap {
    margin-left: 2%;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--member .member-info {
    background-color: #2B2927;
    padding: 3% 2%;
    margin: 80px auto 100px;
    position: relative;
    z-index: 1;
    width: 70%;
    border-radius: 6px;
  }
  .page--home .section--member .member-info .logo {
    width: 30%;
    background: linear-gradient(-15deg, #6f2a0f, #daaf08, #e6c750, #daaf08, #6f2a0f);
    -webkit-mask-image: url(/static/kinashinoritake/common/logo-fc.svg);
            mask-image: url(/static/kinashinoritake/common/logo-fc.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .page--home .section--member .member-info .logo img {
    opacity: 0;
  }
  .page--home .section--member .member-info .list--data {
    text-align: center;
  }
  .page--home .section--member .member-info .status {
    position: relative;
    z-index: 2;
    color: #FDFDFD;
    margin-top: 5px;
  }
  .page--home .section--member .member-info .status .tit {
    display: inline-block;
  }
  .page--home .section--member .member-info .status .item-num {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    display: inline-block;
  }
  .page--home .section--member .member-info .status .item-num .number {
    font-size: 13px;
  }
  .page--home .section--member .member-info .status .item-name {
    display: inline-block;
    margin: 0 0 4px 5px;
  }
  .page--home .section--member .member-info .status .item-limit .kigen {
    background: #4e4e4e;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 11px;
  }
  .page--home .section--member .member-info .status .item-limit .auto {
    display: inline-block;
    color: #C3A732;
    font-size: 11px;
    margin-left: 15px;
  }
  .page--home .section--member .member-info .status .item-limit .caution a {
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: inline-block;
    cursor: pointer;
  }
  .page--home .section--member .member-info .status .item-limit .caution a:hover {
    text-decoration: none;
  }
  .page--home .section--member .section-tit {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
    display: block;
    width: 38%;
  }
  .page--home .section--member .logins-wrap {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  .page--home .section--member .block--login {
    -webkit-transform: rotate(-350deg);
            transform: rotate(-350deg);
  }
  .page--home .section--member .block--login .btn {
    display: inline-block;
  }
  .page--home .section--member .txt-viper {
    margin-top: 16px;
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  .page--home .section--member .block--contents {
    padding: 50px 7% 80px;
  }
  .page--home .section--member .block--contents .list--contents li {
    margin-right: 0;
    width: 30%;
    opacity: 0;
    transition: opacity 1.2s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 1.2s ease-out, transform 0.6s ease-out;
    transition: opacity 1.2s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  }
  .page--home .section--member .block--contents .list--contents li:nth-of-type(2n) {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  .page--home .section--member .block--contents .list--contents li:nth-of-type(3), .page--home .section--member .block--contents .list--contents li:nth-of-type(5) {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  .page--home .section--member .block--contents .list--contents li:nth-of-type(6) {
    -webkit-transform: translateY(-210px);
            transform: translateY(-210px);
  }
  .page--home .section--member .block--contents .list--contents li:nth-of-type(2), .page--home .section--member .block--contents .list--contents li:nth-of-type(5) {
    margin: 0 4%;
  }
  .page--home .section--member .block--contents .list--contents li.new {
    position: relative;
  }
  .page--home .section--member .block--contents .list--contents li.new .thumb:after {
    content: "";
    background-image: url(/static/kinashinoritake/fanclub/cokka/cokka_new.png);
    position: absolute;
    top: 0%;
    left: -3%;
    width: 80px;
    height: 80px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-10deg) translate(60px, 0);
            transform: rotate(-10deg) translate(60px, 0);
    transition: all 0.4s ease-out 1s;
    -webkit-transition: all 0.4s ease-out 1s;
  }
  .page--home .section--member .block--contents .list--contents li.no-data {
    width: 100%;
    margin: 100px auto;
    color: #FDFDFD;
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li {
    opacity: 1;
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li:nth-of-type(2n) {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li:nth-of-type(3), .page--home .section--member .block--contents .list--contents.delighter.started li:nth-of-type(5) {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li:nth-of-type(6) {
    -webkit-transform: translateY(210px);
            transform: translateY(210px);
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li.new .thumb:after {
    -webkit-transform: rotate(-10deg) translate(0, 0);
            transform: rotate(-10deg) translate(0, 0);
  }
  .page--home .section--member .block--contents .block-tit {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.4em;
    color: #FDFDFD;
  }
  .page--home .section--member .block--contents .thumb {
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
  }
  .page--home .section--member .block--contents .tit-wrap {
    padding: 15px 2%;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
  .page--home .section--member .block--contents .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #aaaa21;
  }
  .page--home .section--member .block--contents .tit-wrap .tit {
    font-size: 14px;
    color: #FDFDFD;
    margin-bottom: 4px;
    position: relative;
  }
  .page--home .section--member .block--contents .tit-wrap .author {
    color: #FDFDFD;
    opacity: 0.85;
    font-size: 11px;
    position: relative;
    padding-left: 26px;
  }
  .page--home .section--member .block--contents .tit-wrap .author:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 16px;
    height: 1px;
    background: #FDFDFD;
  }
  .page--home .section--member .block--contents .tit-wrap .date {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--home .section--member .block--contents.block--latest {
    padding: 0;
    margin-bottom: 30px;
  }
  .page--home .section--member .block--contents.block--latest .block-inner {
    padding: 80px 7% 280px;
  }
  .page--home .section--member .block--contents.block--latest .tit-wrap {
    background-color: #000;
  }
  .page--home .section--member .block--contents.block--sns {
    background-color: #b9b6a9;
    padding: 30px 7% 200px;
  }
  .page--home .section--member .block--contents.block--sns:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15vw 102vw;
    border-color: transparent transparent #b9b6a9 transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    top: -14.8vw;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .page--home .section--member .block--contents.block--sns .thumb {
    margin-bottom: 0;
  }
  .page--home .section--member .block--contents.block--sns .tit-wrap {
    background: transparent;
  }
  .page--home .section--member .block--contents.block--sns .tit-wrap .tit {
    display: none;
  }
  .page--home .section--member .block--contents.block--sns .tit-wrap .date,
  .page--home .section--member .block--contents.block--sns .tit-wrap .author {
    display: inline-block;
  }
  .page--home .section--member .block--menu {
    position: relative;
    padding: 300px 7% 340px;
  }
  .page--home .section--member .block--menu .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--member .block--menu:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15vw 102vw;
    border-color: transparent transparent #b9b6a9 transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    top: -0.15vw;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .page--home .section--member .block--menu .tit-logo {
    width: 9%;
    flex-basis: 147px;
  }
  .page--home .section--member .block--menu .nav-wrap {
    width: 82%;
  }
  .page--home .section--member .block--menu .inner {
    padding: 60px 4%;
  }
  .page--home .section--member .block--menu .nav__list--fc {
    margin-bottom: 10px;
  }
  .page--home .section--member .block--menu .nav__list--fc .fc_withdrawal,
  .page--home .section--member .block--menu .nav__list--fc .fc_entry {
    position: relative;
    padding-left: 65px;
  }
  .page--home .section--member .block--menu .nav__list--fc .fc_withdrawal:before,
  .page--home .section--member .block--menu .nav__list--fc .fc_entry:before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "";
    width: 42px;
    height: 1px;
    background: #707070;
  }
  .page--home .section--member .block--menu .list--support li {
    display: inline-block;
    margin-right: 2%;
  }
  .page--home .section--member .block--menu .list--support li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--member .block--menu .nav__list--fc li a,
  .page--home .section--member .block--menu .list--support li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--member .block--menu .nav__list--fc li a:hover,
  .page--home .section--member .block--menu .list--support li a:hover {
    opacity: 0.5;
  }
  body:not(.page--home) .wrap {
    padding-bottom: 200px;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 0 60px;
  }
  body:not(.page--home) .section--list .block--tit,
  body:not(.page--home) .section--detail .block--tit {
    position: relative;
  }
  body:not(.page--home) .section--list .block--tit .section--tit,
  body:not(.page--home) .section--detail .block--tit .section--tit {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.85em;
  }
  body:not(.page--home) .section--list .block--tit span,
  body:not(.page--home) .section--detail .block--tit span {
    display: inline-block;
    line-height: 0;
    width: 1px;
    height: 35px;
    background: #707070;
    margin: 20px 0 18px;
  }
  body:not(.page--home) .section--list .detail__btn,
  body:not(.page--home) .section--detail .detail__btn {
    margin-top: 60px;
  }
  .page--info .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
  }
  .page--info .list--info {
    margin-bottom: 60px;
  }
  .page--info .list--info li {
    margin-bottom: 20px;
  }
  .page--info .list--info a {
    padding: 18px 0;
  }
  .page--info .list--info .tit-wrap {
    flex: 24;
  }
  .page--info .list--info li.no-data {
    margin: 200px auto;
  }
  .page--info .section--detail .date {
    float: left;
  }
  .page--info .section--detail .block--share {
    float: right;
    clear: right;
  }
  .page--info .section--detail .block--share .share {
    font-size: 12px;
    font-family: "Overpass", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.5;
    line-height: 1;
  }
  .page--info .section--detail .block--share li {
    font-size: 20px;
    margin: 0 0 0 15px;
    vertical-align: middle;
  }
  .page--info .section--detail .block--share li a i {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--info .section--detail .block--share li a:hover i {
    color: #C3A732;
  }
  .page--info .section--detail .block--share li a:hover svg {
    fill: #C3A732;
  }
  .page--info .section--detail .block--share li.lineIco {
    position: relative;
  }
  .page--info .section--detail .block--share li.lineIco svg {
    position: absolute;
    top: -10px;
  }
  .page--info .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .page--info .section--detail span.new {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    color: #C3A732;
    letter-spacing: 0.05em;
    font-size: 0.75em;
    margin-left: 2px;
  }
  .page--info .section--detail .txt {
    font-size: 15px;
    padding: 70px 0 20px;
  }
  .page--info .section--detail .txt * a {
    color: #C3A732;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    text-decoration: underline;
  }
  .page--info .section--detail .txt * a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .page--schedule .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
  }
  .page--schedule .date {
    font-size: 20px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
  }
  .page--schedule .category {
    display: inline-block;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
  }
  .page--schedule .section--list {
    padding: 150px 0 200px;
  }
  .page--schedule .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--schedule .section--list .block--category .list--sort li span {
    font-size: 13px;
    padding: 1px 4px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--schedule .section--list .block--category .list--sort li:hover span {
    background: #C3A732;
    color: #FDFDFD;
  }
  .page--schedule .section--list .list--month li {
    font-size: 13px;
  }
  .page--schedule .section--list .list--month li.prev {
    margin-right: 30px;
  }
  .page--schedule .section--list .no-data {
    margin: 200px auto;
  }
  .page--schedule .section--list .list--info.schedule {
    margin-bottom: 60px;
  }
  .page--schedule .section--list .list--info.schedule .event-date {
    width: 16%;
  }
  .page--schedule .section--list .list--info.schedule .event-date .event-end {
    margin-top: 15px;
  }
  .page--schedule .section--list .list--info.schedule .event-date .event-end:before {
    position: absolute;
    top: -11px;
    left: 37%;
  }
  .page--schedule .section--detail .date {
    float: none;
    display: inline-block;
    letter-spacing: 0.15em;
    font-family: "Overpass", sans-serif;
    font-weight: 600;
  }
  .page--schedule .section--detail .date > p {
    display: inline-block;
  }
  .page--schedule .section--detail .event-date .category {
    font-size: 14px;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0.4;
    line-height: 1;
    margin-left: 4px;
  }
  .page--schedule .section--detail .event-date .event-date--end {
    position: relative;
    margin-left: 2em;
  }
  .page--schedule .section--detail .event-date .event-date--end:before {
    width: 30px;
    height: 1px;
    background-color: rgba(43, 41, 39, 0.3);
    opacity: 0.4;
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
  }
  .page--discography .date,
  .page--discography .category {
    display: inline-block;
  }
  .page--discography .category {
    font-size: 12px;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .page--discography .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--discography .section--list .block--category .list--sort li span {
    font-size: 13px;
    padding: 1px 4px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--discography .section--list .block--category .list--sort li:hover span {
    background: #C3A732;
    color: #FDFDFD;
  }
  .page--discography .section--list .list--horizontal {
    margin-bottom: 60px;
  }
  .page--discography .section--list .list--horizontal li {
    width: 100%;
    margin-bottom: 40px;
  }
  .page--discography .section--list .list--horizontal li a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--discography .section--list .list--horizontal li a:hover .block--txt {
    opacity: 0.5;
  }
  .page--discography .section--list .list--horizontal li a:hover .thumb img {
    -webkit-transform: scale(1.1) rotate(5deg);
            transform: scale(1.1) rotate(5deg);
  }
  .page--discography .section--list .list--horizontal li .thumb {
    overflow: hidden;
    position: relative;
    width: 40%;
    margin-right: 5%;
  }
  .page--discography .section--list .list--horizontal li .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background-size: contain;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--discography .section--list .list--horizontal li .thumb .blur {
    width: 200%;
    height: 200%;
    position: absolute;
    top: -50%;
    left: -50%;
    z-index: 1;
  }
  .page--discography .section--list .list--horizontal li .thumb .blur img {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  .page--discography .section--list .list--horizontal li .tit {
    margin-bottom: 16px;
  }
  .page--discography .section--list .list--horizontal li .date {
    font-size: 14px;
  }
  .page--discography .section--list .list--horizontal li .block--txt {
    width: 55%;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--discography .section--list .list--horizontal li .block--txt .category {
    opacity: 0.4;
  }
  .page--discography .section--list .list--horizontal li.no-data {
    margin: 200px auto;
  }
  .page--discography .header--disco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    overflow: hidden;
    z-index: 1;
  }
  .page--discography .header--disco .header--disco_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 0.7;
    -webkit-filter: blur(8px);
            filter: blur(8px);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .page--discography .header--disco:before {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    width: 200%;
    height: 200%;
    background: #F8F8F8;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    z-index: 1;
  }
  .page--discography .section--detail {
    position: relative;
    z-index: 2;
  }
  .page--discography .section--detail .list--jacket {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .page--discography .section--detail .list--jacket li {
    margin-right: 4%;
    width: 48%;
  }
  .page--discography .section--detail .list--jacket li:last-of-type {
    margin-right: 0;
  }
  .page--discography .section--detail .tit--wrap {
    margin: 10px 0 30px;
  }
  .page--discography .section--detail .tit--wrap .tit {
    font-size: 20px;
  }
  .page--discography .section--detail .block--comment a, .page--discography .section--detail .block--comment * a {
    color: #C3A732;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    text-decoration: underline;
  }
  .page--discography .section--detail .block--comment a:hover, .page--discography .section--detail .block--comment * a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .page--movie .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 0.4em;
  }
  .page--movie .thumb {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 50%;
  }
  .page--movie .tit-wrap {
    padding: 15px 2.5%;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    background: #000;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--movie .tit-wrap {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .page--movie .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #aaaa21;
  }
  .page--movie .tit-wrap .tit {
    font-size: 14px;
    color: #FDFDFD;
    margin-bottom: 4px;
    position: relative;
    line-height: 1.6;
  }
  .page--movie .tit-wrap .date {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--movie .list--contents {
    margin: 80px 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--movie .list--contents li {
    margin-bottom: 70px;
    width: 48%;
    margin-right: 4%;
  }
  .page--movie .list--contents li:nth-of-type(even) {
    margin-right: 0;
  }
  .page--movie .list--contents li.no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--movie .section--list .section--tit {
    text-align: center;
  }
  .page--movie .section--list .list--contents li.new {
    position: relative;
  }
  .page--movie .section--list .list--contents li.new .thumb:after {
    content: "";
    background-image: url(/static/kinashinoritake/fanclub/cokka/cokka_new.png);
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  .page--movie .section--list .block--pager li.pager__item--current {
    color: #2B2927;
    background-color: #C3A732;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    padding-left: 5px;
  }
  .page--movie .section--detail .section--tit {
    text-align: left;
    letter-spacing: 0.25em;
    font-style: normal;
  }
  .page--movie .section--detail .block--player {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .tit {
    font-size: 20px;
    line-height: 1.6;
  }
  .page--photo .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 0.4em;
  }
  .page--photo .thumb {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 50%;
  }
  .page--photo .tit-wrap {
    padding: 15px 2%;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    background: #000;
  }
  .page--photo .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #aaaa21;
  }
  .page--photo .tit-wrap .tit {
    font-size: 14px;
    color: #FDFDFD;
    margin-bottom: 4px;
    position: relative;
    line-height: 1.6;
  }
  .page--photo .tit-wrap .date {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--photo .list--contents {
    margin: 80px 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--photo .list--contents li {
    margin-bottom: 70px;
  }
  .page--photo .list--contents li:nth-of-type(3n) {
    margin-right: 0;
  }
  .page--photo .list--contents li.no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--photo .section--list .section--tit {
    text-align: center;
  }
  .page--photo .section--list .block--pager li.pager__item--current {
    color: #2B2927;
    background-color: #C3A732;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    padding-left: 5px;
  }
  .page--photo .section--detail .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--photo .section--detail .section--tit {
    text-align: left;
    letter-spacing: 0.25em;
    font-style: normal;
  }
  .page--photo.page--list .header .g-nav li.menu-nav__member svg {
    fill: #FDFDFD !important;
  }
  .page--entry [class^=cokka] {
    width: 150px;
    height: 150px;
    display: block;
    line-height: 0;
  }
  .page--entry .cokka1 {
    width: 13vw;
    height: 13vw;
    position: absolute;
    top: 15%;
    left: -3%;
    -webkit-transform: rotate(44deg);
            transform: rotate(44deg);
  }
  .page--entry .cokka2 {
    position: absolute;
    top: 39%;
    left: -18px;
    -webkit-transform: rotate(59deg);
            transform: rotate(59deg);
  }
  .page--entry .cokka3 {
    position: absolute;
    top: 30%;
    right: -29px;
    -webkit-transform: rotate(-38deg);
            transform: rotate(-38deg);
  }
  .page--entry .section--detail .section--tit {
    display: none;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 650px;
    margin: 0 auto 40px;
    border: 1px solid #2B2927;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 175px;
    padding: 20px;
    border-bottom: 1px solid #2B2927;
    font-weight: normal;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 20px;
    border-bottom: 1px solid #2B2927;
    border-left: 1px dotted #2B2927;
  }
  .page--entry .section--detail .block--logo {
    margin-bottom: 50px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 400px;
    display: block;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail .block--logo .lead {
    margin-bottom: 0;
  }
  .page--entry .section--detail .block-tit {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .page--entry .section--detail .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 36px 4% 20px;
    width: 48%;
    height: 230px;
    margin: 0 3% 40px 0;
    border: 1px solid #2B2927;
    background: #f8f8f8;
  }
  .page--entry .section--detail .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1;
    text-align: center;
  }
  .page--entry .section--detail .list--contents li .text {
    font-size: 14px;
  }
  .page--entry .section--detail .list--contents .list--sub {
    margin-bottom: 10px;
  }
  .page--entry .section--detail .list--contents .list--sub li {
    border: none;
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .page--entry .section--detail .block--intro {
    margin-bottom: 60px;
    position: relative;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 50px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.95em;
    font-style: italic;
  }
  .page--entry .section--detail .block--intro .cokka4 {
    margin: 0 auto;
  }
  .page--entry .section--detail .block--tokuten .block-tit {
    font-weight: 600;
  }
  .page--entry .section--detail .block--tokuten .inner {
    padding: 36px 4% 20px;
    width: 100%;
    height: 300px;
    margin-bottom: 100px !important;
    border: 1px solid #2B2927;
    background: #f8f8f8;
  }
  .page--entry .section--detail .block--tokuten .item {
    position: relative;
    top: -42%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
  .page--entry .section--detail .block--tokuten .item li {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .page--entry .section--detail .block--tokuten .item li p {
    font-size: 0.85em;
    margin-top: 30px;
  }
  .page--entry .section--detail .block--tokuten .item li.card {
    margin-left: 4%;
  }
  .page--entry .section--detail .block--tokuten .card img {
    width: 300px;
    border-radius: 7px;
  }
  .page--entry .section--detail .block--tokuten .badge img {
    width: 90px;
    border-radius: 50%;
  }
  .page--entry .section--detail .entry {
    margin-bottom: 50px;
  }
  .page--entry .section--detail .btn .btn--main {
    font-size: 1em;
    width: 200px;
    height: 50px;
    line-height: 50px;
  }
  .page--profile .block--tit {
    display: none;
  }
  .page--profile .ph {
    line-height: 0;
    height: 600px;
  }
  .page--profile .ph img {
    width: 100%;
    display: block;
  }
  .page--profile .name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .page--profile .birthday {
    margin-bottom: 20px;
  }
  .page--profile .birthday > span {
    font-size: 12px;
    opacity: 0.5;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    padding-right: 0.65em;
    letter-spacing: 0.08em;
  }
  .page--profile .txt-wrap {
    margin-top: 70px;
  }
  .page--organization .list--vertical .group {
    margin-bottom: 60px;
    /*文言来るならとる↓*/
  }
  .page--organization .list--vertical .group.group2 {
    margin-top: 100px;
  }
  .page--organization .list--vertical .group.group2, .page--organization .list--vertical .group.group3, .page--organization .list--vertical .group.group4, .page--organization .list--vertical .group.group5 {
    margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--organization .list--vertical .group.group2 > div, .page--organization .list--vertical .group.group3 > div, .page--organization .list--vertical .group.group4 > div, .page--organization .list--vertical .group.group5 > div {
    width: 30%;
    margin-bottom: 40px;
  }
  .page--organization .list--vertical .group.group2 > div:nth-child(3n), .page--organization .list--vertical .group.group3 > div:nth-child(3n), .page--organization .list--vertical .group.group4 > div:nth-child(3n), .page--organization .list--vertical .group.group5 > div:nth-child(3n) {
    margin-left: 2%;
  }
  .page--organization .list--vertical .group.group2 > div:first-of-type, .page--organization .list--vertical .group.group2 > div:nth-child(3n+1), .page--organization .list--vertical .group.group3 > div:first-of-type, .page--organization .list--vertical .group.group3 > div:nth-child(3n+1), .page--organization .list--vertical .group.group4 > div:first-of-type, .page--organization .list--vertical .group.group4 > div:nth-child(3n+1), .page--organization .list--vertical .group.group5 > div:first-of-type, .page--organization .list--vertical .group.group5 > div:nth-child(3n+1) {
    margin-right: 2%;
  }
  .page--organization .list--vertical .group.group2 .profile, .page--organization .list--vertical .group.group3 .profile, .page--organization .list--vertical .group.group4 .profile, .page--organization .list--vertical .group.group5 .profile {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: active) and (-ms-high-contrast: none), screen and (min-width: 961px) and (-ms-high-contrast: none) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) and (-ms-high-contrast: none) {
  .page--organization .list--vertical .group.group2 .profile, .page--organization .list--vertical .group.group3 .profile, .page--organization .list--vertical .group.group4 .profile, .page--organization .list--vertical .group.group5 .profile {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .page--organization .list--vertical .group .position {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .page--organization .list--vertical .group .profile {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-top: 22px;
  }
  .page--organization .list--vertical .group .profile figure.ph {
    line-height: 0;
    margin-right: 30px;
    flex: 2;
  }
  .page--organization .list--vertical .group .profile figure + div {
    flex: 5;
  }
  .page--organization .list--vertical .group .profile .name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page--organization .list--vertical .group .profile .name > span {
    font-size: 0.75em;
    margin-left: 1em;
    opacity: 0.7;
  }
  .page--organization .list--vertical .group .profile .message {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page--organization .list--vertical .group .profile .link a {
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--organization .list--vertical .group .profile .link a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .page--organization .list--vertical .group.dancers .name {
    font-size: 17px;
  }
  .page--goods .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 0.4em;
    text-align: center;
  }
  .page--goods .list--contents li.no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--goods .list--contents li.no-data .txt {
    margin-top: 10px;
  }
  .page--support .section--tit {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 1.5em;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    text-decoration: underline;
    font-weight: bold;
  }
  .page--support .section--detail .list--support a:hover {
    text-decoration: none;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 4px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 20px;
  }
  .page--support .section--detail .list--support .list--inner {
    display: block;
    margin: 10px 0 0 1em;
  }
  .page--support .section--detail .list--support .list--inner li {
    margin-bottom: 5px;
  }
  .page--support .section--detail .sub-list {
    margin-top: 1em;
  }
  .page--support .section--detail .sub-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .txt {
    margin-bottom: 1.5em;
  }
  .page--faq .section--tit {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .page--faq .section--list .block--contact {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page--faq .section--list .block--contact a {
    transition: 0.3s;
  }
  .page--faq .section--list .block--contact a:hover {
    color: #C3A732;
    text-decoration: none;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 12px;
  }
  .page--faq .searchBox {
    position: relative;
    width: 90%;
    margin: 40px auto 50px;
    max-width: 900px;
  }
  .page--faq .searchBox input[type=text] {
    padding: 0.5em 1em;
    width: 100%;
    background: #fff;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #505050;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 3px;
    z-index: 2;
    cursor: pointer;
  }
  .page--faq .faq-inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page--faq .tit--category {
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--faq .list--faq {
    margin: 0 0 60px;
  }
  .page--faq .list--faq li {
    border-bottom: 1px solid #2B2927;
  }
  .page--faq .list--faq li:first-child {
    border-top: 1px solid #2B2927;
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 20px;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #2B2927;
    padding: 24px 0;
    text-decoration: none;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .list--faq li a:hover {
    opacity: 0.5;
  }
  .page--faq .list--faq .icon--q {
    color: inherit;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.1em;
    line-height: 28px;
  }
  .page--faq .tit--category {
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--faq .block--faq-detail {
    border: 1px solid #2B2927;
    padding: 25px;
    margin: 0 0 80px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid #2B2927;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page--faq .block--faq-detail .txt {
    padding-left: 40px;
  }
  .page--faq .block--faq-detail .txt span {
    color: #2B2927 !important;
    font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--faq .block--faq-detail .txt span {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 961px) {
  .page--faq .block--faq-detail .txt * a,
  .page--faq .block--faq-detail .txt a,
  .page--faq .block--faq-detail .txt span a {
    font-weight: bold;
    display: inline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    text-decoration: underline;
    color: #2B2927 !important;
  }
  .page--faq .block--faq-detail .txt * a:hover,
  .page--faq .block--faq-detail .txt a:hover,
  .page--faq .block--faq-detail .txt span a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .page--faq .block--faq-detail .icon--q,
  .page--faq .block--faq-detail .icon--a {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: block;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    float: left;
    line-height: 26px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
  }
  .page--faq .block--faq-detail .icon--q {
    border: 1px solid #2B2927;
  }
  .page--faq .block--faq-detail .icon--a {
    vertical-align: top;
    color: #FDFDFD;
    background: #2B2927;
  }
  .page--faq .block--contact {
    margin: 40px 0 0;
  }
  .page--faq .block--contact a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .block--contact a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #2B2927;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a::after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    border-width: 2px;
  }
  .page--faq .block--contact a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .page--faq .block--contact a:hover::after {
    opacity: 0.5;
  }
  .page--questionnaire label,
  .page--questionnaire label:hover {
    transition: none;
    color: #2B2927;
  }
  .page--questionnaire .section--tit {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 50px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    float: none;
    margin: 40px 0 5px;
  }
  .page--questionnaire .form--post .input--quarter + .age {
    margin-left: 4px;
  }
  .page--questionnaire .form--post span.post {
    margin-right: 4px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    cursor: pointer;
    vertical-align: -2px;
    padding: 0.8em 1em;
    padding-right: 2em;
  }
  .page--questionnaire .form--post .form__select::after {
    border-color: #2B2927;
    position: absolute;
    right: 0.75em;
  }
  .page--questionnaire .form--post .form__radio,
  .page--questionnaire .form--post .form__checkbox {
    margin-bottom: 8px;
  }
  .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] {
    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 {
    height: auto;
    text-indent: 0;
    font-size: 17px;
    font-family: "FontAwesome";
    color: #2B2927;
    padding-left: 1px;
    text-indent: 0;
    position: absolute;
    top: 3px;
    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: #C3A732;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #C3A732;
  }
  .page--questionnaire .form--post .input.postal_code {
    margin-left: 4px;
  }
  .page--questionnaire .block--error li {
    position: relative;
    color: #c31515;
  }
  .page--questionnaire .section--detail .btn--sub {
    border-radius: 0;
    border: none;
  }
  .page--questionnaire .section--detail .txt--basic a {
    text-decoration: underline;
    font-weight: bold;
  }
  .page--questionnaire .section--detail .txt--basic a:hover {
    text-decoration: none;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 50px;
  }
  .page--questionnaire .section--detail .txt--basic.center,
  .page--questionnaire .section--detail .txt--sub.center,
  .page--questionnaire .section--detail .block--error p.center {
    text-align: center;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form {
    margin: 50px 0;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px;
    background-color: #2B2927;
    border-radius: 3px;
    margin-bottom: 30px;
    color: #FDFDFD;
  }
  .page--questionnaire .section--detail.comfirm .btn--sub:hover {
    background: none;
    color: #C3A732;
  }
  .page--blog .section--detail.blog--detail {
    max-width: 656px;
    margin: 32px auto 80px;
  }
  .page--blog .section--detail.blog--detail .article_box {
    background: #fff;
    border-radius: 10px;
    padding: 24px 30px;
  }
  .page--blog .section--detail.blog--detail .article_box .tit {
    font-weight: bold;
    font-size: 14px;
  }
  .page--blog .section--detail.blog--detail .article_box .date {
    font-size: 11px;
    color: #8e8e8b;
    text-align: right;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail {
    border-top: 1px solid #d9ddde;
    padding: 14px 0px 14px;
    position: relative;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail:last-of-type {
    border-bottom: 1px solid #d9ddde;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 5px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user .comment_name {
    font-size: 13px;
    font-weight: bold;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user .comment_date {
    font-size: 11px;
    color: #8e8e8b;
    margin: 0 25px 0 auto;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_body {
    line-height: 180%;
    font-size: 13px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box {
    line-height: 1;
    position: absolute;
    top: 11px;
    right: 0;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box .btn {
    line-height: 1;
    margin: 0;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box .btn input[type=submit].delete {
    background: none;
    color: #8e8e8b;
    font-size: 25px;
    font-weight: lighter;
    line-height: 1;
    cursor: pointer;
  }
  .page--blog .section--detail.blog--detail .article_box .block--pager {
    margin: 20px auto;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_box textarea {
    padding: 10px;
    width: 100%;
    height: 8em !important;
    border-radius: 0;
    border: none;
    line-height: 180%;
    outline: none;
    margin: 0 0 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: auto !important;
    background: #f0f0f0;
  }
  .page--blog .section--detail.blog--detail .btn {
    text-align: center;
  }
  input[type=submit].entry_check {
    width: 25%;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    height: 37px;
    position: static;
    border-radius: 3em;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
  }
  input[type=submit].entry_check:hover {
    background: #C3A732 !important;
    opacity: 1;
  }
  .page--blog .commentcomplete .btn,
  .page--blog .commentdelete .btn {
    margin: 30px auto 0;
  }
  .entry_back {
    width: 25%;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    height: 37px;
    line-height: 37px;
    position: static;
    border-radius: 3em;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
  }
  .entry_back:hover {
    background: #C3A732 !important;
    opacity: 1;
  }
  .blog_category_list {
    margin: 30px auto 0;
  }
  .blog_category_list a {
    display: inline-block;
    margin: 0 0.5em 0.5em 0;
    background: #eee;
    color: #2B2927;
    font-size: 13px;
    padding: 1px 4px;
    transition: all 0.3s ease;
  }
  .blog_category_list a:hover {
    background: #C3A732;
  }
  .blog_category_list form {
    display: inline-block;
  }
  .blog_category_list form input {
    display: inline-block;
    margin: 0 0.5em 0.5em 0;
    background: #eee;
    color: #2B2927;
    font-size: 13px;
    padding: 1px 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .blog_category_list form input:hover {
    background: #C3A732;
  }
  .page--blog .list--contents {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .page--blog .list--contents li {
    margin: 0 0 2%;
    padding: 31% 0 0;
    background: #fff;
    position: relative;
  }
  .page--blog .list--contents li a {
    background: #fff;
    position: absolute;
    padding: 20px;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .page--blog .list--contents li a:hover {
    opacity: 0.5;
  }
  .page--blog .list--contents li a:before {
    position: absolute;
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/static/kinashinoritake/common/logo-fc.svg) no-repeat center;
    background-size: 70%;
    opacity: 0.05;
    top: 0;
    left: 0;
  }
  .page--blog .list--contents li a .tit {
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  .page--blog .list--contents li a .date {
    font-size: 11px;
    color: #8e8e8b;
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .page--blog .pagingBox {
    margin: 30px auto 0;
  }
  dl.comment_post_detail {
    font-size: 14px;
  }
  dl.comment_post_detail dt {
    font-weight: bold;
    margin: 15px 0 0;
  }
  .page--blog ul.blog-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 30px auto 0;
  }
  .page--blog ul.blog-pager li {
    margin: 0 20px;
  }
  .page--blog ul.blog-pager li a {
    display: block;
    transition: all 0.3s ease;
  }
  .page--blog ul.blog-pager li a span {
    display: inline-block;
    padding: 0 0.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 13em;
    vertical-align: middle;
  }
  .page--blog ul.blog-pager li a i {
    vertical-align: middle;
  }
  .page--blog ul.blog-pager li.prev a {
    text-align: right;
  }
  .page--blog ul.blog-pager li a:hover {
    opacity: 0.5;
  }
  .page--home .section--member .block--contents.block--blog {
    padding: 0;
    margin: 0 0 -5px;
  }
  .page--home .section--member .block--contents.block--blog .block-inner {
    background: #4A0E00;
    -webkit-transform: skewY(11deg);
            transform: skewY(11deg);
    padding: 80px 7% 210px;
  }
  .page--home .section--member .block--contents.block--blog .block-inner > * {
    -webkit-transform: skewY(-11deg);
            transform: skewY(-11deg);
  }
  .page--home .section--member .block--contents.block--blog .block-inner .contents-tit {
    color: #fff;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.5em;
  }
  .page--home .section--member .block--contents.block--blog .block-inner .blogAtt {
    text-align: center;
    margin: 20px auto 0px;
    color: #c4c4c4;
  }
  .page--home .section--member .block--contents.block--blog .tit-wrap {
    background: #000;
  }
  .page--home .section--member .block--contents.block--blog .block-inner .list--contents li a .thumb img.noImg {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
  }
  .page--error .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .page--error .txt {
    margin-bottom: 100px;
  }
  .page--redirect #content {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 0 60px;
  }
  .page--redirect #content .btn-style1 {
    margin: 50px auto;
  }
}
/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  html {
    scroll-behavior: smooth;
  }
  .wrap {
    overflow: hidden;
  }
  /* header
  ============================== */
  header {
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  header .logo {
    position: fixed;
    top: 35px;
    left: 7%;
    display: block;
    width: 100px;
    z-index: 18;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
  }
  header .drawer__btn {
    position: fixed;
    background: #F8F8F8;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    box-sizing: border-box;
    top: 20px;
    right: 3%;
    z-index: 101;
  }
  header .drawer__btn span {
    display: block;
    background: #2B2927;
    position: absolute;
    left: 16px;
    width: 19px;
    height: 1px;
    z-index: 20;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  header .drawer__btn span:first-of-type {
    top: 16px;
  }
  header .drawer__btn span:nth-of-type(2) {
    bottom: 25px;
  }
  header .drawer__btn span:last-of-type {
    bottom: 16px;
  }
  header .drawer {
    display: none;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .menuOpen .wrap {
    height: 100%;
  }
  .menuOpen header .drawer__btn {
    background: transparent;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 5%;
  }
  .menuOpen header .drawer__btn span:first-of-type {
    top: 4px;
    -webkit-transform: translateY(20px) rotate(-45deg);
            transform: translateY(20px) rotate(-45deg);
  }
  .menuOpen header .drawer__btn span:nth-of-type(2) {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
  }
  .menuOpen header .drawer__btn span:last-of-type {
    -webkit-transform: translateY(-20px) rotate(45deg);
            transform: translateY(-20px) rotate(45deg);
    top: 44px;
  }
  .menuOpen header .drawer {
    padding: 0;
    display: block;
    z-index: 100;
    pointer-events: auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    background: #F8F8F8;
    padding-top: 50px;
  }
  .menuOpen header .drawer .nav--free {
    margin-bottom: 40px;
  }
  .menuOpen header .drawer .nav--member {
    margin-bottom: 10px;
  }
  .menuOpen header .drawer .member-menu-nav {
    height: 100%;
    position: relative;
    background-color: #B9B6A9;
    margin-top: 65px;
  }
  .menuOpen header .drawer .member-menu-nav::before, .menuOpen header .drawer .member-menu-nav:after {
    content: "";
  }
  .menuOpen header .drawer .member-menu-nav::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 14vw 106vw;
    border-color: transparent transparent #B9B6A9 transparent;
    position: absolute;
    top: -13.8vw;
    left: 0;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    z-index: -1;
  }
  .menuOpen header .drawer .member-menu-nav:after {
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #B9B6A9;
    position: absolute;
    top: 2px;
  }
  .menuOpen header .drawer .cokka {
    position: fixed;
    top: 74.5vh;
    right: 0;
    width: 20%;
    -webkit-animation: bound 1s both 1.2s;
            animation: bound 1s both 1.2s;
  }
  @-webkit-keyframes bound {
    0% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
    }
    5% {
      -webkit-transform: translateY(-10px) rotate(2deg);
              transform: translateY(-10px) rotate(2deg);
    }
    10% {
      -webkit-transform: translateY(10px) rotate(-2deg);
              transform: translateY(10px) rotate(-2deg);
    }
    15% {
      -webkit-transform: translateY(-10px) rotate(3deg);
              transform: translateY(-10px) rotate(3deg);
    }
    30% {
      -webkit-transform: translateY(2px) rotate(-2deg);
              transform: translateY(2px) rotate(-2deg);
    }
    45% {
      -webkit-transform: translateY(-2px) rotate(1deg);
              transform: translateY(-2px) rotate(1deg);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
    }
  }
  @keyframes bound {
    0% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
    }
    5% {
      -webkit-transform: translateY(-10px) rotate(2deg);
              transform: translateY(-10px) rotate(2deg);
    }
    10% {
      -webkit-transform: translateY(10px) rotate(-2deg);
              transform: translateY(10px) rotate(-2deg);
    }
    15% {
      -webkit-transform: translateY(-10px) rotate(3deg);
              transform: translateY(-10px) rotate(3deg);
    }
    30% {
      -webkit-transform: translateY(2px) rotate(-2deg);
              transform: translateY(2px) rotate(-2deg);
    }
    45% {
      -webkit-transform: translateY(-2px) rotate(1deg);
              transform: translateY(-2px) rotate(1deg);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
    }
  }
  .menuOpen header .drawer .login-wrap {
    margin: 0 auto 26px;
    width: 80%;
  }
  .menuOpen header .drawer .login-wrap .tit-logo {
    width: 70%;
    margin: 0 auto 10px;
  }
  .menuOpen header .drawer .login-wrap .block--login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80%;
    margin: 0 auto;
  }
  .menuOpen header .drawer .login-wrap .block--login p {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
  }
  .menuOpen header .drawer .login-wrap .block--login p.fc_mypage, .menuOpen header .drawer .login-wrap .block--login p.fc_entry {
    margin-right: 10%;
  }
  .menuOpen header .drawer .login-wrap .block--login p a {
    width: 100%;
  }
  .menuOpen header .drawer .g-nav {
    position: relative;
    z-index: 20;
  }
  .menuOpen header .drawer .g-nav .nav__list--fc {
    display: block;
  }
  .menuOpen header .drawer .g-nav .nav__list--official,
  .menuOpen header .drawer .g-nav .nav__list--fc {
    padding: 0 10%;
  }
  .menuOpen header .drawer .g-nav .nav__list--official li,
  .menuOpen header .drawer .g-nav .nav__list--fc li {
    display: inline-block;
    width: 48%;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .menuOpen header .drawer .g-nav .nav__list--official li a,
  .menuOpen header .drawer .g-nav .nav__list--fc li a {
    display: block;
    padding: 8px 0;
    color: #2B2927;
    font-size: 15px;
    position: relative;
    line-height: 1;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
  }
  .menuOpen header .logo-wrap {
    position: relative;
    height: 20px;
  }
  .menuOpen header .logo-wrap .drawer-logo {
    width: 25vw;
  }
  /* footer
  ============================== */
  .footer .inner {
    margin: 0 5%;
  }
  .footer .list--sns {
    margin-bottom: 48px;
  }
  .footer .list--sns li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 38px;
    font-weight: 600;
    font-size: 13px;
  }
  .footer .list--sns li:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 28px;
    height: 1px;
    background: #2B2927;
  }
  .footer .list--bnr {
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer .list--bnr li {
    width: 48%;
    display: inline-block;
    margin-bottom: 10px;
  }
  body:not(.page--home) .wrap {
    padding-bottom: 60px;
  }
  body:not(.page--home) .wrap > h1.logo {
    display: block;
    position: absolute;
    top: 34px;
    left: 6%;
    font-size: 12px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0.06em;
  }
  body:not(.page--home) .header > .g-nav {
    display: none;
  }
  body:not(.page--home) .footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 20px 7%;
  }
  body:not(.page--home) .list--sns,
  body:not(.page--home) .list--bnr {
    display: none;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    padding: 90px 6% 40px;
  }
  body:not(.page--home) .section--list .block--tit,
  body:not(.page--home) .section--detail .block--tit {
    position: relative;
  }
  body:not(.page--home) .section--list .block--tit .section--tit,
  body:not(.page--home) .section--detail .block--tit .section--tit {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.85em;
    font-family: "Overpass", sans-serif;
    font-weight: 700;
  }
  body:not(.page--home) .section--list .block--tit span,
  body:not(.page--home) .section--detail .block--tit span {
    display: inline-block;
    line-height: 0;
    width: 1px;
    height: 35px;
    background: #707070;
    margin: 20px 0 18px;
  }
  body:not(.page--home) .section--list .detail__btn,
  body:not(.page--home) .section--detail .detail__btn {
    margin-top: 30px;
  }
  .page--home .footer {
    background: #F8F8F8;
    bottom: 0;
    position: inherit;
    padding: 20px 7% 30px;
  }
  .page--home .footer .inner {
    margin: 0;
  }
  .page--home .footer .inner:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15vw 102vw;
    border-color: transparent transparent #F8F8F8 transparent;
    position: absolute;
    top: -14.8vw;
    left: 0;
    z-index: -1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .page--home .footer .copyright {
    text-align: left;
  }
  .page--home .section--top {
    position: relative;
  }
  .page--home .section--top .g-nav-top {
    position: absolute;
    top: 34px;
    left: 7%;
  }
  .page--home .section--top .g-nav-top li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.2;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
  }
  .page--home .section--top .g-nav-top li a {
    padding: 4px 0.5em;
  }
  .page--home .section--top .g-nav-top li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--top .g-nav-top li.join, .page--home .section--top .g-nav-top li.login {
    font-size: 12px;
  }
  .page--home .section--top .g-nav-top .menu-nav__member {
    position: relative;
    margin-top: 20px;
    margin-bottom: 6px;
    scroll-behavior: smooth;
  }
  .page--home .section--top .g-nav-top .menu-nav__member img {
    max-width: 100px;
    width: 20vw;
  }
  .page--home .section--top .name-wrap {
    position: absolute;
    left: -4vw;
    width: 80vw;
    top: 118vw;
  }
  .page--home .section--top .name-wrap h1 {
    position: absolute;
    top: 28%;
    left: 14%;
  }
  .page--home .section--top .name-wrap h1 .artist {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
  }
  .page--home .section--top .name-wrap h1 .site {
    font-size: 8px;
    -webkit-transform: translateX(78px);
            transform: translateX(78px);
  }
  .page--home .section--bnr {
    margin-bottom: 75px;
  }
  .page--home .section--bnr .list--bnr li {
    margin-right: 12px;
  }
  .page--home .section--info {
    padding: 0 6%;
    padding-bottom: 120px;
    z-index: 2;
    position: relative;
  }
  .page--home .section--info .list__more {
    float: right;
    clear: both;
  }
  .page--home .section--info .block--tit {
    position: relative;
  }
  .page--home .section--info .block--tit .contents-tit {
    font-size: 14px;
    line-height: 1;
  }
  .page--home .section--info .block--tit span {
    display: inline-block;
    line-height: 0;
    width: 1px;
    height: 35px;
    background: #707070;
    margin: 20px 0 18px;
  }
  .page--home .section--info .block--news {
    margin-bottom: 86px;
  }
  .page--home .section--info .block--schedule {
    margin-bottom: 86px;
  }
  .page--home .section--info .block--schedule .event-date {
    flex-basis: 120px;
  }
  .page--home .section--info .block--schedule .event-date .date {
    font-size: 17px;
  }
  .page--home .section--info .block--schedule .event-date .event-end {
    margin-top: 15px;
  }
  .page--home .section--info .block--schedule .event-date .event-end:before {
    height: 10px;
    position: absolute;
    top: -11px;
    left: 50%;
  }
  .page--home .section--info .block--schedule .tit-wrap {
    padding-left: 4%;
  }
  .page--home .section--info .block--schedule .tit-wrap .category {
    font-size: 12px;
  }
  .page--home .section--info .block--schedule .tit-wrap .tit {
    font-size: 15px;
  }
  .page--home .section--info .list--info {
    margin-bottom: 14px;
  }
  .page--home .section--member .flex-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .page--home .section--member .member-info {
    background-color: #2B2927;
    padding: 3% 2%;
    margin: 20px auto 40px;
    position: relative;
    z-index: 1;
    width: 80%;
    border-radius: 6px;
  }
  .page--home .section--member .member-info .logo {
    width: 50%;
    background: linear-gradient(-15deg, #6f2a0f, #daaf08, #e6c750, #daaf08, #6f2a0f);
    -webkit-mask-image: url(/static/kinashinoritake/common/logo-fc.svg);
            mask-image: url(/static/kinashinoritake/common/logo-fc.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    margin: 5% auto 0;
  }
  .page--home .section--member .member-info .logo img {
    opacity: 0;
  }
  .page--home .section--member .member-info .list--data {
    text-align: center;
  }
  .page--home .section--member .member-info .status {
    position: relative;
    z-index: 2;
    color: #FDFDFD;
    margin-top: 5px;
  }
  .page--home .section--member .member-info .status .tit {
    display: inline-block;
  }
  .page--home .section--member .member-info .status .item-num {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    display: inline-block;
  }
  .page--home .section--member .member-info .status .item-num .number {
    font-size: 13px;
  }
  .page--home .section--member .member-info .status .item-name {
    display: inline-block;
    margin-left: 5px;
  }
  .page--home .section--member .member-info .status .item-limit .kigen {
    background: #4e4e4e;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 11px;
  }
  .page--home .section--member .member-info .status .item-limit .auto {
    display: inline-block;
    color: #C3A732;
    font-size: 11px;
    margin-left: 15px;
  }
  .page--home .section--member .member-info .status .item-limit .caution a {
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: inline-block;
    cursor: pointer;
  }
  .page--home .section--member .member-info .status .item-limit .caution a:hover {
    text-decoration: none;
  }
  .page--home .section--member .section-tit {
    display: block;
    width: 247px;
  }
  .page--home .section--member .block--login {
    margin: 20px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--member .block--login .btn:not(:last-of-type) {
    margin-right: 2%;
  }
  .page--home .section--member .block--login .btn a {
    max-width: 136px;
  }
  .page--home .section--member .txt-viper {
    -webkit-transform: rotate(12deg) translateX(15px);
            transform: rotate(12deg) translateX(15px);
  }
  .page--home .section--member .block--contents .slick-slider .slick-list {
    overflow: visible;
  }
  .page--home .section--member .block--contents .slick-slide {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--member .block--contents .slick-slide.slick-current + .slick-slide {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .page--home .section--member .block--contents .slick-prev, .page--home .section--member .block--contents .slick-next {
    opacity: 1;
    margin-top: 0;
    width: 40px;
    height: 40px;
    top: 44%;
  }
  .page--home .section--member .block--contents .slick-prev:before, .page--home .section--member .block--contents .slick-prev:after, .page--home .section--member .block--contents .slick-next:before, .page--home .section--member .block--contents .slick-next:after {
    border-width: 2px;
    width: 12px;
    height: 12px;
    top: 14px;
  }
  .page--home .section--member .block--contents .slick-prev:hover, .page--home .section--member .block--contents .slick-prev:focus, .page--home .section--member .block--contents .slick-next:hover, .page--home .section--member .block--contents .slick-next:focus {
    background: #C3A732;
  }
  .page--home .section--member .block--contents .slick-prev:hover:before, .page--home .section--member .block--contents .slick-prev:hover:after, .page--home .section--member .block--contents .slick-prev:focus:before, .page--home .section--member .block--contents .slick-prev:focus:after, .page--home .section--member .block--contents .slick-next:hover:before, .page--home .section--member .block--contents .slick-next:hover:after, .page--home .section--member .block--contents .slick-next:focus:before, .page--home .section--member .block--contents .slick-next:focus:after {
    border-color: #FDFDFD;
  }
  .page--home .section--member .block--contents .slick-prev {
    left: 13vw;
  }
  .page--home .section--member .block--contents .slick-prev:after {
    left: 15px;
  }
  .page--home .section--member .block--contents .slick-next {
    right: 13vw;
  }
  .page--home .section--member .block--contents .slick-next:after {
    right: 15px;
  }
  .page--home .section--member .block--contents .list--contents li {
    display: block;
    width: 100%;
  }
  .page--home .section--member .block--contents .list--contents li:first-of-type {
    margin-right: 2%;
  }
  .page--home .section--member .block--contents .list--contents li.new {
    position: relative;
  }
  .page--home .section--member .block--contents .list--contents li.new .thumb:after {
    content: "";
    background-image: url(/static/kinashinoritake/fanclub/cokka/cokka_new.png);
    position: absolute;
    top: 0;
    left: 2%;
    width: 60px;
    height: 60px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: translate(40%, 54%);
            transform: translate(40%, 54%);
    transition: all 0.4s ease-out 1s;
    -webkit-transition: all 0.4s ease-out 1s;
  }
  .page--home .section--member .block--contents .list--contents.delighter.started li.new .thumb:after {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .page--home .section--member .block--contents .block-tit {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.25em;
    color: #FDFDFD;
    margin-bottom: 30px;
  }
  .page--home .section--member .block--contents .thumb {
    margin-bottom: 12px;
  }
  .page--home .section--member .block--contents .tit-wrap {
    background-color: #000;
    padding: 14px 2.5%;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    min-height: 70px;
  }
  .page--home .section--member .block--contents .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #AAAA21;
  }
  .page--home .section--member .block--contents .tit-wrap .tit {
    font-size: 15px;
    line-height: 1.4;
    color: #FDFDFD;
    position: relative;
  }
  .page--home .section--member .block--contents .tit-wrap .date {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--home .section--member .block--contents.block--latest .block-inner {
    padding: 50px 2% 190px !important;
  }
  .page--home .section--member .block--contents.block--sns {
    background-color: #b9b6a9;
    padding: 20px 0 60px;
  }
  .page--home .section--member .block--contents.block--sns:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15vw 102vw;
    border-color: transparent transparent #b9b6a9 transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    top: -14.8vw;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .page--home .section--member .block--contents.block--sns .author {
    margin-left: 24px;
    position: relative;
    color: #fff;
    opacity: 0.85;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .page--home .section--member .block--contents.block--sns .author:before {
    content: "";
    position: absolute;
    top: 40%;
    left: -20px;
    width: 16px;
    height: 1px;
    background: #fff;
  }
  .page--home .section--member .block--menu {
    position: relative;
    padding: 100px 7% 120px;
    background-position: top;
    background-size: 170% auto;
  }
  .page--home .section--member .block--menu:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15vw 102vw;
    border-color: transparent transparent #b9b6a9 transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    top: -0.5vw;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .page--home .section--member .block--menu .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .page--home .section--member .block--menu .nav-wrap {
    width: 100%;
  }
  .page--home .section--member .block--menu .inner {
    padding: 36px 4% 50px;
  }
  .page--home .section--member .block--menu .nav__list--fc {
    margin-bottom: 30px;
  }
  .page--home .section--member .block--menu .nav__list--fc li {
    margin: 0 0 15px;
  }
  .page--home .section--member .block--menu .nav__list--fc li:last-of-type {
    margin-bottom: 0;
  }
  .page--home .section--member .block--menu .nav__list--fc .fc_withdrawal,
  .page--home .section--member .block--menu .nav__list--fc .fc_entry {
    position: relative;
    padding-left: 65px;
  }
  .page--home .section--member .block--menu .nav__list--fc .fc_withdrawal:before,
  .page--home .section--member .block--menu .nav__list--fc .fc_entry:before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "";
    width: 42px;
    height: 1px;
    background: #707070;
  }
  .page--home .section--member .block--menu .tit--support {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }
  .page--home .section--member .block--menu .tit--support + .block--support + .chevron {
    display: inline-block;
    width: 100%;
    position: relative;
  }
  .page--home .section--member .block--menu .tit--support + .block--support + .chevron::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #2B2927;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    vertical-align: middle;
  }
  .page--home .section--member .block--menu .tit--support + .block--support + .chevron:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: rotate(-45deg) translateX(-50%);
            transform: rotate(-45deg) translateX(-50%);
  }
  .page--home .section--member .block--menu .tit--support.open + .block--support + .chevron:after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .page--home .section--member .block--menu .block--support {
    display: none;
    padding-top: 20px;
  }
  .page--home .section--member .block--menu .block--support .list--support {
    margin-bottom: 8px;
  }
  .page--home .section--member .block--menu .block--support .list--support li {
    font-size: 11px;
    margin: 0%;
    line-height: 1;
    text-align: center;
  }
  .page--home .section--member .block--menu .block--support .list--support li a {
    padding: 0.5em 0;
  }
  .page--info .date {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
  }
  .page--info .section--list .list--info {
    margin-bottom: 40px;
  }
  .page--info .section--list .list--info li.no-data {
    margin: 200px auto;
  }
  .page--info .section--detail .date {
    float: left;
  }
  .page--info .section--detail .block--share {
    float: right;
    clear: right;
  }
  .page--info .section--detail .block--share .share {
    font-size: 0.8em;
    font-family: "Overpass", sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.5;
    line-height: 1;
  }
  .page--info .section--detail .block--share li {
    font-size: 18px;
    margin-left: 13px;
    vertical-align: middle;
  }
  .page--info .section--detail .block--share li.lineIco {
    position: relative;
    top: 3px;
  }
  .page--info .section--detail .tit {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .page--info .section--detail span.new {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    color: #C3A732;
    letter-spacing: 0.05em;
    font-size: 0.75em;
    margin-left: 2px;
  }
  .page--info .section--detail .txt {
    padding: 60px 0 20px;
  }
  .page--info .section--detail .txt * a {
    border-bottom: 1px solid;
    font-weight: 600;
    display: inline-block;
    color: #C3A732;
  }
  .page--movie .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.25em;
  }
  .page--movie .thumb {
    margin-bottom: 8px;
  }
  .page--movie .tit-wrap {
    background-color: #000;
    padding: 14px 2.5%;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (-ms-high-contrast: active), screen and (min-width: 1px) and (max-width: 960px) and (-ms-high-contrast: none) {
  .page--movie .tit-wrap {
    display: block;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--movie .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #AAAA21;
  }
  .page--movie .tit-wrap .tit {
    font-size: 14px;
    line-height: 1.4;
    color: #FDFDFD;
    position: relative;
    margin-bottom: 4px;
  }
  .page--movie .tit-wrap .date {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--movie .list--contents {
    margin: 30px 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--movie .list--contents li {
    width: 100%;
  }
  .page--movie .list--contents li:nth-child(even) {
    margin-right: 0 !important;
  }
  .page--movie .list--contents li.no-data {
    width: 100%;
    margin: 100px auto;
  }
  .page--movie .section--list .section--tit {
    font-style: italic;
  }
  .page--movie .section--list .list--contents li {
    margin-bottom: 60px;
  }
  .page--movie .section--list .list--contents li.new {
    position: relative;
    z-index: 1;
  }
  .page--movie .section--list .list--contents li.new .thumb:after {
    content: "";
    background-image: url(/static/kinashinoritake/fanclub/cokka/cokka_new.png);
    position: absolute;
    top: -15px;
    left: 0px;
    width: 80px;
    height: 80px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  .page--movie .section--list .block--pager li.pager__item--current {
    color: #2B2927;
    background-color: #C3A732;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    line-height: 22px;
    padding-left: 5px;
  }
  .page--movie .section--detail {
    /*Android*/
  }
  .page--movie .section--detail .block--player {
    margin: 0 0 24px;
    border: 1px solid #2B2927;
  }
  .page--movie .section--detail .tit-wrap {
    margin: 0 0 20px;
  }
  .page--movie .section--detail .tit {
    font-size: 18px;
    line-height: 1.6;
  }
  .page--movie .section--detail .date {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .sub-txt-list {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .sub-txt-list li {
    margin-bottom: 10px;
  }
  .page--movie .section--detail .flash__player--accordion.btn {
    margin-bottom: 30px;
    font-size: 11px;
  }
  .page--movie .section--detail .flash__player--accordion.btn .btn--sub {
    color: #2B2927;
    font-weight: normal;
    border: 1px solid #2B2927;
    background: transparent;
    height: auto;
    width: 200px;
    padding: 0 6%;
  }
  .page--movie .section--detail .flash__player--accordion.btn .btn--sub dd {
    padding-bottom: 4px;
  }
  .page--movie .section--detail .flash__player--accordion.btn .list--player li a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #2B2927;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--photo .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.25em;
  }
  .page--photo .thumb {
    margin-bottom: 8px;
  }
  .page--photo .tit-wrap {
    background-color: #000;
    padding: 14px 6%;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (-ms-high-contrast: active), screen and (min-width: 1px) and (max-width: 960px) and (-ms-high-contrast: none) {
  .page--photo .tit-wrap {
    display: block;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--photo .tit-wrap .category {
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: #AAAA21;
  }
  .page--photo .tit-wrap .tit {
    font-size: 14px;
    line-height: 1.4;
    color: #FDFDFD;
    position: relative;
    text-align: left;
    margin-bottom: 4px;
  }
  .page--photo .tit-wrap .date {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #FDFDFD;
    opacity: 0.5;
  }
  .page--photo .list--contents {
    margin: 30px 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--photo .list--contents li {
    width: 48%;
  }
  .page--photo .list--contents li:nth-child(even) {
    margin-right: 0 !important;
  }
  .page--photo .list--contents li.no-data {
    width: 100%;
    margin: 100px auto;
  }
  .page--photo .section--list .section--tit {
    font-style: italic;
  }
  .page--photo .section--list .list--contents li {
    margin-bottom: 38px;
  }
  .page--photo .section--list .block--pager li.pager__item--current {
    color: #2B2927;
    background-color: #C3A732;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    line-height: 22px;
    padding-left: 5px;
  }
  .page--photo .section--detail .section--tit {
    text-align: left;
    letter-spacing: 0.25em;
    font-style: normal;
  }
  .page--photo .section--detail .list--contents li {
    margin: 0 0 10px 0;
  }
  .page--schedule .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
  }
  .page--schedule .date {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
  }
  .page--schedule .section--list .list--info.schedule .event-end {
    margin-top: 15px;
  }
  .page--schedule .section--list .list--info.schedule .event-end:before {
    height: 10px;
    position: absolute;
    top: -11px;
    left: 37%;
  }
  .page--schedule .section--list .list--info.schedule .date {
    font-size: 15px;
  }
  .page--schedule .section--list .block--category {
    margin: 5px auto 10px;
  }
  .page--schedule .section--list .block--category .list--sort li span {
    font-size: 11px;
    padding: 1px 3px;
  }
  .page--schedule .section--list .list--info.schedule {
    margin: 40px 0 60px;
  }
  .page--schedule .section--list .list--info.schedule .category {
    font-size: 12px;
  }
  .page--schedule .section--list .list--info.schedule .tit-wrap {
    padding-left: 4%;
  }
  .page--schedule .section--list .no-data {
    margin: 200px auto;
  }
  .page--schedule .section--detail .event-date .date {
    font-size: 16px;
    float: none;
    display: inline-block;
    letter-spacing: 0.15em;
    font-family: "Overpass", sans-serif;
    font-weight: 700;
  }
  .page--schedule .section--detail .event-date .date > p {
    display: inline-block;
  }
  .page--schedule .section--detail .event-date .category {
    font-size: 12px;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0.4;
    display: inline-block;
  }
  .page--schedule .section--detail .event-date .event-date--end {
    position: relative;
    margin-left: 20px;
  }
  .page--schedule .section--detail .event-date .event-date--end:before {
    width: 20px;
    height: 1px;
    background-color: rgba(43, 41, 39, 0.3);
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
  }
  .page--discography .date,
  .page--discography .category {
    display: inline-block;
  }
  .page--discography .category {
    font-size: 11px;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .page--discography .category span {
    padding: 1px 2px;
    background: #eee;
  }
  .page--discography .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--discography .section--list .block--category .list--sort li span {
    font-size: 13px;
    padding: 1px 4px;
  }
  .page--discography .section--list .list--horizontal li {
    width: 100%;
    margin-bottom: 40px;
  }
  .page--discography .section--list .list--horizontal li a {
    height: 100%;
    display: block;
    position: relative;
  }
  .page--discography .section--list .list--horizontal li .thumb {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
  }
  .page--discography .section--list .list--horizontal li .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background-size: contain;
  }
  .page--discography .section--list .list--horizontal li .thumb .blur {
    width: 200%;
    height: 200%;
    position: absolute;
    top: -50%;
    left: -50%;
    z-index: 1;
  }
  .page--discography .section--list .list--horizontal li .thumb .blur img {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  .page--discography .section--list .list--horizontal li .block--txt .category {
    opacity: 0.4;
  }
  .page--discography .section--list .list--horizontal li.no-data {
    margin: 100px auto;
  }
  .page--discography .header--disco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    overflow: hidden;
    z-index: 1;
  }
  .page--discography .header--disco .header--disco_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 0.7;
    -webkit-filter: blur(8px);
            filter: blur(8px);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .page--discography .header--disco:before {
    content: "";
    position: absolute;
    top: 220px;
    left: 30%;
    width: 220%;
    height: 220%;
    background: #F8F8F8;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    z-index: 1;
  }
  .page--discography .section--detail {
    position: relative;
    z-index: 2;
  }
  .page--discography .section--detail .list--jacket {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .page--discography .section--detail .list--jacket li {
    margin-right: 4%;
    width: 48%;
  }
  .page--discography .section--detail .list--jacket li:last-of-type {
    margin-right: 0;
  }
  .page--discography .section--detail .block--jacket .ph.one {
    width: 100%;
  }
  .page--discography .section--detail .block--jacket .ph.one img {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .page--discography .section--detail .area--disco-detail {
    margin-bottom: 40px;
  }
  .page--discography .section--detail .tit--wrap {
    margin: 10px 0 20px;
  }
  .page--discography .section--detail .tit--wrap .tit {
    font-size: 18px;
  }
  .page--discography .section--detail .block--comment a, .page--discography .section--detail .block--comment * a {
    color: #C3A732;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    text-decoration: underline;
  }
  .page--entry [class^=cokka] {
    width: 25vw;
    height: 25vw;
    display: block;
    line-height: 0;
    z-index: 1;
  }
  .page--entry .cokka1 {
    position: absolute;
    top: 10%;
    left: -26px;
    -webkit-transform: rotate(44deg);
            transform: rotate(44deg);
  }
  .page--entry .cokka2 {
    position: absolute;
    top: 44%;
    left: -10vw;
    -webkit-transform: rotate(59deg);
            transform: rotate(59deg);
  }
  .page--entry .cokka3 {
    position: absolute;
    top: 30%;
    right: -29px;
    -webkit-transform: rotate(-38deg);
            transform: rotate(-38deg);
  }
  .page--entry .section--detail .section--tit {
    display: none;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 100%;
    margin: 0 auto 30px;
    border: 1px solid #2B2927;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 100px;
    padding: 10px 3%;
    text-align: center;
    border-bottom: 1px solid #2B2927;
    font-weight: 400;
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 10px 3%;
    border-bottom: 1px solid #2B2927;
    border-left: 1px dotted #2B2927;
    font-size: 13px;
  }
  .page--entry .section--detail [class^=block--] table.list--payment .credit {
    margin-bottom: 20px;
  }
  .page--entry .section--detail [class^=block--] .block-tit {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .page--entry .section--detail .block--logo {
    margin-bottom: 50px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 60%;
    display: block;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail .block--logo .lead {
    margin-bottom: 0;
  }
  .page--entry .section--detail .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 20px 5%;
    border: 1px solid #2B2927;
    width: 100%;
    margin-bottom: 40px;
    background: #f8f8f8;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
  }
  .page--entry .section--detail .list--contents li .text {
    font-size: 13px;
  }
  .page--entry .section--detail .list--contents .list--sub {
    margin-bottom: 10px;
  }
  .page--entry .section--detail .list--contents .list--sub li {
    border: none;
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .page--entry .section--detail .block--tokuten .block-tit {
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
  }
  .page--entry .section--detail .block--tokuten .inner {
    padding: 36px 4% 46px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border: 1px solid #2B2927;
    background: #f8f8f8;
  }
  .page--entry .section--detail .block--tokuten .item {
    margin-top: 40px;
  }
  .page--entry .section--detail .block--tokuten .item li {
    text-align: center;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .page--entry .section--detail .block--tokuten .item li p {
    font-size: 0.85em;
  }
  .page--entry .section--detail .block--tokuten .item li img {
    margin-bottom: 20px;
  }
  .page--entry .section--detail .block--tokuten .item li.card {
    margin-bottom: 40px;
  }
  .page--entry .section--detail .block--tokuten .card img {
    width: 100%;
    border-radius: 7px;
  }
  .page--entry .section--detail .block--tokuten .badge img {
    width: 70px;
    border-radius: 50%;
  }
  .page--entry .section--detail .block--intro {
    margin-top: 50px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 40px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.3em;
    font-style: italic;
  }
  .page--entry .section--detail .block--intro .cokka4 {
    margin: 0 auto;
  }
  .page--entry .section--detail .entry {
    margin: 30px 0;
  }
  .page--questionnaire label,
  .page--questionnaire label:hover {
    transition: none;
    color: #2B2927;
  }
  .page--questionnaire .section--tit {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 30px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .form--post {
    margin: 30px 0;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    float: none;
    margin: 30px 0 5px;
  }
  .page--questionnaire .form--post .input--quarter + .age {
    margin-left: 4px;
  }
  .page--questionnaire .form--post span.post {
    margin-right: 4px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    cursor: pointer;
    vertical-align: -2px;
    padding: 0.8em 1em;
    padding-right: 2em;
  }
  .page--questionnaire .form--post .form__select::after {
    border-color: #2B2927;
    position: absolute;
    right: 0.75em;
  }
  .page--questionnaire .form--post .form__radio,
  .page--questionnaire .form--post .form__checkbox {
    margin-bottom: 8px;
  }
  .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] {
    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 {
    height: auto;
    text-indent: 0;
    font-size: 17px;
    font-family: "FontAwesome";
    color: #C3A732;
    padding-left: 1px;
    text-indent: 0;
    position: absolute;
    top: 3px;
    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: #C3A732;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #C3A732;
  }
  .page--questionnaire .form--post .input.postal_code {
    margin-left: 4px;
  }
  .page--questionnaire .block--error li {
    position: relative;
    color: #c31515;
  }
  .page--questionnaire .section--detail .btn--sub {
    border-radius: 0;
    border: none;
  }
  .page--questionnaire .section--detail .txt--basic a {
    text-decoration: underline;
    font-weight: bold;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .txt--basic.center,
  .page--questionnaire .section--detail .txt--sub.center,
  .page--questionnaire .section--detail .block--error p.center {
    text-align: center;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form {
    margin: 30px 0;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px;
    background-color: #2B2927;
    border-radius: 3px;
    margin-bottom: 30px;
    color: #FDFDFD;
  }
  .page--profile .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.95em;
  }
  .page--profile .ph {
    margin-bottom: 50px;
  }
  .page--profile .ph img {
    width: 100%;
    display: block;
  }
  .page--profile .name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3;
  }
  .page--profile .birthday {
    margin-bottom: 20px;
  }
  .page--profile .birthday > span {
    font-size: 12px;
    opacity: 0.5;
    font-family: "Overpass", sans-serif;
    font-weight: 900;
    padding-right: 1em;
    letter-spacing: 0.08em;
  }
  .page--organization .list--vertical .group {
    margin-bottom: 60px;
  }
  .page--organization .list--vertical .group .position {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .page--organization .list--vertical .group .profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 22px;
  }
  .page--organization .list--vertical .group .profile figure {
    line-height: 0;
    margin-bottom: 20px;
  }
  .page--organization .list--vertical .group .profile .name {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .page--organization .list--vertical .group .profile .name > span {
    font-size: 0.75em;
    margin-left: 1em;
    opacity: 0.7;
  }
  .page--organization .list--vertical .group .profile .message {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .page--organization .list--vertical .group .profile .link a {
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--organization .list--vertical .group .profile .link a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .page--organization .list--vertical .group.dancers .name {
    font-size: 13px;
  }
  .page--goods .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.25em;
  }
  .page--goods .list--contents li.no-data {
    width: 100%;
    margin: 100px auto;
  }
  .page--goods .list--contents li.no-data .txt {
    margin-top: 20px;
    text-align: left;
  }
  .page--support .section--detail .section--tit {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 16px;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    text-decoration: underline;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 20px;
  }
  .page--support .section--detail .list--support .list--inner {
    display: block;
    margin: 10px 0 0 1em;
  }
  .page--support .section--detail .list--support .list--inner li {
    margin-bottom: 5px;
  }
  .page--support .section--detail .sub-list {
    margin-top: 1em;
  }
  .page--support .section--detail .sub-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--faq .section--tit {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .page--faq .section--list .block--contact a {
    text-decoration: underline;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 12px;
  }
  .page--faq .searchBox {
    position: relative;
    margin: 20px auto 40px;
  }
  .page--faq .searchBox input[type=text] {
    padding: 0.5em 1em;
    width: 100%;
    background: transparent;
    color: #2B2927;
    border: 1px solid #2B2927;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #505050;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 3px;
    z-index: 2;
    cursor: pointer;
  }
  .page--faq .list--faq {
    margin: 0 0 40px;
  }
  .page--faq .list--faq li {
    border-bottom: 1px solid #2B2927;
  }
  .page--faq .list--faq li:first-child {
    border-top: 1px solid #2B2927;
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 0.75em;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #2B2927;
    padding: 12px 0;
    text-decoration: none;
  }
  .page--faq .list--faq .icon--q {
    line-height: 1;
  }
  .page--faq .tit--category {
    margin: 0 0 12px;
    font-weight: bold;
  }
  .page--faq .block--faq-detail {
    border: 1px solid #2B2927;
    padding: 12px 5%;
    margin: 0 0 50px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid #2B2927;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page--faq .block--faq-detail .txt {
    padding-left: 40px;
  }
  .page--faq .block--faq-detail .txt * {
    color: #2B2927 !important;
    font-family: "Noto Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--faq .block--faq-detail .txt * {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt * {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt a {
    font-weight: bold;
    display: inline;
    text-decoration: underline;
    color: #2B2927 !important;
  }
  .page--faq .block--faq-detail .icon--q,
  .page--faq .block--faq-detail .icon--a {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: block;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    float: left;
    line-height: 26px;
  }
  .page--faq .block--faq-detail .icon--q {
    border: 1px solid #2B2927;
  }
  .page--faq .block--faq-detail .icon--a {
    vertical-align: top;
    color: #FDFDFD;
    background: #2B2927;
  }
  .page--faq .block--contact {
    margin: 20px 0 0;
  }
  .page--faq .block--contact a {
    text-decoration: none;
    font-weight: bold;
  }
  .page--faq .block--contact a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #2B2927;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a::after {
    border-width: 2px;
  }
  .page--blog .section--list {
    padding: 90px 10px 40px;
  }
  .page--blog .section--detail.blog--detail {
    max-width: 656px;
    margin: 32px auto 80px;
  }
  .page--blog .section--detail.blog--detail .article_box {
    background: #fff;
    border-radius: 10px;
    padding: 15px 0px 17px;
  }
  .page--blog .section--detail.blog--detail .article_box .tit {
    font-weight: bold;
    font-size: 12px;
  }
  .page--blog .section--detail.blog--detail .article_box .date {
    font-size: 9px;
    color: #8e8e8b;
    text-align: right;
  }
  .page--blog .section--detail.blog--detail .article_box .article_detail {
    padding: 0 10px;
    font-size: 12px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail {
    border-top: 1px solid #d9ddde;
    padding: 14px 10px 14px;
    position: relative;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail:last-of-type {
    border-bottom: 1px solid #d9ddde;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user .comment_name {
    font-size: 12px;
    font-weight: bold;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_user .comment_date {
    font-size: 9px;
    color: #8e8e8b;
    margin: 0 25px 0 auto;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .comment_body {
    line-height: 180%;
    font-size: 12px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box {
    line-height: 1;
    position: absolute;
    top: 9px;
    right: 5px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box .btn {
    line-height: 1;
    margin: 0;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_detail .delete_btn_box .btn input[type=submit].delete {
    background: none;
    color: #8e8e8b;
    font-size: 25px;
    font-weight: lighter;
    line-height: 1;
    cursor: pointer;
  }
  .page--blog .section--detail.blog--detail .article_box .block--pager {
    margin: 20px auto;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_box {
    padding: 0 10px 5px;
  }
  .page--blog .section--detail.blog--detail .article_box .comment_box textarea {
    padding: 10px;
    width: 100%;
    height: 8em !important;
    border-radius: 0;
    border: none;
    line-height: 180%;
    outline: none;
    margin: 0 0 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: auto !important;
    background: #f0f0f0;
  }
  .page--blog .section--detail.blog--detail .article_box .titArea,
  .page--blog .section--detail.blog--detail .article_box .comment_post {
    font-size: 12px;
    padding: 0 10px;
  }
  .page--blog .section--detail.blog--detail .btn {
    text-align: center;
    margin: 15px 0 0;
  }
  input[type=submit].entry_check {
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    height: 37px;
    position: static;
    border-radius: 3em;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
  }
  input[type=submit].entry_check:hover {
    background: #C3A732 !important;
    opacity: 1;
  }
  .page--blog .commentcomplete .btn,
  .page--blog .commentdelete .btn {
    margin: 30px auto 0;
  }
  .entry_back {
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    height: 37px;
    line-height: 37px;
    position: static;
    border-radius: 3em;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
  }
  .entry_back:hover {
    background: #C3A732 !important;
    opacity: 1;
  }
  .blog_category_list {
    font-size: 11px;
    margin: 30px auto 0;
  }
  .blog_category_list a {
    display: inline-block;
    margin: 0 0.5em 0.5em 0;
    background: #eee;
    color: #2B2927;
    font-size: 13px;
    padding: 1px 4px;
    transition: all 0.3s ease;
  }
  .blog_category_list a:hover {
    background: #C3A732;
  }
  .blog_category_list form {
    display: inline-block;
  }
  .blog_category_list form input {
    display: inline-block;
    margin: 0 0.5em 0.5em 0;
    background: #eee;
    color: #2B2927;
    font-size: 13px;
    padding: 1px 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .blog_category_list form input:hover {
    background: #C3A732;
  }
  .page--blog .list--contents {
    display: block;
  }
  .page--blog .list--contents li {
    width: 100%;
    margin: 0 0 2%;
    padding: 0;
    background: #fff;
    position: relative;
  }
  .page--blog .list--contents li a {
    background: #fff;
    position: relative;
    padding: 20px 15px 50px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .page--blog .list--contents li a:hover {
    opacity: 0.5;
  }
  .page--blog .list--contents li a:before {
    position: absolute;
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/static/kinashinoritake/common/logo-fc.svg) no-repeat center;
    background-size: 70%;
    opacity: 0.05;
    top: 0;
    left: 0;
  }
  .page--blog .list--contents li a .tit {
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
  }
  .page--blog .list--contents li a .date {
    font-size: 11px;
    color: #8e8e8b;
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 15px;
  }
  .page--blog .pagingBox {
    margin: 30px auto 0;
  }
  dl.comment_post_detail {
    font-size: 12px;
  }
  dl.comment_post_detail dt {
    font-weight: bold;
    margin: 15px 0 0;
  }
  .page--blog ul.blog-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 30px auto 0;
  }
  .page--blog ul.blog-pager li {
    margin: 0;
  }
  .page--blog ul.blog-pager li a {
    font-size: 11px;
    display: block;
    transition: all 0.3s ease;
  }
  .page--blog ul.blog-pager li a span {
    display: inline-block;
    padding: 0 0.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 13em;
    vertical-align: middle;
  }
  .page--blog ul.blog-pager li a i {
    vertical-align: middle;
  }
  .page--blog ul.blog-pager li.prev a {
    text-align: right;
  }
  .page--blog ul.blog-pager li a:hover {
    opacity: 0.5;
  }
  .page--home .section--member .block--contents.block--blog {
    padding: 0;
    margin: 0 0 -5px;
  }
  .page--home .section--member .block--contents.block--blog .block-inner {
    background: #4A0E00;
    -webkit-transform: skewY(11deg);
            transform: skewY(11deg);
    padding: 50px 2% 100px;
  }
  .page--home .section--member .block--contents.block--blog .block-inner > * {
    -webkit-transform: skewY(-11deg);
            transform: skewY(-11deg);
  }
  .page--home .section--member .block--contents.block--blog .block-inner .contents-tit {
    color: #fff;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px;
    letter-spacing: 0.15em;
  }
  .page--home .section--member .block--contents.block--blog .block-inner .blogAtt {
    text-align: center;
    margin: -15px auto 20px;
    color: #c4c4c4;
    font-size: 12px;
  }
  .page--home .section--member .block--contents.block--blog .tit-wrap {
    background: #000;
  }
  .page--home .section--member .block--contents.block--blog .block-inner .list--contents li a .thumb img.noImg {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
  }
  .page--error .section--tit {
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .page--error .txt {
    margin-bottom: 1em;
  }
  .page--error .btn {
    margin-top: 30px;
  }
  .page--redirect #content {
    padding: 90px 6% 40px;
  }
  .page--redirect #content .btn-style1 {
    margin: 30px auto;
  }
}
/* tablet
============================== */
@media screen and (min-width: 756px) and (max-width: 961px) {
  header > .g-nav {
    top: 34px;
  }
  .page--home .section--top .g-nav-top {
    position: absolute;
    top: 26px;
    left: 4%;
  }
  .page--home .section--top .name-wrap {
    top: 42%;
    left: 0;
  }
  .page--home .section--top .keyvisual {
    top: 38%;
  }
  .page--home .section--top .keyvisual .thumb {
    width: 160vw;
  }
  .page--home .section--member .flex-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--member .flex-wrap .section-tit {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
  }
  .page--home .section--member .flex-wrap .logins-wrap {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  .page--home .section--member .flex-wrap .logins-wrap .block--login {
    -webkit-transform: rotate(-350deg);
            transform: rotate(-350deg);
  }
  .page--home .section--member .block--contents .list--contents {
    margin-left: 0;
  }
  .page--home .section--member .block--contents .list--contents li {
    margin-right: 1%;
    width: 31%;
    display: inline-block;
  }
  .page--home .section--member .block--contents .list--contents li:nth-child(2) {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .page--home .section--member .block--contents .list--contents li:last-of-type {
    margin-right: 0;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  .page--home .section--member .block--contents .list--contents li.new .thumb:after {
    top: 1%;
    left: 3%;
    width: 100px;
    height: 100px;
  }
  .page--home .section--member .block--contents .list--contents li.no-data {
    margin: 100px auto 50px;
    color: #FDFDFD;
  }
  .menuOpen header .drawer {
    padding-top: 100px;
  }
  .menuOpen header .drawer .cokka {
    top: 75.5vh;
  }
  .menuOpen header .drawer .member-menu-nav {
    margin-top: 15vw;
  }
  .menuOpen header .drawer .g-nav .nav__list--official li a,
  .menuOpen header .drawer .g-nav .nav__list--fc li a {
    font-size: 17px;
  }
  .menuOpen header .drawer .login-wrap .tit-logo {
    width: 45%;
    margin: 0 auto 10px;
  }
  .page--home .section--member .block--menu {
    padding: 120px 7% 140px;
  }
  .page--info .section--detail .block--share li.lineIco {
    top: 3px;
  }
  .page--photo .section--list .list--contents {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .page--photo .section--list .list--contents li {
    margin-bottom: 60px;
    width: 48%;
    margin-right: 4%;
  }
  .page--movie .section--list .list--contents {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .page--movie .section--list .list--contents li {
    margin-bottom: 60px;
    width: 48%;
    margin-right: 4%;
  }
  .page--movie .section--detail .sub-txt-list {
    margin-bottom: 30px;
  }
  .page--organization .list--vertical .group {
    /*文言来るならとる↓*/
  }
  .page--organization .list--vertical .group:first-of-type, .page--organization .list--vertical .group:nth-of-type(2) {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--organization .list--vertical .group:first-of-type > div, .page--organization .list--vertical .group:nth-of-type(2) > div {
    margin-bottom: 40px;
  }
  .page--organization .list--vertical .group:first-of-type .profile figure .ph, .page--organization .list--vertical .group:nth-of-type(2) .profile figure .ph {
    flex: 2;
    margin-right: 30px;
  }
  .page--organization .list--vertical .group:first-of-type .profile figure .ph + div, .page--organization .list--vertical .group:nth-of-type(2) .profile figure .ph + div {
    flex: 5;
  }
  .page--organization .list--vertical .group.group2 {
    margin-top: 100px;
  }
  .page--organization .list--vertical .group.group1, .page--organization .list--vertical .group.group2, .page--organization .list--vertical .group.group3, .page--organization .list--vertical .group.group4, .page--organization .list--vertical .group.group5 {
    margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--organization .list--vertical .group.group1 > div, .page--organization .list--vertical .group.group2 > div, .page--organization .list--vertical .group.group3 > div, .page--organization .list--vertical .group.group4 > div, .page--organization .list--vertical .group.group5 > div {
    width: 48%;
    margin-bottom: 40px;
  }
  .page--organization .list--vertical .group.group1 > div:nth-child(even), .page--organization .list--vertical .group.group2 > div:nth-child(even), .page--organization .list--vertical .group.group3 > div:nth-child(even), .page--organization .list--vertical .group.group4 > div:nth-child(even), .page--organization .list--vertical .group.group5 > div:nth-child(even) {
    margin-left: 2%;
  }
  .page--organization .list--vertical .group.group1 .profile, .page--organization .list--vertical .group.group2 .profile, .page--organization .list--vertical .group.group3 .profile, .page--organization .list--vertical .group.group4 .profile, .page--organization .list--vertical .group.group5 .profile {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--discography .header--disco::before {
    width: 220vw;
    height: 220vh;
    left: 0;
  }
  .page--discography .section--list .list--horizontal li {
    margin-bottom: 60px;
  }
  .page--entry [class^=cokka] {
    width: 20vw;
    height: 20vw;
  }
  .page--entry .cokka1 {
    left: -36px;
    top: 17%;
  }
  .page--entry .cokka2 {
    top: 45%;
    left: -63px;
  }
  .page--entry .cokka3 {
    top: 55%;
  }
  .page--entry .block--tokuten .card img {
    width: 70% !important;
  }
}
@media (min-width: 540px) and (max-width: 755px) {
  .page--home .section--top .name-wrap {
    width: 60vw;
    top: 43vh;
  }
  .page--home .section--top .keyvisual {
    top: 38%;
    right: -25vw;
  }
  .page--home .section--top .keyvisual .thumb {
    width: 150vw;
  }
  .page--home .section--member .block--contents .list--contents li.new .thumb:after {
    top: 4%;
    left: 4%;
    width: 70px;
    height: 70px;
  }
  .page--discography .header--disco::before {
    width: 220vw;
    height: 220vh;
    left: 20vw;
  }
}/*# sourceMappingURL=fanclub-service.css.map */