@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/* ==================
  base
    タグに直接スタイルをかける
================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.4em;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, body {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

body,
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body,
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

a {
  text-decoration: none;
  word-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
}

input[type="text"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration,
input[type="email"]:-webkit-search-decoration,
input[type="submit"]:-webkit-search-decoration,
textarea:-webkit-search-decoration {
  display: none;
}

input[type="text"]:focus,
input[type="button"]:focus,
input[type="email"]:focus,
input[type="submit"]:focus,
textarea:focus {
  outline-offset: -2px;
}

p {
  word-wrap: break-word;
}

main {
  display: block;
}

/* ==================
  animation
    keyframesでのアニメーション
================== */
@-webkit-keyframes scale {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@keyframes scale {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

/* ==================
  format
    共通のスタイル

  INDEX
    - elm
    - font
    - margin, padding
    - layout
================== */
/* ==================
  elm
================== */
.pc-elm {
  display: block;
}

.pc-elm.i {
  display: inline;
}

.pc-elm.t {
  display: table;
}

@media screen and (max-width: 750px) {
  .pc-elm {
    display: none !important;
  }
}

.sp-elm {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp-elm {
    display: block !important;
  }
  .sp-elm.i {
    display: inline !important;
  }
  .sp-elm.t {
    display: table !important;
  }
}

/* ==================
  font
================== */
.f-jp {
  font-family: "Sawarabi Mincho", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.f-en {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.f-xlarge {
  font-size: 1.4em !important;
}

.f-large {
  font-size: 1.2em !important;
}

.f-small {
  font-size: 0.8em !important;
}

.f-xsmall {
  font-size: 0.6em !important;
}

.f-black {
  color: black !important;
}

.f-white {
  color: white !important;
}

.f-gray {
  color: gray !important;
}

.f-red {
  color: red !important;
}

.f-blue {
  color: blue !important;
}

.f-yellow {
  color: yellow !important;
}

.f-green {
  color: green !important;
}

.f-bold {
  font-weight: bold !important;
}

.f-italic {
  font-style: italic !important;
}

/* ==================
  margin, padding
================== */
.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.mr-105 {
  margin-right: 105px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.ml-105 {
  margin-left: 105px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pr-105 {
  padding-right: 105px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.pl-105 {
  padding-left: 105px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pl-110 {
  padding-left: 110px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mr-115 {
  margin-right: 115px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.ml-115 {
  margin-left: 115px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pr-115 {
  padding-right: 115px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pl-115 {
  padding-left: 115px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pr-120 {
  padding-right: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

/* ==================
  layout
================== */
.al-c {
  text-align: center !important;
}

.al-r {
  text-align: right !important;
}

.al-l {
  text-align: left !important;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.cf:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 750px) {
  /* ==================
  hover
    ホバー用のスタイル

  INDEX
    - opacity
    - translateY
================== */
  /* ==================
  opacity
================== */
  .h-opa, .top-copy-link, .sub-header a, .banner-area a, .month-list__item, .section-top-btn, .section-top-btn--right, .text-article__data a, .text-article__icon-title a, .text-article__icon-text a, .text-article__topics-text a, .img-article__text a, .sub-copy-link, .top-link, .movie-btn, .goods-link, .media-list__item, .sale-icon, .liveft-area a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .h-opa:hover, .top-copy-link:hover, .sub-header a:hover, .banner-area a:hover, .month-list__item:hover, .section-top-btn:hover, .section-top-btn--right:hover, .text-article__data a:hover, .text-article__icon-title a:hover, .text-article__icon-text a:hover, .text-article__topics-text a:hover, .img-article__text a:hover, .sub-copy-link:hover, .top-link:hover, .movie-btn:hover, .goods-link:hover, .media-list__item:hover, .sale-icon:hover, .liveft-area a:hover {
    opacity: 0.6;
  }
  .h-opa-img {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .h-opa-img:hover {
    opacity: 1;
  }
  /* ==================
  translateY
================== */
  .h-tfY {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .h-tfY:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/* ==================
  common
    共通のスタイル

  INDEX
    - wrapper
================== */
/* ==================
  wrapper
================== */
/* ==================
  top
    トップのスタイル

  INDEX
    - common
    - header
    - main menu
================== */
/* ==================
  common
================== */
body.top {
  background-color: black;
}

/* ==================
  header
================== */
.top-logo {
  display: block;
  max-width: 372px;
  margin: 105px auto;
}

@media screen and (max-width: 940px) {
  .top-logo {
    width: 45%;
    margin: 10% auto;
  }
}

/* ==================
  main
================== */
.top-main {
  max-width: 1036px;
  margin: auto;
}

.top-main .inner {
  padding: 0 58px;
}

@media screen and (max-width: 750px) {
  .top-main .inner {
    padding: 0 20px;
  }
}

/* ==================
  main menu
================== */
.main-menu:after {
  content: "";
  display: table;
  clear: both;
}

.main-menu__item {
  width: calc((100% - 116px) / 3);
  float: left;
  margin-bottom: 58px;
}

.main-menu__item:not(:nth-child(3n)) {
  margin-right: 58px;
}

.main-menu__item:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

.main-menu__item a {
  position: relative;
  display: block;
}

.main-menu__item .base-img {
  opacity: 1;
  transition: opacity 0.3s;
}

.main-menu__item .h-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

@media screen and (max-width: 750px) {
  .main-menu__item .h-img {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .main-menu__item:hover .base-img {
    opacity: 0;
  }
  .main-menu__item:hover .h-img {
    opacity: 1;
  }
}

@media screen and (max-width: 750px) {
  .main-menu__item {
    width: calc((100% - 10%) / 3);
    float: left;
    margin-bottom: 5%;
  }
  .main-menu__item:not(:nth-child(3n)) {
    margin-right: 5%;
  }
}

/* ==================
    footer
================== */
.top-copy-link {
  color: #fbeec1;
}

.top-footer {
  padding: 32px;
  text-align: center;
  color: #fbeec1;
}

.top-footer small {
  font-size: 1.2rem;
}

.fa.fa-copyright {
  margin-right: 5px;
}

.fa.fa-copyright:before {
  margin-right: 3px;
}

/* ==================
  sub
    下層のスタイル

  INDEX
    - common
    - main
    - header
    - banner
    - section
    - article
    - footer
    - youtube
    - movie
    - goods
    - profile
    - media
    - release
	- live
    - 404
================== */
/* ==================
  common
================== */
body {
  background-color: #fbeec1;
}

.bb-dash {
  border-bottom: 1px dashed black;
}

.bt-dash {
  border-top: 1px dashed black;
}

/* ==================
  main
================== */
.sub-main {
  max-width: 920px;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .sub-main {
    padding: 0;
  }
}

.sub-main-header {
  margin-bottom: 30px;
}

.sub-main .inner {
  padding: 0 40px;
}

@media screen and (max-width: 750px) {
  .sub-main .inner {
    padding: 0 20px;
  }
}

.sub-main.type-2 .inner {
  padding: 0 20px;
}

.section-title {
  text-align: center;
  padding: 4px 0;
}

.section-title .title-live {
  width: 86px;
}

@media screen and (max-width: 750px) {
  .section-title .title-live {
    width: 50px;
  }
}

.section-title .title-discography {
  width: 200px;
}

@media screen and (max-width: 750px) {
  .section-title .title-discography {
    width: 120px;
  }
}

.section-title .title-404,
.section-title .title-movie,
.section-title .title-media {
  width: 100px;
}

@media screen and (max-width: 750px) {
  .section-title .title-404,
  .section-title .title-movie,
  .section-title .title-media {
    width: 80px;
  }
}

.section-title .title-topics,
.section-title .title-profile,
.section-title .title-release {
  width: 120px;
}

@media screen and (max-width: 750px) {
  .section-title .title-topics,
  .section-title .title-profile,
  .section-title .title-release {
    width: 80px;
  }
}

/* ==================
  header
================== */
.sub-main-header {
  border: 1px dashed black;
}

@media screen and (max-width: 750px) {
  .sub-main-header {
    margin: 0 20px 30px;
  }
}

.sub-header {
  position: relative;
  max-width: 920px;
  margin: auto;
  padding: 0 20px;
}

.sub-header a {
  display: block;
  padding: 20px 0;
}

@media screen and (max-width: 750px) {
  .sub-header {
    margin: 0 20px;
    padding: 0;
  }
}

.sub-menu {
  position: absolute;
  top: 30px;
  right: 90px;
  bottom: 0;
  margin: auto;
  width: 39px;
  height: 55px;
  padding: 0 !important;
}

@media screen and (max-width: 750px) {
  .sub-menu {
    padding: 0 !important;
    top: 13px;
    right: 50px;
    width: 25px;
    height: 43px;
  }
}

/* ==================
  banner
================== */
.banner-area {
  width: 60%;
  margin: 70px auto 65px;
}

@media screen and (max-width: 750px) {
  .banner-area {
    width: 100%;
    margin: 20px auto 20px;
    padding: 0 20px;
  }
}

.banner-link {
  font-size: 1.3rem;
  color: black;
  margin-top: 5px;
  margin-right: 14px;
  display: inline-block;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .banner-link {
    font-size: 1.1rem;
  }
}

/* ==================
  section
================== */
.sub-main-section, .sub-main-section--media {
  position: relative;
  background-color: white;
  padding: 50px 0;
  border-top: 1px dashed black;
}

@media screen and (max-width: 750px) {
  .sub-main-section, .sub-main-section--media {
    margin: 0 20px;
  }
}

@media screen and (max-width: 750px) {
  .sub-main-section.type-2, .type-2.sub-main-section--media {
    padding-top: 30px;
  }
}

.sub-main-section.type-3, .type-3.sub-main-section--media {
  border-top: none;
  background-color: transparent;
  padding: 0 0 30px;
}

.sub-main-section.type-4, .type-4.sub-main-section--media {
  padding-top: 10px;
}

@media screen and (max-width: 750px) {
  .sub-main-section.type-4, .type-4.sub-main-section--media {
    padding-top: 0;
  }
}

@media screen and (max-width: 750px) {
  .sub-main-section--media {
    padding-top: 40px;
  }
}

.month-area {
  position: relative;
  margin-bottom: 50px;
}

.month-title {
  position: absolute;
  top: -35px;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}


/* 2018.11月に追加 */
.month-title3 {
  position: absolute;
  top: 60px;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
}

.month-list:after {
  content: "";
  display: table;
  clear: both;
}

.month-list__item {
  background-color: black;
  font-size: 1.4rem;
  font-weight: bold;
  width: calc(90% / 12);
  float: left;
  text-align: center;
}

.month-list__item:not(:first-child) {
  margin-left: calc(10% / 11);
}

@media screen and (max-width: 750px) {
  .month-list__item {
    width: calc(90% / 6);
    margin-left: calc(10% / 5) !important;
    margin-bottom: 10px;
  }
  .month-list__item:first-child, .month-list__item:nth-of-type(7) {
    margin-left: 0 !important;
  }
}

.month-list__item a {
  color: white;
  padding: 5px 0;
  display: block;
}

.section-top-btn, .section-top-btn--right {
  margin-top: 10px;
  color: black;
  display: block;
}

.section-top-btn .fa:before, .section-top-btn--right .fa:before {
  font-size: 1.4rem;
  margin-right: 4px;
}

.section-top-btn--right {
  float: right;
  margin-top: 0;
}

/* ==================
  article
================== */
.article-area, .article-area--last {
  position: relative;
}

.article-area--last {
  border-bottom: 1px solid black;
}

.text-article, .text-article--noborder, .text-article--bottom-border {
  border-top: 1px solid black;
  padding: 30px 0;
}

@media screen and (max-width: 750px) {
  .text-article, .text-article--noborder, .text-article--bottom-border {
    padding: 20px 0;
  }
}

.text-article:last-child, .text-article--noborder:last-child, .text-article--bottom-border:last-child {
  border-bottom: 1px solid black;
}

.text-article--noborder {
  border-top: none;
}

.text-article--noborder:last-child {
  border-bottom: none;
}

.text-article--bottom-border {
  border-top: none;
  border-bottom: 1px solid black;
  padding: 36px 0;
}

.text-article-month {
  position: absolute;
  top: -22px;
  right: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.text-article__time, .text-article__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .text-article__time, .text-article__title {
    font-size: 1.6rem;
  }
}

.text-article__time {
  width: 180px;
  vertical-align: top;
}

@media screen and (max-width: 750px) {
  .text-article__time {
    width: auto;
    display: inline;
  }
}

.text-article__title {
  width: calc(99% - 200px);
}

@media screen and (max-width: 750px) {
  .text-article__title {
    width: auto;
    display: inline;
  }
}

@media screen and (max-width: 750px) {
  .text-article__data {
    margin-top: 20px;
  }
}

.text-article__data a {
  color: black;
  text-decoration: underline;
}

.text-article__data dt,
.text-article__data dd {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.text-article__data dt {
  width: 40px;
}

.text-article__data dd {
  width: calc(99% - 40px);
}

@media screen and (max-width: 750px) {
  .text-article__data dd {
    width: calc(99% - 45px);
  }
}

.text-article__data dd:last-child {
  margin: 0;
}

.text-article-icon {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid black;
}

.text-article__icon-title {
  font-size: 1.6rem;
  font-weight: bold;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}

.text-article__icon-title:before {
  content: "●";
  margin-right: 3px;
  position: absolute;
  left: 0;
}

.text-article__icon-title a {
  color: black;
  display: block;
  line-height: 1.2;
}

@media screen and (max-width: 750px) {
  .text-article__icon-title a {
    padding-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .text-article__icon-title {
    position: relative;
    margin-left: 20px;
    padding-left: 0;
  }
  .text-article__icon-title:before {
    left: -20px;
    position: absolute;
  }
}

.text-article__icon-text {
  padding: 10px 20px;
  line-height: 1.5;
  font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
  .text-article__icon-text {
    padding: 10px 0 20px 20px;
  }
}

.text-article__icon-text a {
  color: black;
  text-decoration: underline;
}

.text-article__topics-text {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.text-article__topics-text a {
  color: black;
  text-decoration: underline;
}

.text-article__topics-text img {
  width: auto;
  max-width: 100%;
  border:none;
}

.soldout {
  background-color: red;
  color: white;
  padding: 0 3px;
}

.img-article {
  padding-bottom: 36px;
  border-bottom: 1px solid black;
}

.img-article:after {
  content: "";
  display: table;
  clear: both;
}

.img-article:not(:first-child) {
  padding: 36px 0;
}

.img-article .left-box,
.img-article .right-box {
  float: left;
}

.img-article .left-box {
  width: 20%;
  margin-right: 30px;
}

@media screen and (max-width: 750px) {
  .img-article .left-box {
    width: 30%;
    margin-right: 15px;
  }
}

.img-article .right-box {
  width: calc(80% - 30px);
}

@media screen and (max-width: 750px) {
  .img-article .right-box {
    width: calc(70% - 15px);
  }
}

.img-article__title {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .img-article__title {
    font-size: 1.6rem;
  }
}

.img-article__sub-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.img-article__text {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 20px;
}

.img-article__text a {
  color: black;
  text-decoration: underline;
}

.tab-content-area .tab-content {
  display: none;
}

.tab-content-area .tab-content.js-active {
  display: block;
}

/* ==================
  footer
================== */
.sub-footer {
  position: relative;
  max-width: 920px;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .sub-footer {
    padding: 0;
  }
}

.sub-copy-link {
  color: black;
}

@media screen and (max-width: 750px) {
  .footer-menu {
    margin: 0 20px;
  }
}

.footer-menu-area {
  position: relative;
  padding: 32px 0;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .footer-menu-list {
    text-align: center;
  }
}

.footer-menu-list__item {
  display: inline-block;
  width: 6.36364%;
}

.footer-menu-list__item:not(:first-child) {
  margin-left: 0.45455%;
}

@media screen and (max-width: 750px) {
  .footer-menu-list__item {
    width: 13.83333%;
    margin-bottom: 10px;
  }
  .footer-menu-list__item:not(:first-child) {
    margin-left: 1.66667%;
  }
  .footer-menu-list__item:nth-child(7) {
    margin-left: 0;
  }
}

.footer-menu-list__item .base-img {
  opacity: 1;
  transition: opacity 0.3s;
}

.footer-menu-list__item .h-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

@media screen and (max-width: 750px) {
  .footer-menu-list__item .h-img {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .footer-menu-list__item:hover .base-img {
    opacity: 0;
  }
  .footer-menu-list__item:hover .h-img {
    opacity: 1;
  }
}

.footer-menu-list__item a {
  position: relative;
  display: block;
}

.footer-box {
  width: 100%;
  height: 38px;
  border: 1px dashed black;
}

@media screen and (max-width: 750px) {
  .footer-box {
    height: 25px;
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

.sub-copy {
  text-align: center;
  padding: 32px 0;
  margin-top: 32px;
}

@media screen and (max-width: 750px) {
  .sub-copy {
    margin: 32px 20px 0;
  }
}

.sub-copy small {
  font-size: 1.2rem;
}

.top-link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: 1px dashed black;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.top-link:before {
  content: "";
  border-style: solid;
  border-width: 1px;
  border-color: black black transparent transparent;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
}

.top-link.sp-elm {
  top: auto;
  border: 1px dashed black;
  width: 40px;
  height: 40px;
  border-bottom: none;
}

.top-link.sp-elm:before {
  width: 14px;
  height: 14px;
  top: 10px;
}

/* ==================
  youtube
================== */
.youtube-area {
  margin-bottom: 40px;
}

.youtube-area-min {
  width: 400px;
  margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
  .youtube-area-min {
    width: 100%;
  }
}

.youtube-area h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 14px;
}

@media screen and (max-width: 750px) {
  .youtube-area h3 {
    font-size: 1.6rem;
  }
}

.youtube-box {
  display: none;
  width: 600px;
  margin: auto;
}

@media screen and (max-width: 750px) {
  .youtube-box {
    width: 100%;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  text-align: center;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ==================
  movie
================== */
.movie-list {
  border-bottom: 1px solid black;
}

.movie-list:after {
  content: "";
  display: table;
  clear: both;
}

.movie-list__item {
  width: 32%;
  float: left;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .movie-list__item {
    margin-bottom: 14px;
  }
}

.movie-list__item:not(:nth-child(3n)) {
  margin-right: 2%;
}

.movie-list__item a {
  display: block;
}

.movie-list__item h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 5px;
}

@media screen and (max-width: 750px) {
  .movie-list__item h3 {
    font-size: 1rem;
  }
}

.movie-btn {
  cursor: pointer;
}

/* ==================
  goods
================== */
.goods-section-title {
  background: black;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 3px;
  font-weight: bold;
  padding: 8px 0;
}

.goods-list {
  padding: 0 4px;
  margin-bottom: 30px;
}

.goods-list:after {
  content: "";
  display: table;
  clear: both;
}

.goods-list__item {
  float: left;
  width: 22.5%;
  margin-bottom: 10px;
  min-height: 250px;
}

.goods-list__item:not(:nth-child(4n)) {
  margin-right: 3.33333%;
}

@media screen and (max-width: 750px) {
  .goods-list__item {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0 !important;
    min-height: inherit;
  }
  .goods-list__item:last-child {
    margin: 0;
  }
}

.goods-list__item img {
  border-radius: 5px;
}

.goods-list__item h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 5px 0;
}

.goods-link {
  width: 200px;
  display: block;
}

.goods-area:not(:first-child) {
  margin-top: 70px;
}

/* ==================
  profile
================== */
.profile-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-family: "Sawarabi Mincho", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 750px) {
  .profile-title {
    font-size: 2rem;
  }
}

.profile-text {
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: "Sawarabi Mincho", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* ==================
  media
================== */
.media-list {
  text-align: center;
  margin-bottom: 30px;
}

.media-list:after {
  content: "";
  display: table;
  clear: both;
}

.media-list__item {
  display: inline-block;
  width: calc(320px / 5);
}

.media-list__item:not(:first-child) {
  margin-left: 10px;
}

@media screen and (max-width: 750px) {
  .media-list__item {
    width: calc(85% / 5);
  }
  .media-list__item:not(:first-child) {
    margin-left: calc(10% / 4);
  }
}

/* ==================
  release
================== */
.sale-icon-area {
  margin: 20px 0;
}

.sale-icon {
  background: #CD3B44;
  padding: 5px 10px;
  margin-right: 10px;
  letter-spacing: 1px;
  width: 100px;
  display: inline-block;
  text-align: center;
}

.sale-icon a {
  color: #fbeec1;
  display: block;
}

@media screen and (max-width: 750px) {
  .sale-icon {
    width: calc(95% / 2);
    margin-right: 0;
    margin-bottom: 8px;
    padding: 5px 0;
    letter-spacing: 0;
  }
  .sale-icon:nth-of-type(2n) {
    margin-left: 4%;
  }
}

/* ==================
  Topics
================== */
.mw-300{
	max-width:300px!important;
}
@media screen and (max-width: 750px) {
  .mw-300{
 	width:100%!important;
  }
}

/* ==================
  live
================== */
.live_tourimg{
	width:100%;
	max-width:480px;
	margin:0 auto;
	display:block;
}
.tour_schedule,.tour_schedule th,.tour_schedule td {
	border:1px solid #424242;
}
.tour_schedule tr:nth-child(even){
    background:#f4f4f4;
}
.tour_schedule tr:nth-child(odd){
    background:#fcfcfc;
}
.tour_schedule{
	font-size:1.3rem;
	width:100%;
	word-break:break-word;
}
@media screen and (max-width: 750px) {
  .tour_schedule,.tour_schedule th,.tour_schedule td {
    font-size:0.9rem!important;
  }
}
.tour_schedule th,.tour_schedule td {
	padding:3px;
	vertical-align: middle;
}
.tour_schedule th{
	background-color:#191919;
	color:#fff;
	padding:5px 0;
}

/* ==================
  live
================== */
#flyer_toggle {
	margin: 0 auto;
	width: 800px;
	height:1130px;
	position: relative;
}
#flyer_toggle a {
	width: 100%;
	height: 100%;
	position: absolute;
}
#flyer_toggle:target .flyer_back {
	opacity: 0;
	pointer-events: none;
}
.liveft{
	width:100%;
	border-bottom:1px solid black;
}
.liveft::after {
	content: "";
	display: table;
	clear: both;
}
.liveft_list{
	width:150px;
	float:left;
	display:block;
	margin:30px 0;
	margin-right:30px;
}
@media screen and (max-width: 750px) {
	.liveft_list{
		width:70%;
		float:none;
		margin:30px auto;
	}
}
.liveft_list::last-child{
	margin-right:0;
}

/* ==================
  404
================== */
.text-404 {
  text-align: center;
  font-size: 1.2rem;
}
