@charset "UTF-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 chevron
	0.4 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 list
	2.3 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 profile
-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
  height: 100%;
  -webkit-text-size-adjust: none;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

img,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

i {
  font-style: normal;
}

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

::selection {
  background: #efefef;
  color: #000;
}

::-moz-selection {
  background: #efefef;
  color: #000;
}

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

a {
  transition: 0.3s;
}

/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}

/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.detail__btn,
.btn {
  text-align: center;
  margin: 1em 0;
  position: relative;
}
.detail__btn input,
.btn input {
  transition: 0.3s;
}

.block--pager {
  text-align: center;
  margin: 80px auto 30px;
  padding: 0 60px;
  letter-spacing: -0.5em;
  position: relative;
}
.block--pager li {
  display: inline-block;
  font-family: "Ovo";
  padding: 0.6em 0;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  position: relative;
}
.block--pager li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #efefef;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.block--pager li:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.block--pager a {
  display: block;
  position: relative;
  color: #efefef;
  text-decoration: none;
  padding: 0 0.6em;
}
.block--pager .pager__item--top,
.block--pager .pager__item--number {
  text-align: center;
  color: #888;
}
.block--pager .pager__item--newer,
.block--pager .pager-link--next {
  width: 130px;
  padding: 7px 0;
  margin-right: 0.5em;
  position: absolute;
  top: -10px;
  left: -3%;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--newer span,
.block--pager .pager-link--next a,
.block--pager .pager-link--next span {
  display: block;
  width: 100%;
  font-family: Noto Serif JP;
  font-size: 12px;
  padding: 12px 70px 12px 0;
  position: relative;
  letter-spacing: 0.5em;
}
.block--pager .pager__item--newer a::before, .block--pager .pager__item--newer a::after,
.block--pager .pager__item--newer span::before,
.block--pager .pager__item--newer span::after,
.block--pager .pager-link--next a::before,
.block--pager .pager-link--next a::after,
.block--pager .pager-link--next span::before,
.block--pager .pager-link--next span::after {
  content: "";
  display: block;
  position: absolute;
}
.block--pager .pager__item--newer a::before,
.block--pager .pager__item--newer span::before,
.block--pager .pager-link--next a::before,
.block--pager .pager-link--next span::before {
  width: 65px;
  height: 1px;
  background: #efefef;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  right: 0px;
  top: 24px;
}
.block--pager .pager__item--newer a:hover::before,
.block--pager .pager-link--next a:hover::before {
  -webkit-transform: scaleX(2.2);
          transform: scaleX(2.2);
}
.block--pager .pager__item--newer a:hover::after,
.block--pager .pager-link--next a:hover::after {
  left: -5px;
}
.block--pager .pager__item--newer span,
.block--pager .pager-link--next span {
  opacity: 0.4;
}
.block--pager .pager__item--older,
.block--pager .pager-link--prev {
  width: 130px;
  padding: 7px 0;
  margin-left: 0.5em;
  position: absolute;
  top: -10px;
  right: -3%;
}
.block--pager .pager__item--older a,
.block--pager .pager__item--older span,
.block--pager .pager-link--prev a,
.block--pager .pager-link--prev span {
  display: block;
  width: 100%;
  font-family: Noto Serif JP;
  padding: 12px 0 12px 70px;
  font-size: 12px;
  position: relative;
  letter-spacing: 0.5em;
}
.block--pager .pager__item--older a::before, .block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::before,
.block--pager .pager__item--older span::after,
.block--pager .pager-link--prev a::before,
.block--pager .pager-link--prev a::after,
.block--pager .pager-link--prev span::before,
.block--pager .pager-link--prev span::after {
  content: "";
  display: block;
  position: absolute;
}
.block--pager .pager__item--older a::before,
.block--pager .pager__item--older span::before,
.block--pager .pager-link--prev a::before,
.block--pager .pager-link--prev span::before {
  width: 65px;
  height: 1px;
  background: #efefef;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  left: 0;
  top: 24px;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.block--pager .pager__item--older a:hover::before,
.block--pager .pager-link--prev a:hover::before {
  -webkit-transform: scaleX(2.2);
          transform: scaleX(2.2);
}
.block--pager .pager__item--older a:hover::after,
.block--pager .pager-link--prev a:hover::after {
  left: 28px;
}
.block--pager .pager__item--older span,
.block--pager .pager-link--prev span {
  opacity: 0.2;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older,
.block--pager .pager-link--prev,
.block--pager .pager-link--next {
  z-index: 2;
}
.block--pager .pager__item--newer::before,
.block--pager .pager__item--older::before,
.block--pager .pager-link--prev::before,
.block--pager .pager-link--next::before {
  display: none !important;
}
.block--pager .pager-link--next {
  width: 150px;
  left: 0;
}
.block--pager .pager-link--prev {
  width: 150px;
  right: 0;
}
.block--pager .pager__item--current {
  font-family: "Ovo";
  font-weight: 800;
  position: relative;
  padding: 0.6em;
}
.block--pager .pager__item--current::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.block--pager li svg {
  width: 42px;
  height: 32px;
  fill: #efefef;
}
.block--pager li:hover svg {
  fill: #959EA7;
}

.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 3.8;
  letter-spacing: 0.07em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  background: #b10000;
  color: #fff;
}
.btn--main:hover {
  background: #f00;
}

.detail__btn a,
.btn--sub {
  color: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 3.8;
  letter-spacing: 0.07em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  color: #efefef;
}

.btn--sub {
  border: 1px solid;
}
.btn--sub:hover {
  background: #efefef;
  color: #000;
}

.detail__btn,
.page--error .btn--sub {
  text-align: center;
  margin-top: 80px;
}

/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}

.block--error {
  color: #f00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}

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

::-moz-placeholder {
  color: #9fa3a7;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9fa3a7;
}

:-moz-placeholder {
  color: #9fa3a7;
}

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

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
button {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #fff;
  border-radius: 0.3em;
  padding: 0.5em;
  color: #fff;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
button:focus {
  border-color: #fff;
}
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,
button.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
input[type=text].form__error:focus,
input[type=tel].form__error:focus,
input[type=email].form__error:focus,
input[type=password].form__error:focus,
input[type=number].form__error:focus,
button.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],
button[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

input[readonly=readonly],
input[readonly=readonly] {
  border: none;
  background: #fff;
}

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

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

button {
  border: none;
  line-height: 1;
}

/* textarea */
textarea {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #fff;
  border-radius: 0.3em;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: #fff;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select select {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #fff;
  border-radius: 0.3em;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: #fff;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #f33;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #fff;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.form__checkbox label p::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  top: 70%;
  left: 0.2em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #3B4043;
  border-color: #3B4043;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}

/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type=checkbox],
.form__radio input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #f33;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.form__radio :checked ~ p::before {
  border-color: #3B4043;
  border-width: 0.3em;
}

/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type=checkbox],
.form__toggle input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #f33;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: "";
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #fff;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  top: 50%;
  right: 0;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 20px;
}
.form__toggle :checked ~ p::before {
  background: #3B4043;
  border-color: #3B4043;
}
.form__toggle :checked ~ p::after {
  right: 0;
}

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

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

