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

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

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

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

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

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

/* absolute : position:absolute; */
/* 配置*/
/* link*/
/* 2.3 form
------------------------------ */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 2em 0 0.75em;
}
.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: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(13, 13, 13, 0.4);
  padding: 1em 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: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}
@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] {
    letter-spacing: 0.04em;
    font-size: 16px;
    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: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(13, 13, 13, 0.4);
  padding: 1em 0.5em;
  height: auto;
  line-height: 1.6;
}
@media screen and (min-width: 961px) {
  textarea {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    letter-spacing: 0.04em;
    font-size: 16px;
    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;
  position: relative;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(13, 13, 13, 0.4);
  padding: 1em 0.5em;
  padding-right: 1.5em;
}
@media screen and (min-width: 961px) {
  .form__select select {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    letter-spacing: 0.04em;
    font-size: 16px;
    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;
}

.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;
}

.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;
}

.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;
}

/* error-list */
/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html, body {
  height: 100%;
}

body {
  background: #fff;
  color: #0D0D0D;
  font-family: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  word-wrap: break-word;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}
@media screen and (min-width: 961px) {
  body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  body {
    letter-spacing: 0.04em;
    font-size: 16px;
    line-height: 1.6;
  }
}

a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}

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

::-moz-selection {
  background: #0D0D0D;
  color: #fff;
}

::selection {
  background: #0D0D0D;
  color: #fff;
}

::-moz-selection {
  background: #0D0D0D;
  color: #fff;
}

.svg-symbol,
.xdebug-var-dump {
  display: none !important;
}

.area--tamaki {
  background: #fff;
}

.area--anzenchitai {
  background: #dadcdc;
}

.area--member {
  background-image: url(../../../saltmoderate/common/fc_bg.jpg);
  background-color: #0D1C22;
  color: #fff;
}

.txt--basic {
  margin: 0 0 1em;
}

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

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.red {
  color: #e63a37;
}

.date,
.category,
.commingsoon,
.no-data {
  line-height: 1;
  font-family: "garamond-premier-pro-subhead", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.area-tit {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.block--message {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.block--message .tamaki, .block--message .anzenchitai {
  letter-spacing: 0.05em;
}
.block--message span.forever {
  display: inline-block;
}
@media screen and (min-width: 961px) {
  .block--message span.forever {
    transform: translateY(-4px);
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--message span.forever {
    transform: translateY(-2px);
  }
}

.message {
  text-transform: capitalize;
  letter-spacing: -0.001em;
  line-height: 1.1;
}

.section-tit {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
.section-tit span {
  display: block;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 961px) {
  .section-tit span {
    font-size: 13px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .section-tit span {
    font-size: 10px;
  }
}

.tit {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  word-break: break-word;
}

.block--pager {
  text-align: left;
  letter-spacing: -0.5em;
  font-size: 15px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  top: 20px;
  height: 60px;
}
.block--pager li {
  display: inline-block;
  font-family: "garamond-premier-pro", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.6em 0;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  position: relative;
}
.block--pager li:hover::before {
  transform: scaleX(1);
}
.block--pager li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: rgba(13, 13, 13, 0.4);
  left: -1px;
  transform: scaleX(0);
  transform-origin: left;
  top: calc(85% - 1px);
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.block--pager li::before {
  width: 95%;
  left: 0;
}
.block--pager a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 0 0.6em;
}
.block--pager .pager__item--number {
  text-align: center;
  color: #fff;
}
.block--pager .pager__item--newer {
  left: 0;
}
.block--pager .pager__item--older {
  right: 0;
}
.block--pager .pager__item--older a:after, .block--pager .pager__item--older span::after {
  transform: rotate(-135deg) !important;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  top: 0;
}
.block--pager .pager__item--newer a, .block--pager .pager__item--newer span,
.block--pager .pager__item--older a,
.block--pager .pager__item--older span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  position: relative;
}
.block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after,
.block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(13, 13, 13, 0.6);
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
  position: absolute;
  right: 16px;
  top: 16px;
}
.block--pager .pager__item--newer::after,
.block--pager .pager__item--older::after {
  display: block;
}
.block--pager .pager__item--newer::before,
.block--pager .pager__item--older::before {
  display: none !important;
}
.block--pager .pager__item--newer span,
.block--pager .pager__item--older span {
  opacity: 0.4;
}
.block--pager .pager__item--current {
  position: relative;
  padding: 0.6em;
}
.block--pager .pager__item--current::before {
  transform: scaleX(1);
}

.btn {
  font-family: garamond-premier-pro, "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .btn {
    cursor: pointer;
  }
}
.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: #0D0D0D;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.btn .btn--main:hover {
  background: #444;
  color: #fff;
}
.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;
  cursor: pointer;
  color: #0D0D0D;
  box-shadow: 0 0 0px 1px #000 inset;
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.btn .btn--sub:hover {
  background: #444;
  color: #fff;
}
.btn .btn--sub:hover {
  background: #0D0D0D;
  color: #fff;
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .btn .btn--sub {
    min-width: 50%;
    height: 60px;
    line-height: 60px;
  }
}

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

/* video */
video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video {
  position: relative;
  padding-top: 56.25%;
}
.video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.block--player {
  height: 0;
  aspect-ratio: 16/9;
  padding-top: 56.25%;
  background: #fff;
  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;
}

.list__more,
.detail__btn {
  font-family: garamond-premier-pro, "Noto Serif JP", serif;
  letter-spacing: 0.02em;
  position: relative;
}
.list__more::before,
.detail__btn::before {
  margin: 0 auto;
  background: #0D0D0D;
  border-radius: 50%;
  transform-origin: center;
}

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

/* delighter */
.delighter {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.delighter.started {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.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.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.slick-arrow::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #0D0D0D;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 36%;
}
.slick-arrow::after {
  border-width: 2px;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.slick-arrow.slick-disabled {
  opacity: 0;
}

.slick-prev,
.slick-next {
  padding: 10px;
  z-index: 99;
  width: 50px !important;
  height: 50px !important;
  background: #fff !important;
  border-radius: 25px;
  transform-origin: center;
  box-shadow: 2px 2px 4px 1px rgba(13, 13, 13, 0.2);
}
.slick-prev:hover,
.slick-next:hover {
  background: #034C6C !important;
}
.slick-prev:hover:after,
.slick-next:hover:after {
  border-color: #fff;
}

.slick-slider:hover .slick-arrow {
  opacity: 1;
  display: block;
}
.slick-slider:hover .slick-arrow.slick-disabled {
  opacity: 0;
}

.slick-prev {
  left: 5.3vw !important;
}
.slick-prev:after {
  transform: rotate(45deg);
  right: 31%;
}

.slick-next {
  right: 5.3vw !important;
}
.slick-next::after {
  left: 31%;
}

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

.slick-dots {
  text-align: right;
  transform: translateY(10px);
}
@media screen and (min-width: 961px) {
  .slick-dots li {
    width: 12px !important;
    height: 12px !important;
    margin: 0 7px !important;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .slick-dots li {
    width: 4px !important;
    height: 4px !important;
    margin: 0 18px 0 0 !important;
  }
  .slick-dots li button {
    padding: 4px !important;
  }
}
.slick-dots li.slick-active button {
  background: #2B3B3E;
}
.slick-dots li button {
  background: #fff;
  box-sizing: border-box;
  border: 1px solid rgba(13, 13, 13, 0.4) !important;
  border-radius: 50%;
  width: 100% !important;
  height: 100% !important;
}

.slick-track {
  position: absolute !important;
}

.slick-list {
  overflow: visible !important;
}

#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: "";
  display: block;
  width: 40px;
  height: 2px;
  position: absolute;
  background: #fff;
  position: absolute;
  top: 20px;
  transition: all 0.6s 0s ease-out;
}

#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,
#swipebox-action #swipebox-next::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  display: inline-block;
  border: 1px solid;
  border-top: none;
  border-right: none;
  vertical-align: middle;
  pointer-events: none;
}

#swipebox-action #swipebox-prev::after {
  transform: rotate(45deg);
  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 {
  transform: rotate(-135deg);
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
}

#swipebox-caption {
  width: 100%;
  max-width: 800px;
  padding: 0 8%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  #swipebox-caption {
    font-size: 14px;
  }
}

.list--info.fcinfo li, .list--info.fcinfo a:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.list--info.fcinfo .new {
  color: #F7FAFA;
  border-color: rgba(247, 250, 250, 0.4);
}
.list--info li {
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
}
.list--info li:only-child {
  border-bottom: 1px solid rgba(13, 13, 13, 0.4) !important;
}
.list--info li:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.list--info li a {
  display: flex;
  align-items: center;
  left: 0;
}
.list--info li .new {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #034C6C;
  border: 1px solid rgba(3, 76, 108, 0.1);
  vertical-align: middle;
}
.list--info li .date, .list--info li .category {
  display: inline-block;
}
.list--info li.no-data {
  border-bottom: none !important;
}
.list--info li .block--date {
  display: inline-block;
}
.list--info li .date.event-end {
  position: relative;
}
.list--info li .date.event-end:before {
  content: "";
  height: 1px;
  background: #0D0D0D;
  position: absolute;
  top: 48%;
}

.list--contents, .list--discography {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.list--contents a, .list--discography a {
  display: block;
}
.list--contents .block--thumb, .list--discography .block--thumb {
  position: relative;
}
.list--contents li .thumb, .list--discography li .thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
}
.list--contents .shadow, .list--discography .shadow {
  background: #000;
  filter: blur(17px);
  opacity: 0.64;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  display: block;
  position: absolute;
  right: 0;
  bottom: -7px;
  z-index: 1;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .list--contents .shadow, .list--discography .shadow {
    display: none;
  }
  .list--contents .blur, .list--discography .blur {
    display: none;
    background-image: none;
  }
}
.list--contents .list__txt .tit, .list--discography .list__txt .tit {
  font-weight: 600;
}

.list--contents li a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}
.list--contents li {
  width: 30%;
}
.list--contents li .thumb {
  padding-top: 66.67%;
  aspect-ratio: 6/4;
}
.list--contents li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.list--contents li .blur {
  filter: blur(10px);
  transform: scale(1.2);
}
.list--contents li .thumb img:not(.blur) {
  background-size: contain;
  z-index: 2;
}
.list--contents li .new {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.list--discography .blur {
  filter: blur(10px);
  transform: scale(1.2);
  position: absolute;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .list--discography .blur {
    display: none;
    background-image: none;
  }
}
.list--discography .thumb img:not(.blur) {
  background-size: contain;
  z-index: 2;
  position: relative;
}
.list--discography .thumb img {
  width: 100%;
}

.list--login {
  position: relative;
}
.list--login li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.list--login li a {
  display: block;
  color: #fff;
  font-family: garamond-premier-pro, "Noto Serif JP", serif;
}
.list--login li.join {
  position: relative;
}
.list--login li.join span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  display: block;
  background: #fff;
}

