@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 .mypage,
.nav--login .login,
.nav--login .regist {
  text-align: center;
  margin: 0.5em 0;
}
.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 3.2;
  padding: 0 1.5em;
  cursor: pointer;
  background: #b7a06e;
  color: #fff;
}
.btn--main:hover {
  color: #fff;
  background: #000;
}
.btn--sub,
.nav--login .login a,
.nav--login .mypage a {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 3.2;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--sub:hover,
.nav--login .login a:hover,
.nav--login .mypage a:hover {
  background: #222;
}
.section--contents .btn--sub {
  color: #000;
}
.section--contents .btn--sub:hover {
  background: #000;
  color: #fff;
}
.detail__btn {
  position: relative;
  margin: 50px 0 0 ;
  padding-left: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.detail__btn a::after {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  content: '';
  width: 16px;
  height: 15px;
  background: url(/static/bucktick/fanclub/arrow_left.png) no-repeat 50% 50%;
  background-size: contain;
}
.detail__btn a:hover::after {
  left: -10px;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
  font-weight: bold;
}
.form--post dt:first-child {
  margin-top: 0;
}
.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;
}
/* 2.3 list
------------------------------ */
/*  information */
.list--information li {
  margin: 0 0 25px;
}
.list--information a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
.list--information .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
.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;
  color: #000;
  margin-right: 50px;
}
.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 {
  display: none;
  /*width: 25%;
		float: @thumb-position;
		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 .pickup div,
.list--information a {
  display: flex;
  padding: 40px 0;
  left: 0;
  position: relative;
}
.list--information a:hover {
  left: 10px;
}
.list--information .pickup .date span {
  display: inline-block;
  color: #fff;
  background: #000;
  margin: 0 10px 0 0;
  padding: 0 5px;
}
.list--contents li {
  margin: 0 0 25px;
}
.list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
.list--contents .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
.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;
  color: #000;
  margin-right: 50px;
}
.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 {
  display: none;
  /*width: 25%;
		float: @thumb-position;
		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 25px;
}
.list--notes a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
.list--notes .tit {
  color: inherit;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
.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;
  color: #000;
  margin-right: 50px;
}
.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 {
  display: none;
  /*width: 25%;
		float: @thumb-position;
		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: 14px;
  font-weight: 300;
  line-height: 1.6;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  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: 14px;
  font-weight: 300;
  line-height: 1.6;
  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: 700;
  border-bottom: #000 solid 1px;
  /*&::after{
			position: absolute;
			top: 1px;
			right: -25px;
			display: block;
			content:'';
			width: 16px;
			height: 15px;
			background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
			background-size: contain;
		}
		&:hover::after{
			right: -35px;
		}*/
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  position: relative;
  padding: 30px 0;
  text-align: center;
}
.block--pager li {
  display: inline-block;
  min-width: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  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;
  border-bottom: 2px solid;
}
.block--pager .pager__item--current a {
  opacity: 1;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  position: absolute;
  top: 45%;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--older a {
  display: block;
  width: 16px;
  height: 15px;
  background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
  background-size: contain;
  opacity: 1;
}
.block--pager .pager__item--newer a {
  background-image: url(/static/bucktick/fanclub/arrow_left.png);
}
.block--pager .pager__item--newer {
  left: 0;
}
.block--pager .pager__item--older {
  right: 0;
}
/* 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, 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
body > section {
  width: 80%;
  max-width: 1020px;
  padding-top: 140px;
  margin-inline: auto;
  margin-bottom: 80px;
}
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;
}
.sp {
  display: none !important;
}
/* 3.2 共通レイアウト
------------------------------ */
header {
  display: none;
}
.header {
  background: #000;
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.header .logo {
  width: 130px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header .logo img {
  width: 100%;
}
.wrapper {
  position: relative;
  min-height: 750px;
}
.clm2 {
  position: relative;
  width: 100%;
}
.nav--language {
  display: inline;
  margin: 0 auto 25px;
  /*width: 200px;*/
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-align: center;
  position: absolute;
  right: 30px;
  top: 30px;
}
.nav--language input {
  display: none;
}
.nav--language li {
  display: inline-block;
  color: #fff;
}
.nav--language label {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav--language label:hover {
  opacity: 1;
}
.nav--language li.current label {
  opacity: 1;
}
.nav--language li:first-child::after {
  content: '|';
  margin: 0 5px;
}
.section--menu {
  /*position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	min-height: 500px;
	*/
  background: #000;
  color: #fff;
  overflow: hidden;
  margin-bottom: 100px;
  padding-bottom: 100px;
}
.section--menu .block--menu {
  /*position: absolute;
		top: 0;
		left: 0;*/
  width: 100%;
  height: 100%;
  /*-webkit-transform: translateY(-50%);
		transform: translateY(-50%);*/
}
.section--menu h1 {
  width: 75%;
  max-width: 500px;
  margin: 0 auto 45px;
  margin-top: 100px;
  text-align: center;
}
.section--menu h1 a {
  color: #fff;
}
.section--menu h1 img {
  display: inline-block;
}
.section--menu .mailmag {
  clear: both;
  margin: 30px 0 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  text-align: center;
}
.section--menu .mailmag a {
  color: #fff;
  padding: 20px 0;
}
.section--menu .mailmag a:hover {
  opacity: 0.5;
}
.nav--support {
  margin: 0 0 10px;
  text-align: center;
  line-height: 1.3em;
}
.nav--support li {
  margin: 0 0 25px;
}
.nav--support a {
  color: #999;
  font-weight: 500;
}
.nav--support a:hover {
  color: #fff;
}
.drawer--support {
  position: fixed;
  z-index: 98;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: rgba(0, 0, 0, 0.95);
  -webkit-transition: 0.3s all 0s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.3s all 0s cubic-bezier(0, 1.07, 1, 1);
}
.drawer--support ul {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s all 0.3s ease;
  transition: 0.5s all 0.3s ease;
}
.footer {
  background: #000;
  padding: 70px 60px 75px;
  position: relative;
}
.footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.footer .footer-menu li {
  margin: 0 40px 20px 0;
}
.footer a {
  color: #fff;
}
.footer .logo img {
  width: 150px;
}
.copyright {
  position: absolute;
  width: 200px;
  bottom: 70px;
  right: 60px;
  font-size: 11px;
  text-align: right;
  color: #fff;
}
.btn--nav {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 30px;
}
.btn--nav::after {
  position: relative;
  bottom: -25px;
  content: 'MENU';
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-size: 10px;
  display: block;
  text-align: center;
}
.btn--nav span {
  position: absolute;
  top: 0;
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn--nav span:first-child {
  top: 0px;
}
.btn--nav span:nth-child(2) {
  top: 10px;
}
.btn--nav span:nth-child(3) {
  top: 20px;
}
body:not(.menuopen) .btn--nav:hover span {
  -webkit-animation: navhover 0.3s 0s forwards;
  animation: navhover 0.3s 0s forwards;
}
body:not(.menuopen) .btn--nav:hover span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
body:not(.menuopen) .btn--nav:hover span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes navhover {
  0% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes navhover {
  0% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
.menuopen .drawer--support {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.menuopen .drawer--support ul {
  opacity: 1;
}
.menuopen .btn--nav::after {
  content: 'CLOSE';
}
.menuopen .btn--nav span:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.menuopen .btn--nav span:nth-child(2) {
  width: 0;
  right: 0;
}
.menuopen .btn--nav span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
/* 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 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.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: 14px;
  font-weight: 300;
  line-height: 1.6;
  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 {
  bottom: -20px;
  text-align: center;
  position: relative;
}
.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 .nav--support .home {
  display: none;
}
.page--home .section--menu {
  width: 0;
  -webkit-transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.3s all 0.3s cubic-bezier(0, 1.07, 1, 1);
}
.page--home .btn--nav,
.page--home .copyright {
  opacity: 0;
  -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);
}
.page--home .btn--nav {
  opacity: 0;
  left: 0;
  -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);
}
.page--home .block--menu {
  opacity: 0;
  left: -20px;
  -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);
}
.page--home.loaded .section--menu {
  width: 100%;
}
.page--home.loaded .block--menu,
.page--home.loaded .btn--nav {
  opacity: 1;
  left: 30px;
}
.page--home .section--bnr {
  margin-bottom: 60px;
}
.page--home .section--bnr .slick-slide {
  width: 750px;
  margin: 0 35px;
}
.page--home .section--contents {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1020px;
  margin-inline: auto;
  margin-bottom: 100px;
}
.page--home .section--contents .block-menu {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.page--home .section--contents .block-menu li {
  width: calc(100% / 3 - 40px);
  margin: 0 60px 20px 0;
}
.page--home .section--contents .block-menu li:nth-child(3n) {
  margin: 0 0 20px 0;
}
.page--home .section--contents .block-menu li a {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: #ccc solid 1px;
}
.page--home .section--contents .block-menu li a::before {
  content: "";
  display: inline-block;
  width: 36px;
  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;
  width: 710px;
  margin-inline: auto;
}
.page--home .section--contents .block-info li {
  background: #888;
  width: 340px;
}
.page--home .section--contents .block-info li a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  padding: 20px 0;
  border: #fff solid 1px;
  font-size: 16px;
  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: 0 0 130px;
  margin-inline: auto;
}
.page--home .list--information {
  margin: 0 0 50px;
}
.block--login {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  /*background: #151515;*/
  width: 850px;
  padding: 40px;
  margin: 0 auto 14px;
  border: 1px solid #ffffff1a;
  /*align-items: center;*/
  /*&.lang-en{
		max-width: 560px;
		width: 80%;
		.left{width: 43%;}
		.right{width: 48%;}
		.login__status{text-align: right;}
	}*/
}
.block--login .label-wmember {
  display: inline-block;
  font-size: 12px;
  padding: 8px 12px;
  margin-right: 20px;
  background: #7a0510;
  font-weight: bold;
  line-height: 1;
}
.block--login .name {
  /*text-align: center;*/
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.block--login .name span:not(.label-wmember) {
  font-weight: normal;
  font-size: 14px;
  margin-left: 5px;
}
.block--login .logout {
  display: inline-block;
  color: #fff;
  width: 190px;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  border: #fff solid 1px;
  line-height: 1;
}
.block--login > div {
  width: 48%;
}
.block--login .left {
  margin-right: 2%;
}
.block--login .right .tit-list {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff1a;
}
.block--login .nav--login {
  margin-bottom: 0;
  text-align: left;
}
.block--link {
  display: flex;
  justify-content: center;
}
.block--link .txt--link.wmember {
  margin-right: 24px;
}
.txt--link.mypage,
.txt--link.wmember {
  display: inline-block;
}
.txt--link.mypage a,
.txt--link.wmember a {
  color: #fff;
  cursor: pointer;
}
.txt--link.mypage a:hover img,
.txt--link.wmember a:hover img {
  right: -35px;
}
.txt--link.mypage img,
.txt--link.wmember img {
  width: 12px;
  vertical-align: -1px;
  margin-left: 5px;
  transition: all 0.3s ease;
}
.btn.card {
  margin: 40px 0 0 0;
}
.nav--login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav--login .regist {
  width: 190px;
}
.nav--login .regist:first-child {
  margin-right: 20px;
}
.nav--login .regist a {
  min-width: initial;
  width: 100%;
  display: block;
  border: #fff solid 1px;
  padding: 15px 0;
  color: #fff;
}
.nav--date {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  margin: 0 0 30px;
  text-align: center;
  letter-spacing: -0.5em;
}
.nav--date li {
  letter-spacing: 0.05em;
}
.nav--date .mypage {
  display: none;
}
.nav--date .login {
  font-size: 12px;
  width: 250px;
}
.nav--date .login a {
  display: block;
  color: #fff;
}
.nav--date .login a:hover {
  background: #fff;
  color: #000;
}
.nav--date .login span span {
  display: inline-block;
  text-decoration: underline;
  font-weight: bold;
}
.nav--date .login__status {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid #ffffff1a;
}
.nav--date .login__status a {
  display: block;
  color: #fff;
  padding: 10px;
  background: #151515;
}
.nav--date .login__status a:hover {
  background: #222;
}
.nav--date .login__status span {
  /*position: absolute;
			left: 0;
			opacity: 0.65;*/
}
.nav--date .login__status img {
  width: 12px;
  vertical-align: -1px;
  margin-left: 5px;
}
.nav--date .login__status .limit_alert {
  color: #e74b3d;
}
.nav--date .login__status .limit_alert a {
  color: #e74b3d;
}
.section--contents .inner {
  position: relative;
  left: -20px;
  opacity: 0;
  -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);
}
.out .section--contents .inner {
  left: 20px!important;
  opacity: 0!important;
  -webkit-transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 1);
}
.page--home .section--contents .inner {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.loaded .copyright {
  opacity: 1;
}
.loaded .section--contents .inner {
  left: 0;
  opacity: 1;
}
/*  デジタル会員証
------------------------------ */
.btn.card .btn--main,
.btn.close .btn--main {
  min-width: 290px;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
}
.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: 50%;
  margin: 40px auto 0;
}
.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 {
  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;
  width: 70%;
  max-width: 450px;
  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: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
}
.section--detail .date {
  margin: 0 0 30px;
  width: 50%;
  opacity: 0.5;
  font-size: 13px;
}
.section--detail .txt {
  line-height: 1.8em;
}
.section--detail .txt a {
  text-decoration: underline;
}
.section--detail .txt a:hover {
  text-decoration: none;
}
.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: #999;
}
.section--detail .block--share li a {
  display: block;
  font-size: 22px;
  color: #999;
}
.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: #999;
  vertical-align: -1px;
}
.section--detail .block--share li a:hover {
  color: #000;
}
.section--detail .block--share li a:hover svg {
  fill: #000;
}
/*  4.9 faq
------------------------------ */
.page--faq .section-tit {
  font-size: 30px;
}
.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 60px;
}
.page--faq .list--faq li {
  border-top: 1px solid #ddd;
}
.page--faq .list--faq li a {
  display: block;
  padding: 15px 0;
  position: relative;
  left: 0;
}
.page--faq .list--faq li a:hover {
  left: 10px;
}
.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 50px;
  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 .searchBox input[type="submit"]:hover {
  color: #222;
}
.page--faq .section--detail .tit--category {
  font-size: 14px;
}
.page--faq .section--detail .block--faq-detail {
  margin: 0 0 30px;
  padding: 25px;
  border: 1px solid #ddd;
}
.page--faq .section--detail .block--faq-detail dt {
  margin: 0 0 20px;
  padding: 0 0 15px;
  font-size: 18px;
  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;
}
.page--faq .section--detail .list--faq {
  margin: 0 0 30px;
}
.page--faq .chatbot {
  display: flex;
  position: fixed;
  bottom: 70px;
  right: 3%;
}
.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: 30px;
  height: 30px;
  fill: #000;
}
.page--faq .chatbot .icon a:hover {
  background: #000;
}
.page--faq .chatbot .icon a:hover svg {
  fill: #fff;
}
.page--faq .chatbot .comment {
  display: inline-block;
  padding: 18px 19px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  margin: 0 20px 0 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.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: 30px;
  font-weight: 700;
  line-height: 1.4;
}
.support .txt {
  margin: 0 0 30px;
}
.support .list--support dt {
  margin: 0 0 15px;
  padding: 0 0 10px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.support .list--support dd {
  margin: 0 0 30px;
}
.support .list--support dd .txt {
  margin: 0 0 15px;
}
.support .list--support li {
  margin: 0 0 15px;
}
/*  4.11 アンケート
------------------------------ */
.page--questionnaire {
  background: #eee;
}
.page--questionnaire .form--confirm,
.page--questionnaire .form--post {
  margin: 0 0 20px;
  background: #fff;
  padding: 40px;
}
.page--questionnaire .logo {
  width: 200px;
  margin: 0 auto 40px;
}
.page--questionnaire .inner {
  width: 80%;
  margin: 0 auto;
}
.page--questionnaire .section-tit {
  font-size: 28px;
}
.page--questionnaire .section--menu {
  display: none;
}
.page--questionnaire .section--contents {
  width: 100%;
  float: none;
}
.page--questionnaire .center {
  text-align: center;
}
.page--questionnaire .icon--required::after {
  content: '必須';
  color: #c00;
  font-size: 12px;
  margin-left: 10px;
}
.page--questionnaire .form--confirm {
  margin-top: 20px;
}
.page--questionnaire .form--confirm dt {
  font-weight: bold;
  margin: 0 0 5px;
}
.page--questionnaire .form--confirm dd {
  margin: 0 0 20px;
  padding: 15px;
  border-radius: 3px;
  background: #f7f7f7;
}
.page--questionnaire .btn--main {
  background: #000;
  color: #fff;
  font-size: 16px;
}
.page--questionnaire .btn--main:hover {
  background: #fff;
  color: #000;
}
.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: 16px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.section--detail.entry .btn--main:hover {
  color: #000;
  background: #fff;
}
.section--detail.entry .section-tit {
  text-align: center;
}
.section--detail.entry .section-tit img {
  width: 250px;
}
.section--detail.entry .section-tit span {
  display: block;
  font-size: 18px;
}
.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 60px;
}
.section--detail.entry .list--detail dt {
  margin: 0 0 15px;
  padding: 0 0 5px;
  font-weight: bold;
  font-size: 16px;
  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::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 10px;
}
.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 10px;
}
.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: 40px 0;
  border-top: 1px solid #ddd;
}
.page--bbs .btn .btn--main {
  background: #000;
  color: #fff;
  border: 1px solid;
}
.page--bbs .btn .btn--sub {
  border: 1px solid #000;
}
.page--bbs .btn .btn--main:hover {
  background: #fff;
  color: #000;
}
.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: 14px;
}
.page--bbs .form--post #text-count #num {
  font-weight: bold;
  font-size: 16px;
  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 .section--menu {
  display: none;
}
.page--bbs35th .clm2 {
  width: 100%;
}
.page--bbs35th .section--detail {
  margin: 0 auto 150px;
  padding-bottom: 80px;
}
.page--bbs35th h1 {
  width: 200px;
  margin: 100px auto 0;
}
.page--bbs35th h1 a {
  display: block;
  line-height: 0;
}
.page--bbs35th .bbs-box {
  margin: 0 auto 100px;
  text-align: center;
  line-height: 1.8;
}
.page--bbs35th .bbs-box .bbs-ph {
  text-align: center;
  margin: 0 auto 30px;
  line-height: 1;
}
.page--bbs35th .bbs-box .bbs-ph img {
  width: 400px;
}
.page--bbs35th .bbs-box .bbs-tit {
  font-size: 20px;
  margin: 0 auto 25px;
  font-weight: bold;
}
.page--bbs35th .bbs-box .bbs-limited {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: bold;
  color: #b7a06e;
  margin: 0 auto 30px;
  border: solid 1px;
  padding: 25px 0 15px;
  position: relative;
  max-width: 900px;
}
.page--bbs35th .bbs-box .bbs-limited span {
  font-family: 'Rye', cursive;
  font-size: 42px;
  font-weight: normal;
}
.page--bbs35th .bbs-box .bbs-limited:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border: solid 1px #b7a06e;
}
.page--bbs35th .bbs-box .block--lead {
  font-size: 20px;
  margin: 0 auto 50px;
}
.page--bbs35th .bbs-box .bbs--rule {
  background: #17140f;
  padding: 30px 30px 50px;
  font-size: 18px;
}
.page--bbs35th .bbs-box .bbs--rule .rule-tit {
  font-size: 25px;
  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: 18px;
  letter-spacing: 0.1em;
  color: #f00;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 18px;
  margin: 0 auto 40px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox {
  margin: 0 0;
  width: 49%;
  background: #312a1d;
  padding: 30px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox dt {
  font-weight: bold;
  color: #b7a06e;
  font-size: 20px;
}
.page--bbs35th .bbs-box .bbs--rule .bbs--attention dl.attentionBox dd {
  padding: 0px 0 0px 1em;
  text-indent: -1em;
}
.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: 25px;
  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: 30px;
  margin: 0 auto 100px;
  max-width: 900px;
}
.page--bbs35th .block--post .form--post textarea {
  height: 3em;
  border-radius: 0;
  font-size: 16px;
}
.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: 32%;
  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 #b7a06e;
}
.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 ul.list--comment li:nth-child(n+13) {
  display: none;
}
.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;
  opacity: 0;
  -webkit-transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 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;
  opacity: 0;
  -webkit-transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.5s all 0s cubic-bezier(0, 1.07, 1, 1);
}
.page--bbs35th .messageBox .name {
  margin: 10px 0;
}
.page--bbs35th .block--pager .pager__item--current {
  border-bottom: 0px solid;
  color: #fff;
}
.page--bbs35th .block--pager li a {
  color: #b7a06e;
  font-weight: bold;
  opacity: 1;
  display: block;
  line-height: 1;
  padding: 5px;
}
.page--bbs35th.loaded .wrapper:before,
.page--bbs35th.loaded .wrapper:after {
  opacity: 1;
}
.page--bbs35th.bbs35th--post .section--detail {
  text-align: center;
  padding: 150px 0 0;
}
.page--bbs35th.bbs35th--post .section--detail .txt {
  font-size: 20px;
}
.page--bbs35th.bbs35th--post .form--confirm {
  display: inline-block;
  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 {
  width: 80%;
  max-width: 1020px;
  padding: 140px 0 0;
  margin-inline: auto;
  margin-bottom: 80px;
}
.blogInner {
  width: 80%;
  max-width: 1020px;
  margin-inline: auto;
  margin-bottom: 80px;
  padding: 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: flex-start;
  text-decoration: none;
  padding: 20px 0;
  color: #000;
}
.blogInner .blogList li a .thumb {
  width: 140px;
  line-height: 0;
}
.blogInner .blogList li a .thumb img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 80px;
  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;
  margin: 0 0 2px;
}
.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 {
  width: 80%;
  max-width: 1020px;
  padding: 140px 0 0;
  margin-inline: auto;
  margin-bottom: 60px;
}
.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;
}
