@charset "utf-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 spacer
	0.4 chevron
	0.5 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 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 gallery
	4.5 movie
	4.6 questionnaire
	4.7 faq
	4.8 support
-------------------------------------------- */
/* 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: rgba(111, 138, 166, 0.2);
  color: #333;
}
::-moz-selection {
  background: #333;
  color: #fff;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
/* 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;
}
.detail__btn input,
.btn input {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  border-radius: 2em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #333;
  color: #fff;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.btn--main:hover {
  top: -5px;
  background: #000;
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}
.detail__btn a,
.btn--sub {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  border-radius: 2em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #fff;
  color: #333;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.detail__btn a:hover,
.btn--sub:hover {
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  top: -5px;
}
.detail__btn {
  margin-top: 80px;
}
.detail__btn a::after {
  content: 'BACK';
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
.block--error {
  color: #c00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
/* 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"] {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #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 {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
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: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: inherit;
}
.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 #333;
  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;
  line-height: 1.6;
  letter-spacing: 0.03em;
  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 #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: 0.2em;
  top: 70%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #333;
  border-color: #333;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  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;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
  border-color: #333;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  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 #ddd;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #333;
  border-color: #333;
}
.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 {
  padding: 40px 0 0;
}
.form--confirm dt {
  margin: 0 0 10px;
  opacity: 0.5;
}
.form--confirm dd {
  margin: 0 0 30px;
}
/* 2.3 list
------------------------------ */
.no-data {
  text-align: center;
  opacity: 0.5;
}
/*  update */
.list--update a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  position: relative;
}
.list--update .date {
  margin: 0 0 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #999;
}
.list--update .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--update .category {
  display: inline-block;
  opacity: 0.5;
  font-size: 13px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.list--update .new .date::after {
  content: 'New';
  color: #c00;
  margin-left: 10px;
}
.list--update .thumb {
  margin: 0 0 10px;
}
.list--update a {
  left: 0;
}
.list--update a:hover {
  left: 10px;
}
.list--update .no-data {
  padding: 35px 5%;
}
.list--update .date img {
  width: 50px;
  display: inline-block;
  margin: 0 0 0 8px;
  vertical-align: -1px;
}
.list--update .thumb {
  float: left;
  width: 20%;
  background-image: url(/static/fcuru/cmn/noimage.jpg);
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}
.list--update .list__txt {
  padding-left: 25%;
}
.list--update .list__txt .date {
  margin: 5px 0 0;
}
.list--information a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  position: relative;
}
.list--information .date {
  margin: 0 0 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #999;
}
.list--information .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--information .category {
  display: inline-block;
  opacity: 0.5;
  font-size: 13px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.list--information .new .date::after {
  content: 'New';
  color: #c00;
  margin-left: 10px;
}
.list--information .thumb {
  margin: 0 0 10px;
}
.list--information a {
  left: 0;
}
.list--information a:hover {
  left: 10px;
}
.list--information .no-data {
  padding: 35px 5%;
}
.list--information .date img {
  width: 50px;
  display: inline-block;
  margin: 0 0 0 8px;
  vertical-align: -1px;
}
.list--information .thumb {
  float: left;
  width: 20%;
  background-image: url(/static/fcuru/cmn/noimage.jpg);
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}
.list--information .list__txt {
  padding-left: 25%;
}
.list--information .list__txt .date {
  margin: 5px 0 0;
}
/*  contents */
.list--contents li {
  position: relative;
  top: 0;
  float: left;
  width: calc(90% / 3);
  margin: 0 5% 40px 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--contents li:nth-child(3n+1) {
  clear: both;
}
.list--contents li:last-child {
  margin: 0;
}
.list--contents li:hover {
  top: -10px;
}
.list--contents li a {
  display: block;
  position: relative;
}
.list--contents li .date {
  margin: 5px 0 0;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  color: #999;
  font-size: 12px;
}
.list--contents li.new .date::after {
  content: 'New';
  color: #c00;
  margin-left: 10px;
}
.list--contents li .tit {
  font-size: 13px;
  line-height: 1.5em;
}
.list--contents li .thumb {
  line-height: 0;
  margin: 0 0 10px;
}
.list--contents li .thumb img {
  background-position: 50% 50%;
  border: 1px solid #ddd;
}
.list--contents li:nth-child(3n) {
  margin-right: 0;
}
/*  circle */
.list--circle {
  margin: 0 0 100px;
}
.list--circle a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  position: relative;
}
.list--circle .date {
  margin: 0 0 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #999;
}
.list--circle .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--circle .category {
  display: inline-block;
  opacity: 0.5;
  font-size: 13px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.list--circle .new .date::after {
  content: 'New';
  color: #c00;
  margin-left: 10px;
}
.list--circle .thumb {
  margin: 0 0 10px;
}
.list--circle li {
  position: relative;
  float: left;
  width: calc(98% / 3);
  margin-right: 1%;
}
.list--circle li:nth-child(3n) {
  margin-right: 0;
}
.list--circle .tit {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 21px;
  margin: 40px 0 10px;
  padding-left: 170px;
}
.list--circle .date {
  padding-left: 170px;
}
.list--circle .date.txt--blue {
  color: #0D66CC;
}
.list--circle .text {
  margin: 0 0 10px;
  padding-left: 170px;
  font-size: 12px;
}
.list--circle .thumb {
  float: left;
  width: 150px;
  height: 150px;
  position: relative;
  top: 0;
  background-color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 100px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--circle .new {
  position: absolute;
  left: -17px;
  top: 27px;
  color: #c00;
  margin-left: 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  transform: rotate(-55deg);
}
.list--circle .new span {
  opacity: 0;
}
.list--circle a:hover .thumb {
  top: -10px;
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}
.list--circle a.disabled {
  pointer-events: none;
}
.list--circle a.disabled .thumb {
  position: relative;
}
.list--circle a.disabled .tit {
  opacity: 0.5;
}
.list--circle a.disabled:hover .thumb {
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 2.4 pagenation
------------------------------ */
.section--list .block--pager {
  width: 80%;
  max-width: 600px;
}
.block--pager {
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  margin: 60px auto 0;
  letter-spacing: -0.5em;
}
.block--pager li {
  position: relative;
  display: inline-block;
  padding: 0.6em;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.block--pager li a,
.block--pager li span {
  display: block;
  height: 2.4em;
  line-height: 2.3em;
}
.block--pager .pager__item--current {
  position: relative;
}
.block--pager .pager__item--current::after {
  position: absolute;
  bottom: 7px;
  left: 10%;
  content: '';
  display: block;
  background: #c7d8e6;
  opacity: 0.3;
  width: 80%;
  height: 10px;
}
.block--pager .pager__item--newer {
  float: left;
  text-align: left;
  padding-left: 50px;
}
.block--pager .pager__item--newer a::before,
.block--pager .pager__item--newer span::before {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(/static/fcuru/cmn/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.block--pager .pager__item--newer a:hover::before {
  left: -8px;
}
.block--pager .pager__item--older {
  float: right;
  text-align: right;
  padding-right: 50px;
}
.block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::after {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(/static/fcuru/cmn/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.block--pager .pager__item--older a:hover::after {
  right: -8px;
}
.block--pager .pager__item--newer span,
.block--pager .pager__item--older span {
  opacity: 0.2;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap {
  position: relative;
  min-height: 100%;
  padding-bottom: 210px;
}
.sp {
  display: none !important;
}
/* 3.2 header
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  background: -moz-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 80%);
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 80%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 80%);
}
.header h1 {
  position: absolute;
  top: 30px;
  left: 3%;
  z-index: 999;
}
.header h1 a {
  display: block;
}
.header h1 img {
  width: 233px;
}
.header h1 svg {
  width: 110px;
  height: 50px;
  fill: #333;
}
.header .block--join {
  position: absolute;
  top: 35px;
  right: 150px;
  z-index: 999;
  font-size: 15px;
}
.header .block--join li {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
}
.header .block--join li a {
  display: block;
  padding: 10px 1vw;
}
.header .block--join li:first-child::before {
  position: absolute;
  left: 50%;
  top: 10px;
  margin-left: -6px;
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background: #333;
  opacity: 0.2;
  transform: rotate(20deg);
}
.header .nav--sns {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 160px;
  position: absolute;
  top: 42px;
  right: 650px;
  z-index: 999;
}
.header .nav--sns a {
  font-size: 20px;
  color: #999;
}
.header .nav--sns a .fa-weibo {
  margin: -3px;
}
.header .nav--sns a:hover {
  opacity: 0.7;
}
.header #acd {
  position: absolute;
  top: 44px;
  right: 320px;
  z-index: 999;
  font-size: 12px;
  color: #727272;
  width: 120px;
  text-align: center;
  transition: 0.4s;
}
.header #acd .acdTit {
  border-radius: 100px;
  padding: 3px;
  border: 1px solid;
  position: relative;
}
.header #acd .acdTit span {
  margin: 0 10px 0 0;
}
.header #acd .acdTit::after {
  position: absolute;
  margin: -12px 0 0;
  content: "";
  vertical-align: middle;
  top: 70%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header #acd .open::after {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: 0.4s;
  top: 55%;
}
.header .acdList {
  background: rgba(227, 245, 255, 0.9);
  border-radius: 20px;
  margin: 10px 0 0 0;
  padding: 10px;
  font-size: 11px;
}
.header .acdList li {
  margin: 0 0 5px 0;
}
.header .acdList li:last-child {
  margin: 0;
}
.header .downloadBtn {
  position: absolute;
  top: 44px;
  right: 450px;
}
.header .downloadBtn a {
  background: #000000;
  width: 180px;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  padding: 3px;
  font-size: 13px;
  display: block;
}
.header .downloadBtn a:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.drawer .inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.drawer .member-tit {
  width: 74%;
  margin: 0 auto 40px;
}
.drawer .member-tit img {
  width: 150px;
}
.drawer ul {
  width: 74%;
  margin: 0 auto 40px;
}
.drawer li {
  display: inline-block;
  margin: 0 40px 20px 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.drawer .comingsoon {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.drawer .comingsoon::after {
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  display: block;
  content: 'Coming soon';
  font-size: 10px;
}
@media screen and (max-width: 1080px) {
  .header .nav--sns {
    top: 70px;
    right: 160px;
  }
}
.drawer__btn {
  position: absolute;
  right: 3%;
  top: 40px;
  width: 45px;
  height: 35px;
  z-index: 1002;
}
.drawer__btn span {
  position: absolute;
  display: block;
  height: 1px;
  background: #333;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.drawer__btn span.top {
  top: 0px;
}
.drawer__btn span.middle {
  top: 14px;
}
.drawer__btn span.bottom {
  top: 28px;
}
.drawer__btn::after {
  position: relative;
  bottom: -35px;
  content: 'Menu';
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: block;
  text-align: center;
}
.drawer__btn:hover {
  cursor: pointer;
}
body:not(.menuopen) .drawer__btn:hover span {
  -webkit-animation: navhover 0.3s 0s forwards;
  animation: navhover 0.3s 0s forwards;
}
body:not(.menuopen) .drawer__btn:hover span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
body:not(.menuopen) .drawer__btn:hover span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes navhover {
  0% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes navhover {
  0% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
.menuopen .drawer__btn::after {
  content: 'Close';
}
.menuopen .drawer__btn span:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.menuopen .drawer__btn span:nth-child(2) {
  width: 0;
  right: 0;
}
.menuopen .drawer__btn span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
.wave span {
  display: inline-block;
}
.wave:hover span {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  transition: 1s;
}
.wave:hover span:nth-of-type(1) {
  -webkit-transition-delay: 0.02s;
  transition-delay: 0.02s;
}
.wave:hover span:nth-of-type(2) {
  -webkit-transition-delay: 0.06s;
  transition-delay: 0.06s;
}
.wave:hover span:nth-of-type(3) {
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}
.wave:hover span:nth-of-type(4) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.wave:hover span:nth-of-type(5) {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}
.wave:hover span:nth-of-type(6) {
  -webkit-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.wave:hover span:nth-of-type(7) {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
}
.wave:hover span:nth-of-type(8) {
  -webkit-transition-delay: 0.26s;
  transition-delay: 0.26s;
}
.wave:hover span:nth-of-type(9) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.wave:hover span:nth-of-type(10) {
  -webkit-transition-delay: 0.34s;
  transition-delay: 0.34s;
}
.wave:hover span:nth-of-type(11) {
  -webkit-transition-delay: 0.38s;
  transition-delay: 0.38s;
}
.wave:hover span:nth-of-type(12) {
  -webkit-transition-delay: 0.42s;
  transition-delay: 0.42s;
}
.wave:hover span:nth-of-type(13) {
  -webkit-transition-delay: 0.46s;
  transition-delay: 0.46s;
}
/* 3.3 footer
------------------------------ */
footer {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #999;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer .inner {
  padding: 40px 5%;
}
footer .copyright {
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
footer .nav--support {
  margin-bottom: 30px;
}
footer .nav--support li {
  display: inline-block;
}
footer .nav--support li a {
  padding: 0 15px;
  color: #999;
}
footer .nav--support li a:hover {
  opacity: 0.5;
}
footer .nav--sns {
  margin: 0 0 30px;
}
footer .nav--sns li {
  display: inline-block;
}
footer .nav--sns li a {
  padding: 0 15px;
  color: #999;
  font-size: 20px;
}
footer .nav--sns li a:hover {
  opacity: 0.5;
}
/* 4.0 page
============================== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
}
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 38px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
}
.section-tit {
  color: inherit;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  font-weight: 300;
}
.menu-tit {
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.ph {
  position: relative;
}
.dummy {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
/* 4.2 home
------------------------------ */
.page--home .keyvisual {
  position: relative;
  height: 100vh;
}
.page--home .keyvisual .announce {
  display: none;
  width: 25%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.page--home .keyvisual .ph {
  position: absolute;
  width: 77%;
  height: 76%;
  top: 14%;
  left: 10%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.page--home .keyvisual .scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.page--home .keyvisual .scroll::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #999999;
}
.page--home section {
  padding: 100px 0;
}
.page--home .section--banner {
  position: relative;
  top: 0;
  padding: 80px 0;
  -webkit-transition: 0.5s 0.5s all;
  transition: 0.5s 0.5s all;
}
.page--home .section--banner .bnrList a {
  position: relative;
  top: 0;
  display: block;
  line-height: 0;
}
.page--home .section--banner .bnrList a img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page--home .section--banner .bnrList a:hover {
  top: -10px;
}
.page--home .section--banner .bnrList a:hover img {
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}
.page--home .section--banner .single {
  width: 100%;
  margin: 0 auto!important;
  text-align: center;
  letter-spacing: -0.5em;
}
.page--home .section--banner .slick-slider img {
  height: auto;
  margin: 0 auto;
  width: 92%;
}
.page--home .section--banner .slick-list {
  padding: 10px 10% 20px!important;
}
.page--home .section--banner .slick-dots {
  text-align: center;
}
.page--home .section--banner .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.page--home .section--banner .slick-dots button {
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  background-color: #333;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  opacity: 0.3;
}
.page--home .section--banner .slick-dots .slick-active button {
  opacity: 1;
}
.page--home .section--info {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--home .slider-nav {
  margin: 0 0 20px;
  font-weight: 300;
  font-size: 23px;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
}
.page--home .slider-nav .slick-slide {
  position: relative;
  padding: 0 0 10px;
}
.page--home .slider-nav .slick-slide::after {
  position: absolute;
  bottom: 0;
  left: 25%;
  content: '';
  display: block;
  background: #c7d8e6;
  opacity: 0;
  width: 50%;
  height: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page--home .slider-nav .slick-slide.slick-current,
.page--home .slider-nav .slick-slide:hover {
  cursor: pointer;
}
.page--home .slider-nav .slick-slide.slick-current::after,
.page--home .slider-nav .slick-slide:hover::after {
  opacity: 0.3;
  bottom: 12px;
}
.page--home .more {
  margin: 20px 0 0 ;
  text-align: right;
  font-family: 'Quicksand', sans-serif;
}
.page--home .more::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  height: 1px;
  width: 4em;
  background: #999;
  vertical-align: middle;
}
.page--home .section--video {
  width: 80%;
  margin: 0 auto;
  max-width: 1800px;
}
.page--home .section--video .list--contents li .tit {
  font-size: 12px;
}
.page--home .section--fc {
  position: relative;
  width: 93%;
  padding: 100px 8% 0px;
  max-width: 1800px;
  margin: 150px auto 0;
  background: #e3f5ff;
  /*background: #e3f5ff url(/static/fcuru/top/ph_sabaillust.png) no-repeat center 96%;*/
  background-size: 100px;
}
.page--home .section--fc .fc_banner {
  line-height: 0;
  width: 80%;
  text-align: center;
  margin: -30px auto 30px;
}
.page--home .section--fc .fc_banner li {
  display: inline-block;
  width: 260px;
  margin: 0 5px;
}
.page--home .section--fc .fc_banner a {
  display: block;
  top: 0;
  position: relative;
}
.page--home .section--fc .fc_banner a:hover {
  top: -10px;
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}
.page--home .section--fc .fc-tit {
  position: absolute;
  top: -70px;
  left: 50%;
  margin-left: -147px;
}
.page--home .section--fc .fc-tit img {
  width: 294px;
}
.page--home .section--fc .block--login {
  position: absolute;
  top: -25px;
  right: 3%;
  width: 260px;
  padding: 0 20px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  background: #333;
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}
.page--home .section--fc .block--login::before {
  position: absolute;
  left: 50%;
  top: 12px;
  content: '';
  display: block;
  width: 1px;
  height: 25px;
  background: #ccc;
  transform: rotate(20deg);
}
.page--home .section--fc .block--login a {
  display: block;
  width: 50%;
  float: left;
  line-height: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  color: #fff;
}
.page--home .section--fc .block--login.mypage {
  width: 200px;
}
.page--home .section--fc .block--login.mypage a {
  width: 100%;
  float: none;
}
.page--home .section--fc .block--login.mypage::before {
  display: none;
}
.page--home .section--fc .block--diary,
.page--home .section--fc .block--newcontents {
  max-width: 600px;
  width: 80%;
  margin: 0 auto 80px;
}
.page--home .section--fc .block--diary .slider-nav .slick-slide::after,
.page--home .section--fc .block--newcontents .slider-nav .slick-slide::after {
  background: #8AA8BD;
}
.page--home .section--fc .block--newcontents .section-tit {
  position: relative;
  font-size: 23px;
  margin: 50px 0 0.5em;
}
.page--home .section--fc .block--newcontents .section-tit::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  display: block;
  background: #c7d8e6;
  opacity: 0.3;
  width: 120px;
  height: 10px;
  margin-left: -60px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page--home #popupMovie {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}
.page--home #popupMovie .movie {
  position: absolute;
  top: 40%;
  left: 50%;
  margin-top: -157px;
  margin-left: -280px;
}
.page--home #popupMovie .movie iframe {
  width: 560px;
  height: 315px;
}
.page--home #popupMovie .popLead {
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
  font-size: 12px;
  margin: 0 0 10px;
}
.page--home #popupMovie .close {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 15%;
  right: 50%;
  cursor: pointer;
  transition: 0.3s;
  margin-right: -330px;
}
.page--home #popupMovie .popbnr {
  width: 560px;
}
.page--home #popupMovie .popbnr a {
  display: block;
}
.page--home #popupMovie .popbnr img {
  width: 560px;
}
.page--home #loading {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.page--home #loading .logo {
  display: none;
  position: fixed;
  background-image: url(/static/fcuru/top/bg_logo.jpg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
}
/*  4.3 information
------------------------------ */
.section--list {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 120px 0 60px;
}
.section--detail {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0 60px;
}
.page--info .section--list .list--information {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--info .section--list .list--update {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--info .section--detail {
  max-width: 600px;
}
.block--share {
  margin: 0 0 30px;
  text-align: right;
}
.block--share li {
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: middle;
  font-size: 24px;
  color: #999;
}
.block--share .lineIco {
  display: none;
}
.block--share .share {
  font-size: 12px;
}
.block--share .ico {
  font-size: 20px;
}
.block--share .ico svg {
  fill: #999;
}
.block--share a {
  color: #999;
}
.block--share a:hover {
  opacity: 0.5;
}
.section--detail .tit {
  color: inherit;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.5em;
}
.section--detail .tit .event-date {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
}
.section--detail .date {
  margin: 0 0 2.5em;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #999;
}
.section--detail .date .category {
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #eee;
}
.section--detail .txt {
  margin: 0 0 20px;
  line-height: 2em;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #6f8aa6;
}
.section--detail .txt a:hover {
  opacity: 0.5;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%!important;
  height: 100%!important;
}
.page--info .section--detail .date {
  margin-top: -50px;
}
/*  latest
------------------------------ */
.page--latest .list--information {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
/*  blog
------------------------------ */
.page--blog .section--list .list--information {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--blog .section--detail {
  max-width: 600px;
}
.page--blog .section--detail .ph {
  margin: 20px 0;
}
.page--blog .section--detail .txt a {
  color: #6f8aa6;
}
.block--contents-comment {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0 0;
}
.block--contents-comment .block-tit {
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  margin: 0 0 20px;
}
.block--contents-comment .block--post {
  margin: 0 0 40px;
}
.block--contents-comment .form--post {
  padding: 40px;
  background: #f8f8f8;
  border-radius: 10px;
}
.block--contents-comment .form--post dt {
  margin: 0 0 20px;
}
.block--contents-comment .form--post textarea {
  background: #fff;
}
.block--contents-comment .txt--sub {
  text-align: right;
}
.block--contents-comment .list--comment {
  margin: 20px 0 0;
  border-top: 1px solid #ddd;
}
.block--contents-comment .list--comment li {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.block--contents-comment .list--comment .report-btn {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 12px;
  color: #6f8aa6;
}
.block--contents-comment .list--comment .name {
  margin: 0 0 10px;
}
.block--contents-comment .list--comment .name::before {
  content: 'Form:';
}
.block--contents-comment .list--comment .date {
  margin: 0;
}
.block--contents-comment .block--pager {
  margin: 20px 0 0;
}
.block--contents-comment div[id^="contents_comment_wrapper_"] {
  height: auto !important;
}
.block--contents-comment [id^='contents_comment'] .list--comment {
  overflow-y: scroll;
  height: 270px !important;
  height: 19vw !important;
  padding-top: 5px;
}
.block--contents-comment [id^='contents_comment'] .list--comment li {
  padding: 10px 0;
}
.block--contents-comment [id^='contents_comment'] .list--comment li .txt {
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 0;
}
.block--contents-comment [id^='contents_comment'] .list--comment li:first-of-type {
  border-top: 1px solid #ddd;
}
/*  notice
------------------------------ */
.page--notice .section--list .list--info {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--notice .section--list .list--info:before {
  content: "Notice";
  display: block;
  color: inherit;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  font-weight: 300;
}
.page--notice .section--list .list--info li a {
  display: flex;
  flex-wrap: wrap;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  position: relative;
}
.page--notice .section--list .list--info li a .txt {
  order: 2;
}
.page--notice .section--list .list--info li a .date {
  margin: 0 0 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #999;
  width: 100%;
  order: 1;
}
/*  discograpy
------------------------------ */
.block--category {
  text-align: center;
  margin: 0 0 40px;
}
.block--category li {
  margin: 0 20px;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
}
.block--category li a {
  display: block;
  padding: 5px 10px;
}
.block--category li a::after {
  position: absolute;
  bottom: 0;
  left: 10%;
  content: '';
  display: block;
  background: #c7d8e6;
  opacity: 0;
  width: 80%;
  height: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.block--category .current a::after,
.block--category a:hover::after {
  opacity: 0.3;
  bottom: 5px;
}
.list--discography {
  display: flex;
  flex-wrap: wrap;
}
.list--discography a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  position: relative;
}
.list--discography .date {
  margin: 0 0 10px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #999;
}
.list--discography .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--discography .category {
  display: inline-block;
  opacity: 0.5;
  font-size: 13px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.list--discography .new .date::after {
  content: 'New';
  color: #c00;
  margin-left: 10px;
}
.list--discography .thumb {
  margin: 0 0 10px;
}
.list--discography::after {
  display: table;
  content: "";
  clear: both;
}
.list--discography li {
  /*float: left;*/
  width: calc(90% / 3);
  margin: 0 5% 40px 0;
}
.list--discography li a {
  padding: 0;
  position: relative;
  top: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--discography li a:hover {
  top: -10px;
}
.list--discography li .category {
  margin-right: 10px;
}
.list--discography li .date {
  display: inline-block;
}
.list--discography li .date::after {
  content: ' Release';
}
.list--discography li .thumb img {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
}
.list--discography li:nth-child(3n) {
  margin-right: 0;
}
.page--disco .section--detail {
  max-width: 1200px;
}
.page--disco .section--detail .date::after {
  content: ' Release';
}
.page--disco .section--detail .block--category {
  display: none;
}
.page--disco .section--detail .block--jacket {
  width: 32%;
  float: left;
}
.page--disco .section--detail .block--jacket .thumb {
  position: relative;
}
.page--disco .section--detail .block--jacket .thumb::after {
  content: '';
  display: block;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .section--detail .block--jacket .thumb img {
  margin: 0 0 10px;
  border: 1px solid #ddd;
}
.page--disco .section--detail .block--jacket figcaption {
  display: none;
  font-size: 11px;
}
.page--disco .section--detail .block--detail {
  padding-left: 38%;
}
.page--disco .section--detail .block--detail .block--comment {
  margin: 0 0 20px;
}
.page--disco .section--detail .block--detail .block--comment a {
  color: #6f8aa6;
}
/*  movie
------------------------------ */
.page--movie .section--detail .block--player {
  text-align: center;
  margin: 0 0 20px;
}
.page--movie .section--detail .block--player .ulizahtml5 {
  margin: 0 auto;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player {
  padding-top: 55.7%;
  margin: 0 auto 20px;
}
.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.5);
  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;
  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 {
  font-size: 20px;
  margin: 40px 0 0;
  font-weight: 400;
}
.page--movie.new-movie.page-movie-detail.page--streaming .section--detail .area--movie .block--player .video-js .vjs-poster {
  background-size: cover;
  background-position: bottom;
}
.page--movie.new-movie.page-movie-detail.page--streaming .section--detail .area--movie .block--player .video-js.vjs-fullscreen .vjs-poster {
  background-size: contain;
}
.page--movie.new-movie.page-movie-detail .area--more-info {
  margin: 50px auto;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main {
  margin: 20px 0 0 0;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies {
  padding-top: 0;
  border-top: none;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .more_movies_title {
  font-size: 21px;
  margin: 0 0 30px 0;
  letter-spacing: 0.03em;
  font-family: 'Quicksand', sans-serif;
  text-align: left;
  font-weight: 300;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents {
  display: block;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li a .thumb {
  width: 35%;
  margin: 0;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li a .list__txt {
  width: 65%;
  padding: 0 10px;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li a .list__txt .category {
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 5px 0;
  opacity: 0.7;
}
.page--movie.new-movie.page-movie-detail .area--more-info .block--tab__main .block--more_movies.current .list--contents li a .list__txt .tit {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}
.page--movie.category-18 .section--detail .area--more-info {
  display: none;
}
/*  photo
------------------------------ */
.page--photo .section--list .list--contents .date,
.page--photo .section--list .list--information .date {
  margin: 10px 0 0;
}
.page--photo .section--list .list--contents .thumb,
.page--photo .section--list .list--information .thumb {
  line-height: 0;
}
.page--photo .section--list .list--contents .thumb img,
.page--photo .section--list .list--information .thumb img {
  border: none;
}
.page--photo .section--list .list--information {
  max-width: 600px;
  width: 80%;
  margin: 0 auto;
}
.page--photo .section--list .list__txt {
  padding-top: 20px;
}
.page--photo.comics .ph {
  margin: 0 auto 20px;
  width: 425px;
  line-height: 0;
}
.page--photo.comics .yonkoma {
  width: 80%;
  max-width: 600px;
  margin: 0 auto 120px;
}
.page--photo.comics .yonkoma li {
  position: relative;
}
.page--photo.comics .yonkoma .slick-arrow {
  position: absolute;
  bottom: -40px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.page--photo.comics .yonkoma .slick-arrow.next {
  right: 25%;
}
.page--photo.comics .yonkoma .slick-arrow.prev {
  left: 25%;
}
.page--photo.comics .yonkoma .slick-arrow.slick-disabled {
  opacity: 0;
}
.page--photo.comics .yonkoma .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}
.page--photo.comics .yonkoma .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.page--photo.comics .yonkoma .slick-dots button {
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  background: #efefef;
  color: #333;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  border: none;
  border-radius: 10px;
}
.page--photo.comics .yonkoma .slick-dots .slick-active button {
  background: #333;
  color: #fff;
}
.page--photo.story .attention {
  position: absolute;
  right: 6%;
  bottom: 12%;
  font-size: 12px;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}
.page--photo.story .story-tit {
  width: 80%;
  margin: 0 auto 40px;
}
.page--photo.story .book-tit {
  position: absolute;
  top: 40px;
  right: 5%;
  font-weight: bold;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}
.page--photo.story .book-inner {
  position: relative;
}
.page--photo.story .tit {
  text-align: center;
}
.page--photo.story .list--information .tit {
  position: relative;
  font-size: 16px;
}
.page--photo.story .list--information .new .tit::after {
  position: absolute;
  top: 2px;
  content: 'New';
  color: #c00;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  margin-left: 5px;
}
.page--photo.story .mfp-arrow {
  top: auto;
  bottom: 4%;
  height: 40px;
  color: #333;
  opacity: 1;
}
.page--photo.story .mfp-arrow::after {
  display: none;
}
.page--photo.story .mfp-arrow::before {
  margin: 0;
  width: 100%;
  height: 100%;
  position: static!important;
  border: none!important;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
}
.page--photo.story .mfp-arrow-left {
  left: 5%;
}
.page--photo.story .mfp-arrow-right {
  right: 5%;
}
.page--photo.story .mfp-arrow-left::before {
  content: '次の章';
}
.page--photo.story .mfp-arrow-right::before {
  content: '前の章';
}
.page--photo.story .mfp-content,
.page--photo.story .chapter {
  width: 100%;
  height: 100%;
}
.page--photo.story .chapter {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page--photo.story .chapter .book-img {
  opacity: 0;
  max-width: initial;
}
.page--photo.story .block--book {
  width: 80%;
  margin: -5% auto 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.page--photo.story .book-close {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 80px;
  height: 40px;
  z-index: 9999;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  margin-left: -40px;
  opacity: 0.7;
  cursor: pointer;
  color: #000;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}
.page--photo.category-3 .list--information {
  text-align: center;
}
.page--photo.category-3 .list--information .date {
  position: absolute;
  left: 0;
  top: -10px;
}
.page--photo.category-4 .list-tit {
  position: relative;
  padding: 30px 7% 0;
  font-size: 16px;
  cursor: pointer;
}
.page--photo.category-4 .list-tit:before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: 3px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.page--photo.category-4 .block--character {
  background: #f4fbff;
  margin: 0 auto 40px;
  text-align: center;
  max-width: 1000px;
  padding: 0 0 30px;
}
.page--photo.category-4 .block--character.open .list-tit:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-top: 10px;
}
.page--photo.category-4 .list--character {
  padding-top: 30px;
}
.page--photo.category-4 .list--character li {
  margin: 0 2% 20px 0;
  display: inline-block;
}
.page--photo.category-4 .list--character li a {
  pointer-events: none;
  cursor: default;
}
.page--photo.category-4 .list--character li .thumb {
  width: 150px;
  height: 150px;
  position: relative;
  top: 0;
  background-color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 100px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page--photo.category-4 .list--character li .name {
  text-align: center;
  font-size: 12px;
  padding-top: 7px;
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/*  urunai
------------------------------ */
.urunai {
  text-align: center;
}
.urunai .section-tit {
  width: 750px;
  margin: 0 auto;
}
.urunai .ph {
  width: 273px;
  margin: -160px auto 0;
  position: relative;
}
.urunai .text {
  position: absolute;
  width: 180px;
  right: -200px;
  bottom: 150px;
}
.urunai .crystal {
  width: 130px;
  height: 130px;
  border-radius: 80px;
  background: url(/static/fcuru/urunai/marble.jpg);
  background-size: 250px;
  position: absolute;
  top: 62%;
  left: 25%;
  z-index: -1;
  -webkit-animation: spin 0.5s linear 6, marble 80s linear infinite;
  -moz-animation: spin 0.5s linear 6, marble 80s linear infinite;
  -ms-animation: spin 0.5s linear 6, marble 80s linear infinite;
  animation: spin 0.5s linear 6, marble 80s linear infinite;
}
.urunai .block--result {
  opacity: 0;
  padding: 50px 0 0;
  transition: all 0.6s ease;
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7);
}
.urunai .block--result .bg {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  z-index: -1;
}
.urunai .block--result .title {
  width: 80%;
  max-width: 700px;
}
.urunai .block--result .result_txt {
  position: relative;
  border: 4px solid #a9a33e;
  padding: 4px;
  background: #fff;
  width: 80%;
  margin: 0 auto;
}
.urunai .block--result .result_txt span {
  display: block;
  border: 4px solid #a9a33e;
  padding: 8px;
}
.urunai .block--result.load {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.urunai.result .ph {
  margin-top: 0;
  -webkit-animation: hurueru 0.1s infinite;
  animation: hurueru 0.1s infinite;
}
.urunai.result .ph.load {
  -webkit-animation: none;
  animation: none;
}
.urunai.top .crystal {
  -webkit-animation: spin 8s linear infinite,marble 30s linear infinite;
  -moz-animation: spin 8s linear infinite,marble 30s linear infinite;
  -ms-animation: spin 8s linear infinite,marble 30s linear infinite;
  animation: spin 8s linear infinite,marble 30s linear infinite;
}
@keyframes marble {
  0% {
    background-position: 20px 20px, 20px 20px, 20px 20px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px;
  }
}
@-webkit-keyframes marble {
  0% {
    background-position: 20px 20px, 20px 20px, 20px 20px;
  }
  50% {
    background-position: 500px 500px, 100px 200px, -100px 150px;
  }
  100% {
    background-position: 500px 1000px, 200px 400px, -100px 300px;
  }
}
@-webkit-keyframes hurueru {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(2px, 2px) rotateZ(1deg);
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(0px, 2px) rotateZ(0deg);
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@keyframes hurueru {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(2px, 2px) rotateZ(1deg);
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(0px, 2px) rotateZ(0deg);
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* faq
------------------------------ */
.page--faq .section-tit {
  font-size: 30px;
}
.tit--category {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
}
.searchBox {
  position: relative;
  width: 60%;
  margin: 0 auto 40px;
}
.searchBox input[type="submit"] {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #999;
  background: transparent;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  z-index: 2;
  font-family: FontAwesome;
}
.list--faq {
  margin: 0 0 40px;
}
.list--faq li {
  border-top: 1px solid #ccc;
}
.list--faq li:last-child {
  border-bottom: 1px solid #ccc;
}
.list--faq a {
  position: relative;
  display: block;
  padding: 25px 5% 27px 0;
}
.list--faq a:hover {
  padding-left: 1%;
}
.list--faq .tit {
  padding-left: 20px;
}
.list--faq .txt {
  margin: 0;
  padding-left: 20px;
  line-height: 1.4;
}
.list--faq .icon--q {
  margin-right: 5px;
  float: left;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  color: #6f8aa6;
}
.block--faq-detail {
  margin: 0 0 40px;
  padding: 25px;
  border: 1px solid #ccc;
}
.block--faq-detail dt {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}
.block--faq-detail dt .txt {
  margin: 0;
  padding-left: 40px;
}
.block--faq-detail dt .category {
  display: inline-block;
  margin: 0 0 20px;
  padding: 1px 8px 0;
  font-size: 12px;
  background: #eee;
  color: #999;
  border-radius: 20px;
}
.block--faq-detail dd .txt {
  margin: 0;
  padding-left: 40px;
  font-size: 16px;
}
.block--faq-detail span[class^="icon--"] {
  float: left;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
}
.block--faq-detail .icon--q {
  color: #fff;
  background: #6f8aa6;
}
.block--faq-detail .icon--a {
  color: #6f8aa6;
  background: rgba(111, 138, 166, 0.2);
}
.page--faq .section--detail .block--contact {
  margin: 40px 0 0 ;
  text-align: center;
}
.page--faq .section--detail .block--contact a {
  color: #6f8aa6;
}
.page--faq .section--detail .block--contact .fa {
  color: #6f8aa6;
}
/*  4.8 questionnaire
------------------------------ */
.page--questionnaire .section-tit {
  font-size: 30px;
  text-align: left;
}
.form--post {
  margin: 0 0 40px;
}
.form--post + .txt--sub {
  text-align: center;
}
.icon--required:after {
  margin-left: 5px;
  content: '※必須';
  color: #c00;
  font-weight: bold;
}
/*  4.8 radio
------------------------------ */
.page--radio .section--detail .txt {
  text-align: center;
  margin-bottom: 30px;
}
.page--radio .block--next_theme {
  width: 80%;
  margin: 40px auto 0;
  padding: 30px;
  border: 1px solid #ddd;
  text-align: center;
}
.page--radio .block--next_theme .theme {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 18px;
}
.page--radio .block--next_theme .theme span {
  display: block;
  font-size: 12px;
}
.page--radio .block--next_theme .next {
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-style: italic;
  color: #999;
}
/*  4.8 support
------------------------------ */
.support .txt {
  margin: 0 0 10px;
}
.support .section-tit {
  font-size: 30px;
}
.support .list--support dt {
  color: inherit;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.support .list--support dd {
  padding: 0 0 30px;
}
.support .list--support dd a {
  color: #6f8aa6;
}
.support .list--support .txt {
  margin: 0 0 10px;
}
.support .txt-list {
  padding-left: 1.5em;
}
.support .txt-list li {
  margin: 0 0 10px;
}
.support .terms-list li {
  margin: 0 0 10px;
}
.list--sub {
  font-size: 11px;
  padding-left: 1em;
  margin: 0 0 40px;
}
.list--sub li {
  margin: 0 0 5px;
  text-indent: -1em;
}
/*  error
------------------------------ */
/*  QA
------------------------------ */
.page--qa {
  background: #F4FBFF;
}
.page--qa .center {
  text-align: center;
}
.page--qa .logo {
  width: 300px;
  margin: 0 auto 30px;
}
.page--qa .section--list {
  /*
	width: 60%;
*/
}
.page--qa .mainLead {
  font-size: 22px;
  margin: 0 0 40px;
  text-align: center;
}
.page--qa .block--area .btn {
  margin: 0 0 60px;
}
.qa_attentionList {
  padding: 30px;
  background: #f8f8f8;
  margin: 0 0 60px;
}
.qa_attentionList .qa_attentionTit {
  font-size: 20px;
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
}
.qa_attentionList .qa_attentionTxt {
  font-size: 20px;
  text-align: center;
}
.qa_attentionList ul li {
  margin: 0 0 5px;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.qa_attentionList ul li:last-child {
  margin: 0 0 5px;
}
.list--qa li:first-child {
  border-top: 1px solid #ccc;
}
.list--qa li a {
  display: block;
  padding: 25px 60px 25px 25px;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.list--qa li a:hover {
  background: #F8F8F8;
  padding: 25px 70px 25px 35px;
}
/* icon
------------------------------ */
.list--qa li a:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  z-index: 0;
  transition: all 0.3s;
}
.list--qa li a:hover:after {
  right: 25px;
}
.list--qa li .tit {
  font-size: 18px;
  /*
    padding: 0 0 0 30px;
    text-indent: -30px;
*/
}
.list--qa li .date {
  color: #aaa;
  text-align: right;
}
.list--qa li .name {
  text-align: right;
}
.list--qa li .qnum {
  font-size: 22px;
}
/*  QAArea
------------------------------ */
.qaArea {
  background: #F4FBFF;
}
.qaArea .logo {
  width: 300px;
  margin: 0 auto 30px;
}
.qaArea .section--list {
  width: 60%;
}
.qaArea .redTxt {
  font-size: 18px;
  font-weight: bold;
}
.qaArea .titArea .tit {
  font-size: 18px;
  padding: 0 0 0 30px;
  text-indent: -30px;
}
.qaArea .titArea .Txt {
  text-align: right;
}
.qaArea .txt {
  padding: 0 0 0 30px;
  text-indent: -30px;
  font-size: 17px;
}
.block_qa {
  background: #fff;
  padding: 60px;
}
.block_qa .q::before {
  content: 'Q.';
  color: #333333;
  text-transform: inherit;
  margin: 0 5px 0 0;
  font-weight: bold;
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  vertical-align: text-bottom;
}
.block_qa .a::before {
  content: 'A.';
  color: #333333;
  text-transform: inherit;
  margin: 0 10px 0 0;
  font-size: 18px;
  font-weight: bold;
}
.block--qa.waku {
  padding: 1em;
  border: solid 1px #00000040;
}
/*  edit
------------------------------ */
.page--qa .edit {
  margin: 0 0 60px;
}
.page--qa .edit .rule {
  margin: 0 0 5px;
  color: #ff0000;
}
.block_qa .form--post {
  margin: 0;
}
.block_qa .form--post dt {
  margin: 0 0 1em;
}
.block_qa .form--post dd:last-child {
  margin: 0;
}
.block_qaArea {
  background: #F4FBFF;
  padding: 0;
}
.block_qa-qArea {
  background: #fff;
  padding: 60px;
  border-radius: 5px;
  margin: 0 0 40px;
}
.block_qa-aArea {
  background: #dfebf2;
  padding: 60px;
  margin: 0 0 40px;
  border-radius: 5px;
}
.block--pager--qaArea {
  text-align: center;
}
.block--pager--qaArea li {
  position: relative;
  display: inline-block;
  padding: 0.6em;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.block--pager--qaArea .left span {
  height: 2.4em;
  line-height: 2.3em;
}
.block--pager--qaArea .left span::before {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(/static/fcuru/cmn/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 45%;
  left: -30px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.block--pager--qaArea .left span:hover::before {
  left: -40px;
}
.block--pager--qaArea .right span {
  height: 2.4em;
  line-height: 2.3em;
}
.block--pager--qaArea .right span::before {
  content: '';
  display: block;
  width: 26px;
  height: 7px;
  background: url(/static/fcuru/cmn/arrow.png) no-repeat 50% 50%;
  background-size: 100%;
  position: absolute;
  top: 45%;
  right: -30px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.block--pager--qaArea .right span:hover::before {
  right: -40px;
}
.page--questionnaire .block_qa_questionnaire br {
  display: none;
}
.page--questionnaire .block_qa_questionnaire .qa_attentionList {
  margin: 0 0 20px;
}
.page--questionnaire .block_qa_questionnaire .nameTxt {
  font-weight: bold;
  text-decoration: underline;
}
.page--questionnaire .block_qa_questionnaire .nameTxt a:hover {
  color: #6495ed;
}
.postBox {
  width: 960px;
  margin: auto;
  padding: 10% 0 0;
}
.postBox .mainTit {
  font-weight: 500;
  font-size: 27px;
  padding: 0 0 25px 0;
  margin: 0 0 35px 0;
  border-bottom: 1px solid #000;
}
.postBox .red {
  color: #ff0000;
  margin: 0 0 10px 0;
  font-size: 14px;
}
.postBox .lead {
  font-size: 14px;
  margin: 0 0 30px 0;
}
.postBox .img {
  width: 30%;
  margin: 0 0 20px 0;
}
.postBox .tit {
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: bold;
}
.postBox table {
  width: 100%;
}
.postBox table .tit {
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px 0;
}
.postBox table a {
  width: 100%;
  display: block;
  transition: 0.4s;
  font-size: 16px;
  font-weight: normal;
  padding: 20px 0;
}
.postBox table a:hover {
  transform: translate(1%);
  -webkit-transform: translate(1%);
  -ms-transform: translate(1%);
  transition: 0.4s;
}
.postBox .txtArea .txt {
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 1.8;
}
.postBox .txtArea .minTxt {
  font-size: 12px;
  margin: 0 0 30px 0;
  line-height: 1.8;
}
.postBox input,
.postBox button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.postBox input[type='submit'],
.postBox input[type='button'],
.postBox label,
.postBox button,
.postBox select {
  cursor: pointer;
}
.postBox .btn .main {
  background: #000;
  width: 300px;
  display: block;
  margin: 0 auto 20px;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  border-radius: 100px;
  border: 2px solid #000;
}
.postBox .btn .main:hover {
  transition: 0.4s;
  color: #000;
  background: none;
}
.postBox .btn .sub {
  background: none;
  display: block;
  margin: auto;
  color: #000;
  padding: 15px;
  font-size: 14px;
  border-radius: 100px;
  border: 2px solid #000;
}
.postBox .btn .sub:hover {
  background: #000;
  transition: 0.4s;
  margin: auto;
  color: #fff;
  border: 2px solid #000;
}
.postBox .commentArea {
  border-radius: 0.3em;
  border: 1px solid #ddd;
  padding: 30px 20px;
  margin: 0 0 30px 0;
}
.postBox textarea {
  font-size: 13px;
}