.block--category {
  position: relative;
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.block--category li {
  display: inline-block;
}
.block--category li a {
  display: inline-block;
  position: relative;
  line-height: 1;
  background: linear-gradient(90deg, #034C6C 50%, #0D0D0D 50%);
  background-position-x: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 210% 100%;
  transition: background-position-x 0.5s, color 0.25s;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .block--category li a {
    background: none;
  }
  .block--category li a:hover {
    color: #034C6C !important;
  }
}
@media screen and (min-width: 961px) {
  .block--category li a:hover {
    color: transparent;
    background-position-x: 0%;
  }
}
.block--category li.current a {
  color: #034C6C;
}

.header {
  width: 100%;
}
.header .saltmoderate {
  z-index: 99;
}
.header .saltmoderate svg {
  fill: #fff;
}
.header .drawer__btn {
  z-index: 99;
}
.header .g-nav > li a {
  display: block;
  font-family: "garamond-premier-pro-subhead", "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  letter-spacing: 0.06em;
}
.header .g-nav > li a svg.external-link {
  fill: #0D0D0D;
  width: 8px;
  display: inline-block;
  height: 8px;
  margin-left: 3px;
  position: absolute;
  top: -4px;
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .nav--support {
  text-align: left;
}
footer .nav--support li {
  display: inline-block;
  font-size: 12px;
}
footer .nav--support li:not(:last-of-type) {
  margin-right: 40px;
}
footer .nav--support li a {
  display: block;
  padding: 5px 0;
  position: relative;
}
footer .copyright {
  font-size: 10px;
}
footer .nav__page-top {
  z-index: 10;
  font-size: 12px;
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .nav__page-top a {
  position: relative;
}
footer .nav__page-top a::before {
  top: 0;
  left: calc(50% - 4px);
  margin: 0 auto;
  background: #0D0D0D;
  border-radius: 50%;
}

.wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #fff;
}
.wrap > h1 {
  position: absolute;
  left: 4.3%;
  top: -2vh;
}
.wrap > h1 a {
  display: block;
}

.section--list,
.section--detail {
  position: relative;
}
.section--list .block--title,
.section--detail .block--title {
  display: inline-block;
  background: #fff;
  padding: 0 30px;
  margin-bottom: 50px;
  margin-top: -1px;
  position: relative;
  top: 22px;
}
.section--list .category,
.section--detail .category {
  color: #A6AAAC;
}

.section--list .list--info li:nth-child(1), .section--list .list--contents li:nth-child(1), .section--list .list--discography li:nth-child(1) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 1);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(2), .section--list .list--contents li:nth-child(2), .section--list .list--discography li:nth-child(2) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 2);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(3), .section--list .list--contents li:nth-child(3), .section--list .list--discography li:nth-child(3) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 3);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(4), .section--list .list--contents li:nth-child(4), .section--list .list--discography li:nth-child(4) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 4);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(5), .section--list .list--contents li:nth-child(5), .section--list .list--discography li:nth-child(5) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 5);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(6), .section--list .list--contents li:nth-child(6), .section--list .list--discography li:nth-child(6) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 6);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(7), .section--list .list--contents li:nth-child(7), .section--list .list--discography li:nth-child(7) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 7);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(8), .section--list .list--contents li:nth-child(8), .section--list .list--discography li:nth-child(8) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 8);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(9), .section--list .list--contents li:nth-child(9), .section--list .list--discography li:nth-child(9) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 9);
  transform: translateY(20px);
  opacity: 0;
}
.section--list .list--info li:nth-child(10), .section--list .list--contents li:nth-child(10), .section--list .list--discography li:nth-child(10) {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.1s * 10);
  transform: translateY(20px);
  opacity: 0;
}