.form--confirm {
  margin: 0 0 2em;
}

.form--confirm {
  border: 0.5px solid #d9dde0;
  border-radius: 6px;
  padding: 40px 30px 10px;
  margin-bottom: 40px;
}
.form--confirm dt {
  margin: 0 0 10px;
  opacity: 0.4;
}
.form--confirm dd {
  margin: 0 0 30px;
}

/* 2.3 list
------------------------------ */
.no-data {
  text-align: center;
  opacity: 0.5;
}

/*  information */
.list--info,
.list--faq {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  margin-bottom: 40px;
}
.list--info a,
.list--faq a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.07em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
}
.list--info .date,
.list--faq .date {
  font-family: "Ovo", sans-serif;
  font-size: 0.8em;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin: 0;
}
.list--info .tit,
.list--faq .tit {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 3px;
}
.list--info .new .tit::before,
.list--faq .new .tit::before {
  content: "新着情報";
  /* width: 9em; */
  font-weight: 200;
  font-size: 10px;
  color: #fff;
  background: #b70500;
  margin-right: 10px;
  padding: 3px 10px 4px;
  line-height: 1;
  vertical-align: 3px;
  display: inline-block;
}
.list--info .no-data,
.list--faq .no-data {
  padding: 35px 5%;
}
.list--info li,
.list--faq li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.list--info li a,
.list--faq li a {
  padding: 25px 4%;
  position: relative;
  overflow: hidden;
}
.list--info li a:hover,
.list--faq li a:hover {
  background: #000;
}
.list--info li .date,
.list--faq li .date {
  text-align: right;
}
.list--info li.new a:hover .tit::before,
.list--faq li.new a:hover .tit::before {
  color: #fff;
}
.list--info li .thumb,
.list--info li .category,
.list--faq li .thumb,
.list--faq li .category {
  display: none;
}

/* contents */
.list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.07em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
}
.list--contents .date {
  font-family: "Ovo", sans-serif;
  font-size: 0.8em;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin: 0;
}
.list--contents .tit {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 3px;
}
.list--contents .new .tit::before {
  content: "新着情報";
  /* width: 9em; */
  font-weight: 200;
  font-size: 10px;
  color: #fff;
  background: #b70500;
  margin-right: 10px;
  padding: 3px 10px 4px;
  line-height: 1;
  vertical-align: 3px;
  display: inline-block;
}
.list--contents .new .tit::before {
  margin-right: 0;
  padding: 8px 7px 8px 10px;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.list--contents > li {
  margin-bottom: 0;
}
.list--contents > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vw;
  position: relative;
  background: no-repeat url(/static/seikimaii/official/common/bg02.jpg);
  background-size: cover;
  overflow: hidden;
}
.list--contents > li a:hover figure {
  transform: matrix3d(1, 0, 0, 0.00007, 0, 1, 0, -0.00007, 0, 0, 1, 0, 0, 0, 0, 1);
  -webkit-transform: matrix3d(1, 0, 0, 0.00007, 0, 1, 0, -0.00007, 0, 0, 1, 0, 0, 0, 0, 1);
}
.list--contents > li a:hover figure::after {
  opacity: 0.4;
}
.list--contents > li .tit {
  font-size: 26px;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}
.list--contents > li .date {
  font-size: 1.2em;
}
.list--contents > li .category {
  letter-spacing: 0.3em;
  font-size: 1.2em;
  margin-bottom: 4px;
}
.list--contents figure {
  width: 100%;
  height: 40vw;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  transition: 0.3s;
}
.list--contents figure img {
  height: 100%;
  background-position: center;
}
.list--contents figure::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s;
}
.list--contents .block--text {
  text-align: center;
  position: relative;
}

/* 4.0.0 animation
------------------------------ */
.loading .logo {
  position: fixed;
  z-index: 10;
  width: 600px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  opacity: 0;
  transition: 1s;
}
.loading .photo-main {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s 1.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.loading .photo-main img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
}

