/* ---------------------------------------
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 discography
	4.5 ticket
	4.6 blog
	4.7 movie
	4.8 faq
	4.9 support
	4.10 questioonnaire
  4.11 goods
-------------------------------------------- */
/* @import url(../../../../../fonts.googleapis.com/earlyaccess/notosansjapanese.css); */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
.sf-toolbar {
  display: none!important;
}
/* 開発用ツールバー非表示 */
.sp {
  display: none !important;
}
/* 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 {
  max-width: 100%;
}
::selection {
  background: #222;
  color: #fff;
}
::-moz-selection {
  background: #222;
  color: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  /* -webkit-transition: all 0.3s ease;
	transition: all 0.3s ease; */
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.btn {
  text-align: center;
  margin: 10px 0;
}
.btn--main {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  height: 48px;
  line-height: 48px;
  border-radius: 100px;
  padding: 0 1.5em;
  cursor: pointer;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  border: none;
  background: #886e2c;
}
.btn--main:hover {
  background: #886e2c;
  opacity: .6;
}
.btn--sub {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  height: 48px;
  line-height: 48px;
  border-radius: 100px;
  padding: 0 1.5em;
  cursor: pointer;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent;
  color: #886e2c;
  border: 1px solid;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
/* 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: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #666;
  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: #886e2c;
  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: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #666;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #886e2c;
  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;

	select {
		.input-base-style;
		padding-right: 1.5em;
	}
	&::after {
		.chevron-base-style(@deg:-45deg, @right:0.75em);
	}
}
*/
/* checkbox */
/*
.form__checkbox {
	.check-base-style;

	label p {
		padding-left: 1.6em;
	}
	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%;
	}
	label p::after {
		content: '';
		display: inline-block;
		width: 0.8em;
		height: 0.4em;
		border: 2px solid @background-color;
		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;
	}
	:checked ~ p::before {
		background: @primary-color;
		border-color: @primary-color;
	}
	:checked ~ p::after {
		top: 50%;
		opacity: 1;
	}
}
*/
/* radio */
/*
.form__radio {
	.check-base-style;

	label p {
		padding-left: 1.6em;
	}
	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%;
	}
	:checked ~ p::before {
		border-color: @primary-color;
		border-width: 0.3em;
	}
}
*/
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  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 #e8e6e0;
}
.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: #886e2c;
  border-color: #886e2c;
}
.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 v0
------------------------------ */
/* 全体 */
[class^="form--"] dl {
  margin: 0 0 40px;
}
[class^="form--"] dt {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  text-align: left;
  color: #888;
}
[class^="form--"] dd {
  margin: 0 0 30px;
}
[class^="form--"] .btn {
  margin: 20px 0;
}
.form--post .icon--required {
  display: inline-block;
  position: relative;
}
.form--post .icon--required::before {
  content: '必須';
  display: inline-block;
  height: 16px;
  line-height: 16px;
  margin-left: 10px;
  padding: 0 6px;
  background: #d0203f;
  color: #fff;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
  top: -1px;
}
.form--confirm .ph {
  margin: 0 auto;
}
/* form要素共通 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
.form--post label {
  cursor: pointer;
}
.form--post [class^="form__radio"] label,
.form--post [class^="form__checkbox"] label {
  margin: 0 30px 0 0;
  line-height: 2em;
}
.form--post input[type="text"],
.form--post input[type="tel"],
.form--post input[type="email"],
.form--post input[type="password"],
.form--post input[type="number"],
.form--post textarea,
.form--post select {
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  font-size: 15px;
  line-height: 1.8;
  background: #fff;
  transition: all .3s ease;
  border: 1px solid #e8e6e0;
}
.form--post input[type="text"]:hover,
.form--post input[type="tel"]:hover,
.form--post input[type="email"]:hover,
.form--post input[type="password"]:hover,
.form--post input[type="number"]:hover,
.form--post textarea:hover,
.form--post select:hover {
  border: 1px solid #886e2c;
}
/* selectbox */
.form--post [class^="form__selectbox"] {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.form--post [class^="form__selectbox"]:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #666;
  border-top: 1px solid #666;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.form--post select {
  width: auto;
  padding-right: 35px;
  cursor: pointer;
}
.form--post select::-ms-expand {
  display: none;
}
/* selectbox（年月日）*/
.form--post .select-year > li {
  display: inline-block;
  margin-right: 8px;
}
.form--post .select-year .form__selectbox {
  margin-right: 8px;
}
/* radio */
.form--post [class^="form__radio"] input[type="radio"] {
  -webkit-appearance: button;
  appearance: button;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  background-color: #e8e6e0;
  border-radius: 100%;
  vertical-align: -4px;
  position: relative;
  pointer-events: none;
}
.form--post [class^="form__radio"] input[type="radio"]:checked:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #886e2c;
  border-radius: 6px;
  position: absolute;
  top: 4px;
  left: 4px;
}
/* checkbox */
.form--post input[type="checkbox"] {
  appearance: button;
  -webkit-appearance: button;
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  position: relative;
  vertical-align: -4px;
  background: #e8e6e0;
}
.form--post input[type="checkbox"]:checked:after {
  content: "";
  width: 8px;
  height: 14px;
  border-right: 3px solid #886e2c;
  border-bottom: 3px solid #886e2c;
  position: absolute;
  top: 0px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* tel */
.form--post input[type="tel"] {
  width: auto;
}
/* number（年齢） */
.form--post input[type="number"].form__number--age {
  width: 60px;
  margin-right: 8px;
}
/* text（郵便番号） */
.form--post input[type="text"].form__text--postal-code {
  width: auto;
  margin-left: 8px;
}
/* text（会員番号） */
.form--post input[type="text"].form__text--member-numb {
  width: auto;
}
/* textarea */
.form--post textarea {
  display: block;
}
/* 2.3 list
------------------------------ */
.list-base-style li {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  margin: 0;
}
.list-base-style li:last-child {
  margin-bottom: 0;
}
.list-base-style a {
  display: block;
  color: inherit;
  position: relative;
}
.list-base-style a:hover,
.list-base-style a:hover .date,
.list-base-style a:hover .category {
  color: #886e2c;
}
.list-base-style .tit {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.list-base-style .date {
  display: inline-block;
  margin: 0 0 8px;
}
.list-base-style .category {
  display: inline-block;
}
.list-base-style .thumb {
  line-height: 0;
}
.list-base-style .thumb img {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.list--information li {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  margin: 0;
}
.list--information li:last-child {
  margin-bottom: 0;
}
.list--information a {
  display: block;
  color: inherit;
  position: relative;
}
.list--information a:hover,
.list--information a:hover .date,
.list--information a:hover .category {
  color: #886e2c;
}
.list--information .tit {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.list--information .date {
  display: inline-block;
  margin: 0 0 8px;
}
.list--information .category {
  display: inline-block;
}
.list--information .thumb {
  line-height: 0;
}
.list--information .thumb img {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.list--information .tit {
  overflow: hidden;
}
.list--information .category {
  margin: 0 0 0 10px;
}
.list--information.list--schedule .category {
  margin-left: 0;
}
.list--information.list--schedule .day {
  font-size: 18px;
  font-family: 'YakuHanJP', '-apple-system', "Roboto-Regular", 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  color: #222;
  margin: 0 0 0 6px;
  letter-spacing: 0.01em;
}
.list--information.list--schedule .date__txt {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.list--contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list--contents li {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  margin: 0;
}
.list--contents li:last-child {
  margin-bottom: 0;
}
.list--contents a {
  display: block;
  color: inherit;
  position: relative;
}
.list--contents a:hover,
.list--contents a:hover .date,
.list--contents a:hover .category {
  color: #886e2c;
}
.list--contents .tit {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.list--contents .date {
  display: inline-block;
  margin: 0 0 8px;
}
.list--contents .category {
  display: inline-block;
}
.list--contents .thumb {
  line-height: 0;
}
.list--contents .thumb img {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.list--contents li {
  width: 32%;
  margin: 0 0 50px;
  margin-right: 2%;
}
.list--contents li:nth-child(3n) {
  margin: 0;
}
.list--contents .thumb {
  margin: 0 0 15px;
  border-radius: 10px;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.list--contents a:hover .thumb {
  transform: scale(1.03);
}
.list--contents .thumb img {
  background: #E8E6E0 no-repeat center;
  background-image: url(../../../tomomiitano/fanclub/common/thumb_default.png);
  /* JS追加後削除 */
  background-size: cover;
  /* transform: rotate(0deg);
		mix-blend-mode: overlay; */
  border-radius: 10px;
}
.list--contents .category {
  margin: 0 0 10px;
}
/* menu */
.list--menu {
  border: 0.5px solid rgba(150, 150, 150, 0.5);
  border-left: none;
  border-right: none;
  padding: 0 0 0 5%;
  margin: 0 -5.5% 30px -5.5%;
}
.list--menu li {
  padding-right: 5%;
  position: relative;
}
.list--menu li:not(:last-child) {
  border-bottom: 0.5px solid rgba(150, 150, 150, 0.5);
}
.list--menu span {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1em 0;
  position: relative;
  padding-right: 2em;
}
.list--menu a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #666;
  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);
}
.list--menu label {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1em 0;
  position: relative;
  padding-right: 50px;
}
.list--menu .menu__status {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 0.5;
}
.date,
.category {
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.category:before {
  content: '―';
  margin-right: 10px;
  color: #999;
  font-size: 10px;
  position: relative;
}
.thumb {
  line-height: 0;
  position: relative;
}
.new .thumb:before {
  content: 'New';
  display: block;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-weight: 300;
  background: #d0203f;
  color: #fff;
  height: 40px;
  width: 40px;
  line-height: 44px;
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 11px;
  text-align: center;
  border-radius: 100px;
  letter-spacing: 0.1em;
}
.list--information {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list--information li {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  position: relative;
  padding: 15px 0;
}
.list--information li a {
  display: block;
  color: #222;
}
.list--information li a:hover .thumb {
  transform: scale(1.03);
}
.list--information .thumb {
  float: left;
  width: 26%;
  margin-right: 25px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.list--information .thumb img {
  width: 100%;
  background: #E8E6E0 no-repeat center;
  background-image: url(../../../tomomiitano/fanclub/common/thumb_default.png);
  /* JS追加後削除 */
  background-size: cover;
  border-radius: 10px;
}
.list--information .list__txt {
  overflow: hidden;
}
.list--information .tit {
  line-height: 1.75;
}
.list--information .date--event {
  font-size: 18px;
  margin: 0 0 4px;
}
.list--information .date--event span {
  margin: 0 0 0 6px;
  font-size: 12px;
  position: relative;
  top: -3px;
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
}
.block--pager li {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 100px;
  margin: 0 8px;
  color: #fff;
  font-size: 13px;
  vertical-align: bottom;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.block--pager li a {
  display: block;
  color: #886e2c;
}
.block--pager li a:hover {
  background: #886e2c;
  color: #fff;
}
.block--pager li a:hover::before,
.block--pager li a:hover::after {
  opacity: 0.6;
}
.block--pager .pager__item--current {
  background: #886e2c;
}
.block--pager .pager__item--newer a::before,
.block--pager .pager__item--older a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-left: 1px solid #886e2c;
  border-top: 1px solid #886e2c;
  position: absolute;
  top: 9px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.block--pager .pager__item--newer a:before {
  left: 14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.block--pager .pager__item--older a:after {
  right: 14px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* back */
.detail__btn {
  margin: 80px 0 0;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  text-align: center;
}
.detail__btn a {
  position: relative;
  color: #222;
}
.detail__btn a::before {
  content: '';
  display: inline-block;
  width: .6em;
  height: .6em;
  border: 1px solid #222;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: -15px;
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.detail__btn a:hover {
  opacity: .6;
}
.detail__btn a::after {
  content: 'Back';
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  letter-spacing: 0.2em;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  height: 100%;
  min-height: 100%;
  min-width: 1000px;
  color: #222;
  font-family: YakuHanJP, -apple-system, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-variant-ligatures: none;
  line-height: 1.8;
  word-break: break-word;
  -webkit-text-size-adjust: none;
  background: #fff;
}
.wrap {
  position: relative;
  /* transition: all 1s ease;
	-webkit-transition-delay: 1.2s;
	transition-delay: 1.2s; */
  min-height: 100%;
  padding-top: 60px;
  padding-bottom: 254px;
}
section {
  width: 900px;
  margin: 0 auto;
  padding: 70px 0 80px;
  position: relative;
}
.section--list {
  padding-bottom: 160px;
}
.section--detail {
  width: 800px;
}
.section--detail .txt .ph {
  margin: 20px 0;
  line-height: 0;
}
.section--detail .txt img {
  max-height: 600px;
}
a {
  color: #d0203f;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
a:hover {
  text-decoration: none !important;
}
button,
textarea,
select,
img {
  outline: none;
}
/* 3.2 header
------------------------------ */
header {
  width: 100%;
  min-width: 1130px;
  position: fixed;
  z-index: 1;
  text-align: center;
  background: #fff;
  z-index: 9998;
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid transparent ;
}
header a {
  display: block;
  color: #000;
}
header h1 {
  display: inline-block;
  margin: 0 10px 0 0 ;
}
header h1 span {
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  margin: 0 0 25px;
  letter-spacing: 0.025em;
  display: none;
}
header .logo-mark {
  width: 26px;
  position: relative;
  top: 6px;
}
header .logo-mark a:hover,
header .item--fc-logo a:hover {
  opacity: .6;
}
header .logo-mark a::after,
header .item--fc-logo a::after {
  display: none;
}
header .nav--free {
  margin-right: 15px;
}
header .nav--login {
  margin-right: 10px;
}
header .nav--base,
header .nav--sns {
  display: inline-block;
  line-height: 1;
}
header .nav--base li,
header .nav--sns li {
  display: inline-block;
  margin: 0 5px;
  font-size: 14px;
}
header .item--fc-logo img {
  width: 40px;
  position: relative;
  top: 6px;
}
header .nav--sns li {
  font-size: 16px;
}
header .nav--member a {
  color: #886e2c;
}
header .nav--member a:after,
header .nav--login a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #886e2c;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
header .nav--login a {
  font-size: 11px;
  color: #886e2c;
  letter-spacing: 0.15em;
}
header .nav--sns .icon--line {
  position: relative;
  top: 4px;
}
header .nav--sns .icon--line svg {
  width: 16px;
}
header .nav--sns a:hover {
  color: #886e2c;
}
header .nav--sns .icon--line a:hover svg {
  fill: #886e2c;
}
header {
  border-color: #e8e6e0;
}
.page--home.scrolled header {
  border-color: #e8e6e0;
}
.page--home header {
  border-color: #fff;
}
header {
  top: 0;
}
.page--home header {
  top: -60px;
}
.page--home.load-finish header {
  top: 0;
}
/* 3.3 footer
------------------------------ */
footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 50px 0;
  text-align: center;
  background: #E8E6E0;
}
footer .list--sub-bnr {
  margin: 0 0 30px;
  line-height: 0;
}
footer .list--sub-bnr li {
  width: 15%;
  display: inline-block;
  margin: 0 1%;
}
footer .list--sub-bnr li a {
  display: block;
}
footer .list--sub-bnr li img {
  border-radius: 10px;
}
footer .list--support-bnr {
  margin: 0 0 30px;
  line-height: 0;
}
footer .list--support-bnr li {
  width: 100px;
  display: inline-block;
  margin: 0 20px;
}
footer .list--support-bnr li a {
  display: block;
}
footer .list--support-bnr li a:hover {
  opacity: .6;
}
footer .nav--support {
  margin: 0 0 30px;
}
footer .nav--support li {
  display: inline-block;
  margin: 0 12px;
}
footer .nav--support li a {
  font-size: 12px;
  display: block;
  color: #333;
}
footer .nav--support li a:hover {
  opacity: .6;
}
footer .copyright {
  color: #aaa;
  font-size: 10px;
}
/* 4.0 page
============================== */
/*
.loading{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #fff;
	background-size: 100%;
	-webkit-transition: 1s ease 1s;
	transition: 1s ease 1s;
}
.loading .loading--logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	-webkit-animation: BlurRescission 1.6s ease forwards;
	-moz-animation: BlurRescission 1.6s ease forwards;
	animation: BlurRescission 1.6s ease forwards;
}
@-webkit-keyframes BlurRescission {
    0%{	-webkit-filter: blur(30px); filter: blur(30px); }
    50%{ -webkit-filter: blur(15px); filter: blur(15px); }
    100%{ -webkit-filter: blur(0); filter: blur(0); }
}
@-moz-keyframes BlurRescission {
    0%{	-webkit-filter: blur(30px); filter: blur(30px); }
    50%{ -webkit-filter: blur(15px); filter: blur(15px); }
    100%{ -webkit-filter: blur(0); filter: blur(0); }
}
@keyframes BlurRescission {
    0%{	-webkit-filter: blur(30px); filter: blur(30px); }
    50%{ -webkit-filter: blur(15px); filter: blur(15px); }
    100%{ -webkit-filter: blur(0); filter: blur(0); }
}
.loading--completed {opacity: 0;}
*/
.page--info.category-News .nav__item--news a::after,
.page--info.category-1 .nav__item--news a::after,
.page--info.category-Live .nav__item--live a::after,
.page--info.category-3 .nav__item--live a::after,
.page--info.category-Media .nav__item--media a::after,
.page--info.category-5 .nav__item--media a::after,
.page--info.category-Ticket .nav__item--ticket a::after,
.page--info.category-10 .nav__item--ticket a::after,
.page--disco .nav__item--discography a::after,
.page--profile .nav__item--profile a::after,
.page--blog .nav__item--staffroom a::after,
.page--special .nav__item--special a::after,
.page--goods .nav__item--goods a::after
 {
  -moz-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  opacity: 1;
}
.center {
  text-align: center;
}
.bold {
  font-weight: 600;
}
.nav--base li {
  position: relative;
}
.nav--base a {
  display: block;
  color: #222;
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-weight: 300;
}
.nav--base a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #222;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.nav--base a:hover:after {
  -moz-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  opacity: 1;
}
.block--share {
  float: right;
  color: #666;
}
.block--share li {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-right: 10px;
  line-height: 1.5;
}
.block--share li:last-chird {
  margin: 0;
}
.block--share li a {
  color: #666;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.block--share li a:hover {
  color: #886e2c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.block--share .share {
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-size: 12px;
}
.block--share .lineIco {
  vertical-align: sub;
}
.block--share .lineIco svg {
  fill: #666;
}
.block--share .lineIco a:hover svg {
  fill: #886e2c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.ph {
  text-align: center;
  position: relative;
}
.dummy {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
/*  4.1 parts
------------------------------ */
/* utility */
.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 0 0 40px;
}
.iframe-wrap iframe,
.iframe-wrap object,
.iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* typography */
.section-tit {
  color: inherit;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.2em;
  letter-spacing: 0.025em;
  position: relative;
  margin: 0 0 60px;
  text-align: center;
  font-size: 26px;
}
body:not(.page--support):not(.page--faq):not(.page--questionnaire) .section-tit {
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  font-size: 44px;
}
.page--home .section-tit {
  line-height: 1em;
}
.txt--lead {
  color: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.block--category {
  margin: -30px 0 60px;
  text-align: center;
}
.block--category li {
  display: inline-block;
  margin: 0 30px 0 0;
  position: relative;
}
.block--category li:last-child {
  margin: 0 ;
}
.block--category li a {
  display: block;
  line-height: 1;
  color: #222;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
}
.block--category li a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #101010;
  opacity: 0;
  transition: all .3s;
}
.block--category li.current a::after,
.block--category li a:hover::after {
  -moz-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  opacity: 1;
}
.no-data {
  width: 100% !important;
  text-align: center;
  color: #666;
}
/* 4.2 home
------------------------------ */
.bgSwitch {
  width: 100% !important;
  height: 100%!important;
  background-size: cover!important;
  background-position: top center!important;
  transition: all 1s ease;
}
body.scrolled .wrap > .bgSwitch {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transform: scale(1.05);
}
.page--home {
  /* scroll */
  /*
	.section--fanclub {
		background: #886e2c url(../static/tomomiitano/fanclub/artist_photo/ph_keyvisual_fc.jpg) no-repeat center fixed;
		background-size: cover;
		background-blend-mode: multiply;
		border-radius: 10px;
	}
	*/
}
.page--home::before {
  content: '';
  position: fixed;
  height: 120px;
  width: 100%;
  top: -120px;
  background: #fff;
  left: 0;
  z-index: 1;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.page--home .scroll {
  width: 100%;
  height: 8vh;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0%;
  z-index: 0;
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  pointer-events: none;
  display: none;
}
.page--home .load-finish .scroll {
  opacity: 1;
}
.page--home .scroll:after {
  content: " ";
  display: block;
  width: 1px;
  height: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  background: #212121;
  animation: scroll 1.2s linear 0s infinite;
}
.page--home .scrolled .scroll {
  opacity: 0;
}
@keyframes scroll {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  40% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  45% {
    height: 100%;
    bottom: 0px;
    top: auto;
  }
  50% {
    height: 100%;
    bottom: 0px;
    top: auto;
  }
  90% {
    height: 0%;
    bottom: 0px;
    top: auto;
  }
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
}
.page--home header {
  transition: all .8s ease;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.page--home section {
  position: relative;
  width: auto;
  padding: 40px 8%;
  border-bottom: 1px solid #e8e6e0;
}
.page--home .area--base {
  background: #fff;
}
.page--home .section-tit {
  position: relative;
  text-align: left;
  margin: 10px 0 15px;
}
.page--home .list__more {
  position: absolute;
  top: 10px;
  right: 0;
}
.page--home .list__more a {
  letter-spacing: 0.15em;
  font-size: 14px;
  display: block;
  color: #222;
  position: relative;
  padding: 0 12px 0 0;
  line-height: 2;
  letter-spacing: 0.025em;
}
.page--home .list__more a:hover {
  opacity: .6;
}
.page--home .list__more a:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222;
  border-top: 1px solid #222;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page--home .nav__item--home {
  display: none!important;
}
.page--home .section--key-visual {
  padding: 0;
  text-align: center;
  height: 100vh;
  margin-top: -60px;
  min-height: 600px;
  border: none;
}
.page--home .section--key-visual .key-visual__nav {
  position: absolute;
  bottom: -200px;
  left: 2.5%;
  width: 95%;
  opacity: 0;
  padding: 30px 0;
  background: #fff;
  border-radius: 10px 10px 0 0 ;
  transition: all 1s ease;
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
  display: none;
}
.page--home .section--key-visual .key-visual__nav {
  opacity: 1;
  bottom: 0;
}
.page--home .section--key-visual .block--expire {
  display: block;
  text-align: center;
  position: absolute;
  top: 125px;
  left: 35px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.page--home .section--key-visual .block--expire .tit {
  color: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
}
.page--home .section--key-visual .block--expire .txt {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  line-height: 2em;
  margin: 0 auto 20px;
}
.page--home .section--key-visual .block--expire .txt span {
  font-weight: bold;
  margin: 0 5px;
}
.page--home .section--key-visual h1 {
  width: 100%;
  position: absolute;
  bottom: -5px;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}
.page--home .section--key-visual h1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, rgba(118, 110, 90, 0) 0%, rgba(118, 110, 90, 0.65) 100%);
  background: linear-gradiSent(to bottom, rgba(118, 110, 90, 0) 0%, rgba(118, 110, 90, 0.65) 100%);
  opacity: 0;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}
.page--home .section--key-visual h1 img {
  width: 100%;
  position: relative;
  bottom: -200px;
  transition: all .8s ease;
}
.page--home .section--key-visual .nav--base li {
  display: inline-block;
  margin: 0 10px;
}
.page--home .section--key-visual .nav--base li a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.page--home .section--key-visual .nav--free a {
  color: #000;
}
.page--home .section--key-visual .nav--member {
  display: inline-block;
}
.page--home .section--key-visual .nav--member a {
  color: #886E2C;
}
.page--home .section--key-visual .nav--member .item--fc-logo {
  position: relative;
  top: 12px;
}
.page--home .section--key-visual .nav--member .item--fc-logo img {
  width: 50px;
}
.page--home .section--key-visual .nav--login {
  display: inline-block;
  margin: 0 0 20px;
}
.page--home .section--key-visual .nav--login li {
  margin: 0 10px;
}
.page--home .section--key-visual .nav--login li:last-child {
  margin-right: 0;
}
.page--home .section--key-visual .nav--login li a {
  color: #886E2C;
  padding: 0 16px;
  line-height: 26px;
  border: 1px solid;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  display: inline-block;
}
.page--home .section--key-visual .nav--sns li {
  display: inline-block;
  margin: 0 12px;
  line-height: 1;
}
.page--home .section--key-visual .nav--sns li.icon--line {
  position: relative;
  top: 4px;
  width: 16px;
}
.page--home .section--key-visual .nav--sns li a {
  color: #000;
  font-size: 16px;
  font-weight: normal;
}
.page--home .section--key-visual .nav--sns li svg {
  width: 100%;
}
.page--home .section--key-visual .nav--sns li svg * {
  fill: #000;
}
.page--home .section--bnr {
  padding: 60px 0 40px;
  z-index: 1;
  background: #fff;
}
.page--home .section--bnr .bnr {
  margin: 0 0 20px;
}
.page--home .section--bnr li a {
  border-radius: 10px;
  overflow: hidden;
}
.page--home .section--bnr li a img {
  background: no-repeat center;
  background-size: cover;
}
.page--home .section--youtube .list--youtube {
  /*
		display: flex;
		display: webkit-flex;
		justify-content: space-between;
		*/
}
.page--home .list--pickup {
  padding: 40px 8% 0;
  margin-bottom: -10px;
}
.page--home .list--pickup li {
  display: block;
  width: auto;
  text-align: center;
  margin: 0 0 5px;
}
.page--home .list--pickup li:last-child {
  margin: 0;
}
.page--home .list--pickup li a {
  display: inline-block;
  color: #222;
  padding: 13px 25px 13px 0;
  position: relative;
}
.page--home .list--pickup li a:hover {
  color: #886e2c;
}
.page--home .list--pickup li a:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-top: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 3px;
  top: 55%;
  margin-top: -6px;
}
.page--home .section--youtube .list--youtube li {
  float: left;
  width: 48%;
  padding-top: calc(26.4375%);
  margin: 15px 0;
  border-radius: 10px;
  overflow: hidden;
}
.page--home .section--youtube .list--youtube li:first-child {
  margin-right: 4%;
}
.page--home .section--youtube .list--youtube li iframe {
  background: #222;
  border-radius: 10px;
}
.page--home .area--member {
  color: #fff;
  padding: 60px 8%;
}
.page--home .section--fanclub .inner {
  width: 700px;
  margin: 0 auto;
}
.page--home .section--fanclub .fc-logo {
  width: 340px;
  margin: 0 auto 50px;
  line-height: 0;
}
.page--home .section--fanclub .fc-logo img {
  width: 100%;
}
.page--home .section--fanclub .txt {
  font-size: 16px;
  line-height: 2em;
  font-weight: 100;
  margin: 0 0 40px;
  letter-spacing: 0.15em;
}
.page--home .section--fanclub .login--vertical li .btn--main {
  padding: 22px 0 18px;
  line-height: .6;
}
.page--home .section--fanclub .login--vertical li .btn--main:hover {
  opacity: .6;
}
.page--home .section--fanclub .login--vertical li a span {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.page--home .section--fanclub .login--vertical li a:hover span {
  opacity: .6;
}
.page--home .section--fanclub .login--vertical li a::after,
.page--home .section--fanclub .login--vertical li a:hover::after {
  display: none;
}
.page--home .nav--login.login--vertical li {
  display: block;
}
.page--home .nav--login.login--vertical a {
  padding: 22px 0 18px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.15em;
}
.page--home .nav--login.login--vertical a i {
  font-size: 18px;
  position: relative;
  margin-right: 8px;
  top: 3px;
  line-height: 0;
}
.page--home .nav--login.login--vertical li:first-child a {
  width: 250px;
  background: #fff;
  color: #886e2c;
  font-size: 15px;
  font-weight: bold;
  border-radius: 100px;
  line-height: 1.1;
  height: 55px;
}
.page--home .section--fanclub .nav--login li:last-child a {
  color: #fff;
  font-size: 12px;
}
.page--home .section--fanclub .nav--login li:last-child a span {
  text-decoration: underline;
}
.page--home .section--photo {
  padding: 0;
  line-height: 0;
}
.page--home .list--information {
  display: flex;
  display: webkit-flex;
}
.page--home .list--information li {
  width: 48%;
  margin: 0;
}
.page--home .list--information .thumb {
  width: 40%;
}
.page--home .section--media .list--information .date--event {
  display: block;
}
.page--home .section--media .list--information .category {
  margin-left: 0;
}
.page--home .section--media .list--information .category:before {
  display: none;
}
.scrolled .section--bnr .list--status {
  transform: translateY(23px);
}
.load-finish.page--home::before {
  top: -60px;
}
.load-finish.page--home:not(.scrolled) .section--key-visual h1::before {
  opacity: 1;
}
.load-finish.page--home .section--key-visual h1 img {
  bottom: 0;
}
/* detail */
body:not(.page--faq) .section--detail .tit {
  color: inherit;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
body:not(.page--faq) .section--detail .txt-members {
  display: block;
  margin: 10px 0 0;
}
body:not(.page--faq) .section--detail .date {
  display: inline-block;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
  margin: 30px 0 60px;
}
body:not(.page--faq) .section--detail .date .new {
  color: #d0203f;
}
body:not(.page--faq) .section--detail .date--event {
  margin: 0 0 8px;
  color: #666;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 15px;
  color: #222;
}
body:not(.page--faq) .section--detail .block--share {
  margin: 23px 0 0;
}
/*  4.3 information
------------------------------ */
.page--info .list--link.list--chevron {
  margin: 0 auto 50px;
}
.page--info .list--link.list--chevron li {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.page--info .list--link.list--chevron li a {
  position: relative;
  color: #222;
}
.page--info .list--link.list--chevron li a::after {
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: -15px;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-top: 1px solid;
  position: absolute;
  top: 49%;
}
.page--info .section--detail h3 {
  font-size: 18px;
  font-weight: bold;
  color: #876e2c;
  margin: 0 0 30px;
  padding: 25px 0 20px;
  border-bottom: 1px solid #bcb091;
}
.page--info .section--detail h4 {
  border-left: 2px solid #876e2c;
  padding: 0 0 0 12px;
  margin: 32px 0 15px 0;
  font-size: 16px;
  font-weight: bold;
}
.page--info .section--detail .article > .article-heading + p,
.page--info .section--detail .article > h3:not(.article-subheading) + p,
.page--info .section--detail .article > .article-subheading + p,
.page--info .section--detail .article > h4:not(.article-subheading) + p {
  margin-top: 0 !important;
}
.page--info .section--detail .article-cover .article p:first-of-type {
  margin-top: 0 !important;
}
.page--info .section--detail iframe {
  height: 420px !important;
}
.category-Media .category:before,
.category-5 .category:before {
  display: none;
}
.txt-members {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  color: #886e2c;
  margin: 10px 0 0;
  font-size: 13px;
}
/*  4.4 discography
------------------------------ */
.page--disco .list--jacket {
  width: 50%;
  float: left;
}
.page--disco .list--jacket li {
  display: inline-block;
}
.page--disco .category::before {
  display: none;
}
.list--discography li {
  width: 28%;
  margin: 0 8% 50px 0;
}
.list--discography li:nth-child(3n) {
  margin: 0;
}
.list--discography .thumb {
  height: auto;
  position: relative;
}
.list--discography .date {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  letter-spacing: 0.2em;
  color: #666;
}
.list--discography .date span {
  margin-left: 10px;
}
.page--disco .section--detail .category {
  display: block;
}
.page--disco .section--detail .thumb {
  display: block;
  float: left;
  margin: 0 0 20px;
  position: relative;
}
.page--disco .section--detail .thumb img {
  width: 340px;
  height: auto;
  margin: 0 0 15px;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -9999px;
}
.page--disco .section--detail figcaption {
  text-align: center;
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.page--disco .section--detail .block--detail {
  padding: 0 0 0 50%;
}
.page--disco .section--detail .tit {
  margin: 0 0 10px;
}
.page--disco .section--detail .date {
  margin: 0 0 45px;
}
.page--disco .section--detail .date span {
  margin-left: 10px;
}
.page--disco .section--detail .area--disco-detail {
  margin: 0 0 40px;
}
.page--disco .section--detail .area--disco-detail .block--comment {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--track > li {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--track .tit {
  margin: 0 0 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.page--disco .section--detail .list--track {
  margin: 0 0 30px;
  list-style: none;
}
.page--disco .section--detail .list--track li {
  border: none;
  font-size: 13px;
  line-height: 1.5em;
  margin: 0 0 10px;
}
.page--disco .section--detail .list--track li span {
  width: 18px;
  display: inline-block;
  color: #886e2c;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
}
.page--disco .section--detail .list--track li:last-child {
  border-radius: 0;
}
.page--disco .section--detail .list--track li:nth-child(odd) {
  background: none;
}
.page--disco .section--detail .list--track li.discType {
  background: none;
  border-bottom: 1px solid;
  letter-spacing: 0.15em;
  padding: 0 0 9px;
}
.page--disco .section--detail .list--track li .tieup {
  margin-top: 2px;
  font-size: 10px;
  padding-left: 21px;
}
.page--disco .section--detail .block--review {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.page--disco .section--detail iframe {
  height: 260px !important;
}
/*  4.6 blog
------------------------------ */
.page--blog .section--detail .block--pager {
  position: static;
  text-align: inherit;
  padding: 25px 0 0;
  margin: 50px 0 0;
  border-top: 1px solid #e8e6e0;
}
.page--blog .section--detail .block--pager li {
  margin: 0;
  overflow: visible;
}
.page--blog .section--detail .block--pager a {
  font-size: 16px;
  color: #222;
  background: none;
  font-family: 'Josefin Sans', sans-serif;
}
.page--blog .section--detail .block--pager a:hover {
  opacity: .6;
  transform: none;
}
.page--blog .section--detail .block--pager .pager-link--next {
  text-align: left;
  width: 50%;
  float: left;
}
.page--blog .section--detail .block--pager .pager-link--prev {
  text-align: right;
  width: 50%;
  float: right;
}
.page--blog .section--detail .block--pager .pager-link--next a::before,
.page--blog .section--detail .block--pager .pager-link--prev a::after {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid #222;
  border-top: none;
  border-right: none;
  position: relative;
  transition: all .3s ease;
  -webkit-tansition: all .3s ease;
}
.page--blog .section--detail .block--pager .pager-link--next a::before {
  margin: 0 10px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 3px;
}
.page--blog .section--detail .block--pager .pager-link--prev a::after {
  margin: 0 0 0 10px;
  right: 3px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/*  4.7 movie
------------------------------ */
.page--movie .section--detail embed {
  width: 800px !important;
  height: 500px !important;
  margin: 0 0 30px !important;
}
.page--movie .section--detail .tit {
  font-size: 26px;
  margin: 0 0 20px;
}
.page--movie .section--detail .date {
  display: block;
  padding: 0 0 20px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
}
/*  4.8 faq
------------------------------ */
.page--faq {
  /* 検索 */
}
.page--faq .section--list {
  width: 800px;
}
.page--faq .tit--category {
  font-size: 18px;
  margin: 0 0 20px;
}
.page--faq .icon--q,
.page--faq .icon--a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 30px;
  float: left;
  position: relative;
  top: -3px;
  font-size: 18px;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
  text-align: center;
}
.page--faq .icon--q {
  background: #fff;
  color: #8d7538;
}
.page--faq .icon--a {
  background: #d0203f;
  color: #fff;
}
.page--faq .block--search {
  margin: -20px auto 80px;
  width: 60%;
}
.page--faq .block--search input[type="text"] {
  float: left;
  width: 77%;
  margin-right: 3%;
}
.page--faq .block--search input[type="submit"] {
  float: right;
  width: 20%;
  min-width: unset;
  padding: 0;
  height: 45px;
  line-height: 45px;
  border-radius: 3px;
}
.list--faq {
  margin: 0 0 45px;
}
.list--faq li a {
  display: block;
  padding: 18px 15px;
  background: #efece3;
  border-radius: 5px;
  margin: 0 0 10px;
  position: relative;
  top: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  color: #222;
}
.list--faq li a:hover {
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
}
.list--faq .tit {
  position: relative;
  padding: 0 0 0 46px;
  color: #222;
}
.page--faq .section--detail .block--faq-detail {
  background: #f7ecc8;
  border-radius: 5px;
  margin: 0 0 60px;
  padding: 30px;
}
.page--faq .section--detail .block--faq-detail .icon--q,
.page--faq .section--detail .block--faq-detail .icon--a {
  top: 4px;
}
.page--faq .section--detail dt {
  margin: 0 0 20px;
  font-size: 20px;
}
.page--faq .section--detail .block--faq-detail .txt {
  padding: 0 0 0 50px;
}
.page--faq .section--detail .block--contact a {
  color: #222;
}
/*  4.9 support
------------------------------ */
.page--support .section--detail .txt {
  margin: 0 0 30px;
}
.page--support .section--detail .list--support dt {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
}
.page--support .section--detail .list--support dd {
  margin: 0 0 30px;
}
.page--support .section--detail .inner-list > li {
  margin: 0 0 15px;
}
.page--support .section--detail .inner-list > li:last-child {
  margin-bottom: 0;
}
.page--support .section--detail .inner-list > li ul {
  margin-top: 5px;
}
.page--support .section--detail .inner-list > li ul li {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0 0 5px;
}
/*  4.10 questioonnaire
------------------------------ */
.page--questionnaire .ph {
  margin: 0 0 30px;
}
.page--questionnaire .txt {
  margin: 0 0 60px;
}
.page--questionnaire .block--error {
  margin: 0 0 50px;
  color: #d83c22;
}
.page--questionnaire .block--error li {
  margin: 0 0 10px;
}
.page--questionnaire .block--error li:before {
  content: '※';
}


/*  4.11 goods
------------------------------ */
.list--goods li {
  width: 28%;
  margin: 0 8% 50px 0;
}
.list--goods--2 {
  text-align: center;
}
.list--goods--2 li {
  width: 340px;
  max-width: 100%;
  margin: 0 auto;
  margin: 0 20px 0 0;
  display: block;
}
.list--goods li:nth-child(3n) {
  margin: 0;
}
.list--goods--2 li:nth-child(3n) {
  width: 340px;
  max-width: 100%;
  margin: 0 auto;
  margin: 0 20px 0 0;
  display: block;
}
.list--goods .thumb {
  height: auto;
  position: relative;
}
.list--goods .date {
  color: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  letter-spacing: 0.2em;
  color: #666;
}
.list--goods .date span {
  margin-left: 10px;
}



/* slick
------------------------------ */
.slider {
  width: 100%;
  margin: 0 auto;
}
.slick-slide img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.slider .slick-slide {
  margin: 0 7px;
}
.slider .list .slick-slide {
  margin-bottom: 0;
}
.slick-slide a {
  display: block;
  margin: 0 15px;
}
.slick-slide a:hover {
  opacity: .6;
}
.slick-slide iframe {
  width: 100%;
}
.slick-dots {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -42px;
}
.slick-dots button {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: #e8e6e0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
}
.slick-dots li {
  display: inline-block;
  margin: 0 12px 0 0 !important;
}
.slick-dots li:last-child {
  margin-right: 0!important;
}
.slick-dots .slick-active button {
  background: #D0203F;
}
.slick-prev,
.slick-next {
  display: block;
  width: 10%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  cursor: pointer;
  outline: none;
}
.slick-prev {
  left: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.slick-next {
  right: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev::after,
.slick-next::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #222;
  border-top: 2px solid #222;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.slick-prev::after {
  left: 65px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.slick-next::after {
  right: 65px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slick-prev::before,
.slick-next::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  background: #fff;
  border-radius: 100px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.slick-prev:hover::before,
.slick-next:hover::before {
  background: #886E33;
}
.slick-prev:hover::after,
.slick-next:hover::after {
  border-color: #fff;
}
.slick-prev::before {
  left: 45px;
}
.slick-next::before {
  right: 45px;
}
.slick-disabled.slick-prev::after,
.slick-disabled.slick-next::after,
.slick-disabled.slick-prev::before,
.slick-disabled.slick-next::before {
  display: none;
}
/* login
------------------------------ */
.page--home.status--login header {
  top: -90px;
}
.page--home.load-finish header {
  top: 0;
}
.page--home.status--login header,
.status--login header {
  height: 90px;
  line-height: 118px;
}
.page--home.status--login .wrap {
  padding-top: 90px;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.status--login .wrap {
  padding-top: 90px;
}
body.status--login .wrap > .bgSwitch {
  top: 90px !important;
}
.page--home.status--login .section--key-visual {
  margin-top: -90px;
}
.page--home.status--login header .list--status,
.status--login header .list--status {
  display: none;
}
.page--home.status--login header .list--status,
.status--login header .list--status {
  display: block;
  font-size: 12px;
  background: #876e2c;
  color: #fff;
  line-height: 2.3;
  letter-spacing: 0.06em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.status--login header .list--status span {
  margin: 0 0 0 20px;
}
.status--login header .list--status .welcome {
  margin: 0;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
}
/* error
------------------------------ */
.page--error .tit {
  margin: 0 0 55px;
  color: inherit;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
}
.page--error .txt {
  margin: 0 0 35px;
}
/* edge */
@supports (-ms-ime-align:auto) {
  .page--faq .block--search input[type="text"] {
    width: 65%;
  }
  .page--faq .block--search {
    width: 100%;
  }
}
/* IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .page--faq .block--search input[type="text"] {
    width: 65%;
  }
  .page--faq .block--search {
    width: 100%;
  }
}

.mgT20 { margin-top: 20px }
.mgT25 { margin-top: 25px }
.mgT30 { margin-top: 30px }
.mgT40 { margin-top: 40px }
.mgT50 { margin-top: 50px }
.list-img li { display: inline-block; margin-right: 20px; }

.block_a + .block_a {
  margin-top: 80px;
}
.block--category li span {
  display: block;
  line-height: 1;
  color: #222;
  font-family: 'Josefin Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', "メイリオ", sans-serif;
}
.block--category--a {
}

.disco-disk-music__text1, .disco-disk-music__text2  {
  font-size: 85%;
}
