@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 wallpapersupport
	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%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
::selection {
  background: #fff;
  color: #0d0d0d;
}
::-moz-selection {
  background: #fff;
  color: #0d0d0d;
}
*,
*::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 {
  text-align: center;
  margin: .5em 0;
}
.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  background: #fff;
  color: #000;
  border: 1px solid;
}
.btn--main:hover {
  color: #fff;
  background: #000;
}
.btn--sub {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid;
}
.btn--sub:hover {
  background: #fff;
  color: #000;
}
.detail__btn {
  clear: both;
  margin: 50px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}
.detail__btn svg {
  position: relative;
  left: 0;
  top: 2px;
  fill: #9e9e9e;
  width: 15px;
  height: 16px;
  margin-right: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.detail__btn a:hover {
  color: #fff;
}
.detail__btn a:hover svg {
  left: -10px;
  fill: #fff;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 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;
  font-family: 'Montserrat', sans-serif;
}
.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 #0d0d0d;
  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: #fff;
  border-color: #fff;
}
.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: #fff;
  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: #fff;
  border-color: #fff;
}
.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.vertical li {
  margin: 0 0 20px;
}
.list--information.vertical a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--information.vertical .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--information.vertical .new .date::after {
  content: 'UP';
  color: #e74b3d;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0 10px;
}
.list--information.vertical .date {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
.list--information.vertical .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--information.vertical .category {
  display: inline-block;
  opacity: 0.5;
  font-family: 'Montserrat', sans-serif;
}
.list--information.vertical .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.vertical .thumb img {
  width: 100%;
}
.list--information.vertical li {
  margin: 0;
  border-bottom: 1px solid #666666;
}
.list--information.vertical li:first-child {
  border-top: 1px solid #666666;
}
.list--information.vertical li.no-data {
  text-align: center;
  border: none !important;
}
.list--information.vertical li a {
  padding: 30px 10%;
  font-size: 18px;
}
.list--information.vertical li a::after {
  display: table;
  content: "";
  clear: both;
}
.list--information.vertical li a::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  z-index: 2;
  content: '';
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.list--information.vertical li a:hover {
  color: #fff;
}
.list--information.vertical li a:hover::before {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left;
}
.list--information.vertical li .date {
  float: left;
}
.list--information.vertical li .date .post {
  min-width: 115px;
  display: inline-block;
}
.list--information.vertical li .tit {
  font-size: 18px;
  padding-left: 280px;
}
.list--information.vertical li .category {
  font-size: 0.8em;
  vertical-align: middle;
  margin-left: 25px;
}
.list--information.vertical .new .date::after {
  position: absolute;
  left: -45px;
  top: 7px;
  margin: 0;
}
.charity .list--information.vertical .tit {
  padding-left: 140px;
}
.news .list--information.vertical .tit,
.media .list--information.vertical .tit {
  padding-left: 250px;
}
.list--information.horizontal li {
  margin: 0 0 20px;
}
.list--information.horizontal a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--information.horizontal .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--information.horizontal .new .date::after {
  content: 'UP';
  color: #e74b3d;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0 10px;
}
.list--information.horizontal .date {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
.list--information.horizontal .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--information.horizontal .category {
  display: inline-block;
  opacity: 0.5;
  font-family: 'Montserrat', sans-serif;
}
.list--information.horizontal .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.horizontal .thumb img {
  width: 100%;
}
.list--information.horizontal li {
  position: relative;
  width: 32%;
  float: left;
  margin: 0 2% 20px 0;
  background: #151515;
}
.list--information.horizontal li .date {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.horizontal li a {
  min-height: 180px;
  padding: 25px;
}
.list--information.horizontal li a:hover {
  color: #fff;
}
.list--information.horizontal li a:hover .thumb {
  opacity: 0.3;
}
.list--information.horizontal li a:hover .date {
  color: #fff;
}
.list--information.horizontal li a:hover .block--data {
  opacity: 1;
  top: 50%;
}
.list--information.horizontal li::before,
.list--information.horizontal li::after,
.list--information.horizontal li a::before,
.list--information.horizontal li a::after {
  position: absolute;
  z-index: 2;
  content: '';
  background: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.list--information.horizontal li::before,
.list--information.horizontal li::after {
  width: 0%;
  height: 3px;
}
.list--information.horizontal li a::before,
.list--information.horizontal li a::after {
  width: 3px;
  height: 0%;
}
.list--information.horizontal li a::before {
  top: 0px;
  left: 0px;
  transition-delay: 0.3s;
}
.list--information.horizontal li::after {
  bottom: 0px;
  left: 0px;
  transition-delay: 0.2s;
}
.list--information.horizontal li a::after {
  bottom: 0px;
  right: 0px;
  transition-delay: 0.1s;
}
.list--information.horizontal li::before {
  top: 0px;
  right: 0px;
  transition-delay: 0s;
}
.list--information.horizontal li:hover a::before {
  height: 100%;
  transition-delay: 0s;
}
.list--information.horizontal li:hover::after {
  width: 100%;
  transition-delay: 0.1s;
}
.list--information.horizontal li:hover a::after {
  height: 100%;
  transition-delay: 0.2s;
}
.list--information.horizontal li:hover::before {
  width: 100%;
  transition-delay: 0.3s;
}
.list--information.horizontal li:nth-child(3n) {
  margin-right: 0;
}
.list--information.horizontal li:nth-child(3n+1) {
  clear: left;
}
.list--information.horizontal .date {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: #5c5c5c;
}
.list--information.horizontal .category {
  position: absolute;
  bottom: 20px;
  right: 25px;
}
.list--contents li {
  margin: 0 0 20px;
}
.list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--contents .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--contents .new .date::after {
  content: 'UP';
  color: #e74b3d;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0 10px;
}
.list--contents .date {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
.list--contents .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--contents .category {
  display: inline-block;
  opacity: 0.5;
  font-family: 'Montserrat', sans-serif;
}
.list--contents .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--contents .thumb img {
  width: 100%;
}
.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.8;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  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.8;
  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 {
  margin: 45px 0 0;
  text-align: right;
}
.list__more a {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.list__more a svg {
  position: relative;
  right: 0;
  fill: #9e9e9e;
  width: 15px;
  height: 16px;
  margin: 0 0 0 10px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list__more a:hover {
  color: #fff;
}
.list__more a:hover svg {
  right: -10px;
  fill: #fff;
}
.titleSetlist {
  position: relative;
  margin: 40px 0 20px;
  padding: 10px 20px;
  background: #333;
  color: #b8b8b8;
  cursor: pointer;
  font-weight: bold;
}
.titleSetlist::after {
  position: absolute;
  content: '\f078';
  font-family: 'FontAwesome';
  right: 15px;
  top: 50%;
  line-height: 0;
}
.setlistBox {
  display: none;
}
.buttonClose {
  margin: 40px 0 0;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
}
.buttonClose:hover {
  color: #fff;
}
.buttonClose::after {
  content: '\f077';
  margin-left: 10px;
  font-family: 'FontAwesome';
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  position: relative;
  padding: 30px 0 0;
  text-align: center;
}
.block--pager li {
  display: inline-block;
  min-width: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 30px;
}
.block--pager li a:hover {
  opacity: 1;
  color: #fff;
}
.block--pager .pager__item--current {
  font-weight: 700;
  color: #fff;
  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: 50%;
}
.block--pager .pager__item--newer svg,
.block--pager .pager__item--older svg {
  fill: #9e9e9e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--older a {
  display: block;
  width: 20px;
  height: 8px;
  background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
  background-size: contain;
  opacity: 1;
}
.block--pager .pager__item--newer a:hover svg,
.block--pager .pager__item--older a:hover svg {
  fill: #fff;
}
.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--newer svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.block--pager .pager__item--older {
  right: 5%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* 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: #0d0d0d;
  font-family: -apple-system, BlinkMacSystemFont, 'higuchi-no-hi', 'shoku', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
a {
  color: #b8b8b8;
  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;
}
hr {
  margin: 20px 0;
  height: 1px;
  border: none;
  border-top: 1px #999 solid;
}
/* 3.2 共通レイアウト
------------------------------ */
#wrapper {
  position: relative;
  min-height: 100%;
  min-width: 1000px;
  padding-bottom: 147px;
}
.page--home #wrapper {
  padding-bottom: 0;
}
section {
  padding: 150px 0 60px;
}
section .inner {
  width: 80%;
  margin: 0 auto;
}
.page--home section {
  padding: 25px 0;
}
.nav--language {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}
.nav--language input {
  display: none;
}
.nav--language li {
  display: inline-block;
}
.nav--language label {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav--language li.current label {
  color: #fff;
  opacity: 1;
}
.nav--language li:first-child::after {
  content: '|';
  margin: 0 5px;
}
.nav--language label:hover {
  color: #fff;
  opacity: 1;
}
/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  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: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 60px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #fff;
}
.menu-tit {
  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.8;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
}
.center {
  text-align: center;
}
.ph {
  position: relative;
}
.ph img {
  width: 100%;
}
.ph .dummy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
}
.red {
  color: #c00;
}
/* header
------------------------------ */
#header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background: #0d0d0d;
}
#header .logo {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 150px;
}
#header .g-nav {
  position: absolute;
  top: 51px;
  right: 5%;
  margin-right: -10px;
  font-family: 'Montserrat', sans-serif;
}
#header .g-nav li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}
#header .g-nav li a {
  color: #fff;
}
#header .g-nav li a::after {
  opacity: 0;
  position: absolute;
  bottom: -12px;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
#header .g-nav li a:hover::after {
  opacity: 1;
  bottom: -8px;
}
#header .nav--sns {
  position: absolute;
  z-index: 998;
  top: 15px;
  right: 150px;
}
#header .nav--sns li {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
#header .nav--sns svg {
  fill: #fff;
  width: 16px;
  height: 16px;
  vertical-align: -1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .nav--sns a {
  color: #fff;
}
#header .nav--sns a:hover {
  color: #b8b8b8;
}
#header .nav--sns a:hover svg {
  fill: #b8b8b8;
}
.page--home.header-transparent #header {
  background: rgba(13, 13, 13, 0.5);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.page--home #header .nav__home a::after,
