@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 biography
	4.5 blog
	4.6 questionnaire
	4.7 faq
	4.8 support
	4.9 entry
-------------------------------------------- */
@font-face {
  font-family: 'journalregular';
  src: url("/static/eikichiyazawa/official/font/journal-webfont.eot");
  src: url("/static/eikichiyazawa/official/font/journal-webfont.eot?#iefix") format("embedded-opentype"), url("/static/eikichiyazawa/official/font/journal-webfont.woff2") format("woff2"), url("/static/eikichiyazawa/official/font/journal-webfont.woff") format("woff"), url("/static/eikichiyazawa/official/font/journal-webfont.svg#journalregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html, body {
  height: 100%;
  -webkit-text-size-adjust: none;
}

html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

img, iframe, object, audio, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

i {
  font-style: normal;
}

img {
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

::-moz-selection {
  background: #151515;
  color: #f4f3f0;
}

::selection {
  background: #151515;
  color: #f4f3f0;
}

::-moz-selection {
  background: #151515;
  color: #f4f3f0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

a {
  -webkit-transition: .3s;
  transition: .3s;
}

/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}

/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.btn {
  text-align: center;
  margin: 1em 0;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn input {
  -webkit-transition: .3s;
  transition: .3s;
}

.btn--main {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 3.4;
  letter-spacing: 0.05em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  background: #151515;
  color: #fff;
}

.btn--main:hover {
  background: #000;
  -webkit-box-shadow: 10px 15px 20px rgba(44, 45, 49, 0.2);
          box-shadow: 10px 15px 20px rgba(44, 45, 49, 0.2);
}

.btn--sub {
  background: none;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 3.4;
  letter-spacing: 0.05em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  border: 1px solid #151515;
  color: #151515;
  -webkit-appearance: none;
}

.page--error .btn--sub {
  text-align: center;
  margin-top: 10px;
}

.btn--sub {
  min-width: 300px;
  line-height: 1;
  color: #151515;
  line-height: 1.5;
  border-radius: 40px;
  padding: 10px 30px;
  position: relative;
}

.btn--sub:hover {
  color: #fff;
  background: #151515;
}

.detail__btn {
  width: 50%;
  margin-top: 50px;
  position: relative;
  left: 0;
  z-index: 30;
  clear: both;
}

.detail__btn a {
  display: inline-block;
  position: relative;
  text-align: left;
}

.detail__btn a::before {
  content: 'BACK';
  font-family: 'din-2014', sans-serif;
  font-weight: 800;
  color: #151515;
  letter-spacing: 0.05em;
}

.detail__btn a::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #151515;
  vertical-align: 5px;
  margin-left: 5px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.detail__btn a:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.page--error .btn--sub:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}

.form--post dd {
  margin: 0 0 1em;
}

.block--error {
  color: #fff;
  background: #cc0000;
  padding: 10px 15px;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

/* 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"],
button {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #151515;
  border-radius: 0.3em;
  padding: 0.5em;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
button: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,
button.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,
button.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],
button[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

input[readonly="readonly"],
input[readonly="readonly"] {
  border: none;
  background: #eee;
}

.input--half {
  width: 50% !important;
}

.input--quarter {
  width: 25% !important;
}

button {
  border: none;
  line-height: 1;
}

/* textarea */
textarea {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #151515;
  border-radius: 0.3em;
  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: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #151515;
  border-radius: 0.3em;
  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;
  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: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}

.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.form__checkbox.form__error {
  color: #f33;
}

.form__checkbox label p {
  padding-left: 1.6em;
}

.form__checkbox label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #f4f3f0;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  top: 70%;
  left: 0.2em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}

.form__checkbox :checked ~ p::before {
  background: #151515;
  border-color: #151515;
}

.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}

/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}

.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.form__radio.form__error {
  color: #f33;
}

.form__radio label p {
  padding-left: 1.6em;
}

.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #151515;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.form__radio :checked ~ p::before {
  border-color: #151515;
  border-width: 0.3em;
}

/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}

.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.form__toggle.form__error {
  color: #f33;
}

.form__toggle label p {
  padding-left: 0;
  position: relative;
}

.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #ddd;
}

.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  top: 50%;
  right: 0;
}

.form__toggle label p::after {
  width: 30px;
  background: #fff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 20px;
}

