@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 discography
	4.5 wallpaper
	4.6 movie
	4.7 qa
	4.8 bbs
	4.9 faq
	4.10 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,
embed,
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: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}
*,
*::before,
*::after {
  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
------------------------------ */
.btn,
.nav--login .login,
.nav--login .regist {
  text-align: center;
  margin: 0.5em 0;
}
.btn--main,
.nav--login .regist a {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 80%;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  font-size: 16px;
  padding: 0 1.5em;
  cursor: pointer;
  background: #fff;
  color: #000;
  border: 1px solid;
}
.btn--sub,
.nav--login .login a {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 80%;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  font-size: 16px;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #000;
  border: 1px solid;
}
.block--menu .btn--sub,
.nav--login .login a {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 80%;
  text-align: center;
  text-decoration: none;
  line-height: 3.5;
  font-size: 16px;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #fff;
}
.detail__btn {
  position: relative;
  margin: 50px 0 0 ;
  padding-left: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: bold;
}
.detail__btn a::after {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  content: '';
  width: 16px;
  height: 15px;
  background: url(/static/bucktick/fanclub/arrow_left.png) no-repeat 50% 50%;
  background-size: contain;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 2em 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: 18px;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  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;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  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;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  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 #999;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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: #000;
  border-color: #000;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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: #000;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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: #000;
  border-color: #000;
}
.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;
}
body > section {
  width: calc(100% - 40px);
  margin-bottom: 80px;
  margin-inline: auto;
  padding-top: 90px;
}
/* 2.3 list
------------------------------ */
/*  information */
.list--information li {
  margin: 0 0 15px;
}
.list--information a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
}
.list--information .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.list--information .new .date::after {
  content: 'UP';
  color: #c00;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin: 0 0 0 10px;
}
.list--information .date {
  display: inline-block;
  margin: 0 0 5px;
  color: #a7a7a7;
  font-size: 12px;
  font-weight: 600;
}
.list--information .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--information .category {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  background: #000;
  color: #fff;
  display: inline-block;
  border-radius: 0.7em;
  padding: 0 1em;
  margin: 0 0 0.5em;
  opacity: 0.5;
}
.list--information .thumb {
  width: 25%;
  float: right;
  line-height: 0;
  margin: 0 0 0 3%;
}
.list--information li:first-child {
  border-top: 1px solid #ddd;
}
.list--information li {
  margin: 0;
  border-bottom: 1px solid #ddd;
}
.list--information li div,
.list--information li a {
  padding: 25px 0;
}
.list--information .pickup .date span {
  margin: 0 10px 0 0;
  padding: 0 5px;
  color: #fff;
  background: #000;
}
.list--contents li {
  margin: 0 0 15px;
}
.list--contents a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
}
.list--contents .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.list--contents .new .date::after {
  content: 'UP';
  color: #c00;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin: 0 0 0 10px;
}
.list--contents .date {
  display: inline-block;
  margin: 0 0 5px;
  color: #a7a7a7;
  font-size: 12px;
  font-weight: 600;
}
.list--contents .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--contents .category {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  background: #000;
  color: #fff;
  display: inline-block;
  border-radius: 0.7em;
  padding: 0 1em;
  margin: 0 0 0.5em;
  opacity: 0.5;
}
.list--contents .thumb {
  width: 25%;
  float: right;
  line-height: 0;
  margin: 0 0 0 3%;
}
.list--notes {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  padding: 15px 0 15px 1em;
  text-indent: -1em;
}
.list--notes li {
  margin: 0 0 15px;
}
.list--notes a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
}
.list--notes .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.list--notes .new .date::after {
  content: 'UP';
  color: #c00;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin: 0 0 0 10px;
}
.list--notes .date {
  display: inline-block;
  margin: 0 0 5px;
  color: #a7a7a7;
  font-size: 12px;
  font-weight: 600;
}
.list--notes .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--notes .category {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  background: #000;
  color: #fff;
  display: inline-block;
  border-radius: 0.7em;
  padding: 0 1em;
  margin: 0 0 0.5em;
  opacity: 0.5;
}
.list--notes .thumb {
  width: 25%;
  float: right;
  line-height: 0;
  margin: 0 0 0 3%;
}
.list--notes li {
  margin: 0 0 5px;
}
.list--decimal {
  list-style-type: decimal;
  padding-left: 1.5em;
}
/* 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.4;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  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 #999;
  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.4;
  padding: 1em 0;
  position: relative;
  padding-right: 50px;
}
.list--menu .menu__status {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 0.5;
}
.list__more {
  text-align: center;
}
.list__more a {
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: bold;
  border-bottom: #000 solid 1px;
  /*&::after{
			position: absolute;
			top: 2px;
			right: 0;
			display: block;
			content:'';
			width: 16px;
			height: 15px;
			background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
			background-size: contain;
		}*/
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  width: 100%;
  /*bottom:65px;
	left:0;*/
  padding: 15px 0;
  text-align: center;
}
.block--pager li {
  display: inline-block;
  min-width: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: bold;
  line-height: 30px;
}
.block--pager li a {
  opacity: 0.5;
}
.block--pager li a:hover {
  opacity: 1;
}
.block--pager .pager__item--current {
  font-weight: 700;
}
.block--pager .pager__item--current a {
  opacity: 1;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  /*position: absolute;
		top:50%;*/
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--older a {
  display: block;
  width: 20px;
  height: 30px;
  background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
  background-size: contain;
  opacity: 1;
  margin-top: -15px;
}
.block--pager .pager__item--newer a {
  background-image: url(/static/bucktick/fanclub/arrow_left.png);
}
.block--pager .pager__item--newer {
  left: 5%;
}
.block--pager .pager__item--older {
  right: 5%;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
@font-face {
  font-family: 'higuchi-no-hi';
  src: url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.eot?") format('eot'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.woff2") format('woff2'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.woff") format('woff'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.ttf") format('truetype');
  unicode-range: U+6A0B;
}
@font-face {
  font-family: 'shoku';
  src: url("/static/original/common/css/shoku-webfont/shoku.eot?") format('eot'), url("/static/original/common/css/shoku-webfont/shoku.woff2") format('woff2'), url("/static/original/common/css/shoku-webfont/shoku.woff") format('woff'), url("/static/original/common/css/shoku-webfont/shoku.ttf") format('truetype');
  unicode-range: U+8755;
}
body {
  background-color: #fff;
  font-family: 'higuchi-no-hi', 'shoku', -apple-system, BlinkMacSystemFont, 'Arial', 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  line-height: 1.6em;
  letter-spacing: 0.03em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.android {
  font-family: 'higuchi-no-hi', 'shoku', 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, 'Arial', 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
a::before,
a::after,
input {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pc {
  display: none !important;
}
/* 3.2 共通レイアウト
------------------------------ */
.wrapper {
  position: relative;
  padding-top: 60px;
  min-height: 100%;
}
.section--menu {
  display: none;
  position: relative;
  background: #000;
  color: #fff;
  /*height: 75vh;*/
  margin-bottom: 80px;
  padding-top: 80px;
  padding-bottom: 40px;
}
.section--menu.wmember {
  /*height: 5vh;*/
}
.section--menu .block--menu {
  /*position: absolute;
			top: 50%;
			left: 0;
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);*/
}
.section--menu .block--menu .login__status {
  position: relative;
  margin: 0 auto;
  font-weight: bold;
  font-size: 12px;
  text-align: right;
  line-height: 1.8;
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.section--menu .block--menu .login__status span {
  display: inline-block;
  position: absolute;
  left: 0;
  font-weight: 500;
}
.section--menu .block--menu .login__status a {
  color: #fff;
  font-weight: bold;
}
.section--menu .block--menu .login__status img {
  width: 12px;
  vertical-align: -1px;
  margin-left: 5px;
}
.section--menu .block--login {
  color: #fff;
  margin: 0 8%;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border: 1px solid #ffffff1a;
  /*&.lang-en{
			.login__status{width: 80%;}
			.right{
				padding: 14px 5%;
			}
		}*/
}
.section--menu .block--login .label-wmember {
  display: inline-block;
  font-size: 12px;
  padding: 0 14px;
  background: #7a0510;
  font-weight: bold;
}
.section--menu .block--login .name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section--menu .block--login .name span:not(.label-wmember) {
  font-weight: normal;
  font-size: 14px;
}
.section--menu .block--login > div {
  width: 100%;
}
.section--menu .block--login .right .tit-list {
  line-height: 1;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section--menu .block--login .logout {
  display: block;
  color: #fff;
  width: 120px;
  margin-top: 10px;
  padding: 14px 0;
  text-align: center;
  border: #fff solid 1px;
  line-height: 1;
  margin-inline: auto;
}
.section--menu .block--login .nav--login {
  margin-bottom: 0;
  text-align: left;
}
.section--menu .block--link {
  display: flex;
  justify-content: center;
}
.section--menu .block--link .txt--link.mypage,
.section--menu .block--link .txt--link.wmember {
  display: inline-block;
  font-size: 12px;
}
.section--menu .block--link .txt--link.mypage a,
.section--menu .block--link .txt--link.wmember a {
  color: #fff;
}
.section--menu .block--link .txt--link.mypage img,
.section--menu .block--link .txt--link.wmember img {
  width: 11px;
  margin-left: 6px;
}
.section--menu .block--link .txt--link.wmember {
  margin-right: 24px;
}
.section--menu h1 {
  width: 80%;
  text-align: center;
  margin: 0 auto 15px;
}
.section--menu h1 a {
  color: #fff;
}
.section--menu h1 img {
  margin-top: 15px;
}
.nav--language {
  margin: 0 0 20px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-align: center;
}
.nav--language input {
  display: none;
}
.nav--language li {
  display: inline-block;
}
.nav--language label {
  opacity: 0.5;
}
.nav--language li.current label {
  opacity: 1;
  font-weight: 700;
}
.nav--language li:first-child::after {
  content: '|';
  margin: 0 5px;
}
.scroll {
  opacity: 0;
  position: absolute;
  height: 50px;
  bottom: -11px;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.5s all 0.8s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.5s all 0.8s cubic-bezier(0, 1.07, 1, 1);
}
.scroll a {
  display: block;
}
.scroll::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  display: block;
  height: 10px;
  width: 1px;
  background: #fff;
  -webkit-animation: scroll 1.2s ease-out 0s infinite;
  animation: scroll 1.2s ease-out 0s infinite;
}
.loaded .scroll {
  opacity: 1;
}
@-webkit-keyframes scroll {
  0% {
    height: 10px;
    top: 0;
  }
  30% {
    height: 30px;
    top: 0;
  }
  60% {
    height: 10px;
    top: 30px;
  }
  80% {
    height: 10px;
    top: 0;
  }
}
@keyframes scroll {
  0% {
    height: 10px;
    top: 0;
  }
  30% {
    height: 30px;
    top: 0;
  }
  60% {
    height: 10px;
    top: 30px;
  }
  80% {
    height: 10px;
    top: 0;
  }
}
.section--contents {
  background: #fff;
  min-height: 100%;
}
.section--contents .inner {
  padding: 40px 5% 130px;
}
/*  header
------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 65px;
  padding: 15px 5%;
  background: #000;
}
header .logo {
  width: 100px;
  line-height: 0;
  -webkit-transition: 0.3s all 0s ease;
  transition: 0.3s all 0s ease;
}
header .btn--nav {
  width: 30px;
  height: 20px;
  position: absolute;
  right: 5%;
  top: 22px;
  cursor: pointer;
}
header .btn--nav span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .btn--nav span:nth-of-type(1) {
  top: 0;
  left: 0;
}
header .btn--nav span:nth-of-type(2) {
  top: 9px;
}
header .btn--nav span:nth-of-type(3) {
  top: 18px;
  left: 0;
}
header .nav--language {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #fff;
}
.drawer {
  display: none;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background: #000;
  color: #fff;
}
.drawer a {
  color: #fff;
}
.drawer .g-nav {
  padding: 80px 0 30px 5%;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
}
.drawer .g-nav ul {
  border-top: 1px solid #333;
  margin-right: -5.5%;
  padding-bottom: 20px;
}
.drawer .g-nav .menu {
  padding-top: 20px;
}
.drawer .g-nav li {
  margin: 0 0 0.5em;
}
.drawer .g-nav li:last-child {
  margin: 0;
}
.drawer .g-nav .sub {
  margin: 0 0 20px;
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.4em;
  font-weight: normal;
}
.drawer .g-nav .sub li {
  margin: 0 0 0.7em;
}
.drawer .g-nav .txt--login {
  display: none;
}
.drawer .g-nav .nav--language {
  display: block;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  border: none;
}
.drawer .g-nav .login__status {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: normal;
}
.drawer .g-nav .login__status span {
  display: block;
  font-size: 12px;
}
.drawer .g-nav .limit_alert {
  font-size: 12px;
}
.drawer .g-nav .limit_alert a {
  color: #e74b3d;
}
.menuopen .btn--nav span {
  background: #fff;
}
.menuopen .btn--nav span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.menuopen .btn--nav span:nth-of-type(2) {
  width: 0;
  right: 0;
}
.menuopen .btn--nav span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
.page--home header {
  overflow: hidden;
}
.page--home header .logo {
  position: absolute;
  top: -40px;
}
.page--home.show header .logo {
  top: 15px;
}
.page--home.show .scroll {
  opacity: 0;
}
/*  footer
------------------------------ */
.footer {
  background: #000;
  padding: 70px 20px 75px;
  position: relative;
}
.footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 70px;
}
.footer .footer-menu li {
  width: 50%;
  margin-bottom: 20px;
}
.footer a {
  color: #fff;
  font-size: 13px;
}
.footer .logo {
  display: block;
  width: 150px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.footer .logo img {
  width: 100%;
}
.official {
  display: none;
  width: 100px;
  margin: 0 auto;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  text-align: center;
}
.official a::after {
  display: none !important;
}
.copyright {
  width: 100%;
  padding: 0 0 30px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.tit--page {
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1em;
  position: relative;
  margin: 0 0 30px;
}
.section-tit {
  color: inherit;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 20px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-align: left;
}
.tit--menu {
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
}
.bold {
  font-weight: bold;
}
.red {
  color: #c00;
}
/* slick */
.slick-dots {
  position: relative;
  text-align: center;
  padding: 0 9%;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.slick-dots li button::before {
  content: '';
  background: #b7a06e;
  width: 10px;
  height: 10px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 4.2 home
------------------------------ */
.page--home .section--contents {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1020px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.page--home .section--contents .block-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.page--home .section--contents .block-menu li {
  width: 46%;
  /*&:nth-child(3n){
					margin: 0 0 20px 0;
				}*/
}
.page--home .section--contents .block-menu li a {
  display: flex;
  min-height: 74px;
  font-size: 13px;
  align-items: center;
  padding: 12px 0;
  border-bottom: #ccc solid 1px;
}
.page--home .section--contents .block-menu li a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 26px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.page--home .section--contents .block-menu li.live a::before {
  background-image: url(/static/bucktick/fanclub/icon_01.svg);
}
.page--home .section--contents .block-menu li.illust a::before {
  background-image: url(/static/bucktick/fanclub/icon_02.svg);
}
.page--home .section--contents .block-menu li.qa a::before {
  background-image: url(/static/bucktick/fanclub/icon_03.svg);
}
.page--home .section--contents .block-menu li.present a::before {
  background-image: url(/static/bucktick/fanclub/icon_04.svg);
}
.page--home .section--contents .block-menu li.yusanpo a::before {
  background-image: url(/static/bucktick/fanclub/icon_05.svg);
}
.page--home .section--contents .block-menu li.hoshino a::before {
  background-image: url(/static/bucktick/fanclub/icon_06.svg);
}
.page--home .section--contents .block-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-inline: auto;
  width: 90%;
}
.page--home .section--contents .block-info li {
  background: #888;
  width: 100%;
  margin-bottom: 20px;
}
.page--home .section--contents .block-info li:last-child {
  margin-bottom: 0;
}
.page--home .section--contents .block-info li a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 20px 0;
  border: #fff solid 1px;
  font-size: 14px;
  color: #fff;
}
.page--home .section--contents .block-info li a::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 30px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.page--home .section--contents .block-info li:first-child a::before {
  background-image: url(/static/bucktick/fanclub/icon_07.svg);
}
.page--home .section--contents .block-info li:last-child a::before {
  background-image: url(/static/bucktick/fanclub/icon_08.svg);
}
.page--home .section--information {
  width: calc(100% - 40px);
  max-width: 1020px;
  margin-bottom: 80px;
  margin-inline: auto;
}
.page--home .wrapper {
  padding-top: 0;
  overflow: hidden;
}
.page--home .section--bnr {
  margin: 0 -5.5% 60px;
}
.page--home .section--bnr img {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.page--home .section--bnr .bnrList.no-slide .slick-track {
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}
.page--home .section--menu {
  display: block;
}
.page--home .block--menu {
  opacity: 0;
  top: 53%;
  -webkit-transition: 0.5s all 0.3s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.5s all 0.3s cubic-bezier(0, 1.07, 1, 1);
}
.page--home .section--contents .inner {
  padding-bottom: 40px;
}
.page--home .menu .home {
  display: none;
}
.page--home .list--information {
  margin: 0 0 25px;
}
.page--home .nav--login {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 30px;
  margin-inline: auto;
  width: 80%;
}
.page--home .nav--login.center {
  justify-content: center;
}
.page--home .nav--login .regist {
  width: 45%;
}
.page--home .nav--login .regist a {
  width: 100%;
  background: none;
  border: #fff solid 1px;
  color: #fff;
}
.page--home .nav--login .mypage {
  display: none;
}
.page--home .nav--login .login span span {
  border-bottom: 1px solid;
}
.page--home .nav--login .txt-login2 {
  display: none;
}
.page--home .official {
  display: block;
}
.page--home.loaded .block--menu {
  opacity: 1;
  top: 50%;
}
.limit_alert {
  color: #e74b3d;
}
.section--menu .block--menu .login__status .limit_alert a {
  color: #e74b3d;
}
/*  デジタル会員証
------------------------------ */
.btn.card {
  margin-top: 28px;
}
.btn.card .btn--main,
.btn.close .btn--main {
  background: #b7a06e;
  color: #fff;
  max-width: 280px;
  font-size: 16px;
  font-weight: normal;
  border: none;
}
.btn.close {
  margin-top: 2em;
}
.btn.close .btn--main {
  background: #000;
  color: #fff;
}
.btn.close .btn--main:hover {
  background: rgba(0, 0, 0, 0.85);
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999;
  -webkit-transition: none;
  transition: none;
}
.memberscard {
  width: 90%;
  margin: 20px auto 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.memberscard .btn span {
  cursor: pointer;
  width: 80%;
  max-width: 300px;
  min-width: initial;
}
.memberscard .ph {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.memberscard .ph .dummy {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.memberscard .block--data {
  width: 90%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
}
.memberscard .member_data {
  width: 50%;
  font-weight: bold;
}
.memberscard .member_data dt {
  font-size: 11px;
  margin-bottom: 0.2em;
  opacity: 0.5;
}
.memberscard .member_data dd {
  margin: 0 0 0.6em;
}
.memberscard .status {
  position: relative;
  text-align: center;
}
.memberscard .status #statusBar {
  margin: 0 auto;
}
.memberscard .status .term {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}
.memberscard .status .term span {
  font-size: 30px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-style: italic;
}
.use_inbound .memberscard .status .term {
  font-size: 10px;
}
.use_inbound .memberscard .status .term span {
  font-size: 25px;
}
/*  4.3 information
------------------------------ */
.section--detail .tit {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}
.section--detail .date {
  margin: 0 0 30px;
  width: 50%;
  opacity: 0.5;
  font-size: 13px;
}
.section--detail .txt a {
  text-decoration: underline;
}
.section--detail .block--share {
  float: right;
  margin: -8px 0 0;
  z-index: 2;
}
.section--detail .block--share li {
  display: inline-block;
  margin: 0 1em 0 0;
  transition: none;
  -webkit-transition: none;
  font-size: 12px;
  color: #000;
  opacity: 0.5;
}
.section--detail .block--share li a {
  display: block;
  font-size: 22px;
  color: #000;
}
.section--detail .block--share li a * {
  -webkit-transition: none;
  transition: none;
}
.section--detail .block--share li svg {
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #000;
  vertical-align: -1px;
}
/*  4.9 faq
------------------------------ */
.page--faq .section-tit {
  font-size: 24px;
}
.page--faq .tit--category {
  margin: 0 0 15px;
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.page--faq .list--faq {
  margin: 0 0 30px;
}
.page--faq .list--faq li a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}
.page--faq .list--faq li:last-child {
  border-bottom: 1px solid #ddd;
}
.page--faq .list--faq .tit {
  padding-left: 25px;
}
.page--faq .icon--q,
.page--faq .icon--a {
  margin-right: 5px;
  font-weight: bold;
  float: left;
  color: #999;
}
.page--faq .searchBox {
  position: relative;
  margin: 0 0 30px;
  text-align: center;
}
.page--faq .searchBox input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  font-size: 15px;
  line-height: 1.4em;
  box-sizing: border-box;
}
.page--faq .searchBox input[type="text"] {
  height: 40px;
  margin: 0 5px 0 0;
  padding: 0 10px;
  background: #fff;
  border: solid 1px #aaa;
  border-radius: 5px;
}
.page--faq .searchBox input[type="text"]:placeholder-shown {
  color: #ccc;
}
.page--faq .searchBox input[type="text"]::-webkit-input-placeholder {
  color: #ccc;
}
.page--faq .searchBox input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  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;
}
.page--faq .section--detail .tit--category {
  font-size: 14px;
}
.page--faq .section--detail .block--faq-detail {
  margin: 0 0 30px;
  padding: 15px;
  border: 1px solid #ddd;
}
.page--faq .section--detail .block--faq-detail dt {
  margin: 0 0 20px;
  padding: 0 0 15px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.page--faq .section--detail .block--faq-detail dt .txt {
  padding-left: 1.5em;
}
.page--faq .section--detail .block--faq-detail dd .icon--a {
  font-size: 18px;
}
.page--faq .section--detail .block--faq-detail dd .txt {
  padding-left: 1.5em;
  line-height: 1.8em;
}
.page--faq .section--detail .list--faq {
  margin: 0 0 30px;
}
.page--faq .chatbot {
  display: flex;
  position: fixed;
  bottom: 40px;
  right: 5%;
}
.page--faq .chatbot .icon {
  display: inline-block;
}
.page--faq .chatbot .icon a {
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 13px;
  line-height: 0;
}
.page--faq .chatbot .icon a svg {
  width: 28px;
  height: 28px;
  fill: #000;
}
.page--faq .chatbot .comment {
  display: block;
  padding: 15px 14px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  margin: 0 20px 0 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 12px;
  width: 100%;
}
.page--faq .chatbot .comment:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  border: 8px solid transparent;
  border-left: 18px solid #000;
  margin-top: -8px;
}
.show .chatbot .comment {
  opacity: 0;
}
/*  4.10 support
------------------------------ */
.support .section-tit {
  color: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.support .txt {
  margin: 0 0 30px;
}
.support .list--support dt {
  margin: 0 0 10px;
  padding: 0 0 5px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.support .list--support dd {
  margin: 0 0 15px;
}
.support .list--support dd .txt {
  margin: 0 0 15px;
}
.support .list--support li {
  margin: 0 0 5px;
}
/*  4.11 アンケート
------------------------------ */
.page--questionnaire .section-tit {
  font-size: 20px;
}
.page--questionnaire dt {
  font-weight: bold;
}
.page--questionnaire .icon--required::after {
  content: '必須';
  color: #c00;
  font-size: 12px;
  margin-left: 10px;
}
.page--questionnaire .form--confirm {
  margin: 20px 0 0;
}
.page--questionnaire .form--confirm dd {
  margin: 0 0 20px;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 6px;
}
.page--questionnaire .block--error {
  margin: 0 0 20px;
}
.page--questionnaire .block--error li {
  color: #c00;
  font-weight: bold;
  margin: 0 0 5px;
}
.page--questionnaire .block--error li:last-child {
  margin-bottom: 0;
}
/*  4.12 入会案内
------------------------------ */
.section--detail.entry .btn--main {
  font-size: 18px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.section--detail.entry .section-tit {
  text-align: center;
}
.section--detail.entry .section-tit img {
  width: 70%;
}
.section--detail.entry .section-tit span {
  display: block;
  font-size: 16px;
}
.section--detail.entry .block--lead {
  margin: 0 0 30px;
}
.section--detail.entry .block--lead .bold {
  padding: 30px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.section--detail.entry .block--lead + .btn {
  margin: 0 0 60px;
}
.section--detail.entry .list--detail {
  margin: 0 0 30px;
}
.section--detail.entry .list--detail dt {
  margin: 0 0 15px;
  padding: 0 0 5px;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid;
}
.section--detail.entry .list--detail dd {
  margin: 0 0 30px;
}
.section--detail.entry .list--detail dd .fa {
  margin-right: 5px;
  color: #919DA6;
}
.section--detail.entry .pay-other {
  font-size: 13px;
  text-decoration: underline;
}
.section--detail.entry .pay-other::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  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);
  position: static;
  border-color: #000;
  vertical-align: 2px;
  margin: -0.25em 0 0 5px;
}
.section--detail.entry .block--entry {
  margin: 0 0 15px;
  padding: 30px 0;
  text-align: center;
  background: #eee;
}
.section--detail.entry .block--entry .btn {
  margin: 0 0 15px;
}
.section--detail.entry .block--entry .bold::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  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);
  position: static;
  border-color: #000;
  vertical-align: 2px;
  margin: -0.25em 0 0 5px;
}
.section--detail.entry .block--entry .txt--basic a {
  text-decoration: underline;
}
/*  4.14 bbs
------------------------------ */
.page--bbs .block--error {
  color: #c00;
  margin: 0 0 40px;
  font-weight: bold;
}
.page--bbs .block--post {
  margin: 40px 0 0;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.page--bbs .form--post dt {
  font-weight: bold;
}
.page--bbs .form--confirm {
  padding: 20px 0;
}
.page--bbs .form--confirm dt {
  font-weight: bold;
  margin: 0 0 10px;
}
.page--bbs .form--confirm dd {
  margin-bottom: 20px;
}
.page--bbs .form--post #text-count {
  text-align: right;
  font-size: 12px;
}
.page--bbs .form--post #text-count #num {
  font-weight: bold;
  font-size: 14px;
  padding: 0 3px;
  transition: none;
  -webkit-transition: none;
}
.page--bbs .form--post #text-count.over #num {
  color: #c00;
}
.page--bbs35th {
  background: #1f1b14;
  color: #fff;
}
.page--bbs35th header {
  display: none;
}
.page--bbs35th .section--menu {
  display: none;
}
.page--bbs35th .clm2 {
  width: 100%;
  background: none;
}
.page--bbs35th .section--contents .inner {
  padding: 0px 5% 130px;
}
.page--bbs35th .section--detail {
  margin: 0 auto 50px;
  padding-bottom: 80px;
}
.page--bbs35th h1 {
  width: 50%;
  margin: 100px auto 0;
}
.page--bbs35th h1 a {
  display: block;
  line-height: 0;
}
.page--bbs35th .bbs-box {
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.8;
}
.page--bbs35th .bbs-box .bbs-ph {
  text-align: center;
  margin: 0 auto 30px;
  line-height: 1;
  width: 50%;
}
.page--bbs35th .bbs-box .bbs-ph img {
  width: 100%;
}
.page--bbs35th .bbs-box .bbs-tit {
  font-size: 4vw;
  margin: 0 auto 25px;
  font-weight: bold;
}
.page--bbs35th .bbs-box .bbs-limited {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.8vw;
  font-weight: bold;
  color: #b49a64;
  margin: 0 auto 30px;
  border: solid 1px;
  padding: 20px 5px 13px 15px;
  position: relative;
}
.page--bbs35th .bbs-box .bbs-limited span {
  font-family: 'Rye', cursive;
  font-size: 5.3vw;
  font-weight: normal;
}
.page--bbs35th .bbs-box .bbs-limited:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  border: solid 1px #b49a64;
}
.page--bbs35th .bbs-box .block--lead {
  font-size: 3.8vw;
  margin: 0 auto 50px;
}
.page--bbs35th .bbs-box .bbs--rule {
  background: #17140f;
  padding: 20px 10px 30px;
  font-size: 3.5vw;
}
.page--bbs35th .bbs-box .bbs--rule .rule-tit {
  font-size: 4.5vw;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 0 auto 20px;
}
.page--bbs35th .bbs-box .bbs--rule .rule-check {
  border: solid 1px;
  padding: 10px;
  margin: 0 auto 30px;
  font-size: 3.8vw;
  letter-spacing: 0.1em;
  color: #f00;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention {
  font-size: 18px;
  margin: 0 auto 40px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox {
  margin: 0 0 20px;
  width: 100%;
  background: #312a1d;
  padding: 15px 10px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox dt {
  font-weight: bold;
  color: #b49a64;
  font-size: 3.8vw;
  margin: 0 auto 5px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox dd {
  padding: 0px 0 0px 1em;
  text-indent: -1em;
  text-align: left;
  font-size: 3.5vw;
}
.page--bbs35th .bbs-box .bbs--rule dl.noticeBox {
  text-align: left;
}
.page--bbs35th .bbs-box .bbs--rule dl.noticeBox dt {
  font-weight: bold;
  font-size: 4.5vw;
  letter-spacing: 0.2em;
  margin: 0 auto 20px;
  text-align: center;
}
.page--bbs35th .bbs-box .bbs--rule dl.noticeBox dd {
  padding: 0px 0 0px 1em;
  text-indent: -1em;
}
.page--bbs35th .block--post {
  margin: 0px 0 0;
  padding: 0px 0;
  border-top: 0px solid #ddd;
}
.page--bbs35th .block--post .form--post {
  border: 1px solid #ddd;
  padding: 20px 15px 20px;
  margin: 0 auto 50px;
}
.page--bbs35th .block--post .form--post dl {
  margin: 0 auto 30px;
}
.page--bbs35th .block--post .form--post dt {
  font-weight: bold;
  margin: 0 0 10px;
}
.page--bbs35th .block--post .form--post dd {
  margin: 0 0 20px;
}
.page--bbs35th .block--post .form--post dd textarea {
  height: 5em;
  border-radius: 0;
  font-size: 3vw;
}
.page--bbs35th ul.list--comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2%;
}
.page--bbs35th ul.list--comment li {
  width: 49%;
  margin: 0 0 2%;
  position: relative;
}
.page--bbs35th ul.list--comment li a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  border: solid 1px #b49a64;
}
.page--bbs35th ul.list--comment li a img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}
.page--bbs35th ul.list--comment li a:hover {
  filter: sepia(1);
}
.page--bbs35th .wrapper:before {
  position: fixed;
  content: "";
  top: 0;
  right: 0;
  background: url("/static/bucktick/official/feature/specialsite_35th_bbs/ph_top_b5MKNfeA.png") no-repeat right top;
  background-size: 100%;
  width: 15vw;
  height: 70%;
  z-index: 1;
}
.page--bbs35th .wrapper:after {
  position: fixed;
  content: "";
  bottom: 0;
  left: 0;
  background: url("/static/bucktick/official/feature/specialsite_35th_bbs/ph_bottom_b5MKNfeA.png") no-repeat left bottom;
  background-size: 100%;
  width: 15vw;
  height: 70%;
  z-index: 1;
}
.page--bbs35th .messageBox .name {
  margin: 10px 0;
}
.page--bbs35th ul.list--comment li:nth-child(n+13) {
  display: none;
}
.page--bbs35th .block--pager li a {
  color: #b49a64;
  font-weight: bold;
  opacity: 1;
  display: block;
  line-height: 1;
  padding: 5px;
}
.page--bbs35th .block--pager .pager__item--current {
  color: #fff;
}
.page--bbs35th.bbs35th--post .section--detail {
  text-align: center;
  padding: 50px 0 0;
}
.page--bbs35th.bbs35th--post .section--detail .txt {
  font-size: 4.5vw;
}
.page--bbs35th.bbs35th--post .form--confirm {
  margin: 0 auto;
  text-align: left;
}
.page--bbs35th.bbs35th--post .btn .btn--sub {
  border: 1px solid #fff;
  color: #fff;
  margin: 20px auto 0;
}
/*  blog NEW
------------------------------ */
.blogTit {
  padding-top: 90px;
  padding-bottom: 40px;
  line-height: 0;
}
.blogInner {
  padding: 0 5% 0;
}
.blogInner .categoryList {
  display: block !important;
  margin: 0 0 40px;
  text-align: center;
}
.blogInner .categoryList li {
  display: inline-block;
  padding: 0 12px;
  font-size: 14px;
}
.blogInner .categoryList li + li {
  border-left: 1px solid #888;
}
.blogInner .categoryList p {
  position: relative;
}
.blogInner .categoryList p:before {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #000;
}
.blogInner .blogList {
  margin: 0 0 20px;
}
.blogInner .blogList li {
  border-bottom: 0.5px solid rgba(66, 66, 66, 0.8);
}
.blogInner .blogList li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px 0;
  color: #000;
}
.blogInner .blogList li a .thumb {
  width: 33%;
  line-height: 0;
}
.blogInner .blogList li a .thumb img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 18vw;
  max-height: 100px;
  border: 0.5px solid rgba(66, 66, 66, 0.8);
}
.blogInner .blogList li a .txtSet {
  width: 67%;
  padding: 0 0 0 15px;
}
.blogInner .blogList li a .txtSet .date {
  font-size: 12px;
  font-weight: 600;
}
.blogInner .blogList li a .txtSet .tit {
  font-size: 15px;
  font-weight: bold;
}
.blogInner .pageNavi {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.blogInner .pageNavi svg {
  width: 15px;
  height: 15px;
}
.blogInner .pageNavi .prev svg {
  transform: rotate(180deg);
}
/*  blog Detail
------------------------------ */
.blogDetail {
  padding: 90px 5% 30px;
}
.blogDetail .tit {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.blogDetail .date {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  line-height: 40px;
  margin: 0 0 20px;
}
.blogDetail .txt {
  font-size: 18px;
}
.blogDetail .pageNavi {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 0;
}
.blogDetail .pageNavi svg {
  width: 15px;
  height: 15px;
}
.blogDetail .pageNavi .next svg {
  transform: rotate(180deg);
}
.blogDetail .pageNavi .nav__pager--top a {
  font-size: 12px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}
.blogDetail .staffBtn {
  display: block;
  text-decoration: underline;
  text-align: center;
}