.page--info.news #header .nav__news a::after,
.category-1 #header .nav__news a::after,
.category-3 #header .nav__media a::after,
.category-8 #header .nav__live a::after,
.page--info.media #header .nav__media a::after,
.page--info.live #header .nav__live a::after,
.page--disco #header .nav__disco a::after {
  opacity: 1;
  bottom: -8px;
}
.block-lang {
  position: absolute;
  z-index: 998;
  top: 20px;
  right: 5%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.page--home #header {
  top: -100px;
}
.page--home .block-lang {
  top: -40px;
}
/* footer
------------------------------ */
#footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #000;
}
#footer a:hover {
  color: #fff;
}
#footer .inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 35px 0;
}
#footer .block--sub-banner {
  padding: 60px 0;
  background: #0d0d0d;
  overflow: hidden;
}
#footer .block--sub-banner a img {
  border: 2px solid #000;
}
#footer .block--sub-banner a:hover img {
  border: 2px solid #fff;
}
#footer .block--sub-banner .slick-next {
  right: 4%;
}
#footer .block--sub-banner .slick-prev {
  left: 4%;
}
#footer .block--sub-banner .not-slide {
  padding: 0 5%;
}
#footer .block--sub-banner .not-slide li {
  width: 22%;
  margin-right: 4%;
  float: left;
}
#footer .block--sub-banner .not-slide li:last-child {
  margin: 0;
}
#footer .block--sub-banner .slick-slide img {
  width: 94%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .nav--support {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}