.form__toggle :checked ~ p::before {
  background: #151515;
  border-color: #151515;
}

.form__toggle :checked ~ p::after {
  right: 0;
}

/* horizontal */
.form--horizontal li {
  display: inline-block;
}

.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

.form--confirm {
  margin: 0 0 2em;
}

.form--confirm {
  border: 0.5px solid #d9dde0;
  border-radius: 6px;
  padding: 40px 30px 10px;
  margin-bottom: 40px;
}

.form--confirm dt {
  margin: 0 0 10px;
  opacity: 0.4;
}

.form--confirm dd {
  margin: 0 0 30px;
}

/* 2.3 list
------------------------------ */
.no-data {
  text-align: center;
  opacity: 0.5;
}

/*  information */
.list--information a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
  background: #fff;
}

.list--information .date {
  font-family: 'din-2014', sans-serif;
  font-weight: 700;
  font-size: .8em;
  color: #555;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}

.list--information .tit {
  font-size: 20px;
}

.list--information .new::after {
  content: 'New Post';
  font-family: 'journalregular', sans-serif;
  font-weight: 100;
  font-size: 60px;
  color: #d0121b;
  letter-spacing: -0.01em;
  margin-left: 10px;
  position: absolute;
  right: -20px;
  top: -48px;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
}

.list--information .category {
  font-family: 'din-2014', sans-serif;
  font-weight: 800;
  font-size: 1em;
  letter-spacing: 0.01em;
  display: inline-block;
}

.list--information figure img {
  background: no-repeat center;
  background-image: url(/static/eikichiyazawa/official/common/thumb_default.png);
  background-size: cover;
}

.list--information li {
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
  -webkit-transition: .6s;
  transition: .6s;
}

.list--information li.view:hover, .list--information li:hover {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.list--information li a {
  padding: 0;
  background: none;
}

.list--information li a .tit {
  font-size: 14px;
  line-height: 1.4;
}

.list--information li a .date {
  display: inline-block;
  line-height: 1;
  margin-bottom: 0;
  vertical-align: 1px;
  padding-left: 5px;
}

.list--information li a .block--txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: start;
      justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  min-height: 120px;
  background: #fff;
  padding: 10px 20px 15px 25%;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  -webkit-box-shadow: 16px 20px 20px rgba(65, 64, 62, 0.2);
          box-shadow: 16px 20px 20px rgba(65, 64, 62, 0.2);
}

.list--information li figure {
  width: 22%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  position: absolute;
  left: -6px;
  top: 0;
}

.list--information li figure img {
  height: 100%;
}

.list--information .no-data {
  padding: 35px 5%;
}

.list--sns {
  text-align: center;
  position: relative;
  z-index: 10;
}

.list--sns li {
  display: inline-block;
  margin: 0 4px;
}

.list--sns li a {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 35px;
  background: #151515;
  color: #fff;
  font-size: 26px;
  overflow: hidden;
  -webkit-box-shadow: 10px 6px 15px rgba(65, 64, 62, 0.4);
          box-shadow: 10px 6px 15px rgba(65, 64, 62, 0.4);
  position: relative;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.list--sns li a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.list--sns li a:hover svg, .list--sns li a:hover i, .list--sns li a:hover img {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.list--sns li a svg {
  width: 27px;
  height: 24px;
  fill: #fff;
  vertical-align: -3px;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.list--sns li a i {
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.list--sns li.spotify img {
  line-height: 70px;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.list--discography {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: end;
      justify-content: end;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
      align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list--discography li {
  width: 32%;
  margin-bottom: 80px;
}

.list--discography li a {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.list--discography li a:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.list--discography li figure {
  margin-bottom: 10px;
}

.list--category {
  display: inline-block;
  position: absolute;
}

.list--category li {
  display: inline-block;
  font-family: 'din-2014', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-right: 1em;
}

.list--category li a, .list--category li span {
  display: block;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.list--category li a span, .list--category li span span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.list--category li a::before, .list--category li span::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #151515;
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.list--category li a:hover::before, .list--category li span:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.list--category .current a::before,
.list--category .current > span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.list--category .current.all a::before {
  background: #AF182F;
}

/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #f4f3f0;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, 'Arial' , "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #151515;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: break-word;
}

a {
  color: #151515;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrap {
  background-color: #f4f3f0;
  position: relative;
  min-height: 100%;
  padding: 0 0 260px;
  overflow: hidden;
}

.sp {
  display: none !important;
}

/* 3.2 header
------------------------------ */
.header {
  width: 100%;
  height: 130px;
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 999;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: start;
      justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.header h1 {
  position: relative;
  top: 4px;
  left: 3.5%;
  z-index: 999;
  -webkit-transition: .3s;
  transition: .3s;
}

.header h1 a {
  display: block;
}

.header h1 a svg {
  width: 140px;
  height: 53px;
  fill: #d0121b;
  -webkit-transition: .3s;
  transition: .3s;
}

.header h1 a span {
  display: none;
}

.headerFixed .header {
  height: 76px;
  background: #fff;
  -webkit-box-shadow: 10px 12px 30px rgba(65, 64, 62, 0.2);
          box-shadow: 10px 12px 30px rgba(65, 64, 62, 0.2);
  width: 96%;
  margin: 0 auto;
  left: 2%;
  border-radius: 6px;
}

.headerFixed .header h1 a svg {
  width: 110px;
  height: 41px;
}

.headerFixed .header .drawer {
  top: 23px;
}

.drawer {
  width: 80%;
  height: 30px;
  position: absolute;
  top: 50px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-transition: top .3s;
  transition: top .3s;
}

.drawer .g-nav {
  width: 100%;
  height: 27px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer .g-nav .g-nav__inner {
  text-align: right;
  position: relative;
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer .g-nav .g-nav__inner .nav--menu__fc li a::after {
  content: '';
  width: 1px;
  height: 13px;
  background: #fff;
  position: absolute;
  right: -15px;
  top: 4px;
  left: auto;
}

.drawer .g-nav--tit, .drawer .g-nav__fansite, .drawer .g-nav__fc, .drawer .nav--sns {
  display: none !important;
}

.drawer li {
  display: inline-block;
  font-family: 'din-2014', sans-serif;
  font-size: 1em;
  margin-right: 1.5em;
  vertical-align: top;
}

.drawer li a {
  font-family: 'din-2014';
  font-weight: 800;
  color: #151515;
  letter-spacing: 0.01em;
  position: relative;
}

.drawer li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #151515;
  position: absolute;
  bottom: -4px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer li a:last-child {
  margin-right: 0;
}

.drawer li a:hover::before {
  -webkit-transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.drawer__btn {
  display: none;
}

/* 3.3 footer
------------------------------ */
footer {
  width: 100%;
  bottom: 0;
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
  background: #d4d1ca;
  position: absolute;
}

footer .inner {
  padding: 45px 0 100px;
}

footer .area--copyright {
  width: 40%;
  text-align: right;
  font-size: 11px;
  padding-right: 5%;
  margin: 0 0 0 auto;
}

footer .area--copyright .block--copyright {
  margin-bottom: 10px;
}

footer .area--copyright .block--copyright p {
  display: inline-block;
}

footer .area--copyright .block--copyright p.copyright {
  margin-right: 10px;
}

footer .area--copyright .block--z-puls-music a {
  display: block;
  text-decoration: underline;
  margin-bottom: 10px;
}

footer .area--copyright .block--z-puls-music a:hover {
  color: #d0121b;
}

footer .copyright {
  font-family: 'din-2014', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: right;
}

footer .nav--sns {
  width: 35%;
  position: relative;
  top: 70px;
}

footer .list--sns li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  -webkit-box-shadow: 6px 4px 11px rgba(65, 64, 62, 0.4);
          box-shadow: 6px 4px 11px rgba(65, 64, 62, 0.4);
}

footer .list--sns li a svg {
  width: 21px;
  height: 18px;
}

/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
}

.section-tit {
  color: inherit;
  font-size: 330px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 60px;
  font-family: 'din-2014',Noto Sans JP, 'Arial' , "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 800;
  line-height: .75;
  color: #777;
  letter-spacing: -0.03em;
  position: absolute;
  left: -30px;
  top: -20px;
  opacity: 0.1;
}

.txt--lead {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  margin: 0 0 1em;
}

.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: break-word;
  margin: 0 0 1em;
}

.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.txt--link {
  text-decoration: underline;
}

.title-underline {
  font-size: 16px;
  border-bottom: 1px solid #151515;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.title-background {
  font-size: 13px;
  background: #151515;
  color: #f4f3f0;
  line-height: 1;
  padding: 10px 10px;
  margin-bottom: 5px;
}

.link-arrow a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-decoration: none !important;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.link-arrow a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: -0.5em;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: -.15em;
  -webkit-transition: color 0s ,right .3s;
  transition: color 0s ,right .3s;
}

.link-arrow a:hover {
  color: #d0121b !important;
}

.link-arrow a:hover::after {
  border-color: #d0121b;
  right: -0.7em;
}

.box-gray {
  background: #eaeaea;
  padding: 30px;
}

.box-border {
  border: 1px solid #151515;
  padding: 30px;
}

.box-red {
  background: #d0121b;
  color: #fff;
  padding: 30px;
}

.box-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
      align-items: normal;
}

.box-horizontal > div {
  width: 49%;
}

.box-horizontal > div:not(:last-child) {
  border-right: 1px solid #ccc;
  padding-right: 2%;
}

.center {
  text-align: center;
}

.ph, .thumb {
  line-height: 0;
  position: relative;
}

.dummy {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}

.svg-symbol {
  display: none !important;
}

.tit-area .list--category {
  display: inline-block;
  position: relative;
  top: -10px;
  left: 0;
}

.tit-area .list--category li a {
  display: block;
  padding: 0;
  position: relative;
}

.tit-area .list--category li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #151515;
  position: absolute;
  top: 33px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.tit-area .list--category li a:hover::before, .tit-area .list--category li a.current::before {
  -webkit-transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

/* 2.4 pagenation
------------------------------ */
.block--pager {
  text-align: center;
  margin: 80px auto 30px;
  padding: 0 60px;
  letter-spacing: -.5em;
}

.block--pager li {
  display: inline-block;
  font-family: 'din-2014';
  font-weight: 700;
  padding: .6em 0;
  margin: 0 5px;
  letter-spacing: .03em;
  vertical-align: middle;
  position: relative;
}

.block--pager li::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #151515;
  position: absolute;
  bottom: 4px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.block--pager li:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.block--pager a {
  display: block;
  position: relative;
  color: #151515;
  text-decoration: none;
  padding: 0 0.6em;
}

.block--pager .pager__item--top, .block--pager .pager__item--number {
  text-align: center;
  color: #888;
}

.block--pager .pager__item--newer {
  width: 50px;
  padding: 7px 0;
  margin-right: 1em;
}

.block--pager .pager__item--newer a, .block--pager .pager__item--newer span {
  display: block;
  width: 100%;
  padding: 12px 0;
  position: relative;
}

.block--pager .pager__item--newer a::before, .block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::before, .block--pager .pager__item--newer span::after {
  content: '';
  display: block;
  position: absolute;
}

.block--pager .pager__item--newer a::before, .block--pager .pager__item--newer span::before {
  width: 30px;
  height: 1px;
  background: #151515;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.block--pager .pager__item--newer a::after, .block--pager .pager__item--newer span::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 9px;
  left: 0;
  -webkit-transition: left .3s;
  transition: left .3s;
}

.block--pager .pager__item--newer a:hover::before {
  -webkit-transform: scaleX(1.2);
          transform: scaleX(1.2);
}

.block--pager .pager__item--newer a:hover::after {
  left: -5px;
}

.block--pager .pager__item--newer span {
  opacity: .2;
}

.block--pager .pager__item--older {
  width: 50px;
  padding: 7px 0;
  margin-left: 2.5em;
}

.block--pager .pager__item--older a, .block--pager .pager__item--older span {
  display: block;
  width: 100%;
  padding: 12px 0;
  position: relative;
}

.block--pager .pager__item--older a::before, .block--pager .pager__item--older a::after, .block--pager .pager__item--older span::before, .block--pager .pager__item--older span::after {
  content: '';
  display: block;
  position: absolute;
}

.block--pager .pager__item--older a::before, .block--pager .pager__item--older span::before {
  width: 30px;
  height: 1px;
  background: #151515;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.block--pager .pager__item--older a::after, .block--pager .pager__item--older span::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
  left: 23px;
  -webkit-transition: left .3s;
  transition: left .3s;
}

.block--pager .pager__item--older a:hover::before {
  -webkit-transform: scaleX(1.2);
          transform: scaleX(1.2);
}

.block--pager .pager__item--older a:hover::after {
  left: 28px;
}

.block--pager .pager__item--older span {
  opacity: .2;
}

.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
}

.block--pager .pager__item--newer::before,
.block--pager .pager__item--older::before {
  display: none !important;
}

.block--pager .pager__item--current {
  font-family: 'din-2014';
  font-weight: 800;
  position: relative;
  padding: 0.6em;
}

.block--pager .pager__item--current::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.block--pager li svg {
  width: 42px;
  height: 32px;
  fill: #151515;
}

.block--pager li:hover svg {
  fill: #AF182F;
}

/*  4.3 information
------------------------------ */
.section--list {
  width: 60%;
  max-width: 960px;
  padding: 340px 0px 60px;
  margin: 0 auto;
}

.section--list + .detail__btn {
  display: none;
}

.section--detail {
  width: 75%;
  max-width: 800px;
  padding: 340px 0 100px;
  margin: 0 auto;
}

.section--list .list--information {
  -webkit-transform: translate3d(0, 80px, 0);
          transform: translate3d(0, 80px, 0);
  opacity: 0;
  -webkit-transition: opacity .3s, -webkit-transform .8s;
  transition: opacity .3s, -webkit-transform .8s;
  transition: transform .8s, opacity .3s;
  transition: transform .8s, opacity .3s, -webkit-transform .8s;
}

.section--list .list--information a figure {
  width: 150px;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.section--list .list--information a .block--txt {
  padding: 6px 20px 15px 170px;
}

.loaded .section--list .list--information {
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  opacity: 1;
}

.block--share {
  line-height: 1;
  text-align: right;
  margin: 0 0 30px;
  position: relative;
  top: 77px;
  z-index: 20;
}

.block--share::before {
  content: 'SHARE';
  display: inline-block;
  font-family: 'din-2014', sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #151515;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 3px;
}

.block--share .share {
  display: inline-block;
  position: relative;
}

.block--share .share::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: #151515;
  position: absolute;
  top: -7px;
  left: 3px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.block--share li {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #151515;
  margin: 0 7px 0 0;
}

.block--share .lineIco svg {
  width: 18px;
}

.block--share .share {
  font-size: 12px;
  margin-right: 15px;
}

.block--share .ico {
  font-size: 20px;
}

.block--share a {
  color: #151515;
}

.block--share a:hover {
  color: #de0515;
}

.block--share a:hover svg {
  fill: #de0515;
}

.page--info .block--live-event {
  margin-bottom: 60px;
}

.page--info .block--live-event .list--information .tit {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.page--info .block--tourlist {
  -webkit-transform: translate3d(0, 80px, 0);
          transform: translate3d(0, 80px, 0);
  opacity: 0;
  -webkit-transition: opacity .3s, -webkit-transform .8s;
  transition: opacity .3s, -webkit-transform .8s;
  transition: transform .8s, opacity .3s;
  transition: transform .8s, opacity .3s, -webkit-transform .8s;
}

.page--info .block--tourlist .block-tit {
  font-family: 'din-2014';
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.page--info.loaded .block--tourlist {
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  opacity: 1;
}

.page--info.loaded .block--tourlist .list--information {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.page--info.category-1 .section-tit::first-letter {
  letter-spacing: -0.09em;
}

.page--info .section--detail .date {
  letter-spacing: 0.1em;
  margin: -48px 0 1.5em;
}

.page--info .section--detail .articleBox_content {
  padding: 0 30px 30px;
  font-size: 13px;
}

.page--info .section--detail .articleBox_content p {
  font-size: 13px;
}

.page--info .section--detail .productBox,
.page--info .section--detail .box-products {
  width: 100%;
  position: relative;
}

.page--info .section--detail .productBox::after,
.page--info .section--detail .box-products::after {
  content: '';
  display: table;
  clear: both;
}

.page--info .section--detail .productBox_images,
.page--info .section--detail .box-images {
  float: left;
  width: 48%;
}

.page--info .section--detail .productBox_content,
.page--info .section--detail .box-text {
  float: right;
  width: 48%;
}

.page--info .section--detail .productBox_button {
  clear: both;
  padding: 20px 0 0;
}

.page--info .section--detail .productBox_button a {
  width: 100%;
  height: 52px;
  line-height: 52px;
  font-weight: bold;
  background: #004664;
  color: #fff;
}

.page--info .section--detail .desctop .productBox_button a:hover {
  background: #6a8a9c;
}

.page--info .section--detail .productImages img,
.page--info .section--detail .box-images img:not(.dummy) {
  width: 100%;
  height: auto;
  border: 1px solid #eaeaea;
}

.page--info .section--detail .productImages_main,
.page--info .section--detail .main-image {
  width: 100%;
  margin: 0 0 10px;
}

.page--info .section--detail .productImages_thumbnails,
.page--info .section--detail .thumbnail-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: start;
      justify-content: start;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
      align-items: normal;
}

.page--info .section--detail .articleBox--discography5:first-of-type {
  margin-top: 50px;
}

.page--info .section--detail .productImages_thumbnail,
.page--info .section--detail .thumbnail-image li {
  width: 22%;
  margin: 0 4% 10px 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 1;
}

.page--info .section--detail .articleBox_product.productBox {
  margin: 30px auto 60px;
}

.page--info .section--detail .desctop .productImages_thumbnail:hover,
.page--info .section--detail .faq_question:hover .faq_headline,
.page--info .section--detail .thumbnail-image li:hover {
  opacity: 0.6;
}

.page--info .section--detail .productImages_thumbnail:nth-child(4n),
.page--info .section--detail .thumbnail-image li:nth-child(4n) {
  margin-right: 0;
}

.page--info .section--detail .box-text table {
  font-size: 13px;
}

.page--info .section--detail .productSpec,
.page--info .section--detail .box-text table {
  width: 100%;
}

.page--info .section--detail .productSpec th,
.page--info .section--detail .box-text table th {
  width: 35%;
}

.page--info .section--detail .productSpec td,
.page--info .section--detail .box-text table td {
  width: 65%;
}

.page--info .section--detail .productSpec td p span,
.page--info .section--detail .box-text table td p span {
  display: block;
  text-indent: -1em;
  margin: 0 0 0 1em;
}

.page--info .section--detail .productSpec td, .page--info .section--detail .productSpec th,
.page--info .section--detail .box-text table td,
.page--info .section--detail .box-text table th {
  vertical-align: top;
  padding: 10px 0;
  border-bottom: 1px solid #c4c4c4;
}

.page--info .section--detail .productSpec tr:first-child td,
.page--info .section--detail .productSpec tr:first-child th,
.page--info .section--detail .box-text table tr:first-child td,
.page--info .section--detail .box-text table tr:first-child th {
  padding-top: 0;
}

.page--info .section--detail .productSpec tr:last-child td,
.page--info .section--detail .productSpec tr:last-child th,
.page--info .section--detail .box-text table tr:last-child td,
.page--info .section--detail .box-text table tr:last-child th {
  border-bottom: none;
  padding-bottom: 0;
}

.page--info .section--detail .addressBox {
  background: #e6e6e6;
  padding: 30px;
  display: block;
  width: calc(100% - 60px);
  vertical-align: top;
  margin: 35px 0 50px;
}

.page--info .section--detail .addressBox::after {
  content: '';
  height: 0;
  clear: both;
  visibility: hidden;
  display: block;
}

.page--info .section--detail .addressBox_label {
  font-size: 13px;
  font-weight: 700;
  float: left;
  width: 70px;
  vertical-align: top;
  line-height: 1.5;
}

.page--info .section--detail .addressBox_input {
  vertical-align: top;
  float: left;
  width: calc(100% - 140px);
  margin-right: 1.5%;
}

.page--info .section--detail .addressBox_input input {
  width: 100%;
}

.page--info .section--detail .addressBox_button {
  width: 60px;
  vertical-align: top;
  float: left;
}

.page--info .section--detail .addressBox_button button {
  width: 100%;
  height: 42px;
  margin: 1px auto auto;
  line-height: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background: #004664;
  display: table-cell;
  -webkit-transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
}

.page--info .section--detail .addressBox_button button::before {
  content: '';
  bottom: 0;
  left: 0;
  position: absolute;
  background: #c7c7c7;
  width: 100%;
  height: 2px;
}

.page--info .section--detail .addressBox_button:hover {
  background: #6a8a9c;
}

.page--info .section--detail .productImages_thumbnails {
  width: 103%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page--info .section--detail .productImages_thumbnail {
  width: 22%;
  margin: 0 3% 3% 0;
}

.section--detail .tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 0 .5em;
  position: relative;
}

.section--detail.new .tit::after {
  content: 'New Post';
  font-family: 'journalregular', sans-serif;
  color: #d0121b;
  font-size: 65px;
  vertical-align: 0px;
  line-height: 1;
  letter-spacing: -0.02em;
  position: absolute;
  bottom: -21px;
  right: 0;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}

.section--detail .date {
  display: inline-block;
  font-family: 'din-2014', sans-serif;
  font-size: 1em;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 0.01em;
  margin: 0 0 30px;
}

.section--detail .category {
  display: inline-block;
  font-family: 'din-2014', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-right: 10px;
  opacity: 0.7;
}

.section--detail .txt {
  margin: 0 0 20px;
  line-height: 1.8em;
  position: relative;
}

.section--detail .txt::after {
  content: '';
  display: table;
  clear: both;
}

.section--detail .txt a {
  text-decoration: underline;
  color: #151515;
}

.section--detail .txt a:hover {
  color: #000;
  text-decoration: none;
}

.section--detail .txt a.btn--main {
  color: #f4f3f0;
  text-decoration: none;
}

.section--detail .txt a.btn--sub {
  text-decoration: none;
}

.section--detail .txt a.btn--sub:hover {
  color: #fff;
}

.youtube, .block--video__item {
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
  position: relative;
}

.youtube iframe,
.block--video__item iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: -20px;
  right: 0;
}

.page--info .flex,
.page--discography .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
      align-items: normal;
  margin-bottom: 30px;
}

.page--info .flex .clm,
.page--discography .flex .clm {
  width: 100%;
}

.page--info .articleBox_headline,
.page--discography .articleBox_headline {
  font-weight: 600;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.page--info .articleBox_content:first-of-type,
.page--discography .articleBox_content:first-of-type {
  margin-top: 30px;
}

.page--info .articleBox_content:not(:last-of-type),
.page--discography .articleBox_content:not(:last-of-type) {
  margin-bottom: 30px;
}

.page--info .articleBox_content a,
.page--discography .articleBox_content a {
  text-decoration: underline;
}

.page--info .articleBox_content a:hover,
.page--discography .articleBox_content a:hover {
  text-decoration: none;
}

/*  4.6 questionnaire
------------------------------ */
.page--questionnaire .header + section .section-tit {
  font-size: 32px;
}

.page--questionnaire .header + section .form--post {
  margin-bottom: 100px;
}

.page--questionnaire .ph {
  margin-bottom: 30px;
}

.form--post {
  margin: 0 0 40px;
}

.form--post + .txt--sub {
  text-align: center;
}

.icon--required {
  display: inline-block;
}

.icon--required::before {
  content: '必須';
  background: #f72a2a;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  line-height: 0;
  vertical-align: 2px;
  padding: 0px 6px 3px;
  margin-left: 5px;
}

/*  4.7 fanletter
------------------------------ */
.page--letter .section--detail {
  padding-top: 200px;
}

.page--letter .section--detail .section-tit span {
  letter-spacing: 0;
}

.page--letter .block--send-form {
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}

.page--letter .block--send-form .txt--sub {
  font-size: .9em;
  line-height: 1.5;
}

.page--letter .block-tit {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.page--letter .block--error {
  margin-bottom: 30px;
}

.page--letter textarea {
  height: 30em;
}

.page--letter .form--confirm {
  position: relative;
  z-index: 10;
  background: #fff;
  border: none;
}

.page--letter.complete .txt--basic {
  margin-bottom: 30px;
}

/*  4.8 error
------------------------------ */
.page--error .detail__btn {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .drawer .nav-box.fc {
    width: 38%;
  }
  .drawer .nav-box.login {
    margin-left: 0;
  }
  .drawer li {
    margin-right: 2vw;
  }
}

.page--style h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

.page--style .tit {
  font-size: 16px;
  margin-bottom: 40px;
}

.page--style .tit::after {
  display: none;
}

.page--style .block--demo {
  border-bottom: 1px solid #ccc;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.page--style pre {
  white-space: normal;
  background: #e5e5e5;
  line-height: 1.4;
  padding: 20px;
  margin-top: 20px;
  font-size: 13px;
}
/*# sourceMappingURL=common-pc-service.css.map */