.section--detail {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.section--detail .list--contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.section--detail > .txt * {
  white-space: normal !important;
  word-break: break-word;
}
.section--detail .block--share {
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
  text-align: right;
}
.section--detail .block--share a {
  padding: 5px 0;
}
.section--detail .block--share li {
  display: inline-block;
  margin-right: 10px;
}
.section--detail .block--share li .fa {
  font-size: 20px;
  vertical-align: middle;
}
.section--detail .block--share li:last-child {
  margin-right: 0;
}
.section--detail .block--share li svg {
  width: 20px;
  fill: #0D0D0D;
  position: relative;
  top: 6px;
  left: -2px;
}
.section--detail .block--share li.share {
  font-family: "garamond-premier-pro", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-right: 0.5em;
}
@media screen and (min-width: 961px) {
  .section--detail .block--share i, .section--detail .block--share svg {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .section--detail .block--share li:hover a svg {
    fill: #034C6C;
  }
  .section--detail .block--share li:hover a .fa {
    color: #034C6C;
  }
}

body.loaded .section--list .list--info li, body.loaded .section--list .list--contents li, body.loaded .section--list .list--discography li {
  opacity: 1;
  transform: translateY(0);
}
body.loaded .section--detail {
  opacity: 1;
  transform: translateY(0);
}

.page--home h1.saltmoderate, .page--home .nav--menu.pc, .page--home .drawer__btn.sp, .page--home .scroll {
  opacity: 0;
  transition: all 0.6s 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--home .swiper-container {
  opacity: 0;
  transition: all 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--home .block--message {
  z-index: 2;
}
.page--home .block--message .bar {
  transform: translate3d(0, 0, 0);
  position: relative;
  display: inline-block;
}
.page--home .block--message .bar::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #fff;
}
.page--home .block--message .message, .page--home .block--message .artists .tamaki, .page--home .block--message .artists .anzenchitai {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
.page--home.loaded .bar:before {
  animation: passing-bar 1.2s ease 0.5s 1 normal forwards;
}
.page--home.loaded .message, .page--home.loaded .artists .tamaki, .page--home.loaded .artists .anzenchitai {
  animation: passing-txt 0.2s ease 0.6s 1 normal forwards;
}
.page--home.loaded .swiper-container, .page--home.loaded h1.saltmoderate, .page--home.loaded .nav--menu.pc, .page--home.loaded .drawer__btn.sp, .page--home.loaded .scroll {
  opacity: 1;
}
.page--home.loaded.scrolling .scroll {
  animation: passing-txt 0.4s ease 0.6s 1 normal forwards;
  animation-direction: reverse;
}
.page--home .no-data {
  text-align: center;
}
.page--home .list__more {
  position: relative;
  margin: 110px 0 0;
  display: inline-block;
}
.page--home .area--tamaki, .page--home .area--anzenchitai, .page--home .area--member {
  position: relative;
}
.page--home .area--tamaki .area-tit, .page--home .area--anzenchitai .area-tit, .page--home .area--member .area-tit {
  color: #ADBEC1;
  position: absolute;
  top: -0.5em;
  left: 4.3vw;
}
.page--home .area--tamaki {
  border-top: 1px solid rgba(13, 13, 13, 0.1);
}
.page--home .section--keyvisual {
  height: 100vh;
}
@media screen and (min-width: 961px) {
  .page--home .section--keyvisual {
    height: 77vh;
  }
}
.page--home .section--keyvisual .scroll {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.page--home .section--keyvisual .scroll p {
  display: block;
  color: #0D0D0D;
  font-family: garamond-premier-pro, "Noto Serif JP", serif;
  position: relative;
  line-height: 1;
}
.page--home .section--keyvisual .scroll p::before {
  content: "";
  display: block;
  width: 1px;
  height: 26vh;
  position: absolute;
  background: #0D0D0D;
  transform-origin: center;
  top: -20px;
  animation: scroll 1.8s infinite;
  border-radius: 50%;
}
.page--home .section--keyvisual .swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.page--home .section--keyvisual .swiper-slide .slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.page--home .section--keyvisual .swiper-slide .entity-img {
  display: none;
}
.page--home .section--banner .slick-dots {
  text-align: right;
}
.page--home .area--member .section-tit {
  color: #fff;
}
.page--home .area--member .list__more a {
  color: #fff;
}
.page--home .area--member .list__more::before {
  background: #fff;
}
.page--home .area--member .block--login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.page--home .area--member .block--login .fc-logo {
  fill: #fff;
}
.page--home .area--member .block--login .tit {
  text-align: center;
  font-family: "garamond-premier-pro", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.page--home .area--member .block--login .list--login {
  text-align: center;
}
.page--home .section--photo .list--contents li,
.page--home .section--movie .list--contents li {
  margin: 0;
}
.page--home .section--photo .list--contents li .thumb,
.page--home .section--movie .list--contents li .thumb {
  height: auto;
  margin: 0 auto 50px;
}
.page--home .section--photo .list--contents li .thumb img,
.page--home .section--movie .list--contents li .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.page--home .section--photo .no-data,
.page--home .section--movie .no-data {
  text-align: center;
}
.page--home .section--movie .thumb {
  position: relative;
}
.page--home .section--movie .thumb::before, .page--home .section--movie .thumb::after {
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page--home .section--movie .thumb::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 16px;
}
.page--home .section--movie .thumb:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.page--home footer {
  position: relative;
}
.page--home footer .footer--sns {
  margin-bottom: 20px;
}
.page--home footer .footer--sns li {
  display: inline-block;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgba(13, 13, 13, 0.1);
}
.page--home footer .footer--sns li a {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 45px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  body:not(.page--home).fcmember .saltmoderate svg {
    fill: #fff !important;
  }
}
body:not(.page--home).fcmember .wrap {
  background-image: url(../../../saltmoderate/common/fc_bg.jpg);
  background-color: #0D1C22;
  color: #fff;
}
@media screen and (min-width: 961px) {
  body:not(.page--home).fcmember .wrap .header .g-nav > li a svg.external-link {
    fill: #fff;
  }
}
body:not(.page--home).fcmember .wrap .drawer__btn span,
body:not(.page--home).fcmember .wrap .detail__btn::before,
body:not(.page--home).fcmember .wrap .list__more::before {
  background-color: #fff;
}
body:not(.page--home).fcmember .wrap footer .nav__page-top a::before {
  background-color: #fff;
}
body:not(.page--home).fcmember .wrap footer .nav__page-top a:hover::before {
  background-color: #034C6C;
}
body:not(.page--home).fcmember .wrap [class^=nav--] .g-nav > li a::before,
body:not(.page--home).fcmember .wrap .block--pager li:before {
  background-color: rgba(255, 255, 255, 0.4);
}
body:not(.page--home).fcmember .wrap .pager__item--newer a:after, body:not(.page--home).fcmember .wrap .pager__item--newer span::after,
body:not(.page--home).fcmember .wrap .pager__item--older a:after,
body:not(.page--home).fcmember .wrap .pager__item--older span::after {
  border-color: rgba(255, 255, 255, 0.6);
}
body:not(.page--home).fcmember .wrap .btn .btn--sub {
  color: #fff;
  box-shadow: 0 0 0px 1px #fff inset;
}
body:not(.page--home).fcmember .wrap .btn .btn--sub:hover {
  background: #fff;
  color: #0D0D0D;
}
body:not(.page--home) .nav--support, body:not(.page--home) .footer--sns, body:not(.page--home) .tit--support {
  display: none;
}

/*  page--info
------------------------------ */
.page--info .section--detail .category {
  display: inline-block;
}
.page--info .section--detail .new {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #034C6C;
  border: 1px solid rgba(3, 76, 108, 0.1);
  vertical-align: middle;
}
.page--info .section--detail .txt a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--info .section--detail .txt a:hover {
  text-decoration: none;
}
.page--info .section--detail .date.event-end {
  position: relative;
}
.page--info .section--detail .date.event-end:before {
  content: "";
  height: 1px;
  background: #0D0D0D;
  position: absolute;
  top: 38%;
}
.page--info .section--detail .date.post-date {
  color: #A6AAAC;
}

/*  page--movie,.page--photo
------------------------------ */
.page--movie .section--detail .tit, .page--photo .section--detail .tit {
  font-weight: bolder;
}
.page--movie .txt--sub, .page--photo .txt--sub {
  margin-bottom: 30px;
}
.page--movie .btn .btn--sub, .page--photo .btn .btn--sub {
  font-size: 0.85em;
}

.page--movie.new-movie.page-movie-detail .section--detail .area--movie {
  margin: 50px auto 30px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player {
  margin: 0 auto;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-big-play-button {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(135, 135, 135, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-big-play-button::before {
  content: "";
  background: #ffffff;
  height: 40px;
  width: 35px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.page--movie.new-movie.page-movie-detail .section--detail .detail__btn {
  text-align: left;
  font-size: 15px;
  margin: 110px 0 0;
}

/*  page--discography
------------------------------ */
.page--disco.disco--anzenchitai .block--discography.tamaki, .page--disco.disco--anzenchitai .block--discography.watayutake, .page--disco.disco--tamaki .block--discography.anzenchitai, .page--disco.disco--tamaki .block--discography.watayutake, .page--disco.disco--watayutake .block--discography.tamaki, .page--disco.disco--watayutake .block--discography.anzenchitai {
  display: none;
}
.page--disco .list-tit {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  letter-spacing: 0.08em;
}
.page--disco .jacket {
  position: relative;
}
.page--disco .jacket .ph {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.page--disco .block--disc-detail .date {
  margin-bottom: 60px;
}
.page--disco .block--disc-detail .text .btn {
  margin: 1em 0;
}
.page--disco .block--disc-detail .sub-tit {
  font-size: 0.8em;
  margin-bottom: 0.5em;
}
.page--disco .block--disc-detail .sub-tit::before {
  content: "";
  display: inline-block;
  background: #fff;
  height: 1px;
  width: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.page--disco .block--disc-detail .list--distribution {
  margin-bottom: 10px;
}
.page--disco .block--disc-detail .list--distribution::after {
  content: "";
  display: block;
  clear: both;
}
.page--disco .block--disc-detail .list--distribution li {
  width: 49%;
  float: left;
  margin-bottom: 8px;
}
.page--disco .block--disc-detail .list--distribution li:nth-child(even) {
  margin-left: 2%;
}
.page--disco .block--disc-detail .list--distribution a {
  display: block;
  background: #fff;
  padding: 5px 0;
  border-radius: 50px;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  text-align: center;
}
.page--disco .block--disc-detail .list--distribution a img {
  width: 80%;
}
.page--disco .block--disc-detail .text a {
  word-break: break-all;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--disco .block--disc-detail .text a:hover {
  text-decoration: none;
}

.page--entry .section--detail .section-tit {
  display: none;
}
.page--entry .section--detail [class^=block--] {
  margin-bottom: 100px;
}
.page--entry .section--detail [class^=block--] table {
  width: 700px;
  margin: 0 auto 30px;
  border: 1px solid rgba(13, 13, 13, 0.4);
}
.page--entry .section--detail [class^=block--] table tr {
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
}
.page--entry .section--detail [class^=block--] table th {
  text-align: center;
  font-weight: 400;
  background-color: #dadcdc;
}
.page--entry .section--detail [class^=block--] table td {
  padding: 10px 3%;
  border-left: 1px solid rgba(13, 13, 13, 0.4);
}
.page--entry .section--detail [class^=block--] table.list--payment td ul li {
  margin-bottom: 0.75em;
}
.page--entry .section--detail [class^=block--] table .txt--sub {
  margin-bottom: 0.5em !important;
}
.page--entry .section--detail [class^=block--] .block-tit {
  font-family: garamond-premier-pro-display, "Noto Serif JP", serif;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  line-height: 0.8;
}
.page--entry .section--detail .block--top .logo svg {
  display: block;
}
.page--entry .section--detail .block--top .logo .name {
  line-height: 1.6;
  display: inline-block;
  text-align: center;
  font-size: 12px;
}
.page--entry .section--detail .block--top .lead {
  margin-bottom: 0;
}
.page--entry .section--detail .list--contents {
  align-items: stretch;
}
.page--entry .section--detail .list--contents li {
  margin-bottom: 20px;
  margin-right: 2%;
  border: 1px solid rgba(13, 13, 13, 0.4);
}
.page--entry .section--detail .list--contents li:nth-child(even) {
  margin-right: 0;
}
.page--entry .section--detail .list--contents li .tit {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  letter-spacing: 0.08em;
  line-height: 0.8;
}
.page--entry .section--detail .list--contents li .text {
  letter-spacing: 0.1em;
}
.page--entry .section--detail .list--contents li .txt--sub {
  margin-bottom: 0.5em;
}
.page--entry .section--detail .list--contents li .txt--sub:first-of-type {
  margin-top: 1em;
}
.page--entry .note {
  margin-bottom: 30px;
}
.page--entry .block--firstlogin {
  background-color: rgba(3, 76, 108, 0.12);
}
.page--entry .block--firstlogin div.note .sub-txt-list {
  border: 1px solid #000;
}
.page--entry .block--firstlogin div.note .sub-txt-list li {
  list-style: "・";
  margin-left: 0.75em;
}
.page--entry .block--firstlogin div.note .txt--sub {
  margin-bottom: 1em;
}
.page--entry .area--btn .list--inner {
  display: block;
  margin: 10px 0 0 1em;
  font-weight: normal;
}
.page--entry .area--btn .list--inner li {
  margin-bottom: 10px;
}
.page--entry .area--btn .btn:first-of-type {
  margin-bottom: 10px;
}
.page--entry .area--btn .first_login a {
  background-color: #034C6C;
}
.page--entry .area--btn .first_login a:hover {
  background-color: #444;
}
.page--entry .area--btn .first_login a, .page--entry .area--btn .entry a {
  height: inherit;
  line-height: inherit;
  margin: 0 auto;
}
.page--entry .txt--link a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--entry .txt--link a:hover {
  text-decoration: none;
}

.page--support .list--support a {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--support .list--support a:hover {
  text-decoration: none;
}
.page--support .list--support a:hover {
  text-decoration: none;
}
.page--support .list--support dt {
  font-weight: bold;
  margin-bottom: 2px;
}
.page--support .list--support .list--inner {
  display: block;
  margin: 10px 0 0 1em;
}
.page--support .list--support .list--inner li {
  margin-bottom: 10px;
}
.page--support .list--support .list--inner li .tit {
  margin-bottom: 4px;
}

.page--faq .txt--no-data {
  font-size: 12px;
}
.page--faq .tit--category {
  font-weight: bold;
}
.page--faq .searchBox {
  position: relative;
  width: 80%;
}
.page--faq .searchBox input[type=text] {
  border: none;
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
  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%);
}
@media screen and (min-width: 961px) {
  .page--faq .searchBox input[type=submit] {
    cursor: pointer;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--faq .searchBox input[type=submit]:hover {
    opacity: 0.4;
  }
}
.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.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.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 .list--faq .icon--q {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.page--faq .list--faq li {
  position: relative;
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
}
.page--faq .list--faq li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.page--faq .list--faq li .tit {
  margin: 0 0 0 1em;
}
.page--faq .list--faq li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
.page--faq .list--faq li a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #0D0D0D;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
}
.page--faq .block--faq-detail {
  border: 1px solid rgba(13, 13, 13, 0.4);
}
.page--faq .block--faq-detail dt {
  padding: 0 0 15px;
  margin: 0 0 15px;
  font-weight: bold;
  border-bottom: 1px solid #dadcdc;
}
.page--faq .block--faq-detail .txt {
  padding-top: 0;
  margin-bottom: 0;
}
.page--faq .block--faq-detail .txt a {
  display: inline;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.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: #0D0D0D !important;
}
.page--faq .block--contact .txt {
  padding-top: 0;
}
.page--faq .block--contact .link a {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  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 #0D0D0D;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.5em;
  top: 50%;
}
.page--faq .block--contact .link a:hover {
  text-decoration: none;
}
.page--faq .block--contact .link a:after {
  transform: rotate(-135deg) translateY(4px);
}

.page--questionnaire label,
.page--questionnaire label:hover {
  transition: none;
  color: #0D0D0D;
}
.page--questionnaire .detail__btn {
  margin-top: 30px;
}
.page--questionnaire .ph {
  margin-bottom: 50px;
}
.page--questionnaire .ph img {
  display: block;
  margin: 0 auto;
}
.page--questionnaire .form--post #questionnaire_form dd div {
  display: block;
}
.page--questionnaire .form--post dl {
  margin: 0 0 40px;
}
.page--questionnaire .form--post dt {
  float: none;
}
.page--questionnaire .form--post .input--quarter + .age {
  margin-left: 4px;
}
.page--questionnaire .form--post span.post {
  margin-right: 4px;
}
.page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox],
.page--questionnaire .form--post select {
  margin: 0 5px 0 0;
  cursor: pointer;
  vertical-align: -2px;
  padding: 0.8em 1em;
  padding-right: 2em;
}
.page--questionnaire .form--post .form__select::after {
  border-color: #0D0D0D;
  position: absolute;
  right: 0.75em;
}
.page--questionnaire .form--post .form__radio,
.page--questionnaire .form--post .form__checkbox {
  margin-bottom: 8px;
}
.page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox] {
  position: relative;
}
.page--questionnaire .form--post label {
  position: relative;
  display: inline-block;
  width: 90%;
}
.page--questionnaire .form--post input[type=radio],
.page--questionnaire .form--post input[type=checkbox] {
  vertical-align: middle;
  margin: 3px 5px 8px 0;
  z-index: 1;
  border: none;
  opacity: 1;
  padding-right: 0;
}
.page--questionnaire .form--post input[type=radio]:before,
.page--questionnaire .form--post input[type=checkbox]:before {
  height: auto;
  text-indent: 0;
  font-size: 17px;
  font-family: "FontAwesome";
  color: #0D0D0D;
  padding-left: 1px;
  text-indent: 0;
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 0;
}
.page--questionnaire .form--post input[type=checkbox]:before {
  content: "\f096";
}
.page--questionnaire .form--post input[type=radio]:before {
  content: "\f10c";
}
.page--questionnaire .form--post input[type=checkbox]:checked:before {
  content: "\f046";
  color: #034C6C;
}
.page--questionnaire .form--post input[type=radio]:checked:before {
  content: "\f192";
  color: #034C6C;
}
.page--questionnaire .form--post .input.postal_code {
  margin-left: 4px;
}
.page--questionnaire .block--error {
  margin: 0 0 30px;
  padding: 30px;
  border-radius: 3px;
  background: rgba(195, 21, 21, 0.2);
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--questionnaire .block--error {
    padding: 20px 5.5vw;
  }
}
.page--questionnaire .block--error li {
  position: relative;
  color: #c31515;
}
.page--questionnaire .section--detail .btn--sub {
  border-radius: 0;
  border: none;
}
.page--questionnaire .section--detail .txt--basic a {
  text-decoration: underline;
  font-weight: bold;
}
.page--questionnaire .section--detail .txt--basic a:hover {
  text-decoration: none;
}
.page--questionnaire .section--detail .form {
  margin: 50px 0;
}
.page--questionnaire .section--detail .form--comfirm dd {
  padding: 20px;
  background-color: #dadcdc;
  border-radius: 3px;
  margin-bottom: 30px;
}
.page--questionnaire .section--detail.comfirm .btn--sub:hover {
  background: none;
  color: #034C6C;
}

/* terms popup
------------------------------ */
#terms {
  display: none;
}

.popup-inner {
  padding: 120px 0 0;
  color: #fff;
}
.popup-inner .terms_check {
  text-align: center;
  margin: 0 0 20px;
}
.popup-inner .terms_check .form__checkbox {
  display: inline-block;
}
.popup-inner .txt-wrap {
  font-size: 15px;
}
.popup-inner .tit {
  font-size: 20px;
  margin: 0 0 1em;
}
.popup-inner .txt {
  margin-top: 1.5em;
}
.popup-inner .list--support dt {
  font-weight: bold;
}
.popup-inner .list--support dd {
  margin-bottom: 1.5em;
}
.popup-inner .terms-list > li {
  margin: 0 0 1.5em;
  text-indent: -1em;
  padding-left: 1em;
}
.popup-inner .btn {
  opacity: 0.6;
}
.popup-inner .btn .btn--main {
  pointer-events: none;
}
.popup-inner .btn.checked {
  opacity: 1;
}
.popup-inner .btn.checked .btn--main {
  pointer-events: auto;
}
.popup-inner .form__checkbox label p {
  position: relative;
}
.popup-inner .form__checkbox label p::before {
  background: #fff;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 1px solid #888;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: -1.5em;
}
.popup-inner .form__checkbox label p::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.4em;
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  top: 44%;
  left: -1.25em;
  transform: rotate(-45deg);
  opacity: 0;
}
.popup-inner .form__checkbox :checked ~ p::before {
  background: #fff;
  border-color: #000;
}
.popup-inner .form__checkbox :checked ~ p::after {
  top: 47%;
  opacity: 1;
}

/* .page--first_login
------------------------------ */
.page--first_login .section--detail.first_login {
  width: 100%;
}
.page--first_login .section--detail.first_login .section-tit {
  font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: 0.01em;
  text-align: center;
  display: block;
}
.page--first_login .section--detail.first_login .section-tit .sitename {
  font-size: 18px;
}
.page--first_login .section--detail.first_login .section-tit span.attention {
  letter-spacing: 0.01em;
  display: block;
  color: #e63a37;
  font-size: 18px;
  margin: 50px auto 20px;
  border-bottom: 2px solid #e63a37;
  padding: 0 1%;
  width: 11em;
}
.page--first_login .section--detail.first_login .txt {
  padding-top: 0;
  margin-bottom: 1em;
}
.page--first_login .section--detail.first_login .txt--sub {
  margin-bottom: 1em;
}
.page--first_login .btn.entry a {
  background-color: #034C6C;
}
@media screen and (min-width: 961px) {
  .page--first_login .btn.entry a:hover {
    background-color: #0D0D0D;
  }
}
.page--first_login .txt--link a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.page--first_login .txt--link a:hover {
  text-decoration: none;
}
.page--first_login .txt--link a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #0D0D0D;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.75em;
  top: 0.25em;
}
.page--first_login .block--attention {
  color: #e63a37;
  background: #fff;
  padding: 24px;
  margin: 1em 0;
}
.page--first_login .block--attention .tit {
  font-weight: 600;
  font-size: 16px;
}
.page--first_login .block--attention ul {
  margin-top: 15px;
}
.page--first_login .block--attention ul li {
  position: relative;
}
.page--first_login .block--attention ul li:first-of-type {
  margin-bottom: 8px;
}
.page--first_login .block--attention .txt--link {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.page--first_login .block--attention .txt--link:hover {
  text-decoration: none;
}
.page--first_login .block--attention .txt--link::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #e63a37;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.75em;
  top: 0.25em;
}
.page--first_login .block--attention .fas {
  margin-right: 0.25em;
}
.page--first_login .block--step {
  margin: 60px 0 0;
}
.page--first_login .block--step .list-tit {
  font-weight: 600;
  padding-bottom: 0.75em;
  border-bottom: 1px solid rgba(3, 76, 108, 0.1);
  margin-bottom: 0.75em;
}
.page--first_login .block--step .list-tit > span {
  background: #034C6C;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 1px 4px 2px;
  margin-right: 0.5em;
}
.page--first_login .block--step .list--step > li {
  margin-bottom: 30px;
  background: rgba(218, 220, 220, 0.4);
  padding: 32px 4%;
}
.page--first_login .block--step .list--step > li .thumb {
  width: 90%;
  margin: 30px auto;
  border: 1px solid rgba(13, 13, 13, 0.4);
  line-height: 0;
}
.page--first_login .block--step .list--step > li .thumb img {
  width: 100%;
}
.page--first_login .block--step .block {
  margin: 0.5em 0;
}
.page--first_login .block--step .block:not(:last-of-type) {
  margin: 20px 0 30px;
}
.page--first_login .block--step .block > .tit {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  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;
}

@keyframes scroll {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(4px) rotate(0);
  }
  100% {
    transform: translateY(4px) rotate(15deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-4px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-15deg);
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 100%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  a {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .date,
  .commingsoon {
    font-size: 17px;
  }
  .list--bnr.slick-initialized {
    overflow: visible;
  }
  .list--bnr li a {
    position: relative;
    cursor: pointer;
    line-height: 0;
  }
  .list--bnr li a img {
    width: 100%;
  }
  .list--error li {
    font-size: 13px;
  }
  .list--login li a {
    padding: 0 20px;
  }
  .list--info .no-data {
    text-align: center;
  }
  .list--info.fcinfo li:before {
    background: #fff;
  }
  .list--info.fcinfo a:before {
    background: rgba(255, 255, 255, 0);
  }
  .list--info.fcinfo li:hover a:before {
    background: rgba(255, 255, 255, 0.04);
  }
  .list--info li:hover a:before {
    transform: scaleX(1);
    background: rgba(13, 13, 13, 0.04);
    transform-origin: left;
  }
  .list--info li {
    position: relative;
  }
  .list--info li a {
    padding: 60px 1.75em 60px 20px;
    position: relative;
  }
  .list--info li a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #0D0D0D;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 50%;
  }
  .list--info li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(13, 13, 13, 0);
    transform: scaleX(0);
    transform-origin: right;
    transition: background 0.85s, transform 0.85s cubic-bezier(0.9, 0.07, 0.45, 0.94);
  }
  .list--info .tit {
    width: 62%;
    font-size: 16px;
  }
  .list--info .new {
    font-size: 12px;
    margin-left: 8px;
    padding: 4px 0.85em 2px;
  }
  .list--info .category {
    width: 10%;
    font-size: 14px;
    margin-right: 35px;
    white-space: nowrap;
  }
  .list--contents li {
    width: 100%;
  }
  .list--contents li .list__txt .date {
    font-size: 16px;
  }
  .list--contents li .list__txt .tit {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .list--contents li .new {
    font-size: 12px;
    margin-left: 13px;
    padding: 4px 0.85em 2px;
  }
  .list--discography li .list__txt .tit {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .list--contents .block--thumb, .list--discography .block--thumb {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 36px;
  }
  .list--contents .block--thumb .thumb, .list--contents .block--thumb img, .list--discography .block--thumb .thumb, .list--discography .block--thumb img {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .list--contents .list__txt, .list--discography .list__txt {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .list--contents a:hover .block--thumb, .list--discography a:hover .block--thumb {
    transform: scale(0.95);
  }
  .list--contents a:hover .thumb img:not(.blur), .list--discography a:hover .thumb img:not(.blur) {
    transform: scale(1.2);
    transform-origin: center;
    z-index: 2;
  }
  .list--contents a:hover .list__txt, .list--discography a:hover .list__txt {
    opacity: 0.4;
  }
  .no--data {
    text-align: center;
  }
  .block--category {
    max-width: 200px;
    font-size: 18px;
  }
  .block--category li {
    margin-bottom: 10px;
  }
  .block--category .tab {
    border-bottom: 1px solid #dadcdc;
    padding-bottom: 10px;
  }
  .block--category .category-tab li {
    display: inline-block;
    margin: 0 11px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
  }
  .block--category .category-tab li.current {
    display: inline-block;
  }
  .block--category .category-tab li a {
    padding: 5px 0;
    position: relative;
  }
  .block--category .block--tamaki, .block--category .block--anzenchitai, .block--category .block--watayutake, .block--category .block--item {
    padding: 20px 0;
  }
  .block--category .block--tamaki li, .block--category .block--anzenchitai li, .block--category .block--watayutake li, .block--category .block--item li {
    display: block;
  }
  .block--category .block--tamaki li:not(.current) a, .block--category .block--anzenchitai li:not(.current) a, .block--category .block--watayutake li:not(.current) a, .block--category .block--item li:not(.current) a {
    color: rgba(13, 13, 13, 0.6);
  }
  .block--category .block--tamaki .current a:before, .block--category .block--tamaki a:hover::before, .block--category .block--anzenchitai .current a:before, .block--category .block--anzenchitai a:hover::before, .block--category .block--watayutake .current a:before, .block--category .block--watayutake a:hover::before, .block--category .block--item .current a:before, .block--category .block--item a:hover::before {
    transform: scale(1);
  }
  .block--category .block--tamaki a:before, .block--category .block--anzenchitai a:before, .block--category .block--watayutake a:before, .block--category .block--item a:before {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0);
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    background: #034C6C;
    top: -20%;
    right: -20%;
  }
  .block--category .block--tamaki, .block--category .block--anzenchitai, .block--category .block--watayutake {
    display: none;
    margin: 0 0 20px;
  }
  .block--category .block--tamaki.current, .block--category .block--anzenchitai.current, .block--category .block--watayutake.current {
    display: block;
  }
  .detail__btn, .list__more {
    font-size: 15px;
    margin: 110px 0 0;
  }
  .detail__btn a, .list__more a {
    padding: 5px 0 5px 15px;
  }
  .detail__btn::before, .list__more::before {
    transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: -8px;
    left: 0;
  }
  .detail__btn:hover, .list__more:hover {
    color: #034C6C;
  }
  .detail__btn:hover:before, .list__more:hover:before {
    transform: scale(1.6);
    background-color: #034C6C !important;
  }
  header .saltmoderate {
    position: fixed;
    top: 55px;
    left: 4.3vw;
    width: 81px;
    height: 41px;
    display: block;
    mix-blend-mode: difference;
  }
  header .saltmoderate svg {
    width: 100%;
    height: 100%;
  }
  /*  page--disco
  ------------------------------ */
  /* .page--first_login
  ------------------------------ */
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  header .saltmoderate svg {
    fill: #000 !important;
  }
}
@media screen and (min-width: 961px) {
  header .saltmoderate a {
    display: block;
    line-height: 1;
    width: 100%;
    height: 100%;
  }
  .block--login li {
    font-size: 22px;
    position: relative;
  }
  .block--login li:hover::before {
    transform: scaleX(1);
  }
  .block--login li::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background: rgba(13, 13, 13, 0.4);
    left: -1px;
    transform: scaleX(0);
    transform-origin: left;
    top: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .block--login li:hover a {
    color: #034C6C;
  }
  [class^=nav--] {
    text-align: right;
  }
  [class^=nav--] .g-nav > li {
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
  }
  [class^=nav--] .g-nav > li:not(:last-of-type) {
    margin-right: 20px;
  }
  [class^=nav--] .g-nav > li a {
    padding: 3px 0;
    font-size: 17px;
    position: relative;
  }
  [class^=nav--] .g-nav > li a:hover::before {
    transform: scaleX(1);
  }
  [class^=nav--] .g-nav > li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background: rgba(13, 13, 13, 0.4);
    left: -1px;
    transform: scaleX(0);
    transform-origin: left;
    top: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  [class^=nav--] .g-nav > li.join, [class^=nav--] .g-nav > li.mypage {
    position: relative;
    padding-left: 28px;
  }
  [class^=nav--] .g-nav > li.join::before, [class^=nav--] .g-nav > li.mypage::before {
    content: "";
    display: block;
    width: 1px;
    height: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 13, 13, 0.4);
  }
  .g-nav--sns li a:before {
    content: none !important;
  }
  .g-nav--sns li:hover i {
    color: #034C6C;
  }
  .g-nav--sns li:not(:last-of-type) {
    margin-right: 28px;
  }
  .g-nav--sns li i {
    font-size: 17px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav--menu {
    position: absolute;
    top: 55px;
    right: 4.3vw;
  }
  .nav--login {
    width: 50%;
    position: absolute;
    right: 5%;
    bottom: 4vw;
  }
  .nav--login h1.logo {
    width: 30vw;
    height: 14vw;
    margin: 0 0 0 auto;
  }
  .nav--login h1.logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .nav--login h1.logo a svg {
    width: 100%;
    height: 100%;
  }
  .nav--login .login--btn {
    text-align: right;
  }
  .login--btn li a {
    position: relative;
  }
  .login--btn li a::before {
    content: "";
    display: block;
    width: 110%;
    height: 1px;
    position: absolute;
    display: block;
    background: #fff;
    left: -5%;
    transform: scaleX(0);
    transform-origin: left;
    top: calc(50% - 0.5px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .login--btn li a:hover::before {
    transform: scaleX(1);
  }
  .page--home {
    /* common */
    /* footer */
    /* section--keyvisual */
    /* section--banner */
    /* area--tamaki */
    /* area--anzenchitai */
    /* section--info */
    /* area--member */
  }
  .page--home .section-tit {
    color: #0D0D0D;
    font-size: 63px;
  }
  .page--home .area-tit {
    font-size: 55px;
  }
  .page--home .list__more:hover:before {
    transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.6);
    background-color: #034C6C;
  }
  .page--home .list__more a {
    display: block;
    font-size: 15px;
    padding: 5px 0 5px 15px;
  }
  .page--home .header {
    height: 220px;
  }
  .page--home footer {
    padding: 120px 7.5vw 50px;
  }
  .page--home footer .nav--support {
    margin-bottom: 40px;
    display: block;
  }
  .page--home .section--keyvisual {
    margin-bottom: 160px;
  }
  .page--home .section--keyvisual .section--inner {
    margin: 0 4.3vw;
    position: relative;
    height: 100%;
  }
  .page--home .section--keyvisual .block--message {
    position: absolute;
    left: 0;
    top: 18%;
  }
  .page--home .section--keyvisual .block--message .message {
    font-size: 7vw;
    margin-bottom: 6vw;
  }
  .page--home .section--keyvisual .block--message .tamaki, .page--home .section--keyvisual .block--message .anzenchitai {
    font-size: 28px;
  }
  .page--home .section--keyvisual .swiper-container {
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    margin: 0 0 0 auto;
  }
  .page--home .section--keyvisual .scroll {
    bottom: 10%;
    right: -2.6vw;
  }
  .page--home .section--keyvisual .scroll p {
    font-size: 12px;
    writing-mode: vertical-rl;
  }
  .page--home .section--keyvisual .scroll p::before {
    width: 6px;
    height: 6px;
    left: 4px;
  }
  .page--home .section--banner {
    margin: 0 0 180px;
  }
  .page--home .section--banner .slick-list {
    margin-left: 4.3vw;
  }
  .page--home .section--banner .slick-slide {
    position: relative;
    transition: all 0.8s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home .section--banner .slick-slide a {
    overflow: hidden;
  }
  .page--home .section--banner .slick-slide:hover {
    transform: scale(0.94);
  }
  .page--home .section--banner .slick-slide:not(:last-of-type) {
    margin-right: 15px;
  }
  .page--home .section--banner.bnr--single .list--bnr {
    width: 50%;
    margin: 0 auto;
  }
  .page--home .section--banner.bnr--double .slick-track {
    width: 100% !important;
  }
  .page--home .section--banner.bnr--double .list--bnr {
    width: 90%;
    margin: 0 auto;
  }
  .page--home .section--banner.bnr--double .list--bnr li {
    width: 48% !important;
  }
  .page--home .section--banner.bnr--double .slick-arrow, .page--home .section--banner.bnr--double .slick-dots {
    display: none !important;
  }
  .page--home .section--banner .slick-dots {
    right: 4.3vw;
  }
  .page--home .area--tamaki, .page--home .area--anzenchitai {
    padding: 120px 12.3vw 170px;
  }
  .page--home .section--info .section--inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--info .list--info {
    width: 60vw;
    margin: 0 0 60px;
  }
  .page--home .section--info .list--info .date {
    width: 39%;
  }
  .page--home .section--info .area--tit {
    padding-top: 9vw;
    margin-right: 150px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
  }
  .page--home .section--info .no-data {
    padding: 8vw 0 9vw;
  }
  .page--home .area--member {
    padding: 180px 12.3vw 20px;
  }
  .page--home .area--member .block--login {
    margin-bottom: 170px;
  }
  .page--home .area--member .block--login .fc-logo {
    width: 164px;
    height: 326px;
    margin-right: 84px;
  }
  .page--home .area--member .block--login .tit {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page--home .area--member [class^=section--] {
    margin-bottom: 180px;
  }
  .page--home .area--member .section--photo .section--inner, .page--home .area--member .section--movie .section--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .area--member .section--photo .area--tit, .page--home .area--member .section--movie .area--tit {
    margin-right: 10vw;
    width: 28vw;
  }
  .page--home .area--member .section--photo .list--contents, .page--home .area--member .section--movie .list--contents {
    width: 60vw;
  }
  .page--home .area--member .section--photo .list--contents .block--thumb, .page--home .area--member .section--movie .list--contents .block--thumb {
    width: 92%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .page--home .area--member .section--photo .list--contents .list__txt .date, .page--home .area--member .section--movie .list--contents .list__txt .date {
    font-size: 18px;
  }
  .page--home .area--member .section--photo .list--contents .list__txt .tit, .page--home .area--member .section--movie .list--contents .list__txt .tit {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .section--detail .tit {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .section--detail .block--pager {
    text-align: center;
  }
  .section--detail .txt {
    padding-top: 80px;
  }
  body:not(.page--home) .wrap {
    padding: 260px 0 80px;
  }
  body:not(.page--home) .nav--support, body:not(.page--home) .footer--sns {
    display: none;
  }
  body:not(.page--home) .section--list, body:not(.page--home) .section--detail {
    padding: 0 0 70px;
    width: 90%;
    margin: 0 auto;
  }
  body:not(.page--home) .section--list .no-data, body:not(.page--home) .section--detail .no-data {
    width: 100%;
    margin: 150px auto !important;
  }
  body:not(.page--home) .section--list .section-tit, body:not(.page--home) .section--detail .section-tit {
    display: inline-block;
    font-size: 63px;
    margin-bottom: 110px;
    letter-spacing: 0.01em;
  }
  body:not(.page--home) .section--detail {
    max-width: 900px;
  }
  .page--info .section--list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--info .section--list .section-header {
    width: 25%;
  }
  .page--info .section--list .list--info, .page--info .section--list .block--pager {
    width: 72%;
    transform: translateY(-40px);
  }
  .page--info .section--list .block--pager {
    margin: 0 0 0 auto;
  }
  .page--info .section--list .block--date {
    width: 25%;
    margin-right: 20px;
  }
  .page--info .section--list .date.event-end {
    padding-left: 1.5em;
  }
  .page--info .section--list .date.event-end:before {
    width: 0.75em;
    left: 0.25em;
  }
  .page--info .list--info {
    margin: 0 0 60px;
  }
  .page--info .txt {
    margin-bottom: 50px;
  }
  .page--info .block--category .block--item .cat2, .page--info .block--category .cat3, .page--info .block--category .cat5, .page--info .block--category .cat6, .page--info .block--category .archive {
    font-size: 15px;
  }
  .page--info .section--detail .category {
    margin-left: 0.5em;
    font-size: 14px;
  }
  .page--info .section--detail .block--date {
    margin-bottom: 10px;
  }
  .page--info .section--detail .date {
    display: inline-block;
  }
  .page--info .section--detail .block--share {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 50px;
  }
  .page--info .section--detail .txt {
    padding-top: 0;
  }
  .page--info .section--detail .new {
    font-size: 12px;
    margin-left: 0.7em;
    padding: 4px 0.85em 2px;
  }
  .page--info .section--detail .date.event-end {
    padding-left: 1.5em;
  }
  .page--info .section--detail .date.event-end:before {
    width: 0.75em;
    left: 0.25em;
  }
  .page--info.live .section--list .block--date {
    width: clamp(34%, 25ch, 45%);
    margin-right: 20px;
  }
  .page--info.fcinfo [class^=nav--] .g-nav > li.join::before,
  .page--info.fcinfo [class^=nav--] .g-nav > li.mypage::before {
    background: rgba(255, 255, 255, 0.4);
  }
  .page--disco .block--category {
    max-width: 280px;
  }
  .page--disco .block--category .category-tab .watayutake {
    width: 100%;
  }
  .page--disco .block--discography {
    margin-bottom: 50px;
  }
  .page--disco .list-tit {
    font-size: 36px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dadcdc;
  }
  .page--disco .section--list, .page--disco .section--detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--disco .section--list .section-header, .page--disco .section--detail .section-header {
    width: 30%;
  }
  .page--disco .section--list .block--list-area, .page--disco .section--detail .block--list-area {
    width: 68%;
  }
  .page--disco .section--list .block--pager, .page--disco .section--detail .block--pager {
    width: 68%;
    margin: 0 0 0 auto;
  }
  .page--disco .section--list .jacket, .page--disco .section--detail .jacket {
    width: 45%;
  }
  .page--disco .section--list .block--disc-detail, .page--disco .section--detail .block--disc-detail {
    width: 50%;
  }
  .page--disco .list--discography li {
    width: 47%;
    margin-bottom: 90px;
  }
  .page--disco .list--discography li:nth-child(odd) {
    margin-right: 6%;
  }
  .page--disco .list--discography li .category {
    display: inline-block;
    margin-left: 10px;
  }
  .page--disco .list--discography li .date {
    display: inline-block;
  }
  .page--disco .list--jacket li {
    margin-bottom: 50px;
  }
  .page--disco .list--jacket .ph {
    margin-bottom: 20px;
  }
  .page--disco .section--detail .block--disc-detail .tit {
    font-size: 28px;
    margin: 0 0 20px;
  }
  .page--disco .section--detail .block--disc-detail .category {
    display: inline-block;
    width: auto;
    margin-bottom: 8px;
    margin-right: 10px;
  }
  .page--disco .section--detail .block--disc-detail .link,
  .page--disco .section--detail .block--disc-detail .text {
    width: 100%;
    margin: 0;
  }
  .page--disco .section--detail .block--disc-detail .text .btn {
    text-align: left;
  }
  .page--disco .section--detail .block--disc-detail .text .btn a {
    text-align: center;
  }
  .page--disco .section--detail .detail__btn {
    width: 100%;
  }
  .page--disco.loaded .jacket {
    opacity: 1;
  }
  .page--photo [class^=nav--] .g-nav > li.join::before,
  .page--photo [class^=nav--] .g-nav > li.mypage::before, .page--movie [class^=nav--] .g-nav > li.join::before,
  .page--movie [class^=nav--] .g-nav > li.mypage::before {
    background: rgba(255, 255, 255, 0.4);
  }
  .page--photo .section--list, .page--movie .section--list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--photo .section--list .section-tit, .page--movie .section--list .section-tit {
    width: 30%;
  }
  .page--photo .section--list .list--contents, .page--photo .section--list .block--pager, .page--movie .section--list .list--contents, .page--movie .section--list .block--pager {
    width: 68%;
  }
  .page--photo .section--list .block--pager, .page--movie .section--list .block--pager {
    margin: 0 0 0 auto;
  }
  .page--photo .list--contents li, .page--movie .list--contents li {
    width: 48%;
    margin-bottom: 110px;
  }
  .page--photo .list--contents li:nth-child(odd), .page--movie .list--contents li:nth-child(odd) {
    margin-right: 4%;
  }
  .page--photo .section--detail .tit, .page--movie .section--detail .tit {
    font-family: garamond-premier-pro, "Noto Serif JP", serif;
    font-size: 26px;
    margin: 0 0 0.5em;
  }
  .page--photo .section--detail .block--pager {
    text-align: left;
  }
  .page--photo .section--detail .list--contents {
    margin: 50px 0 30px;
  }
  .page--photo .section--detail .list--contents li {
    margin-bottom: 50px;
  }
  .page--movie .section--detail .txt--basic {
    margin: 50px 0;
    min-height: 200px;
  }
  .page--movie .section--detail .block--player img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--movie .txt {
    margin-bottom: 50px;
  }
  .page--movie .txt a {
    color: #034C6C;
  }
  .page--movie .block--player {
    margin: 50px 0 30px;
  }
  .page--support .lead {
    margin-bottom: 1em;
  }
  .page--support .block--text {
    margin-bottom: 40px;
  }
  .page--support .block--text .block-tit {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .page--support .block--text .txt {
    padding-top: 0;
  }
  .page--support .block--text .txt:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .list--support li, .page--support .list--support dd {
    margin-bottom: 2em;
  }
  .page--support .list--support li > ol li, .page--support .list--support li > ol li, .page--support .list--support dd > ol li, .page--support .list--support dd > ol li {
    margin-bottom: 1em;
  }
  .page--support .section--detail.support .section-tit {
    font-size: 36px;
    margin-bottom: 110px;
    line-height: 1.2;
  }
  .page--support .section--detail.support .sub-txt-list {
    margin-top: 1em;
  }
  .page--support .section--detail.support .sub-txt-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--faq .section--list {
    max-width: 900px;
  }
  .page--faq .tit--category {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .page--faq .searchBox {
    margin: 0 auto 80px;
  }
  .page--faq .list--faq {
    margin: 0 0 70px;
  }
  .page--faq .list--faq li:hover a {
    transform: translateX(20px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--faq .list--faq li .tit {
    font-size: 15px;
  }
  .page--faq .list--faq li a {
    padding: 20px 2em 20px 2%;
  }
  .page--faq .block--faq-detail {
    font-size: 16px;
    padding: 30px 20px;
    margin: 10px 0 50px;
  }
  .page--faq .block--faq-detail .txt * {
    font-size: 0.95em;
  }
  .page--faq .section--list.faq .section-tit {
    font-size: 36px;
    margin-bottom: 110px;
  }
  .page--questionnaire .section--detail.questionnaire .section-tit {
    font-size: 36px;
    margin-bottom: 110px;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 50px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .form dt {
    font-size: 18px;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 50px;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 100px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 700px;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 20%;
    font-size: 14px;
  }
  .page--entry .section--detail [class^=block--] table.list--payment .credit {
    margin-bottom: 20px;
  }
  .page--entry .section--detail [class^=block--] .block-tit {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
  .page--entry .section--detail [class^=block--] .block-tit span {
    font-size: 13px;
  }
  .page--entry .section--detail .block--top {
    margin-bottom: 100px;
  }
  .page--entry .section--detail .block--top .logo {
    width: 38%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: block;
  }
  .page--entry .section--detail .block--top .logo svg {
    display: block;
    margin: 0 auto 10px;
  }
  .page--entry .section--detail .block--top .logo .name {
    font-size: 12px;
  }
  .page--entry .section--detail .block--top .lead {
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
  }
  .page--entry .section--detail .block--contents .block-tit {
    font-size: 30px;
  }
  .page--entry .section--detail .list--contents {
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 24px 2.5%;
    width: 48%;
    min-height: 270px;
    margin-right: 2%;
  }
  .page--entry .section--detail .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-size: 22px;
    margin-bottom: 40px;
    letter-spacing: 0.08em;
  }
  .page--entry .section--detail .list--contents li .tit span {
    font-size: 11px;
  }
  .page--entry .block--firstlogin {
    padding: 30px;
  }
  .page--entry .block--firstlogin .sub-txt-list {
    padding: 15px 20px;
  }
  .page--entry .first_login a, .page--entry .entry a {
    width: 510px;
    padding: 20px;
    font-size: 15px;
  }
  .page--first_login .section--detail.first_login .section-tit {
    line-height: 1.6em;
    margin-bottom: 80px;
    font-size: 30px;
  }
  .page--first_login .block--lead {
    margin-bottom: 60px;
  }
  .page--first_login .btn.entry {
    width: 60%;
    margin: 0 auto;
  }
  .page--first_login .block--step .list-tit {
    font-size: 18px;
  }
  .page--first_login .block--step .list-tit > span {
    font-size: 12px;
  }
  .page--error .section--detail {
    margin-top: 250px;
    padding-right: 15%;
    padding-left: 15%;
  }
  .page--error .section--detail .tit {
    font-family: garamond-premier-pro, "Noto Serif JP", serif;
    font-size: 30px;
    line-height: 1.6em;
    margin: 0 0 1em;
    text-align: center;
  }
  .page--error .section--detail .btn {
    margin: 1em 0;
  }
  footer {
    padding: 30px 3%;
  }
  footer .footer--sns li {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  footer .footer--sns li:hover {
    border-color: #dadcdc;
  }
  footer .footer--sns li:hover i {
    color: #034C6C;
  }
  footer .footer--sns i {
    font-size: 18px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  footer .nav--support li {
    font-size: 13px;
  }
  footer .nav--support li:not(:last-of-type) {
    margin-right: 40px;
  }
  footer .nav--support li a {
    position: relative;
  }
  footer .nav--support li a:hover::before {
    transform: scaleX(1);
  }
  footer .nav--support li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background: rgba(13, 13, 13, 0.4);
    left: -1px;
    transform: scaleX(0);
    transform-origin: left;
    top: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  footer .nav__page-top {
    position: absolute;
    bottom: 35px;
    right: 4.3vw;
  }
  footer .nav__page-top a {
    padding-top: 20px;
  }
  footer .nav__page-top a:hover {
    color: #034C6C;
  }
  footer .nav__page-top a:hover:before {
    transform: scale(1.6);
    background-color: #034C6C;
  }
  footer .nav__page-top a::before {
    transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    transform-origin: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .drawer [class^=nav--] .g-nav > li {
    font-size: 5vw !important;
    margin-bottom: 0.5em !important;
  }
  .drawer .official-menu {
    padding: 15vw 4.3vw 6vw !important;
  }
  .drawer .fc-menu {
    padding: 6vw 4.3vw 6vw !important;
  }
  footer .tit--support {
    font-size: 4vw !important;
  }
  footer .tit--support span {
    font-size: 1.75vw !important;
  }
  footer .nav--support li {
    font-size: 2vw !important;
  }
  .slick-slide:not(:last-of-type) {
    margin-right: 20px !important;
  }
  .slick-dots {
    bottom: -30px !important;
  }
  .slick-dots li {
    width: 15px !important;
    height: 15px !important;
  }
  .detail__btn, .list__more {
    font-size: 18px;
  }
  .detail__btn::before, .list__more::before {
    width: 8px;
    height: 8px;
    top: -1px;
    left: 0px;
  }
  .detail__btn a, .list__more a {
    padding: 8px 0 8px 18px;
  }
  .block--category li a {
    font-size: 2vw !important;
  }
  .block--category .block--tamaki::before, .block--category .block--anzenchitai::before,
  .block--category .block--watayutake::before {
    font-size: 1.5vw !important;
  }
  .block--pager {
    font-size: 18px;
  }
  .list--contents .tit {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  .section-tit {
    font-size: 8vw !important;
    margin-bottom: 16vw !important;
  }
  .section-tit span {
    font-size: 2vw !important;
  }
  .section--detail {
    padding: 0 8%;
  }
  .page--home .area-tit {
    font-size: 6vw !important;
  }
  .page--home .area--tamaki, .page--home .area--anzenchitai {
    padding: 15vw 0 8vw !important;
  }
  .page--home [class^=section--] .section-tit {
    margin-bottom: 0 !important;
  }
  .page--home .section--keyvisual .message {
    font-size: 8.5vw !important;
  }
  .page--home .section--banner {
    margin: 0 0 22vw !important;
  }
  .page--disco .list--discography .thumb {
    margin-bottom: 3em;
  }
  .page--disco .list--discography .block--text .tit {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page--disco .block--disc-detail .date,
  .page--disco .block--disc-detail .category {
    font-size: 2.5vw;
  }
  .section--detail.page--entry .block--top .lead {
    padding: 0 0 140px;
  }
  .section--detail.page--entry .block--contents {
    margin: 0 0 160px !important;
  }
  .section--detail.page--entry .btn--erea .btn--main {
    width: 100%;
  }
  .page--first_login .section--detail.first_login .section-tit {
    font-size: 4vw !important;
  }
  .page--first_login .section--detail.first_login .section-tit span.attention {
    width: 11em;
  }
  .page--first_login .block--step .list--step > li .thumb {
    width: 50%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  /* common.scss
  ============================== */
  .pc {
    display: none !important;
  }
  /* .page--first_login
  ------------------------------ */
  /* page--error
  ------------------------------ */
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 756px) and (max-width: 961px) {
  .btn--main {
    min-width: 50%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 756px) and (max-width: 961px) {
  .btn--sub {
    min-width: 50%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .header .drawer__btn {
    display: block;
    width: 75px;
    height: 45px;
    position: fixed;
    right: 0;
    top: 40px;
    isolation: isolate;
    mix-blend-mode: difference;
  }
  .header .drawer__btn span {
    display: block;
    background: #fff;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    height: 3px;
    position: absolute;
    right: 0;
  }
  .header .drawer__btn span:first-child {
    top: 0;
  }
  .header .drawer__btn span:last-of-type {
    top: 13px;
  }
  .header .drawer__btn .drawer-tit {
    color: #fff;
    position: relative;
    top: 23px;
    font-family: "garamond-premier-pro", "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 10px;
    text-align: center;
  }
  .drawer {
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: url(../../../saltmoderate/common/fc_bg.jpg);
    background-color: #0D1C22;
  }
  .drawer .drawer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: translateY(-80%);
    visibility: hidden;
    overflow-y: scroll;
    transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer .official-menu {
    padding: 17vw 4.3vw 7.5vw;
    background: #fff;
  }
  .drawer .fc-menu {
    padding: 7.5vw 4.3vw 6vw;
    color: #fff;
  }
  .drawer .fc-menu svg {
    fill: #fff;
    width: 13vw;
    height: 29vw;
    margin-right: 3vw;
  }
  .drawer .fc-menu .block--login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 7.5vw;
  }
  .drawer [class^=nav--] .nav-tit {
    color: #B9BDC1;
    font-family: "garamond-premier-pro", "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.6;
  }
  .drawer [class^=nav--] .official-menu .nav-tit {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer [class^=nav--] .g-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .drawer [class^=nav--] .g-nav > li {
    margin-bottom: 12px;
    line-height: 1;
    width: 48%;
    font-size: 7.5vw;
    color: #0D0D0D;
  }
  .drawer [class^=nav--] .g-nav > li.list-item1 a {
    transition-delay: calc(0.85s + 0.08s * 1);
  }
  .drawer [class^=nav--] .g-nav > li.list-item2 a {
    transition-delay: calc(0.85s + 0.08s * 2);
  }
  .drawer [class^=nav--] .g-nav > li.list-item3 a {
    transition-delay: calc(0.85s + 0.08s * 3);
  }
  .drawer [class^=nav--] .g-nav > li.list-item4 a {
    transition-delay: calc(0.85s + 0.08s * 4);
  }
  .drawer [class^=nav--] .g-nav > li.list-item5 a {
    transition-delay: calc(0.85s + 0.08s * 5);
  }
  .drawer [class^=nav--] .g-nav > li.list-item6 a {
    transition-delay: calc(0.85s + 0.08s * 6);
  }
  .drawer [class^=nav--] .g-nav > li.list-item7 a {
    transition-delay: calc(0.85s + 0.08s * 7);
  }
  .drawer [class^=nav--] .g-nav > li.list-item8 a {
    transition-delay: calc(0.85s + 0.08s * 8);
  }
  .drawer [class^=nav--] .g-nav > li.list-item9 a {
    transition-delay: calc(0.85s + 0.08s * 9);
  }
  .drawer [class^=nav--] .g-nav > li a {
    font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 5px 0;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer [class^=nav--] .g-nav > li span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    letter-spacing: 0.1em;
  }
  .drawer [class^=nav--] .g-nav > li a svg {
    fill: #0D0D0D;
    top: 0;
    margin-left: 2px;
  }
  .drawer .nav--menu {
    width: 100%;
  }
  .drawer .nav--menu .g-nav--official {
    padding-bottom: 0;
  }
  .drawer .nav--menu .g-nav--fc {
    margin-bottom: 6vw;
  }
  .drawer .nav--menu .g-nav--fc li {
    color: #fff;
  }
  .drawer .nav--menu .g-nav--sns {
    position: relative;
    bottom: 0;
    right: 0;
    display: block;
    text-align: right;
  }
  .drawer .nav--menu .g-nav--sns li {
    color: #fff;
    float: none;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .drawer .nav--menu .g-nav--sns li:not(:last-of-type) {
    margin: 0 0.5em 0 0;
  }
  .drawer .nav--menu .g-nav--sns li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: center;
    width: 100%;
    height: 40px;
    padding: 0;
  }
  .drawer .nav--menu .g-nav--sns li i {
    font-size: 17px;
    margin-left: 3px;
  }
  .drawer .block--login {
    opacity: 0;
    transform: translateY(0);
    transition: all 0.6s 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer .nav--login .nav-tit {
    margin-left: 10px;
  }
  .drawer .nav--login .list--login {
    text-align: center;
  }
  .drawer .nav--login .list--login li {
    color: #fff;
    font-size: 16px;
  }
  .drawer .nav--login .list--login li.join {
    padding-right: 2px;
  }
  .drawer .nav--login .list--login a {
    padding: 0 7px;
  }
  .drawer-visible .content--body {
    overflow: hidden;
  }
  .drawer-visible .saltmoderate {
    display: none !important;
  }
  .drawer-visible .header .drawer__btn span {
    background: #fff;
  }
  .drawer-visible .header .drawer__btn span:first-child {
    animation: active-menu-bar01 0.75s forwards;
  }
  .drawer-visible .header .drawer__btn span:last-of-type {
    animation: active-menu-bar02 0.75s forwards;
  }
  .drawer-visible .header .drawer__btn .drawer-tit {
    color: transparent;
  }
  .drawer-visible .header .drawer__btn .drawer-tit::before {
    content: "CLOSE";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #fff;
  }
  .drawer-visible .drawer {
    opacity: 1;
    pointer-events: auto;
  }
  .drawer-visible .drawer .drawer-inner {
    visibility: visible;
    transform: translateY(0);
  }
  .drawer-visible .drawer [class^=nav--] .g-nav > li a {
    opacity: 1;
    transform: translateY(0);
  }
  .drawer-visible .drawer .official-menu .nav-tit {
    opacity: 1;
    transform: translateY(0);
  }
  .drawer-visible .drawer .block--login {
    opacity: 1;
    transform: translateY(0);
  }
  footer {
    padding: 30px 5.5vw 20px 5.5vw;
  }
  footer .nav__page-top {
    height: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  footer .nav__page-top a {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
  }
  footer .nav__page-top a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 2px;
  }
  footer .copyright {
    margin-bottom: 40px;
    text-align: center;
  }
  .date, .category {
    display: inline-block;
    letter-spacing: 0.08em;
  }
  .tit {
    font-size: 13px;
    line-height: 1.5;
  }
  .list--info li a {
    display: block;
    padding: 30px 0;
  }
  .list--info li a .date {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .list--info li a .category {
    font-size: 12px;
    margin-left: 0.5em;
  }
  .list--info li a .tit {
    font-size: 16px;
  }
  .list--info .new {
    margin-left: 0.5em;
    font-size: 11px;
    padding: 3px 10px 2px;
  }
  .list--info .date.event-end {
    padding-left: 1em;
  }
  .list--info .date.event-end:before {
    width: 0.5em;
    left: 0.1em;
  }
  .list--contents .tit {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .list--contents .date {
    font-size: 14px;
  }
  .list--contents .new {
    margin-left: 0.5em;
    font-size: 11px;
    padding: 3px 10px 2px;
  }
  .list--discography .tit {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .list--discography .date {
    font-size: 14px;
  }
  .list--discography .category {
    font-size: 14px;
  }
  .list--contents, .list--discography {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--contents li, .list--discography li {
    width: 100%;
  }
  .list--contents li:not(:last-of-type), .list--discography li:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .list--contents .block--thumb, .list--discography .block--thumb {
    margin-bottom: 30px;
  }
  .list--contents .block--thumb .thumb, .list--discography .block--thumb .thumb {
    margin: 0;
  }
  .block--category {
    margin-bottom: 50px;
    border-top: 1px solid #dadcdc;
    border-bottom: 1px solid #dadcdc;
  }
  .block--category .tab {
    display: none;
  }
  .block--category .block--item .cat2, .block--category .cat3, .block--category .cat5, .block--category .cat6, .block--category .archive {
    font-size: 3.5vw;
  }
  .block--category li {
    margin: 0 0.3vw;
    font-size: 4vw;
  }
  .block--category li a {
    font-family: "garamond-premier-pro", "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    letter-spacing: 0.08em;
    padding: 1.2em 0.2em;
  }
  .block--category li:not(:last-child) {
    margin-right: 0.5em;
  }
  .block--category .block--tamaki, .block--category .block--anzenchitai, .block--category .block--watayutake {
    padding-top: 1.5em;
    position: relative;
  }
  .block--category .block--tamaki::before, .block--category .block--anzenchitai::before, .block--category .block--watayutake::before {
    content: attr(data-txt);
    color: rgba(13, 13, 13, 0.6);
    display: block;
    width: 100%;
    font-weight: bolder;
    padding: 1.1em 0;
    font-size: 3.2vw;
    position: absolute;
    top: 0;
    left: 1%;
  }
  .block--category .block--tamaki li:not(.current), .block--category .block--anzenchitai li:not(.current), .block--category .block--watayutake li:not(.current) {
    opacity: 0.6;
  }
  .block--category .block--item li:not(.current) {
    opacity: 0.6;
  }
  li.no-data {
    padding: 2em 0;
  }
  .detail__btn, .list__more {
    margin: 40px 0 0;
    font-size: 13px;
  }
  .detail__btn a, .list__more a {
    display: inline-block;
    padding: 5px 0 5px 15px;
  }
  .detail__btn::before, .list__more::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: -3px;
    left: 3px;
  }
  .wrap {
    padding: 120px 0 150px;
    position: relative;
  }
  .wrap .saltmoderate {
    position: fixed;
    top: 30px;
    left: 4.3vw;
    width: 60px;
    height: 41px;
    display: block;
    isolation: isolate;
    mix-blend-mode: difference;
  }
  .wrap .saltmoderate svg {
    width: 100%;
    height: 100%;
  }
  .wrap .saltmoderate a {
    width: 100%;
    height: 100%;
    display: block;
    line-height: 1;
  }
  .wrap .section--list, .wrap .section--detail {
    padding: 0 5.5vw 30px;
  }
  .wrap .section--list .section-tit, .wrap .section--detail .section-tit {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 70px;
  }
  .wrap .section--list .no-data, .wrap .section--detail .no-data {
    margin: 50px auto !important;
  }
  .section--list .list--info, .section--list .list--contents, .section--list .list--discography {
    margin-bottom: 60px;
  }
  .section--list .block--pager {
    text-align: center;
  }
  .section--detail .detail__btn {
    margin-top: 4em;
  }
  .section--detail .block--pager {
    text-align: center;
  }
  .section--detail .date {
    font-size: 15px;
  }
  .section--detail .category {
    font-size: 12px;
  }
  .section--detail .tit {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .section--detail .txt {
    font-size: 14px;
  }
  .detail__btn {
    text-align: left;
  }
  .detail__btn a {
    font-family: "garamond-premier-pro", "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .page--home {
    /* area--tamaki,area--anzenchitai */
    /* section--info */
  }
  .page--home .wrap {
    padding-bottom: 0;
    padding-top: 0;
  }
  .page--home .wrap h1.saltmoderate {
    display: none;
  }
  .page--home .area-tit {
    font-size: 8vw;
  }
  .page--home footer {
    padding: 110px 5.5vw 35px 5.5vw;
  }
  .page--home footer .tit--support {
    font-size: 22px;
    font-family: "garamond-premier-pro-display", "Noto Serif JP", serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 12px;
    line-height: 1;
    letter-spacing: 0.01em;
    border-bottom: 1px solid;
    position: relative;
  }
  .page--home footer .tit--support span {
    font-size: 10px;
    margin-left: 10px;
  }
  .page--home footer .tit--support::before, .page--home footer .tit--support:after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    position: absolute;
    top: 6px;
    right: 0;
    background: #0D0D0D;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home footer .tit--support::after {
    transform: rotate(90deg);
  }
  .page--home footer .tit--support.open::before {
    transform: rotate(45deg);
  }
  .page--home footer .tit--support.open::after {
    transform: rotate(135deg);
  }
  .page--home footer .nav--support {
    width: 100%;
    display: none;
    padding-top: 12px;
  }
  .page--home footer .nav--support li {
    font-size: 13px;
    display: inherit;
    margin: 0 0 1em;
  }
  .page--home footer .footer--sns {
    text-align: center;
    margin: 80px 0 30px;
  }
  .page--home footer .footer--sns i {
    font-size: 18px;
  }
  .page--home [class^=section--] {
    margin: 0 5.5vw 100px 5.5vw;
    position: relative;
  }
  .page--home [class^=section--] .section--inner {
    margin: 0;
  }
  .page--home [class^=section--] .area--tit {
    margin-bottom: 40px;
  }
  .page--home [class^=section--] .section-tit {
    font-size: 10vw;
    line-height: 1;
  }
  .page--home [class^=section--] .list__more {
    display: block;
    margin: 0 0 0 auto;
    font-size: 13px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page--home .section--keyvisual {
    margin-bottom: 0;
    position: relative;
    bottom: 0;
  }
  .page--home .section--keyvisual .block--message .message {
    line-height: 1;
    font-size: 11vw;
    left: 0;
    top: 10vh;
    position: absolute;
    white-space: nowrap;
  }
  .page--home .section--keyvisual .block--message .artists {
    text-align: right;
    position: absolute;
    top: 74vh;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--keyvisual .block--message .tamaki, .page--home .section--keyvisual .block--message .anzenchitai {
    font-size: 19px;
    display: inline-block;
  }
  .page--home .section--keyvisual .block--message .tamaki {
    margin-right: 0.75em;
  }
  .page--home .section--keyvisual .section--inner {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }
  .page--home .section--keyvisual .swiper-container {
    width: 100%;
    height: 42vh;
    aspect-ratio: 5/4;
    margin-bottom: 10px;
    position: absolute;
    top: 30vh;
    left: 0;
  }
  .page--home .section--keyvisual .scroll {
    top: 86vh;
    bottom: inherit;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
  }
  .page--home .section--keyvisual .scroll p {
    font-size: 10px;
  }
  .page--home .section--keyvisual .scroll p::before {
    width: 6px;
    height: 6px;
    left: 50%;
  }
  .page--home .section--banner {
    position: relative;
    margin: 0 0 130px;
  }
  .page--home .section--banner .slick-track {
    margin-bottom: 12px;
  }
  .page--home .section--banner .slick-list {
    margin-left: 5.5vw;
  }
  .page--home .section--banner .slick-slide:not(:last-of-type) {
    margin-right: 15px;
  }
  .page--home .section--banner .slick-dots {
    text-align: left;
    bottom: -15px;
    left: 5.5vw;
  }
  .page--home .section--banner .list--bnr .slick-prev,
  .page--home .section--banner .list--bnr .slick-next {
    width: 16vw;
  }
  .page--home .section--banner .list--bnr .slick-prev::before,
  .page--home .section--banner .list--bnr .slick-next::before {
    font-size: 13px;
    top: 5px;
  }
  .page--home .area--tamaki, .page--home .area--anzenchitai {
    padding: 80px 0 10px;
  }
  .page--home .section--info .list--info {
    margin: 0 0 40px;
  }
  .page--home .section--photo .list--contents, .page--home .section--movie .list--contents {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .page--home .section--photo .list--contents li, .page--home .section--movie .list--contents li {
    width: 100%;
  }
  .page--home .section--photo .list--contents .block--thumb .thumb, .page--home .section--movie .list--contents .block--thumb .thumb {
    margin-bottom: 20px;
  }
  .page--home .section--photo .list--contents .list__txt .date, .page--home .section--movie .list--contents .list__txt .date {
    font-size: 14px;
  }
  .page--home .section--photo .list--contents .list__txt .tit, .page--home .section--movie .list--contents .list__txt .tit {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .page--home .area--member {
    padding: 85px 0 102px;
  }
  .page--home .area--member .block--login {
    justify-content: space-between;
    width: 80%;
    margin: 0 auto 85px;
  }
  .page--home .area--member .block--login .fc-logo {
    width: 32%;
  }
  .page--home .area--member .block--login .right {
    width: 64%;
  }
  .page--home .area--member .block--login .tit {
    margin-bottom: 6px;
  }
  .page--home .area--member .block--login .list--login {
    text-align: center;
    font-size: 16px;
  }
  .page--home .area--member .block--login .list--login a {
    padding: 0 10px;
  }
  .page--home .area--member .section--inner, .page--home .area--member .section--movie {
    margin-bottom: 0;
  }
  .page--info .section--detail {
    width: 100%;
  }
  .page--info .section--detail .block--date {
    margin-bottom: 6px;
  }
  .page--info .section--detail .block--share {
    padding: 0 0 30px;
    margin: 0 0 20px;
  }
  .page--info .section--detail .category {
    margin-left: 0.5em;
  }
  .page--info .section--detail .new {
    margin-left: 0.5em;
    font-size: 11px;
    padding: 3px 10px 2px;
  }
  .page--info .section--detail .date.event-end {
    padding-left: 1em;
  }
  .page--info .section--detail .date.event-end:before {
    width: 0.5em;
    left: 0.1em;
  }
  .page--info .block--category {
    margin-bottom: 20px;
  }
  .page--disco .list-tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page--disco .section--detail {
    padding: 0 0 30px;
  }
  .page--disco .section--detail .tit {
    margin: 0 0 0.5em;
  }
  .page--disco .section--detail .detail__btn {
    margin: 4em 5.5vw 0;
  }
  .page--disco .list--jacket li:not(:last-of-type) {
    margin-right: 15px;
  }
  .page--disco .list--jacket .ph {
    margin: 0 auto 10px;
  }
  .page--disco .jacket .ph.one {
    width: auto;
    margin: 0 5.5vw;
  }
  .page--disco .block--disc-detail {
    margin: 0 5.5vw;
    padding-top: 30px;
  }
  .page--disco .block--disc-detail .category {
    margin-bottom: 6px;
  }
  .page--disco .block--disc-detail .date {
    margin: 0 auto 40px;
    display: block;
  }
  .page--disco .block--disc-detail .text {
    font-size: 14px;
  }
  .page--disco .section--detail .jacket {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
  }
  .page--disco .section--detail .jacket .slick-list {
    overflow: hidden !important;
  }
  .page--disco .section--detail .jacket .slick-track {
    position: relative !important;
  }
  .page--disco.loaded .section--detail .jacket {
    opacity: 1;
    transform: translateY(0);
  }
  .page--photo .section--detail .list--contents {
    margin: 50px 0 60px;
  }
  .page--photo .section--detail .list--contents li {
    margin-bottom: 20px;
  }
  .page--photo #swipebox-action #swipebox-close {
    right: 0;
  }
  .page--movie .section--detail .tit {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .page--movie .section--detail .block--player {
    margin: 50px 0 30px;
  }
  .page--movie.new-movie.page-movie-detail .section--detail {
    padding: 0 5.5vw 30px;
    margin: 0 auto;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .logo {
    padding: 0;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie {
    background: none;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player {
    width: 100%;
    aspect-ratio: initial;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 20px;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-poster {
    display: block;
    background-size: 100%;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-big-play-button {
    width: 70px;
    height: 70px;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-big-play-button::before {
    height: 30px;
    width: 25px;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar {
    position: relative;
    height: 100%;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-play-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-play-control span::before {
    background: none;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-play-control.vjs-paused span {
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-play-control.vjs-paused span::before {
    content: "";
    background: #ffffff;
    height: 30px;
    width: 25px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: block;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-progress-control {
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-picture-in-picture-control .vjs-control {
    height: 3.5em;
    position: absolute;
    left: -2vw;
    top: -3vw;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-picture-in-picture-control.vjs-control {
    height: 3.5em;
    position: absolute;
    left: 1vw;
    top: -3vw;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-volume-panel.vjs-control {
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-volume-panel.vjs-control.vjs-volume-panel-horizontal {
    position: absolute;
    right: 0;
    top: -10px;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-time-control {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-subs-caps-button {
    position: absolute;
    bottom: 1vw !important;
    left: 7vw !important;
    display: block !important;
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-fullscreen-control {
    position: absolute;
    right: 0;
    bottom: 10px;
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player .video-js .vjs-control-bar .vjs-http-source-selector.vjs-menu-button.vjs-menu-button {
    position: absolute;
    right: 10vw;
    bottom: 10px;
    height: 3.5em;
  }
  .page--movie.new-movie.page-movie-detail .section--detail .detail__btn {
    margin-top: 4em;
  }
  .page--support .support .section-tit {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  .page--support .lead {
    margin-bottom: 30px;
  }
  .page--support .block--text {
    margin-bottom: 30px;
  }
  .page--support .block--text .txt {
    padding-top: 0;
  }
  .page--support .block--text .txt:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .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 .list--support {
    font-size: 14px;
  }
  .page--support .list--support dd, .page--support .list--support li {
    margin-bottom: 2em;
  }
  .page--support .list--support dd > ol li, .page--support .list--support li > ol li {
    margin-bottom: 1em;
  }
  .page--support .section--detail .sub-txt-list {
    margin-top: 1em;
  }
  .page--support .section--detail .sub-txt-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--faq .searchBox {
    margin: 0 auto 40px;
  }
  .page--faq .searchBox input::-moz-placeholder {
    font-size: 0.85em;
  }
  .page--faq .searchBox input::placeholder {
    font-size: 0.85em;
  }
  .page--faq .list--faq {
    margin: 0 0 50px;
  }
  .page--faq .list--faq .icon--q {
    font-size: 14px;
  }
  .page--faq .list--faq li .tit {
    font-size: 15px;
    margin: 0 0 0 0.75em;
    line-height: 1.4;
  }
  .page--faq .list--faq li a {
    padding: 20px 1em 20px 2%;
    align-items: baseline;
  }
  .page--faq .block--faq-detail {
    font-size: 16px;
    padding: 30px 20px;
    margin: 10px 0 50px;
  }
  .page--faq .block--faq-detail .txt * {
    font-size: 0.95em;
  }
  .page--faq .section--list.faq .section-tit {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  .page--faq .block--contact {
    font-size: 14px;
  }
  .page--questionnaire .section--detail.questionnaire .section-tit {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  .page--questionnaire .ph {
    margin-bottom: 30px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 10px;
  }
  .page--questionnaire .section--detail .form .input--half {
    width: 100% !important;
  }
  .page--questionnaire .section--detail .form .input--quarter {
    width: 50% !important;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px 5.5vw;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 100%;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 100px;
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] table td {
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] .block-tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--entry .section--detail [class^=block--] .block-tit span {
    font-size: 11px;
  }
  .page--entry .section--detail .block--top {
    margin-bottom: 50px;
  }
  .page--entry .section--detail .block--top .logo {
    text-align: center;
    margin-bottom: 20px;
  }
  .page--entry .section--detail .block--top .logo svg {
    display: block;
    margin: 0 auto 10px;
  }
  .page--entry .section--detail .block--top .lead {
    font-size: 14px;
  }
  .page--entry .section--detail .block--contents .block-tit {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page--entry .section--detail .list--contents {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 30px 5.5vw;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page--entry .section--detail .list--contents li .tit span {
    font-size: 10px;
  }
  .page--entry .section--detail .list--contents li .text {
    font-size: 15px;
  }
  .page--entry .block--firstlogin {
    padding: 20px 5.5vw;
  }
  .page--entry .note {
    font-size: 15px;
  }
  .page--entry .first_login a, .page--entry .entry a {
    width: inherit;
    padding: 15px;
    font-size: 14px;
  }
  .page--first_login {
    margin-top: -20px;
  }
  .page--first_login .wrap {
    padding: 140px 0 150px;
  }
  .page--first_login .section--detail.first_login .section-tit {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .page--first_login .section--detail.first_login .section-tit .sitename {
    font-size: 12px;
  }
  .page--first_login .section--detail.first_login .section-tit span.attention {
    font-size: 14px;
    border-bottom: 1px solid #e63a37;
    width: 11em;
    margin: 30px auto 10px;
  }
  .page--first_login .txt--link a {
    line-height: 1.4;
  }
  .page--first_login .block--lead {
    margin: 0 0 40px;
  }
  .page--first_login .block--lead .txt {
    line-height: 1.4;
    margin-bottom: 1em;
  }
  .page--first_login .block--attention {
    padding: 16px;
    margin: 1.5em 0;
  }
  .page--first_login .block--attention .tit {
    font-size: 14px;
  }
  .page--first_login .block--step .block > .tit {
    font-size: 14px;
  }
  .page--first_login .block--step .list--step > li {
    padding: 5%;
  }
  .page--first_login .block--step .list-tit {
    font-size: 16px;
  }
  .page--first_login .block--step .list-tit > span {
    font-size: 12px;
  }
  .page--error .section--detail .txt--basic {
    text-align: left;
  }
  .page--error .section--detail .section-tit {
    margin-bottom: 40px;
  }
  .page--error .section--detail .btn {
    margin: 1em 0;
  }
  .page--contact.section--detail .input--half {
    width: 100% !important;
  }
  .page--contact.section--detail .form--post dt {
    margin: 2em 0 0.5em;
  }
}