.first-action.loaded .loading .photo-main {
  -webkit-animation: loading 6.8s 0.8s forwards;
          animation: loading 6.8s 0.8s forwards;
}
.first-action.loaded .loading .logo {
  -webkit-animation: loading-logo 6s forwards;
          animation: loading-logo 6s forwards;
}
.first-action.loaded.page--home .header {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: 0.8s 3.75s;
}
.first-action.loaded.page--home main,
.first-action.loaded.page--home footer {
  opacity: 1;
  pointer-events: auto;
  transition: 1s 3.8s;
}
.first-action.loaded.page--home .bg {
  opacity: 1;
  pointer-events: auto;
  transition: 1.2s 4s;
}
.first-action.loaded.page--home .wrap::before {
  opacity: 0.8;
  transition: 1.2s 3.7s;
}

.page--home main,
.page--home .bg,
.page--home footer {
  opacity: 0;
  pointer-events: none;
}
.page--home .header {
  -webkit-transform: translateX(-330px);
          transform: translateX(-330px);
}
.page--home .wrap::before {
  opacity: 0;
}

.no-action.page--home .header {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: 1s;
}
.no-action.page--home main,
.no-action.page--home footer {
  opacity: 1;
  pointer-events: auto;
  transition: 0.8s;
}
.no-action.page--home .wrap::before {
  opacity: 0.8;
  transition: 0.8s;
}
.no-action.page--home .bg {
  opacity: 0.8;
  pointer-events: auto;
  transition: 0.3s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
    left: 0;
    width: 100%;
  }
  43% {
    opacity: 1;
    left: 0;
    width: 100%;
  }
  60% {
    opacity: 1;
    left: 330px;
    width: calc(100% - 330px);
  }
  90% {
    opacity: 1;
    left: 330px;
    width: calc(100% - 330px);
  }
  100% {
    opacity: 0;
    left: 330px;
    width: calc(100% - 330px);
  }
}

@keyframes loading {
  0% {
    opacity: 0;
    left: 0;
    width: 100%;
  }
  43% {
    opacity: 1;
    left: 0;
    width: 100%;
  }
  60% {
    opacity: 1;
    left: 330px;
    width: calc(100% - 330px);
  }
  90% {
    opacity: 1;
    left: 330px;
    width: calc(100% - 330px);
  }
  100% {
    opacity: 0;
    left: 330px;
    width: calc(100% - 330px);
  }
}
@-webkit-keyframes loading-logo {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
  }
  15% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes loading-logo {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
  }
  15% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.list--contents > li,
.list--info > li,
.section--bnr > li {
  opacity: 0;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  transition: opacity 0.6s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}
.list--contents .delighter.started,
.list--info .delighter.started,
.section--bnr .delighter.started {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #000;
  font-family: YakuHanJP, Noto Serif JP, -apple-system, BlinkMacSystemFont, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #efefef;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.07em;
  word-break: break-word;
}

a {
  color: #efefef;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 60px 0 200px 330px;
}
.wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.bg {
  width: calc(100% - 330px);
  height: 100%;
  position: fixed;
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 330px;
}
.bg span {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat right;
  background-size: calc(100% - 330px);
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
}
.bg span.bg01 {
  background-image: url(/static/seikimaii/official/artistphoto/artistphoto_2019.jpg);
}

.sp {
  display: none !important;
}

