@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/* 2.3 form
------------------------------ */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 3em 0 0.75em;
  font-size: 15px;
}
.form dd {
  margin: 0 0 1em;
}

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

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

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

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

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

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

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  -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;
  color: #000;
}
@media screen and (min-width: 961px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=time],
  input[type=date] {
    font-size: 14px;
    line-height: 1.6;
  }
}
@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],
  input[type=time],
  input[type=date] {
    font-size: 13px;
    line-height: 1.6;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]:focus {
  border-color: inherit;
}
input[type=text].form__error,
input[type=tel].form__error,
input[type=email].form__error,
input[type=password].form__error,
input[type=number].form__error,
input[type=time].form__error,
input[type=date].form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
input[type=text].form__error:focus,
input[type=tel].form__error:focus,
input[type=email].form__error:focus,
input[type=password].form__error:focus,
input[type=number].form__error:focus,
input[type=time].form__error:focus,
input[type=date].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type=text][disabled],
input[type=tel][disabled],
input[type=email][disabled],
input[type=password][disabled],
input[type=number][disabled],
input[type=time][disabled],
input[type=date][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

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

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

/* textarea */
textarea {
  font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  -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: none;
}
@media screen and (min-width: 961px) {
  textarea {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    font-size: 13px;
    line-height: 1.6;
  }
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #D6D6D7;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  -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-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    font-size: 13px;
    line-height: 1.6;
  }
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

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

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

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

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

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

/* questionnaire_application */
.questionnaire_application {
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 10px;
}

.questionnaire_application .txt--basic {
  margin-bottom: 20px;
}

.questionnaire_application dd {
  margin-bottom: 20px;
}

.questionnaire_application .section-tit {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: bold;
}

.questionnaire_application dt {
  margin-bottom: 3px;
}

.questionnaire_application .txt--sub.center {
  margin-bottom: 30px;
}

.questionnaire_application .form__select select {
  border: none;
}

.questionnaire_application .postal_no {
  width: 130px;
}

.questionnaire_application .btn {
  margin-bottom: 20px;
}

.questionnaire_application .txt_center {
  text-align: center;
  margin-bottom: 30px;
}

/* ==============================================================
*  contents
* ============================================================ */
/* ==============================================================
*  base
* ============================================================ */
/* common.scss
============================== */
html {
  visibility: hidden;
}

html.wf-active, html.loading-delay {
  visibility: visible;
}

html,
body {
  width: 100%;
  background: #D6D6D7;
  color: #000000;
  padding: 0;
  margin: 0;
  font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-kerning: normal;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}
@media screen and (min-width: 961px) {
  html,
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  html,
  body {
    font-size: 13px;
    line-height: 1.6;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

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

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

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

.svg-parts, .svg-symbol {
  display: none;
}

.background {
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.background span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (min-width: 961px) {
  .background span {
    background-size: 100vw;
    background-repeat: space;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background span {
    background-size: 100vw;
    background-repeat: repeat-y;
  }
}
.background span.bg01 {
  top: 40vh;
  animation: bg 3s cubic-bezier(0.51, -0.03, 0.57, 1.11) 3.7s infinite;
}
@media screen and (min-width: 961px) {
  .background span.bg01 {
    background-image: url(/static/amazarashi/common/bg_spots1.png);
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background span.bg01 {
    background-image: url(/static/amazarashi/common/bg_spots_sp1.png);
  }
}
.background span.bg02 {
  top: 30vh;
  animation: bg 3.5s cubic-bezier(0.51, -0.03, 0.57, 1.11) 2s infinite;
}
@media screen and (min-width: 961px) {
  .background span.bg02 {
    background-image: url(/static/amazarashi/common/bg_spots3.png);
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background span.bg02 {
    background-image: url(/static/amazarashi/common/bg_spots_sp2.png);
  }
}
.background span.bg03 {
  top: 45vh;
  animation: bg 3.2s linear 2.5s infinite;
}
@media screen and (min-width: 961px) {
  .background span.bg03 {
    background-image: url(/static/amazarashi/common/bg_spots3.png);
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background span.bg03 {
    background-image: url(/static/amazarashi/common/bg_spots_sp3.png);
  }
}
.background span.bg04 {
  top: 50vh;
  animation: bg 2.7s cubic-bezier(0.51, -0.03, 0.57, 1.11) 3.2s infinite;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background span.bg04 {
    background-image: url(/static/amazarashi/common/bg_spots_sp4.png);
  }
}

.block--stroke {
  position: absolute;
  width: 120vw;
}
@media screen and (min-width: 961px) {
  .block--stroke {
    top: 50%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--stroke {
    top: -20%;
  }
}

.stroke {
  position: relative;
  overflow: hidden;
  width: 130%;
}
@media screen and (min-width: 961px) {
  .stroke {
    left: 0;
    right: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .stroke {
    left: -15%;
    right: -15%;
  }
}
.stroke line {
  fill: transparent;
  stroke: #888;
  stroke-miterlimit: 10;
}
@media screen and (min-width: 961px) {
  .stroke line {
    stroke-width: 1;
    stroke-opacity: 0.4;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .stroke line {
    stroke-width: 1.5;
    stroke-dasharray: 600vw;
    stroke-dashoffset: 600vw;
  }
}

.section-tit {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.txt {
  margin: 0 0 1em;
}

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

.copyright {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.block--pager {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
}

.detail__btn,
.list__more {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 15px;
}

.no-data {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

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

.date {
  font-family: nanum-myeongjo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.nav--support {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
header .drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #D6D6D7;
  pointer-events: none;
  opacity: 0;
}
header .drawer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  background-attachment: fixed;
}
@media screen and (min-width: 961px) {
  header .drawer:before {
    background: url(/static/amazarashi/common/bg_spots1.png);
    background-size: cover;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  header .drawer:before {
    background: url(/static/amazarashi/common/bg_spots_sp1.png);
    background-size: cover;
  }
}
header .drawer .block--logo {
  opacity: 0;
  transition-delay: 0.3s;
  transition-duration: 0.3s;
}
header .drawer__btn {
  position: fixed;
  z-index: 100;
  right: 0;
}
header .drawer__btn span {
  display: block;
  background: #000000;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  position: absolute;
}
header .drawer__btn span:first-of-type {
  top: 36px;
}
header .drawer__btn span:last-of-type {
  top: 44px;
}
@media screen and (min-width: 961px) {
  header .drawer__btn {
    width: 90px;
    height: 80px;
    cursor: pointer;
  }
  header .drawer__btn span {
    width: 90px;
    height: 1px;
  }
  header .drawer__btn:hover span:first-of-type {
    transform: translateY(4px);
  }
  header .drawer__btn:hover span:last-of-type {
    transform: translateY(-4px);
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  header .drawer__btn {
    width: 70px;
    height: 80px;
  }
  header .drawer__btn span {
    width: 70px;
    height: 1px;
  }
}

body.menuOpen .header .drawer {
  opacity: 1;
  pointer-events: all;
}
body.menuOpen .header .block--logo {
  opacity: 1;
}
body.menuOpen .header .drawer__btn span:first-of-type {
  transform: rotate(30deg);
  top: 44px;
}
body.menuOpen .header .drawer__btn span:last-of-type {
  transform: rotate(-30deg);
}
body.menuOpen .header .menu-nav__memver li span, body.menuOpen .header .menu-nav__free li span, body.menuOpen .header .official-site::before, body.menuOpen .header .official-site span {
  transform: translateY(0);
  opacity: 1;
}

body:not(.page--home) .background {
  position: fixed;
  top: 0;
  left: 0;
}
body:not(.page--home) .background span {
  background-attachment: fixed;
  background-repeat: no-repeat;
  top: 0;
  animation: none;
}
body:not(.page--home) [class^=section--] {
  position: relative;
  z-index: 1;
}
body:not(.page--home) .footer .nav--support {
  display: none;
}

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

.slick-arrow {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  cursor: pointer;
}
.slick-arrow svg {
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  width: 100%;
  height: 24px;
}
.slick-arrow:hover svg {
  fill: #fff;
}

.slick-prev,
.slick-next {
  display: block;
  font-size: 0;
  line-height: 0;
  padding: 10px;
  position: absolute;
  z-index: 99;
  width: 140px;
  height: 50px;
}

.slick-slider:hover .slick-arrow {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.slick-prev {
  left: 3%;
}
.slick-prev svg {
  transform: scale(-1, 1);
}

.slick-next {
  right: 3%;
}

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

.slick-dots {
  text-align: right;
  transform: translateY(-20px);
}
.slick-dots li {
  width: 8px;
  height: 8px;
}
.slick-dots li.slick-active button {
  background: #000000;
}
.slick-dots li button {
  box-sizing: border-box;
  border: 1px solid #000000;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/static/amazarashi/common/btn_spots.svg);
  background-size: 100%;
  width: 240px;
  height: 50px;
  opacity: 0.6;
  pointer-events: none;
}
.btn .btn--main {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: #000000;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
}
.btn .btn--main:hover {
  background: #444;
  color: #fff;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    cursor: pointer;
  }
}
.btn .btn--sub {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
  color: #000000;
  box-shadow: 0 0 0px 1px #000 inset;
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    cursor: pointer;
  }
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
}
.btn .btn--sub:hover {
  background: #444;
  color: #fff;
}
.btn .btn--sub:hover {
  background: #000000;
  color: #D6D6D7;
}

.block--pager {
  text-align: center;
  letter-spacing: -0.5em;
  font-size: 15px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.block--pager li {
  display: inline-block;
  font-family: nanum-myeongjo, sans-serif;
  padding: 0.6em 0;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.block--pager a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 0 0.6em;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  cursor: pointer;
}
.block--pager .pager__item--current {
  position: relative;
}
.block--pager .pager__item--current::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.block--pager .pager__item--number {
  text-align: center;
}
.block--pager .pager__item--newer {
  width: 40px;
  height: 40px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.block--pager .pager__item--newer a, .block--pager .pager__item--newer span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  position: relative;
}
@media screen and (min-width: 961px) {
  .block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
}
.block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
  position: absolute;
  right: 16px;
}
.block--pager .pager__item--newer span {
  opacity: 0.4;
}
.block--pager .pager__item--older {
  width: 40px;
  height: 40px;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.block--pager .pager__item--older a, .block--pager .pager__item--older span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  position: relative;
}
@media screen and (min-width: 961px) {
  .block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
}
.block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
  position: absolute;
  right: 16px;
}
.block--pager .pager__item--older span {
  opacity: 0.4;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
}
.block--pager .pager__item--newer a:after,
.block--pager .pager__item--older a:after {
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.block--pager .pager__item--newer:hover a:after,
.block--pager .pager__item--older:hover a:after {
  border-color: #888;
}
.block--pager .pager__item--current {
  font-family: nanum-myeongjo, sans-serif;
  font-weight: 700;
  position: relative;
  padding: 0.6em;
}

.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: #000000;
}
.block--category .list--sort li span {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.block--category .list--sort li.current span {
  background: #CA4C4B;
  color: #000000;
}
.block--category .list--sort li:hover a span {
  color: #CA4C4B;
}
.block--category .list--sort li:not(.current) span {
  background: #eee;
  color: #000000;
}

.block--share li {
  display: inline-block;
}
.block--share li a {
  padding: 0 4px;
  cursor: pointer;
}
.block--share li.share {
  opacity: 0.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--share li {
    margin: 0 10px 0 0;
  }
  .block--share li i {
    font-size: 20px;
  }
  .block--share li.share {
    margin-right: 20px;
    font-size: 10px;
  }
  .block--share li.lineIco svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 961px) {
  .block--share li {
    margin: 0 16px 0 0;
  }
  .block--share li i, .block--share li svg {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .block--share li i {
    font-size: 22px;
  }
  .block--share li.share {
    margin-right: 20px;
    font-size: 12px;
  }
  .block--share li.lineIco svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
  }
  .block--share li:hover i {
    color: #888;
  }
  .block--share li:hover svg {
    fill: #888;
  }
}

.detail__btn {
  font-size: 12px;
  display: inline-block;
}
.detail__btn a {
  padding: 10px 0 10px 25px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.detail__btn a span {
  position: relative;
  z-index: 2;
}
.detail__btn a::before, .detail__btn a:after {
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  z-index: 1;
}
.detail__btn a:before {
  background-color: #85858e;
}
.detail__btn a:after {
  transform-origin: left;
  background-color: #000000;
  transform: scaleX(0);
}
@media screen and (min-width: 961px) {
  .detail__btn a:hover:after {
    transform: translateX(0);
    transform: scaleX(1);
  }
}

.ph {
  position: relative;
  margin: 30px 0;
  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%;
  margin: 20px auto;
}
.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: #D6D6D7;
  line-height: 0;
  position: relative;
}
.block--player video,
.block--player img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes bg {
  0% {
    opacity: 0.3;
    visibility: visible;
  }
  50% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0.6;
    visibility: visible;
  }
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 1000;
  }
  99.9%, to {
    stroke-dasharray: 1000 1000;
  }
}
@keyframes circlePC {
  0% {
    stroke-dasharray: 0 3000;
  }
  99.9%, to {
    stroke-dasharray: 3000 3000;
  }
}
@keyframes line {
  to {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
#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 {
  transform: rotate(45deg);
}

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

#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next {
  background: none;
  color: #fff;
  position: fixed;
  top: 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;
  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;
  transform: rotate(-135deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
}

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

.wovn-languages {
  color: #000;
  font-size: 10px;
  position: absolute;
  top: 86px;
  z-index: 2;
  width: 190px;
  height: 35px;
  border-bottom: 1px solid;
  cursor: pointer;
}
.page--home .wovn-languages {
  top: 26px;
}
.menuOpen .wovn-languages {
  opacity: 0;
  pointer-events: none;
}
.wovn-languages::after {
  content: "language";
  position: absolute;
  top: -12px;
  left: 10px;
}
.wovn-languages::before {
  content: "";
  width: 9px;
  height: 9px;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  border: 0px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg) translateY(-50%);
  z-index: 10;
  position: absolute;
  opacity: 0.4;
}
.wovn-languages .langIcon {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 50%;
  margin: auto;
  line-height: 1;
  transform: translateY(-50%);
}
.wovn-languages .langIcon svg {
  fill: #000;
}
.wovn-languages .nav-dropdown {
  position: absolute;
  top: 50%;
  left: 40px;
  line-height: 1.4;
  text-align: left;
  z-index: 2;
  transform: translateY(-50%);
}
.wovn-languages .nav-dropdown .list--language {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.wovn-languages .nav-dropdown .list--language li {
  width: 100%;
  display: none;
  cursor: pointer;
  padding-bottom: 0;
  text-align: left;
  padding: 0;
}
.wovn-languages .nav-dropdown .list--language li::after {
  content: none;
}
.wovn-languages .nav-dropdown .list--language li.selected {
  display: block;
  order: -1;
}
.wovn-languages.visible::before {
  content: none;
}
.wovn-languages.visible .nav-dropdown {
  opacity: 1;
  pointer-events: visible;
  z-index: 1;
  border: none;
  color: #000;
  top: 0;
  transform: translateY(0);
  background: #000;
  padding: 10px 10px 0;
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .wovn-languages.visible .nav-dropdown {
    left: 21px;
  }
}
.wovn-languages.visible .nav-dropdown .list--language li {
  display: block;
  transition: opacity 0.4s;
  margin-bottom: 10px;
  color: #fff;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected {
  pointer-events: none;
  background: transparent;
  padding: 0;
  opacity: 0.5;
  transition: none;
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .wovn-languages.visible .nav-dropdown .list--language li.selected {
    margin-bottom: 14px;
  }
}

.popup--language {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 110;
  opacity: 0;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.popup--language.visible {
  pointer-events: auto;
  opacity: 1;
  transition-delay: 1s;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup--language .popup--language__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
.popup--language .popup--language__area {
  padding: 2em 2.2em;
}
.popup--language .popup--language__approval {
  padding: 1.3em 2.2em;
  background: #D6D6D7;
}
.popup--language .popup--language__approval .approval--btn {
  display: inline-block;
  background-color: #3f3f3f;
  color: #fff;
  cursor: pointer;
}
.popup--language .popup--language__tit {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.7em;
}

/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .stroke.stroke1 {
    top: 110%;
    left: -5%;
    transform: rotate(160deg);
  }
  /* .header,nav
  ------------------------------ */
  /* .footer
  ------------------------------ */
  /* list
  ------------------------------ */
  /* .page--home
  ------------------------------ */
  /* .page--home以外基本のレイアウト
  ------------------------------ */
  /* .page--info
  ------------------------------ */
  /* .page--lyrics
  ------------------------------ */
  /* .page--bbs
  ------------------------------ */
  /* .page--blog
  ------------------------------ */
  /* .page--wallpaper
  ------------------------------ */
  /* .page--entry
  ------------------------------ */
  /* .page--appli
  ------------------------------ */
  /* .page--archives
  ------------------------------ */
  /* .page--game
  ------------------------------ */
  /* .page--puzzle
  ------------------------------ */
  /* .page--livehistory
  ------------------------------ */
  /* .page--privacy
  ------------------------------ */
  /* .page--support
  ------------------------------ */
  /* .page--faq
  ------------------------------ */
  /* .page--first_login
  ------------------------------ */
  /* .page--error
  ------------------------------ */
  /*  wovn popup--language
    ------------------------------- */
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .stroke.stroke1 {
    left: -70%;
  }
}
@media screen and (min-width: 961px) {
  .stroke.stroke2 {
    z-index: 1;
    top: 50%;
    left: -15%;
    transform: rotate(160deg);
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .stroke.stroke2 {
    left: -60%;
  }
}
@media screen and (min-width: 961px) {
  .stroke.stroke3 {
    left: -15%;
    top: 50%;
    transform: rotate(32deg);
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .stroke.stroke3 {
    left: -60%;
  }
}
@media screen and (min-width: 961px) {
  .stroke.stroke4 {
    top: 50%;
    transform: rotate(160deg);
    left: -15%;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .stroke.stroke4 {
    left: -60%;
  }
}
@media screen and (min-width: 961px) {
  .stroke.stroke5 {
    transform: rotate(32deg);
    top: 50%;
    left: -10vw;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .stroke.stroke5 {
    left: -60%;
  }
}
@media screen and (min-width: 961px) {
  .header .block--logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .header .block--logo .menu-logo {
    margin-right: 60px;
  }
  .header .block--logo .menu-logo svg {
    width: 16vw;
    height: 5vw;
  }
  .header .menu-nav__nav--login {
    text-align: center;
  }
  .header .menu-nav__nav--login li {
    display: inline-block;
    font-size: 16px;
  }
  .header .menu-nav__nav--login li a {
    position: relative;
    padding: 5px 7px;
    line-height: 1.3;
  }
  .header .menu-nav__nav--login li a .border-box {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
  .header .menu-nav__nav--login li a .border-box > span {
    position: absolute;
    background: #000;
    opacity: 1;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .header .menu-nav__nav--login li a .border-box > span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .menu-nav__nav--login li a .border-box > span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .menu-nav__nav--login li a .border-box > span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .menu-nav__nav--login li a .border-box > span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .menu-nav__nav--login li a:hover .border-box {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .header .menu-nav__nav--login li a:hover .border-box > span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .menu-nav__nav--login li a:hover .border-box > span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .menu-nav__nav--login li a:hover .border-box > span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .menu-nav__nav--login li a:hover .border-box > span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .menu-nav__nav--login li.nav--login__join {
    margin-right: 6px;
  }
  .header nav {
    width: 100%;
  }
  .header .nav--member {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.3);
  }
  .header .nav--free {
    margin-bottom: 50px;
  }
  .header .menu-nav__memver, .header .menu-nav__free {
    font-size: 14px;
  }
  .header .menu-nav__memver li, .header .menu-nav__free li {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 2%;
    width: 40%;
  }
  .header .menu-nav__memver li:nth-child(even), .header .menu-nav__free li:nth-child(even) {
    margin-right: 0;
  }
  .header .menu-nav__memver li a, .header .menu-nav__free li a {
    padding: 5px 7px;
    position: relative;
    display: inline-block;
  }
  .header .menu-nav__memver li a .border-box, .header .menu-nav__free li a .border-box {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
  .header .menu-nav__memver li a .border-box > span, .header .menu-nav__free li a .border-box > span {
    position: absolute;
    background: #444;
    opacity: 1;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .header .menu-nav__memver li a .border-box > span:nth-child(1), .header .menu-nav__free li a .border-box > span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .menu-nav__memver li a .border-box > span:nth-child(2), .header .menu-nav__free li a .border-box > span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .menu-nav__memver li a .border-box > span:nth-child(3), .header .menu-nav__free li a .border-box > span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .menu-nav__memver li a .border-box > span:nth-child(4), .header .menu-nav__free li a .border-box > span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .menu-nav__memver li a:hover .border-box, .header .menu-nav__free li a:hover .border-box {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .header .menu-nav__memver li a:hover .border-box > span:nth-child(1), .header .menu-nav__free li a:hover .border-box > span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .menu-nav__memver li a:hover .border-box > span:nth-child(2), .header .menu-nav__free li a:hover .border-box > span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .menu-nav__memver li a:hover .border-box > span:nth-child(3), .header .menu-nav__free li a:hover .border-box > span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .menu-nav__memver li a:hover .border-box > span:nth-child(4), .header .menu-nav__free li a:hover .border-box > span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .menu-nav__memver li span, .header .menu-nav__free li span {
    display: block;
    transform: translateY(3em);
    opacity: 0;
    line-height: 1.3;
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .header .menu-nav__memver li i, .header .menu-nav__free li i {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
  }
  .header .official-site {
    font-size: 14px;
    position: relative;
    margin-left: auto;
    overflow: hidden;
    padding-left: 90px;
  }
  .header .official-site::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 1px;
    background: rgba(136, 136, 136, 0.4);
    transform: translateY(3em);
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .header .official-site a {
    padding: 5px 7px;
    position: relative;
    overflow: hidden;
  }
  .header .official-site a .border-box {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
  .header .official-site a .border-box > span {
    position: absolute;
    background: #444;
    opacity: 1;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .header .official-site a .border-box > span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .official-site a .border-box > span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .header .official-site a .border-box > span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .official-site a .border-box > span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .header .official-site a:hover .border-box {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .header .official-site a:hover .border-box > span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .official-site a:hover .border-box > span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .header .official-site a:hover .border-box > span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .official-site a:hover .border-box > span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .header .official-site span {
    display: block;
    transform: translateY(3em);
    opacity: 0;
    line-height: 1.3;
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .header .official-site i {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
  }
  body.menuOpen .header .drawer {
    padding-top: 72px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  body.menuOpen .header .drawer .drawer-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    width: calc(90% - 600px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 72%;
  }
  body.menuOpen .header .drawer .block--logo {
    opacity: 1;
  }
  .footer {
    z-index: 1;
  }
  .footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .footer .nav-wrap {
    margin-right: 16%;
  }
  .footer .nav--support {
    margin-bottom: 40px;
  }
  .footer .nav--support li {
    display: inline-block;
    font-size: 12px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
  }
  .footer .nav--support li:not(:last-of-type) {
    margin-right: 16px;
  }
  .footer .nav--support li:hover {
    opacity: 0.5;
  }
  .footer .nav--support li a {
    width: 100%;
  }
  .footer .official {
    max-width: 190px;
    width: 11vw;
  }
  .footer .official a {
    width: 100%;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .footer .official a:hover {
    opacity: 0.5;
  }
  .footer .official img {
    width: 100%;
    display: block;
  }
  .footer .copyright {
    color: #000000;
    font-size: 10px;
  }
  .list--info li:last-of-type {
    margin-bottom: 0;
  }
  .list--info li.new .tit {
    position: relative;
  }
  .list--info li.new .tit::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #CA4C4B;
    border-radius: 50%;
    right: -10px;
  }
  .list--info li .date {
    font-family: nanum-myeongjo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
  }
  .list--info li a {
    width: 100%;
    height: 100%;
    padding: 15px;
    position: relative;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--info li a .border-box {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
  .list--info li a .border-box > span {
    position: absolute;
    background: #000;
    opacity: 1;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--info li a .border-box > span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .list--info li a .border-box > span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .list--info li a .border-box > span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .list--info li a .border-box > span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .list--info li a:hover .border-box {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .list--info li a:hover .border-box > span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .list--info li a:hover .border-box > span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .list--info li a:hover .border-box > span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .list--info li a:hover .border-box > span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .list--bnr li a {
    position: relative;
    cursor: pointer;
    line-height: 0;
  }
  .list--bnr li a img {
    width: 100%;
  }
  .list--bnr li:not(.slick-active) a:before, .list--bnr li:not(.slick-active) a:after {
    content: none;
  }
  .list--bnr li a:before, .list--bnr li a:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--bnr li a:before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: #383838;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: bottom;
    mix-blend-mode: hard-light;
    opacity: 0.7;
  }
  .list--bnr li a:after {
    content: "view more";
    width: 9em;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    cursor: pointer;
  }
  .list--bnr li:hover a:before {
    transform: scaleY(2);
  }
  .list--bnr li:hover a:after {
    opacity: 1;
  }
  .block--pager {
    font-size: 14px;
    text-align: left;
    margin: 0 auto 0 0;
    left: -25px;
  }
  .block--pager li {
    margin: 0 15px;
  }
  .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--other a .circle-box {
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 28px;
    height: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .block--pager .pager__item--other a svg.circle {
    width: calc(28px + 2px);
    height: calc(28px + 2px);
  }
  .block--pager .pager__item--other a svg.circle circle {
    fill: transparent;
    cx: 14px;
    cy: 14px;
    r: 13px;
    stroke: #000;
    stroke-width: 1;
    stroke-opacity: 1;
  }
  .block--pager .pager__item--other a:hover .circle-box {
    visibility: visible;
  }
  .block--pager .pager__item--other a:hover circle {
    animation: circlePC 8s forwards;
  }
  .block--pager .pager__item--other a:hover .circle-box circle {
    animation-duration: 12s;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .block--pager .pager__item--other a .circle-box .circle-l circle {
    stroke-dasharray: 60px 60px;
  }
}
@media screen and (min-width: 961px) {
  .block--pager .pager__item--older, .block--pager .pager__item--newer {
    position: static;
  }
  .block--pager .pager__item--older a:after, .block--pager .pager__item--older span:after, .block--pager .pager__item--newer a:after, .block--pager .pager__item--newer span:after {
    top: 16px;
  }
  .block--pager .pager-link--next a, .block--pager .pager-link--prev a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .block--pager .pager-link--next a:hover, .block--pager .pager-link--prev a:hover {
    opacity: 0.5;
  }
  .more {
    text-align: center;
    display: block;
    margin: 0 auto;
    cursor: pointer;
  }
  .more:hover span.arrow:before {
    transform: scaleX(1.2);
  }
  .more:hover span.arrow:after {
    right: -49px;
  }
  .more a {
    margin: 0 auto;
    width: 100%;
    padding: 10px 0;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .more .viewmore {
    margin-right: 10px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .more span.arrow {
    display: block;
    position: relative;
    transform: translateY(2px);
  }
  .more span.arrow:before, .more span.arrow:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    content: "";
    display: block;
    position: absolute;
    background: #000;
    height: 1px;
  }
  .more span.arrow:before {
    width: 40px;
    transform-origin: left;
  }
  .more span.arrow:after {
    width: 14px;
    top: -4px;
    right: -41px;
    transform: rotate(-150deg);
  }
  .list--article {
    margin-top: 30px;
  }
  .list--article li {
    background: #fff;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .list--article li:not(:last-child) {
    margin-bottom: 10px;
  }
  .list--article li:hover {
    background: #CCCCCC;
  }
  .list--article li a {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px 2em 10px 10px;
  }
  .list--article li a.textL {
    height: auto;
  }
  .list--article .date, .list--article .tit {
    font-weight: bold;
  }
  .list--article .tit {
    margin-bottom: 10px;
  }
  .list--article .present {
    color: #CA4C4B;
    margin: 0 0 5px;
  }
  .list--article .pict_box {
    margin-right: 20px;
  }
  .list--article .ph {
    margin: 0;
    width: 15vw;
  }
  .list--article .ph img {
    width: 100%;
  }
  .section-tit .border {
    position: relative;
  }
  .section-tit .border:before, .section-tit .border:after {
    content: "";
    position: absolute;
  }
  .section-tit .border:before {
    width: 35px;
    height: 1px;
    background: #000000;
    top: 60%;
    right: -10%;
    transform: rotate(-39deg);
  }
  .section-tit .border:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 28px 35px;
    border-color: transparent transparent #D6D6D7 transparent;
    top: -1%;
    right: -13%;
  }
  .notes {
    line-height: 1.3;
  }
  .notes dt {
    font-weight: bold;
    margin: 0 0 2px;
    font-size: 13px;
  }
  .notes dd {
    font-size: 12px;
  }
  .notes dd li {
    margin: 0 0 0.5em 1em;
    text-indent: -0.6em;
  }
  .page--home.loaded .section--top .keyvisual p svg, .page--home.loaded .section--top .list--login li span {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home h1 {
    display: none;
  }
  .page--home .wrap {
    padding-bottom: 70px;
  }
  .page--home [class^=section--] {
    position: relative;
    margin: 0 8.5% 150px;
  }
  .page--home [class^=section--] .section-bg {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--home [class^=section--] .section-bg.started circle {
    stroke: #888888;
    stroke-width: 1;
    animation: circlePC 3s forwards 0.3s;
    stroke-opacity: 0.4;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home [class^=section--] .section-bg.started circle {
    transition-delay: 0.1s;
    stroke-dasharray: 0 3000;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home [class^=section--] .section-bg.ended circle {
    stroke-dasharray: 3000 3000;
  }
  .page--home [class^=section--] .block--stroke.ended line {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
@media screen and (min-width: 961px) {
  .page--home [class^=section--] .block--stroke.started line {
    animation: line 3s forwards;
  }
  .page--home [class^=section--] .section-tit {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.45em;
    margin-bottom: 90px;
    overflow: hidden;
  }
  .page--home [class^=section--] .section-tit span {
    display: inline-block;
    opacity: 0;
    transform: translateY(2em);
    transition: all 0.5s ease-out 0.5s;
    -webkit-transition: all 0.5s ease-out 0.5s;
  }
  .page--home [class^=section--] .section-tit.started span {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home [class^=section--] .date {
    opacity: 0.5;
  }
  .page--home [class^=section--] .more a {
    opacity: 0;
    transform: translateY(2.5em);
    transition: all 0.3s ease-out 0.2s;
    -webkit-transition: all 0.3s ease-out 0.2s;
  }
  .page--home [class^=section--] .more.started a {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--top {
    min-height: 700px;
    height: 99vh;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--top .block--stroke {
    top: 110%;
  }
  .page--home .section--top .keyvisual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--home .section--top .keyvisual p {
    overflow: hidden;
  }
  .page--home .section--top .keyvisual p svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: translateY(5vw);
    opacity: 0;
    transition: all 0.9s ease-out 0.2s;
    -webkit-transition: all 0.9s ease-out 0.2s;
  }
  .page--home .section--top .keyvisual .fclogo {
    display: block;
    margin-bottom: 28px;
    width: 31vw;
    height: 4vw;
    max-width: 350px;
    max-height: 46px;
  }
  .page--home .section--top .keyvisual .amazarashi {
    width: 11vw;
    height: 3vw;
    max-width: 126px;
    max-height: 34px;
  }
  .page--home .section--top .keyvisual .amazarashi svg {
    transition-delay: 0.6s;
  }
  .page--home .section--top .block--status {
    width: 100%;
    position: absolute;
    top: 78vh;
    text-align: center;
    overflow: hidden;
  }
  .page--home .section--top .block--status a:hover .stage {
    filter: invert(1);
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--top .block--status {
    top: 80vh;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--top .block--status .name {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .page--home .section--top .block--status .name span {
    font-weight: bold;
  }
  .page--home .section--top .block--status .stage {
    font-size: 12px;
    display: inline-block;
    padding: 7px 3%;
    margin-bottom: 10px;
    letter-spacing: 0.4em;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--top .block--status .stage.normal {
    background: #ececec;
  }
  .page--home .section--top .block--status .stage.first {
    background: #e2e2e2;
  }
  .page--home .section--top .block--status .stage.second {
    background: #b9b9b9;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.third {
    background: #7b7b7b;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.fourth {
    background: #505050;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.fifth {
    background: #131313;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.sixth {
    background: #000;
    color: #fff;
  }
  .page--home .section--top .block--status .txt-wrap {
    opacity: 0;
    transform: translateY(6vw);
    transition: all 0.8s ease-out 1s;
    -webkit-transition: all 0.8s ease-out 1s;
  }
  .page--home .section--top .block--status .txt-wrap.started {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--top .block--status .txt-wrap.ended {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--top .block--status .list--login li {
    display: inline-block;
    text-align: center;
    position: relative;
    margin: 0 10px;
    font-size: 18px;
  }
  .page--home .section--top .block--status .list--login span {
    opacity: 0;
    transform: translateY(3em);
    display: block;
    transition: all 0.8s ease-out 1s;
    -webkit-transition: all 0.8s ease-out 1s;
  }
  .page--home .section--top .block--status .list--login a {
    padding: 10px 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    overflow: hidden;
  }
  .page--home .section--top .block--status .list--login a:hover {
    opacity: 0.5;
  }
  .page--home .section--pickup {
    width: 74%;
    max-width: 800px;
    margin: 0 auto 100px;
  }
  .page--home .section--pickup .list--pickup li {
    margin-bottom: 25px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--pickup .list--pickup li a {
    padding: 5px 0;
    position: relative;
    padding: 15px 7px;
  }
  .page--home .section--pickup .list--pickup li a:before, .page--home .section--pickup .list--pickup li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
  }
  .page--home .section--pickup .list--pickup li a::before {
    background: #000000;
    transform-origin: left;
    transform: scaleX(0);
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
  }
  .page--home .section--pickup .list--pickup li a:after {
    background: #888;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    opacity: 0;
  }
  .page--home .section--pickup .list--pickup li span {
    opacity: 0;
    z-index: 1;
    position: relative;
    font-size: 18px;
    color: #fff;
    transition: all 0.8s ease-out 0.7s;
    -webkit-transition: all 0.8s ease-out 0.7s;
  }
  .page--home .section--pickup .list--pickup li:hover a:after {
    opacity: 1;
  }
  .page--home .section--pickup .list--pickup li.delighter.started a:before {
    transform: scaleX(1);
  }
  .page--home .section--pickup .list--pickup li.delighter.started span {
    opacity: 1;
  }
  .page--home .section--banner {
    margin: 0 0 180px;
  }
  .page--home .section--banner .slick-slide {
    position: relative;
  }
  .page--home .section--banner .slick-slide:not(:last-of-type) {
    margin-right: 16px;
  }
  .page--home .section--banner .slick-slide:not(.slick-active):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #AFAFAF;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
  }
  .page--home .section--banner.bnr--single .list--bnr {
    width: 50%;
    margin: 0 auto;
  }
  .page--home .section--news {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 30vw;
  }
  .page--home .section--news .block--stroke.started line {
    animation-delay: 0.1s;
  }
  .page--home .section--news .section-inner {
    width: 100%;
    padding-top: 130px;
    padding-bottom: 90px;
    position: relative;
    z-index: 2;
  }
  .page--home .section--news .section-inner .border-box2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }
  .page--home .section--news .section-inner .border-box2 rect {
    opacity: 0;
    fill: none;
    transition: all 0.8s ease-out 0.2s;
    -webkit-transition: all 0.8s ease-out 0.2s;
  }
  .page--home .section--news .section-inner .border-box2 span {
    position: absolute;
    background: #888;
    opacity: 1;
    transition: all 1s cubic-bezier(0.4, 0, 0.72, 0.96) 0.6s;
  }
  .page--home .section--news .section-inner .border-box2 span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--news .section-inner .border-box2 span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: top;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--news .section-inner .border-box2 span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--news .section-inner .border-box2 span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--news .section-inner .border-box2.started {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .page--home .section--news .section-inner .border-box2.started rect {
    fill: #CCCCCC;
    opacity: 1;
  }
  .page--home .section--news .section-inner .border-box2.started span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--home .section--news .section-inner .border-box2.started span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--home .section--news .section-inner .border-box2.started span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--home .section--news .section-inner .border-box2.started span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--home .section--news .section-inner .border-box2.ended {
    transform: translate3d(0, 0, 0);
  }
  .page--home .section--news .section-inner .border-box2.ended span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--news .section-inner .border-box2.ended span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--news .section-inner .border-box2.ended span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--news .section-inner .border-box2.ended span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(0);
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--news .section-inner .border-box2 rect {
    opacity: 1;
    fill: #CCCCCC;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--news .border:before {
    top: 50%;
  }
  .page--home .section--news .border:after {
    border-color: transparent transparent #ccc transparent;
  }
  .page--home .section--news .list--info {
    width: 76%;
    max-width: 800px;
    margin: 0 auto 90px;
  }
  .page--home .section--news .list--info li:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .page--home .section--news .list--info li .tit {
    font-size: 24px;
    display: inline;
    line-height: 1.8;
  }
  .page--home .section--news .list--info li .date {
    font-size: 11px;
    margin-top: 14px;
  }
  .page--home .section--news .list--info li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .page--home .section--news .list--info a {
    position: relative;
    overflow: hidden;
  }
  .page--home .section--news .list--info a .txt-wrap {
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s ease-out 0s;
    -webkit-transition: all 0.8s ease-out 0s;
    transform: translateY(3em);
  }
  .page--home .section--news .more {
    width: 30%;
  }
  .page--home .section--blog {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--home .section--blog .section-inner {
    z-index: 2;
  }
  .page--home .section--blog .list--info li {
    text-align: center;
    display: inline-block;
  }
  .page--home .section--blog .list--info li .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
  }
  .page--home .section--blog .list--info li:not(:first-of-type) {
    display: none;
  }
  .page--home .section--blog .list--info li.new .tit {
    background: none;
  }
  .page--home .section--blog .list--info li.new a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #CA4C4B;
    border-radius: 50%;
  }
  .page--home .section--blog .list--info li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--blog .list--info li a {
    position: relative;
  }
  .page--home .section--blog .list--info li .txt-wrap {
    opacity: 0;
    transition: all 0.8s ease-out 0s;
    -webkit-transition: all 0.8s ease-out 0s;
    transform: translateY(3em);
  }
  .page--home .section--blog.akita {
    margin-bottom: 30vw;
  }
  .page--home .section--blog.akita .section-bg {
    width: 54vw;
    height: 54vw;
  }
  .page--home .section--blog.akita .section-bg svg.circle {
    width: calc(54vw + 2px);
    height: calc(54vw + 2px);
  }
  .page--home .section--blog.akita .section-bg circle {
    fill: transparent;
  }
  .page--home .section--blog.akita .border:before {
    right: -7%;
  }
  .page--home .section--blog.akita .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
    right: -13%;
  }
  .page--home .section--blog.akita .list--info {
    margin-bottom: 110px;
  }
  .page--home .section--blog.akita .list--info li {
    margin-bottom: 0;
  }
  .page--home .section--blog.akita .list--info li .tit {
    font-size: 100px;
    margin-bottom: 10px;
  }
  .page--home .section--blog.akita .list--info li.new a::before {
    top: 40px;
    right: -6px;
  }
  .page--home .section--blog.akita .list--info .circle-box {
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 20vw;
    height: 20vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--home .section--blog.akita .list--info svg.circle {
    width: calc(20vw + 2px);
    height: calc(20vw + 2px);
  }
  .page--home .section--blog.akita .list--info svg.circle circle {
    fill: transparent;
    cx: 10vw;
    cy: 10vw;
    r: 9.5vw;
    stroke: #000;
    stroke-width: 1;
    stroke-opacity: 0.2;
  }
  .page--home .section--blog.akita .list--info:hover .circle-box {
    visibility: visible;
  }
  .page--home .section--blog.akita .list--info:hover circle {
    animation: circlePC 8s forwards;
  }
  .page--home .section--blog.staff {
    margin-bottom: 22vw;
  }
  .page--home .section--blog.staff .section-inner {
    width: 100%;
    padding: 200px 130px;
    position: relative;
    z-index: 2;
  }
  .page--home .section--blog.staff .section-inner .border-box2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }
  .page--home .section--blog.staff .section-inner .border-box2 rect {
    opacity: 0;
    fill: none;
    transition: all 0.8s ease-out 0.2s;
    -webkit-transition: all 0.8s ease-out 0.2s;
  }
  .page--home .section--blog.staff .section-inner .border-box2 span {
    position: absolute;
    background: #888;
    opacity: 1;
    transition: all 1s cubic-bezier(0.4, 0, 0.72, 0.96) 0.6s;
  }
  .page--home .section--blog.staff .section-inner .border-box2 span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2 span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: top;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2 span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2 span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.started {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.started rect {
    fill: #CCCCCC;
    opacity: 1;
  }
  .page--home .section--blog.staff .section-inner .border-box2.started span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--home .section--blog.staff .section-inner .border-box2.started span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--home .section--blog.staff .section-inner .border-box2.started span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--home .section--blog.staff .section-inner .border-box2.started span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--home .section--blog.staff .section-inner .border-box2.ended {
    transform: translate3d(0, 0, 0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.ended span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.ended span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.ended span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--home .section--blog.staff .section-inner .border-box2.ended span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(0);
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--blog.staff .section-inner .border-box2 rect {
    opacity: 1;
    fill: #CCCCCC;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--blog.staff .section-tit span {
    transition-duration: 0.4s;
  }
  .page--home .section--blog.staff .block--stroke {
    top: 30vw;
  }
  .page--home .section--blog.staff .border:before {
    right: -2%;
  }
  .page--home .section--blog.staff .border:after {
    border-color: transparent transparent #ccc transparent;
    right: -6%;
  }
  .page--home .section--blog.staff .list--info {
    margin-bottom: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--blog.staff .list--info .txt-wrap {
    transition: all 0.6s ease-out 0.6s;
    -webkit-transition: all 0.6s ease-out 0.6s;
  }
  .page--home .section--blog.staff .list--info li {
    margin-bottom: 0;
  }
  .page--home .section--blog.staff .list--info li .tit {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .page--home .section--blog.staff .list--info li.new a:before {
    top: 10px;
    right: -16px;
  }
  .page--home .section--blog.staff .more {
    width: 30%;
  }
  .page--home .section--wallpaper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--home .section--wallpaper .section-bg {
    width: 50vw;
    height: 50vw;
  }
  .page--home .section--wallpaper .section-bg svg.circle {
    width: calc(50vw + 2px);
    height: calc(50vw + 2px);
  }
  .page--home .section--wallpaper .section-bg circle {
    fill: transparent;
  }
  .page--home .section--wallpaper .border:before {
    right: -10%;
  }
  .page--home .section--wallpaper .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
    right: -22%;
  }
  .page--home .section--wallpaper .list--contents {
    margin-bottom: 74px;
  }
  .page--home .section--wallpaper .list--contents .thumb {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
  }
  .page--home .section--wallpaper .list--contents .thumb img {
    display: block;
    width: 14vw;
    height: 14vw;
  }
  .page--home .section--wallpaper .list--contents .thumb .content {
    position: relative;
    background-size: cover;
    z-index: 2;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--wallpaper .list--contents .thumb .blur {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.5);
    filter: blur(1px);
    width: 100%;
    display: block;
    z-index: 1;
  }
  .page--home .section--wallpaper .list--contents .thumb .blur img {
    background-size: 100%;
  }
  .page--home .section--wallpaper .list--contents .date {
    text-align: center;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--wallpaper .list--contents .txt-wrap {
    opacity: 0;
    transition: all 0.6s ease-out 0s;
    -webkit-transition: all 0.6s ease-out 0s;
    transform: translateY(2.5em);
  }
  .page--home .section--wallpaper .list--contents li {
    position: relative;
  }
  .page--home .section--wallpaper .list--contents li .circle-box {
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 20vw;
    height: 20vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--home .section--wallpaper .list--contents li svg.circle {
    width: calc(20vw + 2px);
    height: calc(20vw + 2px);
  }
  .page--home .section--wallpaper .list--contents li svg.circle circle {
    fill: transparent;
    cx: 10vw;
    cy: 10vw;
    r: 9.5vw;
    stroke: #000;
    stroke-width: 1;
    stroke-opacity: 0.4;
  }
  .page--home .section--wallpaper .list--contents li:hover .circle-box {
    visibility: visible;
  }
  .page--home .section--wallpaper .list--contents li:hover circle {
    animation: circlePC 8s forwards;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--wallpaper .list--contents li .circle-box .circle-l circle {
    opacity: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--wallpaper .list--contents li:hover .circle-box .circle-l circle {
    opacity: 1;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--wallpaper .list--contents li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--wallpaper .list--contents li.new::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #CA4C4B;
    border-radius: 50%;
    top: -20px;
    right: -16px;
  }
  .page--home .section--wallpaper .more {
    width: 50%;
  }
  .page--home .footer {
    opacity: 0;
    transform: translateY(20px);
    background: #CCCCCC;
    margin: 0 8.5% 68px;
    padding: 100px 3.5% 100px 3.5%;
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  .page--home .footer.started {
    opacity: 1;
    transform: translateY(0);
  }
  body:not(.page--home) h1 {
    display: block;
    width: 10vw;
    position: fixed;
    top: 32px;
    left: 4.5%;
  }
  body:not(.page--home) h1 a {
    width: 100%;
  }
  body:not(.page--home) h1 svg {
    width: 100%;
    height: 2vw;
  }
  body:not(.page--home) .wrap {
    padding: 150px 0 100px;
  }
  body:not(.page--home) .footer {
    padding: 30px 3%;
    height: 130px;
    position: inherit;
    bottom: 0;
  }
  body:not(.page--home) .footer .inner {
    align-items: flex-end;
  }
  body:not(.page--home) .footer .official {
    display: none;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    position: relative;
    z-index: 1;
  }
  body:not(.page--home) .section--list .section-tit,
  body:not(.page--home) .section--detail .section-tit {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.45em;
    margin-bottom: 90px;
    font-weight: bold;
  }
  body:not(.page--home) .section--list .detail__btn,
  body:not(.page--home) .section--detail .detail__btn {
    margin-top: 60px;
  }
  .page--info .list--info {
    margin-bottom: 120px;
  }
  .page--info .list--info li:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .page--info .list--info li .tit {
    font-size: 18px;
    margin-bottom: 18px;
    display: inline-block;
  }
  .page--info .list--info li .date {
    font-size: 11px;
  }
  .page--info .list--info a {
    padding: 15px;
    cursor: pointer;
  }
  .page--info .section--list.info .border:before {
    top: 65%;
    right: -11%;
  }
  .page--info .section--detail .tit {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .page--info .section--detail .date {
    margin-bottom: 50px;
    font-size: 11px;
  }
  .page--info .section--detail .txt a {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--info .section--detail .txt a:hover {
    text-decoration: none;
  }
  .page--info .section--detail .block--share {
    text-align: center;
    margin: 50px 0 30px;
  }
  .page--lyrics .border:before, .page--lyrics .border:after {
    right: -14%;
  }
  .page--lyrics .block--search {
    margin: 0 auto 50px;
  }
  .page--lyrics .block--search form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--lyrics .block--search .block--pull-down {
    cursor: pointer;
    float: left;
    width: 25%;
    margin-right: 3%;
    position: relative;
  }
  .page--lyrics .block--search .block--pull-down select {
    line-height: 1.6;
    display: inline-block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 0.5em;
    padding-right: 1.5em;
    cursor: pointer;
  }
  .page--lyrics .block--search .block--pull-down select::-ms-expand {
    display: none;
  }
  .page--lyrics .block--search .searchForm {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #000000;
    width: 470px;
    height: 36px;
  }
  .page--lyrics .block--search input[type=text].text:-moz-placeholder-shown {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text:placeholder-shown {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text::-webkit-input-placeholder {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text:-moz-placeholder {
    color: #000000;
    opacity: 1;
  }
  .page--lyrics .block--search input[type=text].text:-ms-input-placeholder {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text] {
    background: transparent;
    padding-bottom: 0.5em;
    width: 100%;
  }
  .page--lyrics .block--search input[type=submit] {
    font-family: FontAwesome;
    background-color: transparent;
    color: #000000;
    font-size: 17px;
    padding: 9px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--lyrics .block--search input[type=submit]:hover {
    opacity: 0.5;
  }
  .page--lyrics .form--confirm dl {
    padding: 40px 2%;
    border-top: 1px solid rgba(133, 133, 142, 0.4);
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    margin: 0 0 20px;
  }
  .page--lyrics .form--confirm dt {
    margin-bottom: 2px;
    font-size: 13px;
    opacity: 0.5;
  }
  .page--lyrics .form--confirm dd {
    margin: 0 0 30px;
    font-size: 16px;
  }
  .page--lyrics .block--category {
    margin: 0 auto 30px;
    text-align: right;
    position: relative;
  }
  .page--lyrics .block--category:before {
    content: "sort:";
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-weight: bold;
    opacity: 0.5;
    font-size: 13px;
  }
  .page--lyrics .block--category li {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--lyrics .block--category li span {
    padding: 10px;
  }
  .page--lyrics .block--category li:hover {
    color: #000000;
  }
  .page--lyrics #panes .block--pager {
    position: relative;
    bottom: 0;
  }
  .page--lyrics .block--category .current {
    color: #000000;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--lyrics .comment {
    font-size: 13px;
  }
  .page--lyrics .comment i {
    display: inline-block;
    margin-right: 4px;
    color: #444;
  }
  .page--lyrics .tit {
    margin-top: 0;
    font-size: 15px;
  }
  .page--lyrics .section--list.lyrics .border::before {
    right: -14%;
  }
  .page--lyrics .section--list.lyrics .list--info {
    margin-bottom: 120px;
  }
  .page--lyrics .section--list.lyrics .list--info a {
    padding: 30px 3.5%;
  }
  .page--lyrics .section--list.lyrics .list--info li {
    padding: 0;
    position: relative;
  }
  .page--lyrics .section--list.lyrics .list--info li:not(.no-data) {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .section--list.lyrics .list--info li::before {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    background: #000;
  }
  .page--lyrics .section--list.lyrics .list--info li:first-of-type:not(.no-data) {
    margin-top: 0;
    border-top: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .section--list.lyrics .list--info li.no-data {
    margin-top: 100px !important;
  }
  .page--lyrics .section--list.lyrics .list--info li.no-data::before {
    content: none;
  }
  .page--lyrics .section--list.lyrics .list--info li:hover::before {
    transform: scaleX(1);
  }
  .page--lyrics .section--list.lyrics .list--info .tit {
    margin-bottom: 5px;
  }
  .page--lyrics .section--list.lyrics .list--info .date, .page--lyrics .section--list.lyrics .list--info .name {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .page--lyrics .section--list.comment .list--comment {
    margin-bottom: 120px;
  }
  .page--lyrics .section--list.comment .list--comment li {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 30px 3.5%;
  }
  .page--lyrics .section--list.comment .list--comment li:first-of-type:not(.no-data) {
    border-top: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .section--list.comment .list--comment li.no-data {
    border-top: 0;
    margin: 100px 0;
    padding: 0;
    border-bottom: 0;
  }
  .page--lyrics .section--list.comment .list--comment .name {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--lyrics .section--list.comment .list--comment .txt {
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .section-tit {
    font-size: 18px;
    left: 0.02em;
    margin-bottom: 10px;
    letter-spacing: inherit;
  }
  .page--lyrics .section--detail.lyrics .block--lyrics {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0 20px;
  }
  .page--lyrics .section--detail.lyrics .credit {
    font-size: 12px;
    text-align: center;
    margin-bottom: 90px;
  }
  .page--lyrics .section--detail.lyrics .txt {
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .list--disc {
    padding-top: 20px;
  }
  .page--lyrics .section--detail.lyrics .list--disc .thumb {
    overflow: hidden;
    width: 70%;
    margin: 0 auto 20px;
  }
  .page--lyrics .section--detail.lyrics .list--disc .thumb img:first-of-type {
    background-size: contain;
    position: relative;
    z-index: 10;
  }
  .page--lyrics .section--detail.lyrics .list--disc .tit {
    font-size: 22px;
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .list--disc .date {
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .panes {
    margin-bottom: 50px;
  }
  .page--lyrics .section--detail.lyrics .btn {
    margin-bottom: 20px;
  }
  .page--lyrics .section--detail.lyrics .comment_view {
    text-align: center;
  }
  .page--lyrics .section--detail.lyrics .comment_view a {
    padding: 10px 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--lyrics .section--detail.lyrics .comment_view a:hover {
    opacity: 0.5;
  }
  .page--lyrics .section--detail.confirm .btn--main {
    margin-bottom: 10px;
  }
  .page--lyrics .section--detail.done .txt {
    text-align: center;
  }
  .page--lyrics .section--detail.done .btn {
    margin-top: 50px;
  }
  .page--lyrics .block--lyrics-tit {
    margin: 0 0 30px;
    text-align: center;
  }
  .page--lyrics .block--lyrics-tit .tit {
    font-size: 18px;
    margin: 0 0 10px;
    text-align: center;
    font-weight: bold;
  }
  .page--lyrics .block--lyrics-tit .credit {
    font-size: 12px;
    text-align: center;
  }
  .page--lyrics .list--info .no-data {
    margin: 100px 0;
  }
  .page--lyrics .form--post dd {
    margin-bottom: 20px;
  }
  .page--lyrics .list--error {
    margin-bottom: 20px;
    color: #CA4C4B;
  }
  .page--lyrics .list--error li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .page--bbs .date {
    opacity: 0.5;
    font-size: 12px;
  }
  .page--bbs .block--bbs-option {
    margin: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--bbs .block--bbs-option .searchForm {
    background: transparent;
    width: 470px;
    height: 36px;
    border: none;
    position: relative;
    border-bottom: 1px solid #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text] {
    width: 100%;
    height: 36px;
    float: left;
    background: transparent;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-moz-placeholder-shown {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:placeholder-shown {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search::-webkit-input-placeholder {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-moz-placeholder {
    color: #000000;
    opacity: 1;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-ms-input-placeholder {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=submit] {
    font-family: FontAwesome;
    background-color: transparent;
    color: #000000;
    font-size: 17px;
    padding: 9px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--bbs .block--bbs-option .searchForm input[type=submit]:hover {
    opacity: 0.5;
  }
  .page--bbs .block--bbs-option .threadSort {
    margin-right: 3%;
    width: 25%;
  }
  .page--bbs .block--bbs-option .select--sort {
    display: inline-block;
    position: relative;
    cursor: pointer;
    position: relative;
    width: 100%;
  }
  .page--bbs .block--bbs-option .select--sort select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    width: 100%;
    display: inline-block;
    position: relative;
    padding: 0.5em 1.5em 0.5em 0.5em;
  }
  .page--bbs .comment {
    display: inline-block;
    line-height: 0;
    font-size: 0.8em;
    position: relative;
    top: -1px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    margin-left: 0.5em;
    letter-spacing: 0;
  }
  .page--bbs [class^=form--] dt > span {
    margin-left: 10px;
  }
  .page--bbs .list--thread {
    margin-bottom: 50px;
  }
  .page--bbs .list--thread li {
    position: relative;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--bbs .list--thread a {
    padding: 30px 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--bbs .list--thread a:hover {
    opacity: 0.5;
  }
  .page--bbs .list--thread .tit {
    font-size: 18px;
    margin: 0 0 0.5em;
    font-weight: bold;
  }
  .page--bbs .section--list .icon--like {
    font-size: 20px;
  }
  .page--bbs .section--list .icon--like .clicked {
    color: #e87676;
  }
  .page--bbs .section--detail .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    margin: 0 0 50px;
    text-align: center;
    letter-spacing: 0.25em;
  }
  .page--bbs .section--detail .tit .border {
    position: relative;
  }
  .page--bbs .section--detail .tit .border:before, .page--bbs .section--detail .tit .border:after {
    content: "";
    position: absolute;
  }
  .page--bbs .section--detail .tit .border:before {
    width: 35px;
    height: 1px;
    background: #000000;
    top: 81%;
    right: -2%;
    transform: rotate(-39deg);
  }
  .page--bbs .section--detail .tit .border:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 28px 35px;
    border-color: transparent transparent #D6D6D7 transparent;
    top: 41%;
    right: -3%;
  }
  .page--bbs .section--detail .tit .comment {
    font-size: 16px;
  }
  .page--bbs .section--detail .block--parent {
    margin: 0 0 50px;
  }
  .page--bbs .section--detail .block--parent .txt {
    margin: 0 0 20px;
  }
  .page--bbs .section--detail .block--parent .date {
    margin: 0;
    letter-spacing: 0.08em;
  }
  .page--bbs .section--detail .block--post {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--bbs .section--detail .block--post textarea {
    background: #fff;
  }
  .page--bbs .section--detail .block--post .detail--post dt {
    font-weight: bold;
    margin: 0 auto 2px;
    font-size: 13px;
    opacity: 0.5;
  }
  .page--bbs .section--detail .block--post .detail--post dd {
    margin: 0px 0 20px;
  }
  .page--bbs .section--detail .block--post .notes {
    margin: 30px 0;
  }
  .page--bbs .section--detail.confirm .form--post {
    margin: 0 0 40px;
  }
  .page--bbs .section--detail.complete .txt {
    padding: 100px 0 0;
  }
  .page--bbs .section--detail .block--error {
    margin: 0 0 20px;
    color: #CA4C4B;
  }
  .page--bbs .block--user {
    margin: 0 0 10px;
  }
  .page--bbs .block--user .name {
    font-weight: bold;
    font-size: 13px;
  }
  .page--bbs .list--comment {
    margin-bottom: 120px;
  }
  .page--bbs .list--comment li {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 24px 2%;
    position: relative;
  }
  .page--bbs .list--comment li .txt {
    margin: 0 0 10px;
  }
  .page--bbs .list--comment li .date {
    margin: 0;
  }
  .page--bbs .list--comment li .report-btn {
    text-align: right;
  }
  .page--bbs .list--comment li .report-btn a {
    display: inline-block;
  }
  .page--bbs .list--comment li .btn--delete {
    text-align: right;
    border: none;
    font-size: 14px;
  }
  .page--bbs .list--comment li .btn--delete input[type=submit] {
    padding: 5px;
    border: none;
    background: #404040;
    color: #FFF;
    border-radius: 5px;
  }
  .page--bbs .form--post .detail--post {
    margin-bottom: 30px;
  }
  .page--bbs .form--post .detail--post .label--name, .page--bbs .form--post .detail--post .label--imag {
    margin-bottom: 20px;
  }
  .page--bbs .form--confirm .btn {
    margin: 0;
  }
  .page--bbs .form--confirm .txt {
    margin: 0 0 20px;
  }
  .page--bbs .form--confirm dl {
    padding: 40px 2%;
    border-top: 1px solid rgba(133, 133, 142, 0.4);
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    margin: 0 0 20px;
  }
  .page--bbs .form--confirm dt {
    margin-bottom: 2px;
    font-size: 13px;
    opacity: 0.5;
  }
  .page--bbs .form--confirm dd {
    margin: 0 0 30px;
    font-size: 16px;
  }
  .page--bbs .txt.center {
    text-align: center;
    margin-bottom: 50px;
  }
  .page--bbs.photo .border::before {
    top: 79%;
  }
  .page--bbs.photo .border:after {
    top: 37%;
  }
  .page--bbs.photo .list--comment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--bbs.photo .list--comment li {
    width: 33.3333333333%;
  }
  .page--bbs.photo .list--comment .aritst::before {
    content: "";
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url(https://apologies.jp/static/amazarashi/fanclub/bbs/frame_artist.png);
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 5px;
    left: 5px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page--bbs.photo .block--post {
    border-bottom: 0;
  }
  .page--bbs.photo .label--imag span {
    display: inline-block;
    margin-bottom: 2px;
  }
  .page--bbs.photo .label--imag label + p {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
  }
  .page--bbs.photo .block--comment {
    border: none;
    padding: 0 1px 1px 0;
    width: 33.3333333333%;
    cursor: pointer;
  }
  .page--bbs.photo .block--comment a:hover .ph-wrapper:before {
    opacity: 0.7;
  }
  .page--bbs.photo .block--comment a:hover .ph-wrapper:after {
    opacity: 1;
  }
  .page--bbs.photo .block--comment a:hover .ph-wrapper img:not(.dummy) {
    transform: scale(1.1);
  }
  .page--bbs.photo .ph-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    background: #888;
  }
  .page--bbs.photo .ph-wrapper:before, .page--bbs.photo .ph-wrapper:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: absolute;
    opacity: 0;
    z-index: 10;
  }
  .page--bbs.photo .ph-wrapper:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #383838;
    bottom: 0;
    left: 0;
    mix-blend-mode: hard-light;
  }
  .page--bbs.photo .ph-wrapper:after {
    content: "view more";
    width: 9em;
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--bbs.photo .ph-wrapper img:not(.dummy) {
    display: block;
    width: 100%;
    background-size: cover;
    height: auto;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--bbs.photo .ph-wrapper .dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .page--bbs.photo #swipebox-caption {
    background: rgba(0, 0, 0, 0.3);
  }
  .page--bbs.report .block--comment {
    margin: 30px 0 40px;
    padding: 40px 3.5%;
    border-radius: 3px;
    background-color: #CCCCCC;
  }
  .page--bbs.report .block--comment .ph {
    width: 50%;
    margin: 20px 0;
  }
  .page--bbs.report .block--comment .txt {
    margin-bottom: 10px;
  }
  .page--bbs.report .form--post dt {
    margin-bottom: 2px;
  }
  .page--bbs.report .form--post dd {
    margin-bottom: 30px;
  }
  .page--blog .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
  }
  .page--blog .list--contents {
    margin-bottom: 120px;
    text-align: center;
  }
  .page--blog .list--contents li:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .page--blog .list--contents li.new .tit::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #CA4C4B;
    border-radius: 50%;
    top: 0px;
    right: -16px;
  }
  .page--blog .list--contents .tit {
    font-size: 30px;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
  }
  .page--blog .list--contents .date {
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 0.2em;
  }
  .page--blog .list--contents a {
    position: relative;
    padding: 15px;
    width: 80%;
    margin: 0 auto;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--blog .list--contents a .border-box {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
  .page--blog .list--contents a .border-box > span {
    position: absolute;
    background: #000;
    opacity: 1;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--blog .list--contents a .border-box > span:nth-child(1) {
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--blog .list--contents a .border-box > span:nth-child(2) {
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform-origin: bottom;
    transform: translate3d(0, 0, 0) scaleY(0);
  }
  .page--blog .list--contents a .border-box > span:nth-child(3) {
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--blog .list--contents a .border-box > span:nth-child(4) {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform-origin: right;
    transform: translate3d(0, 0, 0) scaleX(0);
  }
  .page--blog .list--contents a:hover .border-box {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .page--blog .list--contents a:hover .border-box > span:nth-child(1) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--blog .list--contents a:hover .border-box > span:nth-child(2) {
    transform: translate3d(0, 0, 0) scaleY(1);
  }
  .page--blog .list--contents a:hover .border-box > span:nth-child(3) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--blog .list--contents a:hover .border-box > span:nth-child(4) {
    transform: translate3d(0, 0, 0) scaleX(1);
  }
  .page--blog .section--list.akita .border:before {
    right: -12%;
  }
  .page--blog .section--list.akita .border:after {
    top: -7%;
    right: -14%;
  }
  .page--blog .section--list.staff .border:before {
    right: -8%;
  }
  .page--blog .section--list.staff .border:after {
    top: -21%;
  }
  .page--blog .section--list .block--pager {
    text-align: center;
  }
  .page--blog .section--detail .tit {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .page--blog .section--detail .date {
    font-size: 14px;
  }
  .page--blog .section--detail .txt {
    margin: 50px 0;
  }
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    letter-spacing: 0.1em;
    font-weight: 400;
    white-space: normal !important;
    word-break: break-word;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-size: 13px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 961px) {
  .page--blog .section--detail .txt > span a,
  .page--blog .section--detail .txt > span * a,
  .page--blog .section--detail .txt > p a,
  .page--blog .section--detail .txt > p * a,
  .page--blog .section--detail .txt > font a,
  .page--blog .section--detail .txt > font * a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) * a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * a {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--blog .section--detail .txt > span a:hover,
  .page--blog .section--detail .txt > span * a:hover,
  .page--blog .section--detail .txt > p a:hover,
  .page--blog .section--detail .txt > p * a:hover,
  .page--blog .section--detail .txt > font a:hover,
  .page--blog .section--detail .txt > font * a:hover,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) a:hover,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) * a:hover,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) a:hover,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * a:hover {
    text-decoration: none;
  }
  .page--blog .section--detail .txt .ph {
    margin: 10px auto;
  }
  .page--blog .section--detail .txt video {
    margin: 10px auto;
    display: block;
    padding: 0;
  }
  .page--wallpaper.category-3 .border:before, .page--wallpaper.category-3 .border:after {
    right: -5% !important;
  }
  .page--wallpaper.category-4 .border:before, .page--wallpaper.category-4 .border:after {
    right: -5% !important;
  }
  .page--wallpaper .section--list.list .border:before, .page--wallpaper .section--list.list .border:after {
    right: -8%;
  }
  .page--wallpaper .section--list .notes {
    margin-bottom: 30px;
  }
  .page--wallpaper .section--list .notes dt {
    margin-bottom: 10px;
  }
  .page--wallpaper .section--list .list--info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--wallpaper .section--list .list--info li {
    display: inline-block;
    width: 48%;
    font-size: 24px;
    text-align: center;
    background: #CCCCCC;
    height: 270px;
  }
  .page--wallpaper .section--list .list--info li:not(:last-child) {
    margin-right: 2%;
  }
  .page--wallpaper .section--list .list--info li.no-data {
    background: none;
  }
  .page--wallpaper .section--list .list--info a {
    opacity: 1;
    padding: 100px 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--wallpaper .section--list .list--info .tit {
    line-height: 1.6;
  }
  .page--wallpaper.page--point .thumb {
    width: 40%;
    margin: 0 auto 20px;
  }
  .page--wallpaper.page--point .thumb img {
    width: 100%;
  }
  .page--wallpaper .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--wallpaper .list--contents li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 50px;
  }
  .page--wallpaper .list--contents li:nth-child(3n) {
    margin-right: 0;
  }
  .page--wallpaper .list--contents .thumb {
    width: 100%;
    line-height: 0;
  }
  .page--wallpaper .list--contents .thumb img {
    width: 100%;
    height: 100%;
  }
  .page--wallpaper .list--contents .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 20px;
  }
  .page--wallpaper .list--contents li .block--wp-size {
    padding: 10px 0 0;
  }
  .page--wallpaper .list--contents li .block--wp-size li {
    width: 100%;
    margin: 0 0 10px;
    font-size: 12px;
  }
  .page--wallpaper .list--contents li .block--wp-size li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: relative;
    overflow: hidden;
    transition-duration: 0.25s;
    padding-bottom: 5px;
  }
  .page--wallpaper .list--contents li .block--wp-size li a::before, .page--wallpaper .list--contents li .block--wp-size li a:after {
    transition-property: opacity, transform;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    z-index: 1;
    transform-origin: left;
  }
  .page--wallpaper .list--contents li .block--wp-size li a:before {
    background-color: #85858e;
  }
  .page--wallpaper .list--contents li .block--wp-size li a:after {
    transform-origin: left;
    background-color: #000000;
    transform: scaleX(0);
  }
  .page--wallpaper .list--contents li .block--wp-size li a:hover:after {
    transform: translateX(0);
    transform: scaleX(1);
  }
  .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 30px;
    border: 1px solid #000000;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 20%;
    padding: 10px 3%;
    text-align: center;
    border-bottom: 1px solid #000000;
    font-weight: 400;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 10px 3%;
    border-bottom: 1px solid #000000;
    border-left: 1px dotted #000000;
  }
  .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: 100px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 45%;
    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: 24px 2.5%;
    width: 48%;
    min-height: 150px;
    margin-bottom: 20px;
    margin-right: 2%;
    background: #CCCCCC;
    color: #000000;
  }
  .page--entry .section--detail .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
  }
  .page--entry .section--detail .list--contents li .text {
    letter-spacing: 0.1em;
  }
  .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-top: 100px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 22px;
  }
  .page--entry .section--detail .block--status .block-tit {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 22px;
  }
  .page--entry .section--detail .block--status .list--contents li {
    width: 100%;
  }
  .page--entry .section--detail .block--status .list--status {
    margin: 10px 0;
  }
  .page--entry .section--detail .block--status .list--status li {
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: inherit;
  }
  .page--appli .section--detail.app .section-tit {
    letter-spacing: 0.2em;
  }
  .page--appli .section--detail.app .border:before {
    top: 61%;
    right: -3%;
  }
  .page--appli .section--detail.app .border:after {
    top: -1%;
    right: -3%;
  }
  .page--appli .lead {
    margin-bottom: 10px;
  }
  .page--appli .text {
    margin-bottom: 8px;
  }
  .page--appli .text.link {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--appli .text.link:hover {
    text-decoration: none;
  }
  .page--appli .red {
    color: #CA4C4B;
  }
  .page--appli .block--lead .flex-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .block--lead .flex-wrap img {
    margin-right: 2%;
    width: 10%;
    min-width: 70px;
    display: block;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .page--appli .block--lead .flex-wrap .lead {
    width: 88%;
    letter-spacing: 0;
  }
  .page--appli .block--lead .flex-wrap .lead span {
    font-weight: bold;
  }
  .page--appli [class^=block--] {
    margin-bottom: 50px;
  }
  .page--appli [class^=block--] .block-tit {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    font-size: 15px;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    font-weight: bold;
  }
  .page--appli .block--howto {
    margin-top: 50px;
  }
  .page--appli .block--howto dl {
    background: #ccc;
    padding: 10px 2%;
    margin-bottom: 20px;
  }
  .page--appli .block--howto dt {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .page--appli .list--app {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .list--app span {
    margin-bottom: 10px;
    display: block;
    font-size: 12px;
  }
  .page--appli .list--app li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--appli .list--app li:first-of-type {
    margin-right: 10px;
  }
  .page--appli .list--app a {
    cursor: pointer;
    height: 70px;
  }
  .page--appli .list--app a img {
    width: auto;
    height: 100%;
  }
  .page--archives .list--article li a {
    align-items: center;
  }
  .page--archives .caption {
    font-size: 14px;
  }
  .page--archives .caption .txt {
    margin-bottom: 5px;
  }
  .page--archives .border:before {
    top: 64%;
    right: -10%;
  }
  .page--archives .border:after {
    top: -11%;
    right: -13%;
  }
  .page--game .border:before {
    right: -15%;
  }
  .page--game .border:after {
    right: -15%;
  }
  .page--game [class^=block--]:not(:last-child) {
    margin-bottom: 50px;
  }
  .page--game [class^=block--] .inner {
    background: #CCCCCC;
    padding: 40px 20px 20px;
  }
  .page--game [class^=block--] .block-tit {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .page--game [class^=block--] .inner > a {
    width: 50%;
    display: block;
    margin: 0 auto 30px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--game [class^=block--] .inner > a:hover {
    opacity: 0.5;
  }
  .page--game [class^=block--] .inner > a img {
    width: 100%;
  }
  .page--game [class^=block--] .lead {
    margin-bottom: 10px;
  }
  .page--game [class^=block--] .attention {
    color: #CA4C4B;
    font-size: 0.8em;
  }
  .page--puzzle .section--detail.puzzle .border:before {
    top: 53%;
    right: -6%;
  }
  .page--puzzle .section--detail.puzzle .border:after {
    top: -8%;
    right: -6%;
  }
  .page--puzzle .txt {
    padding: 0;
    margin: 0 0 10px;
    line-height: 1.5em;
  }
  .page--puzzle .lead {
    font-size: 15px;
    font-weight: normal;
    margin: 0 0 25px;
    padding: 0;
    text-align: center;
  }
  .page--puzzle .attentionList {
    margin: 0 0 15px;
    font-size: 12px;
  }
  .page--puzzle .attentionList li {
    text-indent: -13px;
    padding: 0 0 0 13px;
  }
  .page--puzzle .attentionList li:not(:last-child) {
    margin-bottom: 15px;
  }
  .page--puzzle .contentsBox {
    padding: 25px;
    background: #ccc;
    margin: 0 0 30px;
  }
  .page--puzzle .contentsBox h3 {
    margin: 0 0 20px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  .page--puzzle .contentsBox:first-child {
    padding-bottom: 0;
  }
  .page--puzzle .contentsBox .img img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .page--puzzle .qrBox {
    margin-bottom: 50px;
  }
  .page--puzzle .qrBox .qrTxt {
    text-align: center;
    margin: 0 0 30px;
    padding: 0;
  }
  .page--puzzle .qrBox img {
    width: 260px;
    margin: 0 auto 80px;
    display: block;
    background: #fff;
    padding: 15px;
  }
  .page--livehistory .section--list .border:before {
    right: -3%;
    top: 86%;
  }
  .page--livehistory .section--list .border:after {
    right: -5%;
    top: 14%;
  }
  .page--livehistory .section--list .text {
    margin-bottom: 10px;
  }
  .page--livehistory .section--list .pict_box {
    display: block;
    min-width: 90px;
  }
  .page--livehistory .section--list .caption {
    padding: 1em 0;
  }
  .page--livehistory .section--detail {
    /* text style
    -------------------------------- */
    /* 角丸メニュー
    ------------------------- */
    /* 壁紙ダウンロード方法
    --------------------- */
    /* リスト
    ----------------------------- */
    /* 歌詞リスト */
    /* スケジュールリスト */
    /* サムネイルボックス */
  }
  .page--livehistory .section--detail [class^=block--] {
    margin: 0px 0 15px;
    padding: 10px 10px 10px 10px;
    background-color: #fff;
  }
  .page--livehistory .section--detail hr {
    margin: 8px 0;
  }
  .page--livehistory .section--detail .block--goods .thumb {
    margin: 0 auto;
    width: 50%;
    margin-bottom: 30px;
  }
  .page--livehistory .section--detail .block--goods .thumb img {
    width: 100%;
  }
  .page--livehistory .section--detail .block--present .thumb {
    margin: 0 auto;
    width: 50%;
    margin-bottom: 30px;
  }
  .page--livehistory .section--detail .block--present .thumb img {
    width: 100%;
  }
  .page--livehistory .section--detail .block--present .end {
    font-size: 13px;
    color: #CA4C4B;
  }
  .page--livehistory .section--detail .block--goods img, .page--livehistory .section--detail .page--present img {
    width: 50%;
  }
  .page--livehistory .section--detail .block--comment .auther {
    font-size: 14px;
    text-align: right;
  }
  .page--livehistory .section--detail #swipebox-caption {
    line-height: 1.6;
  }
  .page--livehistory .section--detail .lead {
    padding: 10px;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    background-color: rgba(50, 50, 50, 0.3);
  }
  .page--livehistory .section--detail .txt {
    margin: 0 0 10px;
    line-height: 1.2em;
  }
  .page--livehistory .section--detail h2.tit {
    height: 36px;
    background: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 36px;
    color: #fff;
    text-align: center;
  }
  .page--livehistory .section--detail .ph {
    margin: 10px;
    height: auto;
    background: none;
    text-align: center;
  }
  .page--livehistory .section--detail .ph img {
    width: 100%;
  }
  .page--livehistory .section--detail #history_nav ul {
    background: #333333;
    margin: 0 0 10px;
    text-align: center;
  }
  .page--livehistory .section--detail #history_nav ul li {
    width: 50%;
    float: left;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
  }
  .page--livehistory .section--detail #history_nav ul li:nth-child(even) {
    border-right: 0;
  }
  .page--livehistory .section--detail #history_nav ul li:nth-last-child(1), .page--livehistory .section--detail #history_nav ul li:nth-last-child(2) {
    border-bottom: 0;
  }
  .page--livehistory .section--detail #history_nav ul li a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 10px 10px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--livehistory .section--detail #history_nav ul li a:hover {
    opacity: 0.5;
  }
  .page--livehistory .section--detail #history_nav ul li:nth-child(2n) a {
    border-right: none;
  }
  .page--livehistory .section--detail #history_nav ul li:last-child p {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 10px;
  }
  .page--livehistory .section--detail .howto_list .howto_lead {
    margin-bottom: 10px;
  }
  .page--livehistory .section--detail ol.song_list {
    display: block;
    margin: 0 0 0 30px;
  }
  .page--livehistory .section--detail ol.song_list li {
    font-size: 12px;
    margin: 0 0 5px 0;
    list-style-type: decimal-leading-zero;
  }
  .page--livehistory .section--detail p.setlist_date {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .page--livehistory .section--detail ol.schedule_list {
    display: block;
    margin: 0 0 0 8px;
  }
  .page--livehistory .section--detail ol.schedule_list li {
    font-size: 12px;
    margin: 0 0 5px 0;
  }
  .page--livehistory .section--detail ul.thumb_box {
    margin: 0 auto 20px;
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--livehistory .section--detail ul.thumb_box li {
    margin: 0 8px 0 0;
    width: 31%;
    text-align: center;
  }
  .page--livehistory .section--detail ul.thumb_box li:last-child {
    margin: 0;
  }
  .page--livehistory .section--detail ul.thumb_box img {
    width: 100%;
    border: 1px solid #ccc;
  }
  .page--livehistory .section--detail #sample {
    padding: 0 0 15px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--livehistory .section--detail #sample li {
    display: inline-block;
    text-align: center;
  }
  .page--livehistory .section--detail #sample li:not(:last-child) {
    margin-right: 10px;
  }
  .page--livehistory .section--detail #sample li img {
    padding: 0 0 10px;
    height: 180px;
  }
  .page--livehistory .section--detail #sample .an img {
    padding: 0 0 10px;
    height: 140px;
  }
  .page--livehistory .section--detail #sample p {
    font-size: 10px;
  }
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  .page--support .lead {
    margin-bottom: 30px;
  }
  .page--support .block--text {
    margin-bottom: 30px;
  }
  .page--support .block--text .block-tit {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .section--detail.terms .list--support {
    margin-top: 60px;
  }
  .page--support .section--detail .list--support li, .page--support .section--detail .list--support dd {
    margin-bottom: 30px;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--support .section--detail .list--support a:hover {
    text-decoration: none;
  }
  .page--support .section--detail .list--support a:hover {
    text-decoration: none;
  }
  .page--support .section--detail .list--support .txt--link {
    color: #CA4C4B;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .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: 10px;
  }
  .page--support .section--detail .list--support .list--inner li .tit {
    margin-bottom: 4px;
  }
  .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--faq .txt--no-data {
    font-size: 12px;
  }
  .page--faq .section--list.faq .section-tit {
    letter-spacing: 0.2em;
  }
  .page--faq .section--list .block--contact {
    font-size: 12px;
  }
  .page--faq .section--list .block--contact a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .section--list .block--contact a:hover {
    text-decoration: none;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 0.8em;
  }
  .page--faq .searchBox {
    position: relative;
    width: 80%;
    margin: 80px auto;
  }
  .page--faq .searchBox input[type=text] {
    border-bottom: 1px solid #000000;
    background: transparent;
    border-radius: 0;
    padding: 0.5em 1em;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 17px;
    font-weight: bold;
    line-height: 40px;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    right: 3px;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .searchBox input[type=submit]:hover {
    opacity: 0.4;
  }
  .page--faq .list--faq {
    margin: 0 0 70px;
  }
  .page--faq .list--faq li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    position: relative;
  }
  .page--faq .list--faq li::before {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    transform-origin: left;
    width: 100%;
    height: 1px;
    background: #000000;
    transform: scaleX(0);
  }
  .page--faq .list--faq li:hover:before {
    transform: scaleX(1);
  }
  .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: #000000;
    padding: 6px 0;
  }
  .page--faq .tit--category {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
  }
  .page--faq .block--faq-detail {
    background: #CCCCCC;
    padding: 28px 20px;
    margin: 10px 0 50px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 0 0 15px;
    margin: 0 0 15px;
    font-weight: bold;
  }
  .page--faq .block--faq-detail .txt {
    margin-bottom: 0;
  }
  .page--faq .block--faq-detail .txt a {
    display: inline;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .block--faq-detail .txt a:hover {
    text-decoration: none;
  }
  .page--faq .block--faq-detail .txt * {
    font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
    color: #000000 !important;
    font-size: 14px !important;
  }
  .page--faq .block--contact {
    margin-top: 50px;
  }
  .page--faq .block--contact .link a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: relative;
    display: inline-block;
  }
  .page--faq .block--contact .link a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact .link a:hover {
    text-decoration: none;
  }
  .page--faq .block--contact .link a:after {
    transform: rotate(-135deg) translateY(2px);
  }
  .page--first_login .section--detail.support .section-tit {
    letter-spacing: 0.02em;
    font-size: 20px;
  }
  .page--first_login span.attention {
    display: block;
    width: 17%;
    background: #444;
    color: #fff;
    padding: 3px 0px;
    margin: 0 auto 12px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
  }
  .page--first_login .txt--link a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .txt--link a:hover {
    text-decoration: none;
  }
  .page--first_login .block--attention {
    color: #b72120;
    font-size: 13px;
    padding: 15px 20px 15px;
    border: 1px solid #b72120;
    margin-top: 20px;
  }
  .page--first_login .block--attention .tit {
    font-weight: bold;
  }
  .page--first_login .block--attention ul {
    margin-top: 15px;
  }
  .page--first_login .block--attention ul li {
    position: relative;
    padding-left: 1.25em;
  }
  .page--first_login .block--attention ul li::before {
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
  }
  .page--first_login .block--attention ul li:first-of-type {
    margin-bottom: 10px;
  }
  .page--first_login .block--attention .txt--link a:after {
    border-color: #b72120 !important;
  }
  .page--first_login .block--attention .fas {
    margin-right: 0.25em;
  }
  .page--first_login .block--step {
    margin: 50px 0 120px;
  }
  .page--first_login .block--step .list-tit {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
  }
  .page--first_login .block--step .list-tit > span {
    margin-right: 0.5em;
    padding: 1px 4px;
    font-size: 0.85em;
    background: rgba(204, 204, 204, 0.4);
    letter-spacing: 0.1em;
  }
  .page--first_login .block--step .list--step > li {
    margin-bottom: 30px;
    background: #f3f3f3;
    padding: 20px 2%;
  }
  .page--first_login .block--step .list--step > li .txt--link a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--first_login .block--step .list--step > li .thumb {
    width: 75%;
    margin: 30px auto;
    border: 1px solid #ccc;
    line-height: 0;
  }
  .page--first_login .block--step .list--step > li .thumb img {
    width: 100%;
  }
  .page--first_login .block--step .block {
    padding: 0 2%;
  }
  .page--first_login .block--step .block:not(:last-of-type) {
    margin: 20px 0 30px;
  }
  .page--first_login .block--step .block > .tit {
    position: relative;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 1em;
  }
  .page--first_login .block--step .block > .tit:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.5em;
    height: 0.5em;
    background: #000;
    display: block;
  }
  .page--first_login .block--contact .block-tit {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #000;
  }
  .page--first_login .block--contact .btn {
    margin-bottom: 30px;
  }
  .page--first_login .block--contact .list--contact {
    position: relative;
    font-size: 13px;
    background: #f3f3f3;
    padding: 10px 30px 15px;
    margin-bottom: 30px;
  }
  .page--first_login .block--contact .list--contact dt {
    position: absolute;
    padding-top: 11px;
    font-weight: bold;
  }
  .page--first_login .block--contact .list--contact dd {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 10px 0 10px 7em;
  }
  .page--first_login .block--contact .list--contact dd:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page--first_login .list--faq.list--accordion {
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
  }
  .page--first_login .list--faq.list--accordion > dt {
    border-top: 1px solid #ccc;
    padding: 15px 0;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .list--faq.list--accordion > dt::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    vertical-align: middle;
  }
  .page--first_login .list--faq.list--accordion > dt:hover {
    opacity: 0.4;
  }
  .page--first_login .list--faq.list--accordion > dt:after {
    position: absolute;
    top: 50%;
    right: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .list--faq.list--accordion > dt.open:after {
    transform: rotate(135deg);
  }
  .page--first_login .list--faq.list--accordion > dd {
    display: none;
    padding-bottom: 30px;
    font-size: 0.9em;
  }
  .page--first_login .list--faq.list--accordion > dd .list--sub {
    margin: 1em 0 2em 1em;
  }
  .page--first_login .list--faq.list--accordion > dd .list--sub li {
    margin-bottom: 1em;
  }
  .page--first_login .list--faq.list--accordion a, .page--first_login .list--faq.list--accordion .list--sub a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: inline-block;
  }
  .page--first_login .list--faq.list--accordion a:hover, .page--first_login .list--faq.list--accordion .list--sub a:hover {
    text-decoration: none;
  }
  .page--first_login .list--faq.list--accordion .txt.domain {
    margin: 10px 0;
  }
  .page--error .btn {
    margin-top: 100px;
  }
  .popup--language .popup--language__box {
    width: 70%;
    max-width: 940px;
  }
  .popup--language .popup--language__approval {
    text-align: right;
  }
  .popup--language .popup--language__approval .approval--btn {
    padding: 0.3em 3em;
  }
}
/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .stroke.stroke1 {
    transform: rotate(145deg);
  }
  .stroke.stroke2 {
    z-index: 1;
    top: 50%;
    transform: rotate(32deg);
  }
  .stroke.stroke3 {
    top: 50%;
    transform: rotate(160deg);
  }
  .stroke.stroke4 {
    top: 50%;
    transform: rotate(32deg);
  }
  .stroke.stroke5 {
    transform: rotate(-218deg);
    top: 50%;
    left: -20%;
  }
  /*ヘッダー
  ------------------------------ */
  .header {
    width: 100%;
    height: 74px;
  }
  .header .inner {
    margin: 0 auto;
    z-index: 2;
  }
  .header .block--logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .header .block--logo .menu-logo svg {
    width: 35vw;
    height: 7vw;
  }
  .header .menu-nav__nav--login li {
    display: inline-block;
    font-size: 16px;
  }
  .header .menu-nav__nav--login li a {
    padding: 10px 0;
  }
  .header .menu-nav__nav--login li.nav--login__join {
    margin-right: 6%;
  }
  .header .nav--member {
    padding-bottom: 6vw;
    margin-bottom: 6vw;
    border-bottom: 1px solid rgba(136, 136, 136, 0.3);
  }
  .header .menu-nav__memver, .header .menu-nav__free {
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header .menu-nav__memver li, .header .menu-nav__free li {
    display: inline-block;
    margin-bottom: 0.5em;
    margin-right: 2%;
    width: 48%;
    overflow: hidden;
  }
  .header .menu-nav__memver li:nth-child(even), .header .menu-nav__free li:nth-child(even) {
    margin-right: 0;
  }
  .header .menu-nav__memver li a, .header .menu-nav__free li a {
    padding: 5px 0;
  }
  .header .menu-nav__memver li span, .header .menu-nav__free li span {
    display: block;
    transform: translateY(3em);
    opacity: 0;
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .header .menu-nav__memver li i, .header .menu-nav__free li i {
    font-size: 0.7em;
    margin-left: 2px;
    opacity: 0.7;
  }
  .header .official-site {
    font-size: 13px;
    line-height: 1.3;
  }
  .header .official-site a {
    padding: 5px 0;
    position: relative;
    overflow: hidden;
  }
  .header .official-site span {
    display: block;
    transform: translateY(3em);
    opacity: 0;
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .header .official-site i {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
  }
  body.menuOpen .header .drawer {
    padding: 60px 5% 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    font-size: 13px;
  }
  body.menuOpen .header .drawer .drawer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  body.menuOpen .header .drawer nav {
    width: 100%;
  }
  /* フッター
  ------------------------------ */
  .footer .nav--support {
    margin-bottom: 30px;
    font-size: 12px;
  }
  .footer .nav--support li {
    margin-bottom: 5px;
  }
  .footer .nav--support a {
    width: 100%;
    padding: 5px 0;
  }
  .footer .official {
    padding: 5px 0;
    margin-bottom: 25px;
  }
  .footer .official img {
    width: 112px;
  }
  .footer .copyright {
    font-size: 9px;
    color: #000000;
    opacity: 0.5;
    margin-bottom: 8px;
  }
  /* list
  ------------------------------ */
  .list--info li {
    width: 100%;
    margin: 0;
    height: auto;
  }
  .list--info li.new .tit {
    position: relative;
  }
  .list--info li.new .tit::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #CA4C4B;
    border-radius: 50%;
    top: 0;
    right: -8px;
  }
  .list--info li a {
    width: 100%;
    padding: 10px 0;
  }
  .list--info li a .date {
    font-size: 11px;
    font-family: nanum-myeongjo, sans-serif;
    font-weight: 400;
  }
  .list--info li a .tit {
    font-size: 14px;
    margin: 0 0 5px;
  }
  .list--contents li {
    position: relative;
  }
  .list--contents li a {
    width: 100%;
  }
  .list--contents li .thumb {
    line-height: 0;
    margin-bottom: 14px;
  }
  .list--contents li .thumb img {
    width: 100%;
  }
  .list--contents li .tit {
    font-size: 11px;
  }
  .list--contents li .date {
    font-size: 11px;
  }
  .list--login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .list--login li {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
  }
  .list--login li.join {
    margin: 0 6px 0 0;
  }
  .list--login li.login {
    margin: 0 0 0 6px;
  }
  .list--login li.line {
    position: relative;
    display: block;
    width: 18px;
    height: 1px;
    background: #D6D6D7;
    transform: rotate(-60deg);
  }
  .list--article {
    margin-top: 30px;
  }
  .list--article li {
    background: rgba(255, 255, 255, 0.8);
  }
  .list--article li:not(:last-child) {
    margin-bottom: 10px;
  }
  .list--article li a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px 1em 10px 10px;
  }
  .list--article .pict_box .ph {
    width: 90px;
    margin: 0 8px 0 0;
  }
  .list--article .caption .txt {
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.2em;
    font-weight: bold;
    margin: 0;
  }
  .list--article .date, .list--article .tit {
    font-weight: bold;
  }
  .list--article .date {
    font-size: 12px;
  }
  .list--article .tit {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .block--pager {
    font-size: 13px;
  }
  .block--pager li {
    margin: 0 5px;
  }
  .block--pager .pager__item--older {
    left: -17px;
  }
  .block--pager .pager__item--older a:after, .block--pager .pager__item--older span:after {
    top: 11px;
  }
  .block--pager .pager__item--other .circle-box {
    display: none;
  }
  .block--pager .pager__item--newer {
    right: -17px;
  }
  .block--pager .pager__item--newer a:after, .block--pager .pager__item--newer span:after {
    top: 11px;
  }
  .more a {
    padding: 5px 0;
    display: inline-block;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .more .viewmore {
    font-size: 12px;
    margin-right: 3px;
  }
  .more span.arrow {
    display: block;
    position: relative;
    transform: translateY(2px);
  }
  .more span.arrow:before, .more span.arrow:after {
    content: "";
    display: block;
    position: absolute;
    background: #000;
    height: 1px;
  }
  .more span.arrow:before {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    width: 40px;
    transform-origin: right;
  }
  .more span.arrow:after {
    width: 14px;
    top: -4px;
    right: -41px;
    transform: rotate(-150deg);
  }
  .section-tit .border {
    position: relative;
  }
  .section-tit .border:before, .section-tit .border:after {
    content: "";
    position: absolute;
  }
  .section-tit .border:before {
    width: 35px;
    height: 1px;
    background: #000000;
    top: 60%;
    right: -10%;
    transform: rotate(-39deg);
  }
  .section-tit .border:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 28px 35px;
    border-color: transparent transparent #D6D6D7 transparent;
    top: -3%;
    right: -13%;
  }
  .notes {
    line-height: 1.3;
  }
  .notes dt {
    font-weight: bold;
    margin: 0 0 2px;
    font-size: 12px;
  }
  .notes dd {
    font-size: 11px;
  }
  .notes li {
    margin: 0 0 0.5em 1em;
    text-indent: -0.6em;
  }
  /*トップページ　
  ------------------------------ */
  .page--home h1 {
    display: none;
  }
  .page--home #app-bnr {
    display: none;
    background: #fff;
    border-radius: 3px;
    position: fixed;
    bottom: 15px;
    left: 3%;
    width: 94%;
    z-index: 99;
  }
  .page--home #app-bnr a {
    display: flex;
    align-items: center;
    font-size: 11px;
    line-height: 1.5em;
    color: #000000;
    letter-spacing: 0;
    transition: none;
    padding: 10px 7% 10px 10px;
    position: relative;
  }
  .page--home #app-bnr a .icon {
    width: 17%;
    line-height: 0;
    margin: 0 3.5% 0 0;
  }
  .page--home #app-bnr a .icon img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #eee;
  }
  .page--home #app-bnr a .txt {
    overflow: hidden;
    flex: 1;
    line-height: 1.5em;
    margin-bottom: 0;
  }
  .page--home #app-bnr a .txt span {
    display: block;
    font-weight: bold;
    margin: 0 0 4px;
  }
  .page--home #app-bnr .close {
    margin: 0;
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    z-index: 10;
  }
  .page--home #app-bnr .close::after, .page--home #app-bnr .close::before {
    content: "";
    width: 12px;
    height: 1px;
    background: #000000;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -2px;
    transform: rotate(45deg);
  }
  .page--home #app-bnr .close::before {
    transform: rotate(-45deg);
  }
  .page--home.bnr-removed #app-bnr {
    display: none;
    opacity: 0;
    z-index: -10;
  }
  .page--home [class^=section--] {
    margin: 0 4.5% 200px;
    position: relative;
    z-index: 1;
  }
  .page--home [class^=section--] .section-tit {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.45em;
    margin-bottom: 40px;
  }
  .page--home [class^=section--] .section-tit span {
    display: inline-block;
    opacity: 0;
    transform: translateY(2em);
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  .page--home [class^=section--] .section-tit.started span {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home [class^=section--] .section-bg {
    pointer-events: none;
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-l {
    width: calc(60vw + 2px);
    height: calc(60vw + 2px);
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-l circle {
    fill: transparent;
    cx: 30vw;
    cy: 30vw;
    r: 29vw;
    stroke: #888888;
    stroke-width: 1;
    stroke-opacity: 0.4;
    transform-origin: center;
    transform: rotate(-180deg);
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-s {
    width: calc(36vw + 2px);
    height: calc(36vw + 2px);
    transform: rotate(45deg);
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-s circle {
    fill: transparent;
    cx: 18vw;
    cy: 18vw;
    r: 17vw;
    stroke: #888888;
    stroke-width: 1;
    stroke-opacity: 0.4;
    transform-origin: center;
  }
  .page--home [class^=section--] .block--stroke line {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    fill: transparent;
  }
  .page--home [class^=section--] .section-bg.started circle {
    animation: circle 5s forwards;
  }
  .page--home [class^=section--] .block--stroke.started line {
    animation: line 3s forwards;
  }
  .page--home [class^=section--] .more span {
    opacity: 0;
    transform: translateY(3em);
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  .page--home [class^=section--] .more.started span {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--top {
    margin: 0;
    height: 100vh;
  }
  .page--home .section--top .block--stroke {
    top: 90vh;
  }
  .page--home .section--top .keyvisual {
    height: 100%;
    position: relative;
    text-align: center;
  }
  .page--home .section--top .keyvisual p {
    overflow: hidden;
  }
  .page--home .section--top .keyvisual p svg {
    width: 100%;
    transform: translateY(5vw);
    opacity: 0;
    transition: all 0.6s ease-out 0.2s;
    -webkit-transition: all 0.6s ease-out 0.2s;
  }
  .page--home .section--top .keyvisual .fclogo {
    display: block;
    width: 74vw;
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
  }
  .page--home .section--top .keyvisual .fclogo svg {
    height: 17vw;
  }
  .page--home .section--top .keyvisual .amazarashi {
    display: block;
    position: absolute;
    left: 50%;
    top: 42vh;
    transform: translateX(-50%);
    width: 23vw;
    height: 7vw;
  }
  .page--home .section--top .keyvisual .amazarashi svg {
    transition-delay: 0.6s;
    height: 100%;
  }
  .page--home .section--top .block--status {
    text-align: center;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 78vh;
  }
  .page--home .section--top .block--status .name {
    letter-spacing: 0.02em;
    font-size: 12px;
  }
  .page--home .section--top .block--status .name span {
    font-weight: bold;
  }
  .page--home .section--top .block--status .stage {
    font-size: 13px;
    display: inline-block;
    padding: 5px 3%;
    margin-bottom: 5px;
    letter-spacing: 0.4em;
  }
  .page--home .section--top .block--status .stage.normal {
    background: #ececec;
  }
  .page--home .section--top .block--status .stage.first {
    background: #e2e2e2;
  }
  .page--home .section--top .block--status .stage.second {
    background: #b9b9b9;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.third {
    background: #7b7b7b;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.fourth {
    background: #505050;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.fifth {
    background: #131313;
    color: #fff;
  }
  .page--home .section--top .block--status .stage.sixth {
    background: #000;
    color: #fff;
  }
  .page--home .section--top .block--status .txt-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 1s;
    -webkit-transition: all 0.8s ease-out 1s;
  }
  .page--home .section--top .block--status .list--login li {
    display: inline-block;
    text-align: center;
    position: relative;
    margin: 0 10px;
    font-size: 15px;
  }
  .page--home .section--top .block--status .list--login span {
    opacity: 0;
    transform: translateY(2.5em);
    display: block;
    transition: all 0.6s ease-out 0.8s;
    -webkit-transition: all 0.6s ease-out 0.8s;
  }
  .page--home .section--top .block--status .list--login a {
    padding: 5px 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    overflow: hidden;
  }
  .page--home.loaded .section--top .keyvisual p svg, .page--home.loaded .section--top .list--login li a span, .page--home.loaded .section--top .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--banner {
    padding-bottom: 28px;
    margin-bottom: 18px;
  }
  .page--home .section--banner .list--bnr {
    margin-bottom: 0;
  }
  .page--home .section--pickup .list--pickup li {
    margin-bottom: 5px;
  }
  .page--home .section--pickup .list--pickup li a {
    position: relative;
    padding: 15px 7px;
  }
  .page--home .section--pickup .list--pickup li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 0;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
  }
  .page--home .section--pickup .list--pickup li span {
    opacity: 0;
    z-index: 1;
    position: relative;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.8s ease-out 0.5s;
    -webkit-transition: all 0.8s ease-out 0.5s;
  }
  .page--home .section--pickup .list--pickup li.delighter.started a:before {
    transform: scaleX(1);
  }
  .page--home .section--pickup .list--pickup li.delighter.started span {
    opacity: 1;
  }
  .page--home .section--news .block--stroke {
    top: -10%;
  }
  .page--home .section--news .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
  }
  .page--home .section--news .section-bg {
    width: 60vw;
    height: 60vw;
    position: absolute;
    top: -15%;
    right: -30%;
  }
  .page--home .section--news .section-bg .circle-l circle {
    transform: rotate(60deg) !important;
  }
  .page--home .section--news .list--info {
    margin-bottom: 40px;
  }
  .page--home .section--news .list--info li {
    font-size: 12px;
  }
  .page--home .section--news .list--info li:not(:last-child) {
    margin-bottom: 20px;
  }
  .page--home .section--news .list--info li a .tit {
    margin-bottom: 5px;
    line-height: 1.8;
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
  }
  .page--home .section--news .list--info li a .txt-wrap {
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
    transform: translateY(2.5em);
  }
  .page--home .section--news .list--info li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--news .list--info li.new .tit {
    display: inline-block;
  }
  .page--home .section--news .list--info li.no-data {
    text-align: left;
    margin: 50px auto;
  }
  .page--home .section--blog .list--info li {
    transition: all 0.4s ease-out 0.4s;
    -webkit-transition: all 0.4s ease-out 0.4s;
  }
  .page--home .section--blog .list--info li.no-data {
    margin: 50px auto !important;
    text-align: left;
  }
  .page--home .section--blog .list--info li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .section--blog .list--info li .txt-wrap {
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
    transform: translateY(2.5em);
  }
  .page--home .section--blog .list--info li .tit {
    display: inline-block;
    position: relative;
  }
  .page--home .section--blog .list--info li.new .tit {
    background: none;
  }
  .page--home .section--blog .list--info li.new .tit::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #CA4C4B;
    border-radius: 50%;
    top: 0;
    right: -10px;
  }
  .page--home .section--blog.akita .section-bg {
    width: 60vw;
    height: 60vw;
    position: absolute;
    top: -10%;
    left: -27%;
  }
  .page--home .section--blog.akita .border:before {
    right: -12%;
  }
  .page--home .section--blog.akita .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
    right: -15%;
  }
  .page--home .section--blog.akita .list--info {
    margin-bottom: 40px;
  }
  .page--home .section--blog.akita .list--info li {
    margin-bottom: 10px;
  }
  .page--home .section--blog.akita .list--info li:last-child {
    margin-bottom: 0;
  }
  .page--home .section--blog.akita .list--info li .tit {
    font-size: 30px;
  }
  .page--home .section--blog.akita .list--info li .date {
    font-size: 11px;
  }
  .page--home .section--blog.staff .block--stroke {
    top: -8%;
  }
  .page--home .section--blog.staff .section-bg .circle-l {
    position: absolute;
    top: -20%;
    right: -24%;
  }
  .page--home .section--blog.staff .section-bg .circle-l circle {
    transform: rotate(60deg) !important;
  }
  .page--home .section--blog.staff .section-bg .circle-s {
    position: absolute;
    top: 20%;
    right: -20%;
  }
  .page--home .section--blog.staff .border:before {
    right: -6%;
  }
  .page--home .section--blog.staff .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
    right: -8%;
  }
  .page--home .section--blog.staff .list--info {
    margin-bottom: 20px;
  }
  .page--home .section--blog.staff .list--info li:not(:last-child) {
    margin-bottom: 20px;
  }
  .page--home .section--wallpaper .block--stroke {
    top: -10%;
  }
  .page--home .section--wallpaper .section-bg .circle-l {
    width: 60vw;
    height: 60vw;
    position: absolute;
    top: -4%;
    left: -30%;
  }
  .page--home .section--wallpaper .border:before {
    right: -20%;
  }
  .page--home .section--wallpaper .border:after {
    border-color: transparent transparent #D6D6D7 transparent;
    right: -26%;
  }
  .page--home .section--wallpaper .list--contents {
    margin-bottom: 40px;
  }
  .page--home .section--wallpaper .list--contents .thumb {
    margin-bottom: 20px;
  }
  .page--home .section--wallpaper .list--contents .thumb img {
    background-size: contain;
  }
  .page--home .section--wallpaper .list--contents .date {
    text-align: center;
  }
  .page--home .section--wallpaper .list--contents .txt-wrap {
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
    transform: translateY(2.5em);
  }
  .page--home .section--wallpaper .list--contents li.new::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #CA4C4B;
    border-radius: 50%;
    top: -16px;
    right: 60px;
  }
  .page--home .section--wallpaper .list--contents li.started .txt-wrap {
    opacity: 1;
    transform: translateY(0);
  }
  .page--home .footer {
    opacity: 0;
    transform: translateY(20px);
    margin: 0 4.5% 20px;
    position: relative;
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  .page--home .footer .inner {
    background: #CCCCCC;
    padding: 125px 4% 20px;
  }
  .page--home .footer.started {
    opacity: 1;
    transform: translateY(0);
  }
  /* .page--home以外
  ------------------------------ */
  body:not(.page--home) h1 {
    display: block;
    width: 26vw;
    position: fixed;
    top: 32px;
    left: 4.5%;
  }
  body:not(.page--home) h1 a {
    width: 100%;
  }
  body:not(.page--home) h1 svg {
    width: 100%;
    height: 5vw;
  }
  body:not(.page--home) .wrap {
    padding: 142px 0 50px;
  }
  body:not(.page--home) .section--list, body:not(.page--home) .section--detail {
    margin: 0 4.5%;
    position: relative;
    z-index: 1;
  }
  body:not(.page--home) .section--list .section-tit, body:not(.page--home) .section--detail .section-tit {
    font-size: 14px;
    letter-spacing: 0.45em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
  }
  body:not(.page--home) .section--list .detail__btn, body:not(.page--home) .section--detail .detail__btn {
    margin-top: 30px;
  }
  body:not(.page--home) .section--list .no-data, body:not(.page--home) .section--detail .no-data {
    margin: 50px auto;
    text-align: left;
  }
  body:not(.page--home) .footer {
    margin: 20px 4.5% 10px;
    padding: 0;
    bottom: 0;
  }
  body:not(.page--home) .footer .nav--support, body:not(.page--home) .footer .official, body:not(.page--home) .footer .block-stroke {
    display: none;
  }
  /* .page--info
  ------------------------------ */
  .page--info .section--list .border::before {
    right: -8%;
  }
  .page--info .section--list .border:after {
    top: -13%;
  }
  .page--info .section--list .list--info {
    margin-bottom: 90px;
  }
  .page--info .section--list .list--info li {
    margin-bottom: 10px;
  }
  .page--info .section--list .list--info li a .date {
    font-size: 11px;
  }
  .page--info .section--list .list--info li a .tit {
    line-height: 1.6;
  }
  .page--info .section--detail {
    padding-top: 10px;
  }
  .page--info .section--detail .date {
    font-size: 10px;
    margin-bottom: 30px;
  }
  .page--info .section--detail .tit {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .page--info .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    font-weight: bold;
    word-break: break-all;
  }
  .page--info .section--detail .block--share {
    text-align: center;
    margin: 30px 0;
  }
  /* .page--lyrics
  ------------------------------ */
  .page--lyrics .border:before {
    right: -12%;
  }
  .page--lyrics .border:after {
    right: -14%;
    top: -8%;
  }
  .page--lyrics .block--search {
    margin-bottom: 30px;
  }
  .page--lyrics .block--search input[type=text].text:-moz-placeholder-shown {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text:placeholder-shown {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text::-webkit-input-placeholder {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text].text:-moz-placeholder {
    color: #000000;
    opacity: 1;
  }
  .page--lyrics .block--search input[type=text].text:-ms-input-placeholder {
    color: #000000;
  }
  .page--lyrics .block--search input[type=text] {
    width: 100%;
    font-size: 12px;
    background: transparent;
    padding: 5px 4px;
  }
  .page--lyrics .block--search .searchForm {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #000000;
    width: 100%;
  }
  .page--lyrics .block--search input[type=submit] {
    font-family: FontAwesome;
    background-color: transparent;
    color: #000000;
    font-size: 15px;
    padding: 7px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
  }
  .page--lyrics .block--search .block--pull-down {
    margin: 0 0 10px;
  }
  .page--lyrics .block--search .block--pull-down select {
    background: transparent;
    border: none;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    border-radius: 0;
  }
  .page--lyrics .form--confirm dl {
    margin: 0 0 20px;
    padding: 20px 2%;
    border-top: 1px solid rgba(133, 133, 142, 0.4);
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .form--confirm dt {
    margin-bottom: 2px;
    font-size: 13px;
    opacity: 0.5;
  }
  .page--lyrics .form--confirm dd {
    margin: 0 0 20px;
  }
  .page--lyrics .block--category {
    margin: 0 auto 0;
  }
  .page--lyrics .block--category li {
    padding: 15px 0 10px;
    float: left;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .block--category li span {
    padding: 10px;
  }
  .page--lyrics #panes .block--pager {
    position: relative;
    bottom: 0;
  }
  .page--lyrics #panes .list--info {
    margin-bottom: 90px;
  }
  .page--lyrics #panes .list--info li {
    padding: 0;
  }
  .page--lyrics #panes .list--info li:first-of-type {
    margin-top: 0;
  }
  .page--lyrics #panes .list--info li:not(.no-data) {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics #panes .list--info li a {
    padding: 16px 0;
  }
  .page--lyrics .block--category .current {
    border-bottom: 1px solid #000000;
    color: #000000;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--lyrics .comment {
    font-size: 12px;
  }
  .page--lyrics .comment i {
    display: inline-block;
    margin-right: 4px;
    color: #444;
  }
  .page--lyrics .tit {
    margin-top: 0;
  }
  .page--lyrics .section--list .list--info li {
    padding: 15px 0;
  }
  .page--lyrics .section--list .list--info li.no-data {
    margin-top: 100px !important;
  }
  .page--lyrics .section--list .list--info .tit {
    font-size: 15px;
    margin-bottom: 0;
  }
  .page--lyrics .section--list .list--info .date,
  .page--lyrics .section--list .list--info .name {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .page--lyrics .section--detail.lyrics .section-tit {
    font-size: 18px;
    letter-spacing: inherit;
    margin-bottom: 5px;
  }
  .page--lyrics .section--detail.lyrics .block--lyrics {
    padding: 0 0 20px;
  }
  .page--lyrics .section--detail.lyrics .credit {
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
  }
  .page--lyrics .section--detail.lyrics .txt {
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .list--disc {
    padding-top: 20px;
  }
  .page--lyrics .section--detail.lyrics .list--disc .thumb {
    overflow: hidden;
    width: 70%;
    margin: 0 auto 20px;
  }
  .page--lyrics .section--detail.lyrics .list--disc .thumb img:first-of-type {
    background-size: contain;
    position: relative;
    z-index: 10;
  }
  .page--lyrics .section--detail.lyrics .list--disc .tit {
    font-size: 22px;
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .list--disc .date {
    margin-bottom: 0;
  }
  .page--lyrics .section--detail.lyrics .list--error li {
    text-align: center;
    color: #CA4C4B;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .page--lyrics .section--list.comment .list--comment {
    margin-bottom: 90px;
  }
  .page--lyrics .section--list.comment .list--comment li {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 16px 0;
  }
  .page--lyrics .section--list.comment .list--comment li:first-of-type {
    border-top: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--lyrics .section--list.comment .list--comment li.no-data {
    padding: 0;
    border: 0;
  }
  .page--lyrics .section--list.comment .list--comment .tit {
    font-size: 13px;
  }
  .page--lyrics .section--list.comment .list--comment .name {
    margin-bottom: 10px;
  }
  .page--lyrics .section--detail.done .txt {
    text-align: center;
  }
  .page--lyrics .section--detail.done .btn {
    margin-top: 30px;
  }
  .page--lyrics .block--lyrics-tit {
    margin: 0 0 30px;
    text-align: center;
  }
  .page--lyrics .block--lyrics-tit .tit {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .page--lyrics .block--lyrics-tit .credit {
    font-size: 12px;
  }
  .page--lyrics .panes {
    margin-bottom: 30px;
  }
  .page--lyrics .btn {
    margin-bottom: 10px;
  }
  .page--lyrics .comment_view {
    text-align: center;
  }
  .page--lyrics .comment_view a {
    padding: 10px 0;
  }
  .page--lyrics .list--info .no-data {
    margin: 50px 0;
  }
  .page--lyrics .form--post dd {
    margin: 0 0 10px;
  }
  /* .page--entry
  ------------------------------ */
  .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 #000000;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 100px;
    padding: 10px 3%;
    text-align: center;
    border-bottom: 1px solid #000000;
    font-weight: 400;
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 10px 3%;
    border-bottom: 1px solid #000000;
    border-left: 1px dotted #000000;
    font-size: 12px;
  }
  .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: 30px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 60%;
    height: 12vw;
    display: block;
    margin: 20px 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 2.5%;
    width: 100%;
    margin-bottom: 10px;
    background: #CCCCCC;
    color: #000000;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.3em;
    font-size: 14px;
    font-weight: bold;
  }
  .page--entry .section--detail .list--contents li .txt {
    font-size: 12px;
    line-height: 1.6;
  }
  .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-top: 50px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
  }
  .page--entry .section--detail .block--status .block-tit {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
  }
  .page--entry .section--detail .block--status .list--status {
    margin: 10px 0;
  }
  .page--entry .section--detail .block--status .list--status li {
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: inherit;
  }
  /* .page--blog
  ------------------------------ */
  .page--blog .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
  }
  .page--blog .list--contents {
    margin-bottom: 90px;
    text-align: center;
  }
  .page--blog .list--contents li:not(:last-child) {
    margin-bottom: 38px;
  }
  .page--blog .list--contents li.new .tit:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #CA4C4B;
    border-radius: 50%;
    top: 0px;
    right: -10px;
  }
  .page--blog .list--contents .tit {
    font-size: 14px;
    position: relative;
    display: inline-block;
  }
  .page--blog .list--contents .date {
    font-size: 11px;
    opacity: 0.5;
  }
  .page--blog.akita .section--list .border:before {
    right: -8%;
  }
  .page--blog.akita .section--list .border:after {
    top: -13%;
  }
  .page--blog.akita .section--list .list--contents li {
    margin-bottom: 28px;
  }
  .page--blog.akita .section--list .list--contents .tit {
    font-size: 20px;
    margin-bottom: 0;
  }
  .page--blog.akita .section--list .list--contents .date {
    font-size: 11px;
    opacity: 0.5;
    letter-spacing: 0.2em;
  }
  .page--blog.staff .section--list .border:before {
    right: -4%;
  }
  .page--blog.staff .section--list .border:after {
    right: -5%;
  }
  .page--blog.staff .section--list .list--contents .tit {
    margin-bottom: 5px;
  }
  .page--blog .section--detail .tit {
    font-size: 16px;
    font-weight: bold;
  }
  .page--blog .section--detail .date {
    font-size: 10px;
  }
  .page--blog .section--detail .txt {
    margin: 30px 0 20px;
  }
  /* .page--wallpaper
  ------------------------------ */
  .page--wallpaper .border::before {
    right: -8%;
  }
  .page--wallpaper.category-3 .border:before {
    top: 51% !important;
    right: -4% !important;
  }
  .page--wallpaper.category-3 .border:after {
    right: -8% !important;
    top: -21% !important;
  }
  .page--wallpaper.category-4 .border:before {
    top: 60%;
    right: -4%;
  }
  .page--wallpaper.category-4 .border:after {
    right: -8%;
    top: -21% !important;
  }
  .page--wallpaper .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .page--wallpaper .list--contents li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 30px;
  }
  .page--wallpaper .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--wallpaper .list--contents li:last-of-type, .page--wallpaper .list--contents li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .page--wallpaper .list--contents a {
    overflow: hidden;
    position: relative;
  }
  .page--wallpaper .list--contents figure.thumb {
    z-index: 1;
    position: relative;
    line-height: 0;
  }
  .page--wallpaper .list--contents figure.thumb img {
    width: auto;
  }
  .page--wallpaper .list--contents figure.thumb .dummy {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--wallpaper .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
  }
  .page--wallpaper .section--list .border:after {
    top: -8%;
  }
  .page--wallpaper .section--list .list--info li {
    background: #CCCCCC;
    height: 30vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--wallpaper .section--list .list--info li:not(:last-child) {
    margin-bottom: 10px;
  }
  .page--wallpaper .section--list .list--info li .tit {
    margin-bottom: 0;
    font-size: 18px;
  }
  .page--wallpaper .section--list .list--info li.no-data {
    background: none;
  }
  .page--wallpaper .section--list .list--info li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--wallpaper .section--detail .tit {
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .page--wallpaper .section--detail .txt.center {
    text-align: center;
    font-size: 12px;
    margin-bottom: 5px;
  }
  .page--wallpaper .section--detail .ph {
    margin: 0 auto 20px;
  }
  /* .page--bbs
  ------------------------------ */
  .page--bbs .date {
    opacity: 0.5;
    font-size: 12px;
  }
  .page--bbs .block--bbs-option {
    margin: 0 0 30px;
  }
  .page--bbs .block--bbs-option .searchForm {
    position: relative;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    font-size: 12px;
    padding: 5px 4px;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-moz-placeholder-shown {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:placeholder-shown {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search::-webkit-input-placeholder {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-moz-placeholder {
    color: #000000;
    opacity: 1;
  }
  .page--bbs .block--bbs-option .searchForm input[type=text].search:-ms-input-placeholder {
    color: #000000;
  }
  .page--bbs .block--bbs-option .searchForm input[type=submit] {
    font-family: FontAwesome;
    background-color: transparent;
    color: #000000;
    font-size: 15px;
    padding: 7px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
  }
  .page--bbs .block--bbs-option .select--sort {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
  }
  .page--bbs .block--bbs-option .select--sort select {
    display: inline-block;
    position: relative;
    padding: 0 0 5px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
  }
  .page--bbs .comment {
    margin-left: 0.5em;
    display: inline-block;
    line-height: 0;
    font-size: 0.8em;
    position: relative;
    top: -1px;
    letter-spacing: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  }
  .page--bbs [class^=form--] dt > span {
    margin-left: 10px;
  }
  .page--bbs .list--thread {
    margin-bottom: 50px;
  }
  .page--bbs .list--thread li {
    position: relative;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--bbs .list--thread a {
    display: block;
    padding: 16px 0;
  }
  .page--bbs .list--thread .tit {
    font-size: 15px;
    font-weight: bold;
  }
  .page--bbs .section--list .icon--like {
    font-size: 20px;
  }
  .page--bbs .section--list .icon--like .clicked {
    color: #e87676;
  }
  .page--bbs .section--detail .tit {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    margin: 0 0 30px;
    text-align: center;
  }
  .page--bbs .section--detail .tit .border {
    position: relative;
  }
  .page--bbs .section--detail .tit .border:before, .page--bbs .section--detail .tit .border:after {
    content: "";
    position: absolute;
  }
  .page--bbs .section--detail .tit .border:before {
    width: 35px;
    height: 1px;
    background: #000000;
    top: 70%;
    right: -10%;
    transform: rotate(-39deg);
  }
  .page--bbs .section--detail .tit .border:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 28px 35px;
    border-color: transparent transparent #D6D6D7 transparent;
    top: 11%;
    right: -13%;
  }
  .page--bbs .section--detail .tit .comment {
    font-size: 14px;
  }
  .page--bbs .section--detail .block--parent {
    margin: 0 0 30px;
  }
  .page--bbs .section--detail .block--parent .txt {
    margin-bottom: 10px;
  }
  .page--bbs .section--detail .block--parent .date {
    margin: 0;
    letter-spacing: 0.08em;
  }
  .page--bbs .section--detail .block--post {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--bbs .section--detail .block--post textarea {
    background: #fff;
  }
  .page--bbs .section--detail .block--post .detail--post dt {
    font-weight: bold;
    margin: 0 auto 2px;
    font-size: 12px;
    opacity: 0.5;
  }
  .page--bbs .section--detail .block--post .detail--post dd {
    margin: 0px 0 20px;
  }
  .page--bbs .section--detail .block--post .notes {
    margin-bottom: 30px;
  }
  .page--bbs .section--detail.confirm .form--post {
    margin: 0 0 40px;
  }
  .page--bbs .section--detail.complete .txt {
    padding: 100px 0 0;
  }
  .page--bbs .section--detail .block--error {
    margin: 0 0 20px;
    color: #c00;
  }
  .page--bbs .block--user {
    margin: 0 0 10px;
  }
  .page--bbs .block--user .name {
    font-weight: bold;
  }
  .page--bbs .list--comment {
    margin-bottom: 90px;
  }
  .page--bbs .list--comment li {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 16px 2%;
    position: relative;
  }
  .page--bbs .list--comment li .txt {
    margin: 0 0 10px;
  }
  .page--bbs .list--comment li .date {
    margin: 0;
    letter-spacing: 0;
  }
  .page--bbs .list--comment li .report-btn {
    text-align: right;
  }
  .page--bbs .list--comment li .report-btn a {
    display: inline-block;
  }
  .page--bbs .list--comment .btn--delete {
    text-align: right;
    border: none;
    font-size: 14px;
  }
  .page--bbs .list--comment .btn--delete input[type=submit] {
    padding: 5px;
    border: none;
    background: #404040;
    color: #FFF;
    border-radius: 5px;
  }
  .page--bbs .form--post .detail--post {
    margin-bottom: 20px;
  }
  .page--bbs .form--post .detail--post .label--name, .page--bbs .form--post .detail--post .label--imag {
    margin-bottom: 10px;
  }
  .page--bbs .form--confirm .btn {
    margin: 0;
  }
  .page--bbs .form--confirm .txt {
    margin: 0 0 20px;
  }
  .page--bbs .form--confirm dl {
    margin: 0 0 20px;
    padding: 20px 2%;
    border-top: 1px solid rgba(133, 133, 142, 0.4);
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--bbs .form--confirm dt {
    margin-bottom: 2px;
    font-size: 13px;
    opacity: 0.5;
  }
  .page--bbs .form--confirm dd {
    margin: 0 0 20px;
  }
  .page--bbs .txt.center {
    text-align: center;
    margin-bottom: 50px;
  }
  .page--bbs.photo .border:before {
    top: 60%;
    right: -10%;
  }
  .page--bbs.photo .border:after {
    top: -3%;
    right: -13%;
  }
  .page--bbs.photo .list--comment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--bbs.photo .list--comment li {
    width: 33.3333333333%;
  }
  .page--bbs.photo .list--comment .aritst::before {
    content: "";
    display: block;
    width: calc(100% - 6.5px);
    height: calc(100% - 6.5px);
    background: url(https://apologies.jp/static/amazarashi/fanclub/bbs/frame_artist.png);
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 3px;
    left: 3px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page--bbs.photo .block--post {
    border-bottom: 0;
  }
  .page--bbs.photo .block--comment {
    border: none;
    padding: 0 1px 1px 0;
    width: 33.3333333333%;
    cursor: pointer;
  }
  .page--bbs.photo .block--comment a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--bbs.photo .block--comment a:hover {
    opacity: 0.5;
  }
  .page--bbs.photo .ph-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    background: #888;
  }
  .page--bbs.photo .ph-wrapper img:not(.dummy) {
    display: block;
    width: 100%;
    background-size: cover;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .page--bbs.photo .ph-wrapper .dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .page--bbs.report {
    margin-bottom: 30px;
  }
  .page--bbs.report .form--post dt {
    margin-bottom: 2px;
  }
  .page--bbs.report .form--post dd {
    margin-bottom: 10px;
  }
  .page--bbs.report .block--comment {
    margin: 20px 0 30px;
    padding: 10px 2.5%;
    border-radius: 3px;
    background-color: #CCCCCC;
  }
  .page--bbs.report .block--comment .ph {
    width: 90%;
    margin: 10px auto 20px;
  }
  .page--bbs.report .block--comment .txt {
    margin-bottom: 10px;
  }
  /* .page--appli
  ------------------------------ */
  .page--appli {
    /* BOX */
    /* メニュー icon */
  }
  .page--appli .border:before {
    right: -17%;
  }
  .page--appli .border:after {
    top: 7%;
  }
  .page--appli .section--detail {
    margin: 0 !important;
  }
  .page--appli .lead {
    font-size: 12px;
    margin-bottom: 0.5em;
  }
  .page--appli .text {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .page--appli .text.link {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--appli .text.link:hover {
    text-decoration: none;
  }
  .page--appli .red {
    color: #CA4C4B;
  }
  .page--appli .app_howto {
    margin: 0 4.5%;
  }
  .page--appli .app_howto ul li {
    margin-bottom: 10px;
  }
  .page--appli .app_howto .block-tit {
    border-bottom: #000 solid 1px;
    padding-bottom: 5px;
    font-weight: bold;
  }
  .page--appli .app_howto .howto_tit {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--appli .lead_box {
    position: relative;
  }
  .page--appli .lead_box h3 {
    border-bottom: #000 solid 1px;
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
  }
  .page--appli .lead_box .lead_mini {
    color: #444;
    font-size: 12px;
    padding: 0px 5px 5px 5px;
  }
  .page--appli .lead_box .thumb {
    border-radius: 3px;
    margin: 0 auto 10px;
    display: block;
  }
  .page--appli .lead_box .thumb img {
    width: 100%;
    margin-right: 0;
    float: none;
    border: none;
  }
  .page--appli .lead_box .lead {
    margin-bottom: 10px;
  }
  .page--appli #icon {
    padding: 10px;
    background: #EEE;
    overflow: hidden;
    display: block;
    border-radius: 5px;
  }
  .page--appli #icon ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli #icon ul li {
    display: inline-block;
    width: 32%;
  }
  .page--appli #icon ul li .photo {
    width: 85px;
  }
  .page--appli #icon ul li img {
    width: 100%;
  }
  .page--appli #icon ul .name {
    text-align: center;
    font-size: 10px;
    color: #0ba29a;
  }
  .page--appli .thumb_box {
    background: #EEE;
    padding: 10px;
    width: 96%;
    margin: 0 auto 30px;
  }
  .page--appli .thumb_box img {
    width: 20vw;
    margin-right: 6px;
    display: block;
    float: left;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .page--appli .thumb_box .block-tit {
    font-size: 12px;
    font-weight: bold;
  }
  .page--appli .thumb_box .lead {
    letter-spacing: 0;
  }
  .page--appli .thumb_box .lead span {
    font-weight: bold;
  }
  .page--appli .btn-style-app {
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }
  .page--appli .btn-style-app a {
    margin: 0 2vw;
    height: 13vw;
  }
  .page--appli .btn-style-app img {
    width: auto;
    display: block;
    height: 100%;
  }
  /* .page--archives
  ------------------------------ */
  .page--archives .border:after {
    top: -14%;
  }
  /* .page--livehistory
  ------------------------------ */
  .page--livehistory .section--list.live .section-tit {
    letter-spacing: 0.2em;
  }
  .page--livehistory .section--list.live .border:before {
    top: 80%;
    right: -6%;
  }
  .page--livehistory .section--list.live .border:after {
    right: -8%;
    top: 12%;
  }
  .page--livehistory .section--list .text {
    font-size: 12px;
    bottom: 10px;
  }
  .page--livehistory .section--list .list--article .present {
    font-size: 10px;
    text-align: left;
    color: #CA4C4B;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    margin: 0 0 5px;
    font-weight: normal;
  }
  .page--livehistory .section--list .list--article .time {
    background: #CA4C4B;
    padding: 2px;
    color: #FFF;
    border-radius: 3px;
  }
  .page--livehistory .section--list .pict_box {
    display: block;
    min-width: 90px;
    margin: 0 10px 0 0;
  }
  .page--livehistory .section--list .caption {
    height: auto;
  }
  .page--livehistory .section--detail {
    /* text style
    -------------------------------- */
    /* menu
    ----------------------------- */
    /* 角丸メニュー
    ------------------------- */
    /* 壁紙ダウンロード方法
    --------------------- */
    /* 歌詞リスト */
    /* スケジュールリスト */
    /* サムネイルボックス */
  }
  .page--livehistory .section--detail [class^=block--] {
    margin: 0px 0 15px;
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    font-size: 16px;
  }
  .page--livehistory .section--detail hr {
    margin: 8px 0;
  }
  .page--livehistory .section--detail .block--present .thumb {
    margin: 0 auto;
  }
  .page--livehistory .section--detail .block--present .thumb img {
    width: 100%;
  }
  .page--livehistory .section--detail .block--present .end {
    font-size: 13px;
    color: #CA4C4B;
  }
  .page--livehistory .section--detail .block--comment .auther {
    text-align: right;
    font-size: 14px;
  }
  .page--livehistory .section--detail #swipebox-caption {
    background: rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    font-size: 12px;
  }
  .page--livehistory .section--detail .lead {
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    background-color: rgba(50, 50, 50, 0.3);
  }
  .page--livehistory .section--detail .txt {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.4;
  }
  .page--livehistory .section--detail h2.tit {
    height: 36px;
    background: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 36px;
    color: #fff;
    text-align: center;
  }
  .page--livehistory .section--detail .ph {
    margin: 10px;
    height: auto;
    background: none;
    text-align: center;
  }
  .page--livehistory .section--detail .ph img {
    width: 100%;
  }
  .page--livehistory .section--detail ul.menu {
    overflow: hidden;
    margin: 0 15px 5px;
    text-align: center;
  }
  .page--livehistory .section--detail ul.menu li {
    float: left;
    width: 48.2%;
    margin: 0 10px 0 0;
  }
  .page--livehistory .section--detail ul.menu li:not(:last-child) {
    margin-right: 10px;
  }
  .page--livehistory .section--detail #history_nav ul {
    background: #333333;
    border: 1px solid #111111;
    margin: 0 0 10px;
    text-align: center;
  }
  .page--livehistory .section--detail #history_nav ul li {
    width: 50%;
    float: left;
  }
  .page--livehistory .section--detail #history_nav ul li a {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    padding: 10px 10px;
  }
  .page--livehistory .section--detail #history_nav ul li:nth-child(2n) a {
    border-right: none;
  }
  .page--livehistory .section--detail #history_nav ul li:last-child p {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 1px solid #111111;
    padding: 10px 10px;
  }
  .page--livehistory .section--detail .howto_list .howto_lead {
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 1.4em;
  }
  .page--livehistory .section--detail ol.song_list {
    display: block;
    margin: 0 0 0 30px;
  }
  .page--livehistory .section--detail ol.song_list li {
    font-size: 12px;
    margin: 0 0 5px 0;
    list-style-type: decimal-leading-zero;
  }
  .page--livehistory .section--detail p.setlist_date {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .page--livehistory .section--detail ol.schedule_list {
    display: block;
    margin: 0 0 0 8px;
  }
  .page--livehistory .section--detail ol.schedule_list li {
    font-size: 12px;
    margin: 0 0 5px 0;
  }
  .page--livehistory .section--detail ul.thumb_box {
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--livehistory .section--detail ul.thumb_box li {
    display: inline-block;
    width: 31%;
  }
  .page--livehistory .section--detail ul.thumb_box li:last-child {
    margin: 0;
  }
  .page--livehistory .section--detail ul.thumb_box img {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
  }
  .page--livehistory .section--detail #sample {
    padding: 0 0 15px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--livehistory .section--detail #sample li {
    display: inline-block;
    text-align: center;
  }
  .page--livehistory .section--detail #sample .ip5 {
    width: 43%;
  }
  .page--livehistory .section--detail #sample li img {
    padding: 0 0 10px;
    height: 180px;
  }
  .page--livehistory .section--detail #sample .an img {
    padding: 0 0 10px;
    height: 140px;
  }
  .page--livehistory .section--detail #sample p {
    font-size: 10px;
  }
  /* .page--game
  ------------------------------ */
  .page--game .border:before {
    right: -16%;
  }
  .page--game .border:after {
    right: -18%;
  }
  .page--game [class^=block--]:not(:last-child) {
    margin-bottom: 50px;
  }
  .page--game [class^=block--] .inner {
    background: #CCCCCC;
    padding: 20px 4%;
  }
  .page--game [class^=block--] .block-tit {
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .page--game [class^=block--] .inner > a {
    display: block;
    margin: 0 auto 20px;
  }
  .page--game [class^=block--] .inner > a img {
    width: 100%;
  }
  .page--game [class^=block--] .lead {
    margin-bottom: 0.5em;
  }
  /* .page--puzzzle
  ------------------------------ */
  .page--puzzle .border:before, .page--puzzle .border:after {
    right: -5%;
  }
  .page--puzzle .btnPopup {
    padding-bottom: 5px;
  }
  .page--puzzle .back a {
    text-align: center;
    display: block;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 13px;
    line-height: 1;
    font-size: 15px;
    box-sizing: border-box;
  }
  .page--puzzle .contentsBox h3 {
    margin: 0 0 20px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-size: 15px;
  }
  .page--puzzle .txt {
    padding: 0;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5em;
  }
  .page--puzzle .cap {
    text-align: center;
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--puzzle .lead {
    margin: 0 0 10px;
  }
  .page--puzzle .contentsBox {
    padding: 15px;
    background: #ccc;
    margin-bottom: 30px;
  }
  .page--puzzle .attentionList {
    margin: 0 0 15px;
    font-size: 12px;
  }
  .page--puzzle .attentionList li {
    text-indent: -13px;
    padding: 0 0 0 13px;
    margin: 0 0 15px;
  }
  .page--puzzle .attentionList li:not(:last-child) {
    margin-bottom: 15px;
  }
  /* .page--privacy
  ------------------------------ */
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  /* .page--support
  ------------------------------ */
  .page--support .section--detail.terms .list--support {
    margin-top: 30px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--support .section--detail .list--support a:hover {
    text-decoration: none;
  }
  .page--support .section--detail .list--support .txt--link {
    color: #CA4C4B;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 16px;
  }
  .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: 10px;
  }
  .page--support .section--detail .list--support .list--inner li .tit {
    margin-bottom: 4px;
  }
  .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
  ------------------------------ */
  .page--faq .txt--no-data {
    font-size: 12px;
  }
  .page--faq .section--list.faq .section-tit {
    letter-spacing: 0.2em;
  }
  .page--faq .section--list.faq .block--contact {
    font-size: 12px;
  }
  .page--faq .section--list.faq .block--contact a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .section--list.faq .block--contact a:hover {
    text-decoration: none;
  }
  .page--faq .section--list.faq .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list.faq .txt--sub {
    font-size: 0.8em;
  }
  .page--faq .section--detail .list--faq {
    margin-bottom: 0;
  }
  .page--faq .searchBox {
    position: relative;
    margin: 10px auto 30px;
  }
  .page--faq .searchBox input[type=text] {
    width: 100%;
    border-bottom: 1px solid #000000;
    font-size: 12px;
    background: transparent;
    border-radius: 0;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 17px;
    font-weight: bold;
    line-height: 40px;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: -4px;
    right: 0;
    z-index: 2;
  }
  .page--faq .list--faq {
    margin: 0 0 40px;
  }
  .page--faq .list--faq li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 0.25em;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #000000;
    padding: 6px 0;
    text-decoration: none;
  }
  .page--faq .tit--category {
    font-weight: bold;
    font-size: 14px;
  }
  .page--faq .block--faq-detail {
    background: #CCCCCC;
    padding: 20px 5%;
    margin: 10px 0 30px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding: 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
  }
  .page--faq .block--faq-detail dt, .page--faq .block--faq-detail .dd {
    font-size: 12px;
  }
  .page--faq .block--faq-detail .txt {
    margin-bottom: 0;
  }
  .page--faq .block--faq-detail .txt a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: inline;
  }
  .page--faq .block--faq-detail .txt a:hover {
    text-decoration: none;
  }
  .page--faq .block--faq-detail .txt * {
    font-family: YakuHanJP, "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
    color: #000000 !important;
    font-size: 12px !important;
  }
  .page--faq .block--contact {
    margin: 20px 0 0;
  }
  .page--faq .block--contact a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    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 #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a:hover {
    text-decoration: none;
  }
  /* .page--first_login
  ------------------------------ */
  .page--first_login .section--detail.support {
    padding-top: 10px;
  }
  .page--first_login .section--detail.support .section-tit {
    letter-spacing: 0.02em;
  }
  .page--first_login span.attention {
    display: block;
    width: 46%;
    background: #444;
    color: #fff;
    padding: 2px 0px;
    margin: 0 auto 10px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
  }
  .page--first_login .txt--link a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .txt--link a:hover {
    text-decoration: none;
  }
  .page--first_login .block--attention {
    color: #b72120;
    padding: 10px 3% 10px;
    border: 1px solid #b72120;
    margin-top: 20px;
    letter-spacing: 0.08em;
  }
  .page--first_login .block--attention .tit {
    font-weight: bold;
  }
  .page--first_login .block--attention ul {
    margin-top: 15px;
  }
  .page--first_login .block--attention ul li {
    position: relative;
    padding-left: 1.25em;
  }
  .page--first_login .block--attention ul li::before {
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
  }
  .page--first_login .block--attention ul li:first-of-type {
    margin-bottom: 10px;
  }
  .page--first_login .block--attention .txt--link a {
    letter-spacing: 0.01em;
    font-size: 0.9em;
  }
  .page--first_login .block--attention .txt--link a:after {
    border-color: #b72120 !important;
  }
  .page--first_login .block--attention .fas {
    margin-right: 0.15em;
    font-size: 0.8em;
  }
  .page--first_login .block--step {
    margin: 30px 0 70px;
  }
  .page--first_login .block--step .list-tit {
    font-size: 13.5px;
    font-weight: bold;
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
  .page--first_login .block--step .list-tit > span {
    margin-right: 2px;
    padding: 0 3px;
    background: #CCCCCC;
    font-size: 10px;
    display: inline-block;
    transform: translateY(-2px);
  }
  .page--first_login .block--step .list--step > li {
    margin-bottom: 30px;
    background: #f3f3f3;
    padding: 3.5%;
  }
  .page--first_login .block--step .list--step > li .txt--link a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--first_login .block--step .list--step > li .thumb {
    width: 96%;
    margin: 10px auto;
    border: 1px solid #ccc;
    line-height: 0;
  }
  .page--first_login .block--step .list--step > li .thumb img {
    width: 100%;
  }
  .page--first_login .block--step .block:not(:last-of-type) {
    margin: 20px 0 30px;
  }
  .page--first_login .block--step .block > .tit {
    position: relative;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 1em;
  }
  .page--first_login .block--step .block > .tit:before {
    content: "■";
    position: absolute;
    top: 1px;
    left: 0;
    display: block;
    font-size: 0.8em;
  }
  .page--first_login .block--step .block .txt {
    padding-left: 1em;
  }
  .page--first_login .block--contact .block-tit {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #000;
  }
  .page--first_login .block--contact .txt--link.faq::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--first_login .block--contact .list--contact {
    position: relative;
    font-size: 13px;
    background: #f3f3f3;
    padding: 10px 4% 15px;
    margin-bottom: 20px;
  }
  .page--first_login .block--contact .list--contact dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .page--first_login .block--contact .list--contact dd {
    border-bottom: 1px solid rgba(133, 133, 142, 0.4);
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .page--first_login .block--contact .list--contact dd:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page--first_login .block--contact .btn {
    margin-bottom: 20px;
  }
  .page--first_login .list--faq.list--accordion {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
  }
  .page--first_login .list--faq.list--accordion > dt {
    border-top: 1px solid #ccc;
    padding: 15px 1em 15px 0;
    position: relative;
    font-weight: bold;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .list--faq.list--accordion > dt::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    vertical-align: middle;
  }
  .page--first_login .list--faq.list--accordion > dt:after {
    position: absolute;
    top: 50%;
    right: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--first_login .list--faq.list--accordion > dt.open:after {
    transform: rotate(135deg);
  }
  .page--first_login .list--faq.list--accordion > dd {
    display: none;
    padding-bottom: 30px;
    font-size: 0.9em;
  }
  .page--first_login .list--faq.list--accordion > dd .list--sub {
    margin: 1em 0 2em 1em;
  }
  .page--first_login .list--faq.list--accordion > dd .list--sub li {
    margin-bottom: 1em;
  }
  .page--first_login .list--faq.list--accordion a, .page--first_login .list--faq.list--accordion .list--sub a {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    display: inline-block;
    word-break: break-all;
  }
  .page--first_login .list--faq.list--accordion a:hover, .page--first_login .list--faq.list--accordion .list--sub a:hover {
    text-decoration: none;
  }
  .page--first_login .list--faq.list--accordion .txt.domain {
    margin: 10px 0;
  }
  /* .page--error
  ------------------------------ */
  .page--error .btn {
    margin-top: 100px;
  }
  .body--app:not(.page--home) .wrap {
    padding: 80px 0 40px;
  }
  .body--app.page--faq .wrap {
    padding: 80px 0 80px;
  }
  /*  notice
  ------------------------------- */
  .page--notice {
    background: #fff;
  }
  .page--notice .wrap {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
  }
  .page--notice .wrap > .bg {
    background: #fff;
  }
  .page--notice .section--list .no-data {
    color: #000000;
    opacity: 1;
  }
  .page--notice .section--list .list--info {
    border-top: 1px solid #dcdcdc;
  }
  .page--notice .section--list .list--info li a {
    color: #000000;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #dcdcdc;
  }
  .page--notice .section--list .list--info li a .date {
    font-size: 10px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 5px 0 0;
    color: #000000;
  }
  .page--notice .section--list .list--info li a .txt {
    font-size: 13px;
    line-height: 1.6;
    word-break: break-all;
  }
  /*  wovn popup--language
  ------------------------------- */
  .popup--language .popup--language__box {
    width: 90vw;
  }
  .popup--language .popup--language__approval {
    text-align: center;
  }
  .popup--language .popup--language__approval .approval--btn {
    width: 100%;
    padding: 0.5em 3em;
  }
}
.wovn-languages {
  width: 120px;
  z-index: 101;
}

.body--app:not(.page--home) .wovn-languages {
  right: 0;
  top: 30px;
}

/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 756px) and (max-width: 961px) {
  .header .block--logo .menu-logo svg {
    width: 25vw;
    height: 5vw;
  }
  .header .nav--member {
    padding-bottom: 3vw;
    margin-bottom: 3vw;
  }
  .header .menu-nav__nav--login li {
    font-size: 20px;
  }
  .header .menu-nav__memver, .header .menu-nav__free {
    font-size: 15px;
  }
  body:not(.page--home) h1 {
    width: 17vw;
  }
  body:not(.page--home) h1 svg {
    height: 3vw;
  }
  body:not(.page--home) .wrap {
    padding: 92px 0 50px;
  }
  .page--home .stroke {
    left: -12%;
    right: -12%;
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-l {
    width: calc(40vw + 2px);
    height: calc(40vw + 2px);
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-l circle {
    cx: 20vw;
    cy: 20vw;
    r: 20vw;
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-s {
    width: calc(28vw + 2px);
    height: calc(28vw + 2px);
  }
  .page--home [class^=section--] .section-bg svg.circle.circle-s circle {
    cx: 14vw;
    cy: 14vw;
    r: 14vw;
  }
  .page--home .section--top .keyvisual .fclogo {
    width: 40vw;
  }
  .page--home .section--top .keyvisual .amazarashi {
    width: 16vw;
    top: 44vh;
  }
  .page--home .section--top .keyvisual .block--status {
    top: 84vh;
  }
  .page--home .section--news .section-bg {
    right: -42%;
    top: -11%;
  }
  .page--home .section--news .block--stroke {
    left: -15%;
    top: 14%;
  }
  .page--home .section--blog.akita .section-bg {
    top: -6%;
    left: -19%;
  }
  .page--home .section--blog.staff .section-bg .circle-l {
    top: -30%;
    right: -12%;
  }
  .page--home .section--blog.staff .section-bg .circle-s {
    right: -18%;
    top: 30%;
  }
  .page--home .section--blog.staff .block--stroke {
    left: -5%;
  }
  .page--home .section--wallpaper .block--stroke {
    top: 99%;
    left: -25%;
  }
  .page--home .section--wallpaper .section-bg .circle-l {
    top: -12%;
  }
  .page--home .section--wallpaper .thumb {
    width: 50vw;
    height: 50vw;
    margin: 0 auto 20px;
  }
  .page--home .section--wallpaper .thumb img {
    background-size: cover;
  }
  .page--game [class^=block--] .inner > a img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .page--puzzle .contentsBox img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .page--appli .border::before {
    right: -1%;
    top: 66%;
  }
  .page--appli .border::after {
    top: 7%;
    right: -1%;
  }
  .page--appli .lead {
    margin-bottom: 10px;
  }
  .page--appli .text {
    margin-bottom: 8px;
  }
  .page--appli .text.link {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--appli .text.link:hover {
    text-decoration: none;
  }
  .page--appli .red {
    color: #CA4C4B;
  }
  .page--appli .block--lead img {
    width: 100px;
    height: 100px;
    margin: 0 2% 0 0;
    display: block;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .page--appli .block--lead .lead {
    letter-spacing: 0;
    width: 90%;
  }
  .page--appli .block--lead .lead span {
    font-weight: bold;
  }
  .page--appli [class^=block--] {
    margin-bottom: 50px;
  }
  .page--appli [class^=block--] .block-tit {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    font-size: 15px;
    font-weight: bold;
  }
  .page--appli [class^=block--] .block-tit::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--appli .block--lead, .page--appli .block--push {
    margin-left: 4.5%;
    margin-right: 4.5%;
  }
  .page--appli .block--howto {
    margin: 50px 4.5%;
  }
  .page--appli .block--howto dl {
    background: #ccc;
    padding: 10px 2%;
    margin-bottom: 20px;
  }
  .page--appli .block--howto dt {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .page--appli .list--app {
    margin: 30px 4.5%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .list--app span {
    margin-bottom: 10px;
    display: block;
    font-size: 12px;
  }
  .page--appli .list--app li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--appli .list--app li:first-of-type {
    margin-right: 10px;
  }
  .page--appli .list--app a {
    cursor: pointer;
    height: 70px;
  }
  .page--appli .list--app a img {
    width: auto;
    height: 100%;
  }
  .page--wallpaper .list--contents figure.thumb img {
    width: 100%;
  }
  .page--wallpaper .block--wp-size .tit {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page--wallpaper .block--wp-size li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px !important;
    padding-bottom: 5px;
  }
  .page--wallpaper .block--wp-size li::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
}/*# sourceMappingURL=fanclub-service.css.map */