#footer .nav--support li {
  display: inline-block;
  margin: 0 5px 0 0;
}
#footer .nav--support li a::after {
  content: '/';
  margin: 0 0 0 5px;
  -webkit-transition: none;
  transition: none;
  color: #b8b8b8;
}
#footer .nav--support li:last-child a::after {
  display: none;
}
#footer .nav--support a {
  color: #b8b8b8;
}
#footer .nav--support a:hover {
  color: #fff;
}
#footer .footer_lang {
  display: inline-block;
  margin: 0 0 0 25px;
}
#footer .nav--sns {
  display: inline-block;
  margin: 0 0 0 25px;
}
#footer .nav--sns li {
  display: inline-block;
  font-size: 18px;
  margin: 0 0 0 10px;
}
#footer .nav--sns svg {
  fill: #b8b8b8;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .nav--sns a:hover svg {
  fill: #fff;
}
#footer .charity {
  position: absolute;
  right: 0;
  top: 37px;
  font-size: 13px;
}
#footer .charity svg {
  fill: #9e9e9e;
  width: 9px;
  height: 10px;
  margin: 0 0 0 5px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#footer .copyright {
  font-family: 'Montserrat', sans-serif;
}
.page--home #footer {
  position: static;
}
/* 4.2 home
------------------------------ */
.page--home .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
  overflow: hidden;
}
.page--home .loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}
.page--home .keyvisual {
  position: relative;
  height: 100vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.page--home .keyvisual .scroll {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: -60px;
  left: 0;
  padding: 20px 0;
  text-align: center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.page--home .keyvisual .scroll .arrow {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 0px;
  margin-left: -40px;
}
.page--home .keyvisual .scroll .arrow svg {
  fill: #fff;
  width: 15px;
  height: 17px;
  -webkit-animation: scroll 2s ease-out 0s infinite;
  animation: scroll 2s ease-out 0s infinite;
  margin-left: -7px;
  margin-top: 14px;
}
.page--home .keyvisual .scroll .arrow::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 25px;
  left: 0;
  background: #0d0d0d;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.page--home .section--banner {
  padding: 60px 0 25px;
  overflow: hidden;
}
.page--home .section--banner .not-slide {
  padding: 0 10%;
}
.page--home .section--banner .not-slide li {
  width: 49%;
  float: left;
}
.page--home .section--banner .not-slide li img {
  border: 2px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page--home .section--banner .not-slide li:first-child {
  margin-right: 2%;
}
.page--home .section--banner .not-slide li a:hover img {
  border: 2px solid #fff;
}
.page--home .section--banner .slick-prev,
.page--home .section--banner .slick-next {
  width: 35px;
  height: 35px;
}
.page--home .section--banner .slick-slide img {
  margin: 0 auto;
  border: 3px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.page--home .section--banner .slick-slide a:hover img {
  opacity: 1;
}
.page--home .section--banner .slick-active img {
  border: 3px solid #fff;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.page--home .section--live .list__more {
  padding: 0 10%;
}
.page--home .section--video {
  padding-bottom: 100px;
}
.page--home .section--video li {
  position: relative;
  width: 48%;
  margin: 0 4% 0 0;
  background: none;
}
.page--home .section--video li:last-child {
  margin: 0;
}
.page--home .section--video li a {
  padding: 0;
}
.page--home .section--video li::before,
.page--home .section--video li::after {
  display: none;
}
.page--home .section--fansite {
  padding: 80px 0;
  color: #0d0d0d;
  background: url(/static/bucktick/official/ph_fansite.jpg) no-repeat 15% 50% #fff;
  background-size: 420px;
}
.page--home .section--fansite .qr {
  width: 100px;
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
}
.page--home .section--fansite .qr img {
  border: 1px solid #ccc;
}
.page--home .section--fansite .qr span {
  display: block;
}
.page--home .section--fansite .block--txt {
  width: 50%;
  float: right;
}
.page--home .section--fansite .block--txt .tit {
  width: 316px;
  margin: 0 0 20px;
}
.page--home .section--fansite .block--txt .txt {
  margin: 0 0 20px;
  font-weight: bold;
}
@-webkit-keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 15px;
    opacity: 1;
  }
  100% {
    top: 15px;
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 15px;
    opacity: 1;
  }
  100% {
    top: 15px;
    opacity: 0;
  }
}
/* slick */
.slick-next {
  right: 21%;
  z-index: 99;
}
.slick-next::before {
  content: '';
  display: block;
  width: 30px;
  height: 35px;
  background: url(/static/bucktick/official/arrow_R.png) no-repeat 50% 50%;
  background-size: contain;
}
.slick-next:hover::before {
  background: url(/static/bucktick/official/arrow_R.png) no-repeat 50% 50%;
  background-size: contain;
}
.slick-prev {
  left: 21%;
  z-index: 99;
}
.slick-prev::before {
  content: '';
  display: block;
  left: 21%;
  width: 30px;
  height: 35px;
  background: url(/static/bucktick/official/arrow_L.png) no-repeat 50% 50%;
  background-size: contain;
}
.slick-prev:hover::before {
  background: url(/static/bucktick/official/arrow_L.png) no-repeat 50% 50%;
  background-size: contain;
}
.slick-dots {
  bottom: -25px;
  left: 25%;
  text-align: left;
}
.slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px 0 0;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
}
.slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
}
.slick-dots li button::before {
  content: '';
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loaded.page--home #header {
  top: 0;
}
.loaded.page--home .block-lang {
  top: 20px;
}
.loaded.page--home .keyvisual .scroll {
  bottom: 0;
}
/*  4.3 information
------------------------------ */
.page--info .section--detail .inner {
  width: 60%;
}
.page--info .section--detail .txt {
  margin: 0 0 50px;
  line-height: 2em;
}
.section--detail .tit {
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 50px;
  color: #fff;
}
.section--detail .date {
  margin: 0 0 30px;
  width: 50%;
  opacity: 0.5;
  font-size: 13px;
}
.section--detail .event-date {
  display: block;
  margin: 0 0 10px;
  font-size: 0.8em;
}
.section--detail .txt {
  word-wrap: break-word;
}
.section--detail .txt a {
  text-decoration: underline;
}
.section--detail .txt a:hover {
  text-decoration: none;
  color: #fff;
}
.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: #626262;
}
.section--detail .block--share li a {
  display: block;
  font-size: 22px;
  color: #b8b8b8;
}
.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: #b8b8b8;
  vertical-align: -1px;
}
.section--detail .block--share li a:hover {
  color: #fff;
  opacity: 1;
}
.section--detail .block--share li a:hover svg {
  fill: #fff;
}
.block--category {
  position: relative;
  height: 60px;
  margin: -40px 0 0;
}
.block--category .form__select,
.block--category ul {
  text-align: center;
}
.block--category li {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  margin-right: 10px;
}
.block--category li a {
  display: block;
  position: relative;
  color: #636363;
}
.block--category li a:hover,
.block--category li.current a {
  color: #fff;
}
.block--category .form__select {
  top: -20px;
  width: 150px;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.page--info.live .block--category {
  text-align: right;
  padding-right: 5%;
}
/*  4.4 discography
------------------------------ */
.page--disco .list--discography {
  padding: 0 5%;
}
.page--disco .list--discography li {
  margin: 0 0 20px;
}
.page--disco .list--discography a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.page--disco .list--discography .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.page--disco .list--discography .new .date::after {
  content: 'UP';
  color: #e74b3d;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0 10px;
}
.page--disco .list--discography .date {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
.page--disco .list--discography .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.page--disco .list--discography .category {
  display: inline-block;
  opacity: 0.5;
  font-family: 'Montserrat', sans-serif;
}
.page--disco .list--discography .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page--disco .list--discography .thumb img {
  width: 100%;
}
.page--disco .list--discography li {
  position: relative;
  float: left;
  width: calc(18.4%);
  margin: 0 2% 50px 0;
}
.page--disco .list--discography li:nth-child(5n) {
  margin-right: 0;
}
.page--disco .list--discography a {
  line-height: 0;
}
.page--disco .list--discography .block--data {
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 5%;
  z-index: 2;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  line-height: 1.4em;
}
.page--disco .list--discography .category {
  opacity: 1;
  font-size: 12px;
  margin: 0 0 5px;
}
.page--disco .list--discography .tit {
  margin: 0 0 5px;
  line-height: 1.4em;
  font-size: 14px;
}
.page--disco .list--discography .date {
  font-size: 12px;
}
.page--disco .list--discography .thumb {
  overflow: hidden;
  position: relative;
}
.page--disco .list--discography .thumb img {
  background-size: contain;
}
.page--disco .list--discography .thumb .blur {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.page--disco .list--discography .thumb .blur img {
  background-size: cover;
}
.page--disco .list--discography a:hover .thumb {
  opacity: 0.3;
}
.page--disco .list--discography a:hover .block--data {
  opacity: 1;
}
.page--disco .list--discography li::before,
.page--disco .list--discography li::after,
.page--disco .list--discography a::before,
.page--disco .list--discography a::after {
  position: absolute;
  z-index: 2;
  content: '';
  background: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.page--disco .list--discography li::before,
.page--disco .list--discography li::after {
  width: 0%;
  height: 3px;
}
.page--disco .list--discography a::before,
.page--disco .list--discography a::after {
  width: 3px;
  height: 0%;
}
.page--disco .list--discography a::before {
  top: 0px;
  left: 0px;
  transition-delay: 0.3s;
}
.page--disco .list--discography li::after {
  bottom: 0px;
  left: 0px;
  transition-delay: 0.2s;
}
.page--disco .list--discography a::after {
  bottom: 0px;
  right: 0px;
  transition-delay: 0.1s;
}
.page--disco .list--discography li::before {
  top: 0px;
  right: 0px;
  transition-delay: 0s;
}
.page--disco .list--discography li:hover a::before {
  height: 100%;
  transition-delay: 0s;
}
.page--disco .list--discography li:hover::after {
  width: 100%;
  transition-delay: 0.1s;
}
.page--disco .list--discography li:hover a::after {
  height: 100%;
  transition-delay: 0.2s;
}
.page--disco .list--discography li:hover::before {
  width: 100%;
  transition-delay: 0.3s;
}
.page--disco .section--detail .jacket {
  width: 35%;
  float: left;
}
.page--disco .section--detail .jacket .list--jacket {
  width: 70%;
  margin: 0 auto;
}
.page--disco .section--detail .jacket .list--jacket li {
  margin: 0 0 25px;
}
.page--disco .section--detail .jacket .list--jacket li .dummy {
  border: 1px solid #222;
}
.page--disco .section--detail .jacket .ph.one {
  width: 70%;
  margin: 0 auto;
}
.page--disco .section--detail .jacket .ph {
  line-height: 0;
  margin: 0 0 10px;
}
.page--disco .section--detail .block--disc-detail {
  padding-left: 40%;
}
.page--disco .section--detail .block--disc-detail .tit {
  margin: 0 0 25px;
}
.page--disco .section--detail .block--disc-detail .category {
  margin-right: 10px;
}
.page--disco .section--detail .block--disc-detail .text {
  margin: 0 0 50px;
  line-height: 2em;
}
.page--disco .section--detail .block--disc-detail .text strong {
  margin-top: 20px;
  display: inline-block;
}
.page--disco .section--detail .block--disc-detail .text a {
  text-decoration: underline;
}
.page--disco .section--detail .block--disc-detail .text a:hover {
  color: #fff;
}
.page--disco .section--detail .block--disc-detail .disc-list li {
  margin: 0 0 25px;
}
.page--disco .section--detail .block--disc-detail .disc-list h2 {
  font-weight: bold;
  margin: 0 0 10px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list li {
  margin: 0 0 2px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list .num {
  margin-right: 5px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list .txt--sub {
  padding-left: 1em;
}
.edge.page--disco .list--discography .thumb .blur,
.ie.page--disco .list--discography .thumb .blur {
  opacity: 0.2;
}
/*  4.5 profile
------------------------------ */
.page--profile .ph.memberAll {
  position: sticky;
  width: 32%;
  left: 8%;
  top: 275px;
  float: left;
  margin: 0 0 20px;
}
.page--profile .block--txt {
  padding-left: 40%;
}
.page--profile .block--txt .lead {
  font-weight: bold;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 2em;
}
.page--profile .block--txt .txt {
  margin: 0 0 15px;
  line-height: 2em;
}
.page--profile .member-profile {
  padding: 40px 0 0 ;
}
.page--profile .member-profile li {
  margin: 0 0 20px;
  background: #151515;
}
.page--profile .member-profile .ph {
  float: left;
  width: 180px;
  margin: 0 20px 0 0;
  line-height: 0;
}
.page--profile .member-profile .name {
  font-weight: bold;
  padding: 20px;
  font-size: 16px;
}
.page--profile .member-profile .txt {
  padding: 0 20px;
  font-size: 13px;
}
.ie .page--profile .ph.memberAll,
.edge .page--profile .ph.memberAll {
  position: fixed;
}
/*  4.10 support
------------------------------ */
.page--support .inner {
  width: 60%;
}
.page--support .txt {
  margin: 0 0 30px;
}
.page--support .list--support dt {
  margin: 0 0 15px;
  padding: 0 0 5px;
  font-weight: bold;
  border-bottom: 1px solid #666;
}
.page--support .list--support dd {
  margin: 0 0 30px;
}
.page--support .list--support dd .txt {
  margin: 0 0 15px;
}
.page--support .list--support dd a {
  text-decoration: underline;
}
.page--support .list--support dd a:hover {
  color: #fff;
}
.page--support .list--support li {
  padding: 15px 0;
  border-bottom: 1px solid #666;
}
.page--support .list--support li:first-child {
  border-top: 1px solid #666;
}
.page--support .list--support li a {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.page--support .list--support li a:hover {
  color: #fff;
}
.page--support .list--support .list--txt.decimal {
  padding: 10px 0 10px 1em;
}
.page--support .list--support .list--txt.decimal li {
  border: none;
  margin: 0 0 5px;
  padding: 0;
  list-style: decimal;
}