/* 3.2 header
------------------------------ */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 330px;
  height: 100%;
  padding-top: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #000 url(/static/seikimaii/fanclub/common/bg_noiz.png);
  background-size: 300px;
  background-attachment: fixed;
}
.header .inner {
  padding: 0 10px;
  position: relative;
  top: -20px;
}
.header h1 {
  position: relative;
  z-index: 999;
}
.header h1 a {
  display: block;
  width: 270px;
  height: 67px;
  background: url(/static/seikimaii/fanclub/common/fc--logo.png) center/contain no-repeat;
  text-indent: -9999em;
  position: relative;
  margin-bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header h1.logo40th a {
  background: url(/static/seikimaii/fanclub/common/fc--logo_40th.png) center/contain no-repeat;
}
.header .block--logo h2.logo {
  transition: 0.3s;
  width: 70px;
  margin: 0 auto -20px;
}
.header .logo--official {
  width: 150px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  left: calc(50% - 60px);
  margin-bottom: 20px;
}
.header .logo--official a {
  display: block;
}
.header .logo--official a:hover {
  opacity: 0.5;
}

.short .header h1 a {
  width: 190px;
  height: 50px;
}
.short .header h2.logo {
  width: 50px;
  margin: 0 auto 10px;
}
.short .header .header h1 a {
  width: 100px;
  height: 33px;
}
.short .header .drawer li {
  font-size: 12px;
  margin-bottom: 4px;
}
.short .header .drawer li a span {
  font-size: 11px;
}
.short .header .drawer .btn .btn--sub {
  font-size: 10px;
}
.short .header .logo--official {
  width: 100px;
  font-size: 10px;
  bottom: 20px;
}

.drawer li a span.new {
  display: inline-block;
}
.drawer li a span.new i {
  display: block;
  background: #b70500;
  line-height: 1;
  padding: 2px 5px;
  font-size: 10px;
  margin: 0 0 0 7px;
  vertical-align: 0.1em;
}

.short.minimum .header {
  overflow: scroll;
  overflow-x: hidden;
}

.drawer {
  width: 16vw;
  min-width: 250px;
}
.drawer .g-nav {
  width: 100%;
  height: 100%;
}
.drawer .nav {
  padding-top: 2vh;
  margin-left: 32px;
}
.drawer .btn .btn--sub {
  min-width: inherit;
  font-size: 12px;
  line-height: 2.6em;
  letter-spacing: 0.1em;
  padding: 0 30px;
}
.drawer li {
  font-size: 14px;
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
.drawer li .txt--sub {
  display: none;
}
.drawer li.contents--before a {
  pointer-events: none;
  opacity: 0.2;
}
.drawer li.contents--before a::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.drawer li a {
  color: #efefef;
  display: block;
  position: relative;
}
.drawer li a span {
  display: block;
}
.drawer li a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(/static/seikimaii/fanclub/common/ico--menu.svg) no-repeat center/contain;
  position: absolute;
  top: 3px;
  left: -20px;
  transition: 0.8s;
}
.drawer li a:hover::before {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.drawer li .hoverVisi {
  position: relative;
}
.drawer li .hoverVisi .hoverVisiTit {
  font-size: 14px;
  position: relative;
}
.drawer li .hoverVisi .hoverVisiTit::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(/static/seikimaii/fanclub/common/ico--menu.svg) no-repeat center/contain;
  position: absolute;
  top: 3px;
  left: -20px;
  transition: 0.8s;
}
.drawer li .hoverVisi .hoverVisiTit:hover::before {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.drawer li .hoverVisi .hoverHide {
  opacity: 0;
  transition: 0.3s ease;
  padding: 15px 15px 15px 35px;
  background: #333;
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 10;
  pointer-events: none;
}
.drawer li .hoverVisi .hoverHide a {
  margin: 0 0 5px;
}
.drawer li .hoverVisi .hoverHide a:last-child {
  margin: 0;
}
.drawer li .hoverVisi:hover .hoverHide {
  opacity: 1;
  pointer-events: auto;
}
.drawer .list--login {
  text-align: center;
  margin-top: -15px;
}
.drawer .list--login li {
  display: inline-block;
}
.drawer .list--login li.nav__item--join {
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}
.drawer .list--login li.nav__item--join::before {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background: #fff;
  position: absolute;
  left: -3px;
  top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer .list--login li a::before {
  display: none;
}

.drawer__btn {
  display: none;
  width: 80px;
  height: 49px;
  position: fixed;
  top: 30px;
  left: calc(50% - 38px);
  z-index: 999;
  cursor: pointer;
}
.drawer__btn span {
  display: block;
  width: 100%;
  height: 20px;
  background: no-repeat center;
  background-size: contain;
  position: absolute;
  transition: 0.3s;
}
.drawer__btn span.drawer__btn--item.top {
  background-image: url(/static/seikimaii/fanclub/common/drawer__btn_top.svg);
  top: -2px;
}
.drawer__btn span.drawer__btn--item.mid {
  width: calc(100% - 2px);
  background-image: url(/static/seikimaii/fanclub/common/drawer__btn_mid.svg);
  top: 16px;
}
.drawer__btn span.drawer__btn--item.mid.txt--menu {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.4em;
  margin-left: 0.2em;
  line-height: 0;
  top: 25px;
  background: none;
  left: -1px;
  opacity: 0;
}
.drawer__btn span.drawer__btn--item.mid.txt--menu.open {
  opacity: 1;
}
.drawer__btn span.drawer__btn--item.mid.txt--menu.close {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.drawer__btn span.drawer__btn--item.btm {
  background-image: url(/static/seikimaii/fanclub/common/drawer__btn_btm.svg);
  top: 30px;
  left: -1px;
}
.drawer__btn:hover span.drawer__btn--item.top {
  top: -6px;
}
.drawer__btn:hover span.drawer__btn--item.btm {
  top: 34px;
}

.drawer-visible .drawer {
  opacity: 1;
  pointer-events: auto;
  z-index: 900;
}
.drawer-visible .drawer__btn span.drawer__btn--item.mid.txt--menu.open {
  opacity: 0;
}
.drawer-visible .drawer__btn span.drawer__btn--item.mid.txt--menu.close {
  opacity: 1;
}
/* 3.3 footer
------------------------------ */
footer {
  width: 100%;
  color: inherit;
  font-size: 11px;
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
  padding-right: 3%;
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .logo {
  width: 140px;
  margin-left: 370px;
  position: absolute;
  top: 28px;
}
footer .logo a {
  display: block;
}
footer .logo a:hover {
  opacity: 0.7;
}
footer .nav--support {
  text-align: right;
  margin-bottom: 30px;
}
footer .nav--support li {
  display: inline-block;
  letter-spacing: 0.05em;
  margin-left: 1em;
}
footer .nav--support li a {
  opacity: 0.7;
  transition: 0.3s;
}
footer .nav--support li a:hover {
  opacity: 1;
}
footer .inner {
  padding: 40px 0;
}
footer .copyright {
  font-family: "Ovo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #efefef;
  letter-spacing: 0.06em;
  text-align: right;
  opacity: 0.7;
  margin-bottom: 30px;
}

.sf-minitoolbar {
  display: none !important;
}

/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
}

.section-tit {
  color: inherit;
  font-size: 24px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  letter-spacing: 0.25em;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
}

.txt--lead {
  color: inherit;
  font-size: 22px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  line-height: 1.5;
  margin: 0 0 3em;
}

.txt--basic {
  color: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.07em;
  word-break: break-word;
  margin: 0 0 1em;
}
.txt--basic a {
  text-decoration: underline;
}
.txt--basic a:hover {
  text-decoration: none;
}

.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.txt--link {
  text-decoration: underline;
}
.txt--link:hover {
  text-decoration: none;
}

.ph,
.thumb {
  line-height: 0;
  position: relative;
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}

.svg-symbol {
  display: none !important;
}

.subTxt {
  margin-top: 1em;
}

/* 4.2 home
------------------------------ */
.page--home .wrap {
  padding-top: 0;
}
.page--home .section--bnr a {
  display: block;
}
.page--home .carousel__main li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: no-repeat url(/static/seikimaii/official/common/bg02.jpg);
  background-size: cover;
  overflow: hidden;
}
.page--home .carousel__main li a img {
  display: block;
  transition: 0.3s;
}
.page--home .carousel__main li a:hover img {
  transform: matrix3d(1, 0, 0, 0.00007, 0, 1, 0, -0.00007, 0, 0, 1, 0, 0, 0, 0, 1);
  -webkit-transform: matrix3d(1, 0, 0, 0.00007, 0, 1, 0, -0.00007, 0, 0, 1, 0, 0, 0, 0, 1);
}
.page--home .carousel__thumb {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 15%;
  position: relative;
}
.page--home .carousel__thumb.no-slick .slick-track {
  text-align: center;
}
.page--home .carousel__thumb.no-slick .slick-track li {
  float: none;
  max-width: 200px;
  display: inline-block;
}
.page--home .carousel__thumb li {
  margin: 0 4px;
}
.page--home .carousel__thumb li a {
  display: block;
}
.page--home .carousel__thumb li a:hover {
  opacity: 0.5;
}
.page--home .carousel__thumb .slick-arrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
  z-index: 20;
  cursor: pointer;
}
.page--home .carousel__thumb .slick-arrow:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.page--home .carousel__thumb .slick-arrow::before {
  content: "";
  display: block;
  width: 8vw;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  transition: 0.3s;
}
.page--home .carousel__thumb .slick-prev {
  left: -17%;
}
.page--home .carousel__thumb .slick-prev::before {
  left: 4em;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.page--home .carousel__thumb .slick-next {
  right: -17%;
}
.page--home .carousel__thumb .slick-next::before {
  right: 4em;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.page--home .section-tit {
  display: inline-block;
  font-size: 24px;
  text-align: left;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 30px 25px 15px 4%;
}
.page--home .list__more {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
}
.page--home .list__more a {
  display: block;
  color: #efefef;
  position: relative;
  padding-right: 4.5vw;
  letter-spacing: 0.2em;
  top: -2px;
}
.page--home .list__more a::after {
  content: "";
  display: block;
  width: 4vw;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  right: 0;
  transition: 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: 0.3s;
}
.page--home .list__more a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.page--home .section--contents {
  margin-bottom: 40px;
}

/* animation */
/*  4.3 information
------------------------------ */
.section--list {
  position: relative;
}
.section--list .section-tit {
  text-align: left;
  margin: 0 auto 60px 4%;
}
.section--list + .detail__btn {
  display: none;
}
.block--category {
  text-align: left;
  margin: 0 auto 60px 4%;
}

.block--category li {
  display: inline-block;
  letter-spacing: 0.05em;
  margin-right: 1em;
}

.block--category li a {
  opacity: 0.7;
  transition: 0.3s;
}

.block--category li a:hover {
  opacity: 1;
}

.section--detail {
  padding: 10px 7% 0;
  margin: 0 auto;
  position: relative;
}
.section--detail .section-tit {
  text-align: left;
  margin: 0 auto 60px;
}

.page--info .section--detail .txt img,
.page--blog .section--detail .txt img {
  width: auto;
  max-width: 100%;
}

.page--info .section--detail .txt--basic {
  margin-bottom: 80px;
}

.page--info .section--detail .txt--basic embed {
  display: block;
  margin: 0 auto;
}

.detail__btn {
  margin-top: 50px;
  position: relative;
  left: 0;
  width: 120px;
}
.detail__btn a {
  display: inline-block;
  font-size: 16px;
  position: relative;
  text-align: left;
  padding: 0;
}
.detail__btn a::before {
  content: "BACK";
  font-family: "Ovo";
  color: #efefef;
  letter-spacing: 0.05em;
}
.detail__btn a::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #efefef;
  vertical-align: 5px;
  margin-left: 5px;
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: 0.3s;
}
.detail__btn a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.block--share {
  line-height: 1;
  text-align: right;
  margin: 0 0 30px;
}
.block--share .share {
  display: inline-block;
  font-family: "Ovo";
  font-size: 13px;
  padding-right: 70px;
  margin-right: 17px;
  position: relative;
}
.block--share .share::before {
  content: "";
  display: block;
  height: 1px;
  width: 70px;
  background: #efefef;
  position: absolute;
  top: 0;
  right: -11px;
  opacity: 0.7;
}
.block--share li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #efefef;
  margin: 0 7px 0 0;
}
.block--share .lineIco svg {
  width: 16px;
  height: 16px;
  fill: #efefef;
  transition: 0.3s;
}
.block--share .share {
  font-size: 12px;
  margin-right: 15px;
}
.block--share .ico {
  font-size: 20px;
}
.block--share a {
  color: #efefef;
}
.block--share a:hover {
  color: #c00;
}
.block--share a:hover svg {
  fill: #c00;
}

.page--info.page--info--detail .wrap::before {
  opacity: 0.6;
}
.page--info.page--info--detail .bg span.bg01 {
  background-image: url(/static/seikimaii/official/common/bg.jpg);
  background-size: cover;
}
.page--info .section--list {
  position: relative;
}
.page--info .block--info-nav {
  font-family: "Ovo", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 13px;
  position: absolute;
  top: 260px;
  right: 0;
}
.page--info .block--info-nav a {
  display: block;
}
.page--info .block--info-nav a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #efefef;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--info .block--info-nav a:hover::before {
  -webkit-transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.page--info .section--detail .date {
  font-size: 13px;
  color: #efefef;
  margin-bottom: 10px;
  position: relative;
  top: -50px;
  left: 0;
  pointer-events: none;
}

.section--detail .tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  margin: 0 0 1em;
}
.section--detail.new .date::before {
  content: "新着情報";
  font-family: YakuHanJP, Noto Serif JP, -apple-system, BlinkMacSystemFont, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 200;
  font-size: 10px;
  background: #b70500;
  margin-right: 10px;
  padding: 2.5px 10px 4px;
  line-height: 1;
  display: inline-block;
}
.section--detail .date {
  font-family: "Ovo", sans-serif;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
.section--detail .txt {
  margin: 0 0 20px;
  line-height: 2em;
  font-weight: 200;
  letter-spacing: 0.05em;
  font-size: 15px;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #efefef;
}
.section--detail .txt a:hover {
  color: #b70500;
  text-decoration: none;
}

.youtube {
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
  position: relative;
}

.youtube iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: -20px;
  right: 0;
}

/*  4.xx movie
------------------------------ */
.block--player {
  margin-bottom: 30px;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: auto !important;
  position: relative;
  padding-top: 56.25%;
}
.block--player .ulizahtml5 .vjs-center-menu {
  width: 100%;
  height: auto;
  margin-top: -40px;
  position: absolute;
  top: 50%;
}
.block--player .ulizahtml5 video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*  4.xx support
------------------------------ */
.section--detail .list--support dt {
  font-weight: bold;
  margin-bottom: 5px;
}
.section--detail .list--support li:not(:last-of-type) {
  margin-bottom: 1em;
}
.section--detail .list--support li:not(:last-of-type) li:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.section--detail .list--support dd:not(:last-of-type) {
  margin-bottom: 2.5em;
}
.section--detail .list--support li {
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.section--detail .list--support li li {
  margin-bottom: 0.5em;
}
.section--detail .list--support li li::before {
  display: none;
}
.section--detail.support .block--terms {
  margin-bottom: 4em;
}
.section--detail.support .block--terms .block-tit {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

/*  4.xx movie
------------------------------ */
.page--movie .tit {
  margin-bottom: 0.5em;
}
.page--movie .date {
  font-size: 1em;
}

.page--movie.new-movie .wrap .section--detail .block--player {
  margin-bottom: 30px;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies {
  background: no-repeat;
  padding: 0;
  width: 70%;
  margin: 0 auto;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a {
  background: no-repeat;
  width: 100%;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .tit {
  font-size: 19px;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .date {
  margin: 0;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .list__txt {
  width: 73%;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab #tab--movie.current::after, .page--movie.new-movie .wrap .section--detail .area--more-info .block--tab #tab--comment.current::after {
  display: none;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab > div.current.tab__list .item__ico img {
  background: none;
  background: #fff;
  -webkit-mask-image: url(/static/common/newmovie/img/ico--movie__on.svg);
          mask-image: url(/static/common/newmovie/img/ico--movie__on.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.page--movie.new-movie .wrap .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*  4.xx wallpaper
------------------------------ */
.page--wallpaper .list--contents > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}
.page--wallpaper .list--contents > li figure {
  position: relative;
  width: 45%;
  height: auto;
}
.page--wallpaper .list--contents > li figure::after {
  display: none;
}
.page--wallpaper .list--contents .block--wp-size {
  width: 50%;
}
.page--wallpaper .list--contents .block--wp-size ul {
  width: 70%;
  border-top: 1px solid rgba(239, 239, 239, 0.44);
}
.page--wallpaper .list--contents .block--wp-size ul li {
  border-bottom: 1px solid rgba(239, 239, 239, 0.44);
}
.page--wallpaper .list--contents .block--wp-size li a {
  display: block;
  width: 100%;
  height: auto;
  font-size: 12px;
  background: none;
  padding: 8px 0px;
  transition: 0.3s;
}
.page--wallpaper .list--contents .block--wp-size li a:hover {
  opacity: 0.5;
}
.page--wallpaper .list--contents .block--wp-size li a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.25em;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*  4.xx blog
------------------------------ */
.page--blog .pager__item--other {
  font-family: "Ovo", Noto Serif JP;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.page--blog .section--detail .tit {
  margin-bottom: 10px;
}
.page--blog .section--detail .date {
  margin-bottom: 30px;
}
.page--blog .section--detail .txt * {
  white-space: normal !important;
}

/*  4.xx checkin
------------------------------ */
.page--check-in .section-tit {
  padding: 0;
  margin-bottom: 20px;
}
.page--check-in .txt--basic {
  text-align: center;
}
.page--check-in .txt--lead {
  font-size: 20px;
  line-height: 1.5;
}
.page--check-in .block--point {
  width: 80%;
  margin: 50px auto 0;
  padding: 50px 50px 45px;
}
.page--check-in .block--img img {
  box-shadow: 4px -4px 40px -4px rgba(255, 255, 255, 0.4);
}
.page--check-in .txt--link {
  margin-bottom: 40px;
}
.page--check-in .point {
  font-weight: 700;
  font-size: 1.5em;
  vertical-align: -0.075em;
  padding-left: 5px;
}

/*  4.xx faq
------------------------------ */
.page--faq .section--list {
  display: block;
}
.page--faq .tit--category {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-left: 3%;
}
.page--faq .searchBox {
  position: relative;
  width: 60%;
  border: 1px solid;
  margin: 80px 3%;
}
.page--faq .searchBox input[type=text] {
  border: none;
}
.page--faq .searchBox input[type=submit] {
  width: 40px;
  font-family: FontAwesome;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  color: #9fa3a7;
  background: transparent;
  border: none;
  border-radius: 30px;
  position: absolute;
  top: 0.1em;
  right: 3px;
  z-index: 2;
  cursor: pointer;
}
.page--faq .list--faq {
  margin: 0 0 80px;
}
.page--faq .list--faq .icon--q {
  float: left;
  font-family: "Ovo", sans-serif;
  font-weight: 700;
  line-height: 2.2;
  color: #efefef;
  margin-right: 5px;
}
.page--faq .list--faq .txt {
  margin-bottom: 0;
  padding-left: 0;
}
.page--faq .section--detail .txt {
  padding-top: 0;
}
.page--faq .section--detail .txt a {
  text-decoration: underline;
}
.page--faq .section--detail .tit--category {
  padding-left: 0;
}
.page--faq .section--detail .list--faq a {
  padding-left: 0;
}
.page--faq .section--detail .list--faq .icon--q {
  line-height: 1.6;
}
.page--faq .popup-inner .list--contact {
  margin-bottom: 30px;
}
.page--faq .popup-inner .tit {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}
.page--faq .popup-inner .tit,
.page--faq .popup-inner .txt--basic {
  color: #fff;
  line-height: 1.7;
}
.page--faq .block--faq-detail {
  border: 1px solid #efefef;
  padding: 25px;
  margin: 0 0 80px;
}
.page--faq .block--faq-detail dt {
  font-size: 16px;
  border-bottom: 1px solid #efefef;
  padding: 0 0 15px;
  margin: 0 0 20px;
}
.page--faq .block--faq-detail dt .txt {
  padding-left: 40px;
  margin: 0;
}
.page--faq .block--faq-detail dt .category {
  display: inline-block;
  font-size: 12px;
  background: #eee;
  color: #efefef;
  border-radius: 20px;
  padding: 1px 8px 0;
  margin: 0 0 20px;
}
.page--faq .block--faq-detail dd .txt {
  font-size: 16px;
  color: #efefef;
  padding-left: 40px;
  margin: 0;
}
.page--faq .block--faq-detail span[class^=icon--] {
  display: inline-block;
  float: left;
  width: 30px;
  height: 30px;
  font-family: "Ovo", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  line-height: 31px;
  border-radius: 50px;
  padding-left: 2px;
}
.page--faq .block--faq-detail span.icon--q {
  color: #efefef;
  background: none;
  border: 1px solid;
}
.page--faq .block--faq-detail span.icon--a {
  color: #000;
  line-height: 30px;
  background: #fff;
}

.page--faq .section--detail .block--contact {
  text-align: center;
  margin: 40px 0 0;
}
.page--faq .section--detail .block--contact a {
  position: relative;
}
.page--faq .section--detail .block--contact a:hover {
  color: #d0121b;
}
.page--faq .section--detail .block--contact .fa {
  display: none;
}

.page--faq .list--contact {
  border-bottom: 1px solid #fff;
}
.page--faq .list--contact li {
  border-top: 1px solid #fff;
}
.page--faq .list--contact li a {
  display: block;
  color: #fff;
  padding: 15px 0;
  position: relative;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.page--faq .list--contact li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 3%;
  top: 26px;
  z-index: 1;
}
.page--faq .list--contact li a:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

/*  4.xx entry
------------------------------ */
.section--detail.entry {
  padding: 30px 15%;
}
.section--detail.entry .section-tit {
  width: 80%;
  margin: 0 auto 40px;
}
.section--detail.entry .block--top {
  margin-bottom: 40px;
}
.section--detail.entry .block--top .txt--basic {
  font-weight: 200;
  text-align: center;
  font-size: 18px;
}
.section--detail.entry .list--contents {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 16px;
}
.section--detail.entry .list--contents li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 49.5%;
  background: no-repeat url(/static/seikimaii/official/common/bg02.jpg) center;
  background-size: 260%;
  padding: 50px 15px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}
.section--detail.entry .list--contents li .txt--basic {
  display: block;
  padding-top: 10px;
  letter-spacing: 0.05em;
  font-weight: 200;
  margin-bottom: 0;
  font-size: 13px;
}
.section--detail.entry .list--contents li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section--detail.entry .block-tit {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.section--detail.entry .block--contents {
  margin-bottom: 60px;
}
.section--detail.entry .block--table {
  margin-bottom: 50px;
}
.section--detail.entry .block--table table {
  width: 100%;
  border: 1px solid;
}
.section--detail.entry .block--table tr {
  border-bottom: 1px solid;
}
.section--detail.entry .block--table td {
  border-right: 1px solid;
}
.section--detail.entry .block--table tr:last-of-type {
  border-bottom: none;
}
.section--detail.entry .block--table tr td:last-of-type {
  border-right: none;
}
.section--detail.entry .block--table th,
.section--detail.entry .block--table td {
  padding: 20px;
}
.section--detail.entry .block--table th {
  width: 150px;
}
.section--detail.entry .block--table dl:not(:last-child) {
  margin-bottom: 20px;
}
.section--detail.entry .inview {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.section--detail.entry .inview .btn--main {
  min-width: 20vw;
}

/*  4.xx game
------------------------------ */
.page--game .block--game {
  background: #000;
  margin-bottom: 60px;
  padding: 50px;
}
.page--game .block--game .block-tit {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.3em;
  margin-bottom: 40px;
}
.page--game .block--game .block-tit .coming-soon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  vertical-align: 0.7em;
  margin-left: 5px;
}
.page--game .block--game figure {
  width: 80%;
  margin: 0 auto 50px;
}
.page--game .block--game figure + .txt--sub {
  font-size: 0.2em;
  text-align: right;
  margin-bottom: 40px;
  margin-top: -30px;
}
.page--game .block--game .txt--basic:last-child {
  margin-bottom: 0;
}

/*  4.xx point
------------------------------ */
.page--point .block-tit {
  margin: 0 0 1em;
  font-size: 24px;
  font-weight: 700;
}
.page--point .block--get {
  width: 80%;
  margin: 0 auto 40px;
}
.page--point .no-data {
  text-align: center;
  font-weight: bold;
  padding: 40px 0 60px;
}
.page--point .pointCell {
  width: 100%;
}
.page--point .pointCell th {
  padding: 15px;
  color: #fff;
  border: 1px solid #000;
  font-size: 12px;
  text-align: center;
  box-sizing: border-box;
}
.page--point .pointCell th:nth-child(1) {
  width: 80%;
}
.page--point .pointCell th:nth-child(2) {
  width: 20%;
}
.page--point .pointCell td {
  text-align: left;
  box-sizing: border-box;
  border: 1px solid;
}
.page--point .pointCell td.leadCell {
  width: 70%;
  padding: 20px;
  border-right: 1px dotted;
}
.page--point .pointCell td.leadCell .txt {
  margin: 0;
  font-size: 12px;
  line-height: 1.5em;
}
.page--point .pointCell td.pointCell {
  padding: 15px 5px;
  font-size: 20px;
  width: 25%;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  border-left: none;
}
.page--point .pointCell td.pointCell span {
  font-size: 10px;
  letter-spacing: 0;
}
.page--point .pointCell i {
  display: inline-block;
  font-size: 14px;
  margin-left: 3px;
}
.page--point .pointCell .tit {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.page--point .pointCell .tit + .txt--sub {
  font-weight: bold;
  margin: -10px 0 15px;
  color: #ff6a6a;
}
.page--point .list--gift {
  margin: 0 auto;
}
.page--point .list--gift li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.page--point .list--gift li .tit {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.page--point .list--gift li .tit + .txt {
  font-weight: bold;
  margin: -10px 0 15px;
}
.page--point .list--gift li.soon a {
  pointer-events: none;
  opacity: 0.8;
}
.page--point .list--gift li.soon::before {
  content: "coming soon";
  width: 240px;
  position: absolute;
  top: 50%;
  text-align: center;
  z-index: 10;
  font-size: 16px;
  left: 50%;
  line-height: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 21px 0 25px;
}
.page--point .list--gift li.no-chevron::after {
  display: none;
}
.page--point .list--gift li.comingsoon::after {
  display: none;
}
.page--point .list--gift .txt_comingsoon {
  position: absolute;
  right: 6%;
  top: 42px;
  color: #999;
  font-weight: bold;
}
.page--point .list--gift li .block,
.page--point .list--gift li a {
  display: block;
  padding: 15px 0 15px 0;
}
.page--point .list--gift li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.page--point .list--gift li:last-child {
  margin: 0;
}
.page--point .list--gift .btn {
  margin: 0;
}
.page--point .list--gift .ph {
  width: 27%;
  float: left;
  line-height: 0;
}
.page--point .list--gift .point {
  color: #e81b45;
  font-weight: bold;
  border-radius: 60px;
}
.page--point .list--gift .tit {
  margin: 0 0 0.2em;
  font-weight: bold;
}
.page--point .list--gift .txt {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.5em;
}
.page--point .list--gift .change {
  position: absolute;
  right: 5%;
  bottom: 15px;
  font-size: 12px;
  font-weight: bold;
  padding-right: 5px;
}
.page--point .list--gift + .list--notes {
  margin-top: 30px;
}
.page--point .tit--sub {
  background: #222;
  color: #fff;
  margin: 0 -5.5%;
  padding: 8px 5%;
  font-weight: bold;
}
.page--point .block--use {
  width: 80%;
  margin: 0 auto;
}

.list--notes li {
  font-size: 13px;
  text-indent: -1em;
  padding-left: 1em;
}
.list--notes li:not(:last-child) {
  margin-bottom: 5px;
}
.list--notes li a {
  font-weight: 200;
  text-indent: 0;
}
.list--notes li a i {
  display: inline-block;
  padding-left: 5px;
}

.page--questionnaire section {
  z-index: 2;
  position: relative;
  padding: 0 100px;
}

.page--questionnaire .section-tit {
  margin: 0 0 20px 0;
}

.page--questionnaire .form__checkbox label p,
.page--questionnaire .form__radio label p {
  font-size: 15px;
}

.page--questionnaire .form__checkbox :checked ~ p::before {
  background: #bf0202;
  border-color: #bf0202;
}

.page--questionnaire .form__radio :checked ~ p::before {
  border-color: #bf0202;
}

.page--questionnaire .input--quarter {
  width: 330px !important;
}

.page--questionnaire .detail__btn,
.btn {
  margin: 3em 0;
}

.page--questionnaire .form__select select {
  font-size: 15px;
  font-family: YakuHanJP, Noto Serif JP, -apple-system, BlinkMacSystemFont, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page--questionnaire .form__select select option {
  background: #1c1c1c;
  font-size: 14px;
}

.page--questionnaire input {
  font-family: YakuHanJP, Noto Serif JP, -apple-system, BlinkMacSystemFont, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
}

.page--questionnaire textarea {
  font-family: YakuHanJP, Noto Serif JP, -apple-system, BlinkMacSystemFont, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
}

/*  4.10 error
------------------------------ */
.page--error .detail__btn {
  display: none;
}/*# sourceMappingURL=fanclub-pc-service.css.map */