@charset "UTF-8";
/**
 * Colors
 */
/* 
@include pointFont('black');
@include pointFont('bold');
@include pointFont('light');
@include pointFont('');
 */
/*--------------------------------------
01. reset
--------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

/* デフォルトを10pxにする */
html {
  font-size: 14px;
}

/* html5要素をインラインからブロック要素へ変更 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* list */
ol,
ul {
  list-style: none;
}

/* 引用符非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後レイアウト調整 */
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

/* a */
a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* ins */
ins {
  color: #000;
  text-decoration: none;
}

/* mark */
mark {
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキストに打ち消し線が付くようにしています */
del {
  text-decoration: line-through;
}

/* IE用 下線設定及びマウスhover時ヘルプカーソル */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* hr */
hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

/* input select */
input,
select {
  vertical-align: middle;
}

/* outlineの消去 */
input {
  outline: none;
}

/* borderの消去 */
button {
  border: none;
}

/* 画像を縦に並べた時に余白が出ないように */
img {
  vertical-align: top;
}

/* box-sizingを全ブラウザに対応 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * animations
 */
/* slick */
@-webkit-keyframes slickArrowP {
  0% {
    left: calc(50% + 3px);
  }
  50% {
    left: 50%;
  }
  100% {
    left: calc(50% + 3px);
  }
}
@keyframes slickArrowP {
  0% {
    left: calc(50% + 3px);
  }
  50% {
    left: 50%;
  }
  100% {
    left: calc(50% + 3px);
  }
}

@-webkit-keyframes slickArrowN {
  0% {
    left: 50%;
  }
  50% {
    left: calc(50% + 3px);
  }
  100% {
    left: 50%;
  }
}

@keyframes slickArrowN {
  0% {
    left: 50%;
  }
  50% {
    left: calc(50% + 3px);
  }
  100% {
    left: 50%;
  }
}

@-webkit-keyframes slickArrow_bg {
  0% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}

@keyframes slickArrow_bg {
  0% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}

/**
 * buttons
 */
/* TOP or paging prev */
@-webkit-keyframes iconHoverB {
  0% {
    right: 10px;
  }
  50% {
    right: 6px;
  }
  100% {
    right: 10px;
  }
}
@keyframes iconHoverB {
  0% {
    right: 10px;
  }
  50% {
    right: 6px;
  }
  100% {
    right: 10px;
  }
}

@-webkit-keyframes iconHoverB_bg {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: #fff;
  }
}

@keyframes iconHoverB_bg {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: #fff;
  }
}

@-webkit-keyframes iconHoverA {
  0% {
    right: 9px;
  }
  50% {
    right: 5px;
  }
  100% {
    right: 9px;
  }
}

@keyframes iconHoverA {
  0% {
    right: 9px;
  }
  50% {
    right: 5px;
  }
  100% {
    right: 9px;
  }
}

@-webkit-keyframes iconHoverA_bg {
  0% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}

@keyframes iconHoverA_bg {
  0% {
    border-color: #fff;
  }
  100% {
    border-color: #fff;
  }
}

/* pages button or paging next */
@-webkit-keyframes backbtnB {
  0% {
    left: 10px;
  }
  50% {
    left: 6px;
  }
  100% {
    left: 10px;
  }
}
@keyframes backbtnB {
  0% {
    left: 10px;
  }
  50% {
    left: 6px;
  }
  100% {
    left: 10px;
  }
}

@-webkit-keyframes backbtnA {
  0% {
    left: 9px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 9px;
  }
}

@keyframes backbtnA {
  0% {
    left: 9px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 9px;
  }
}

/* more button */
@-webkit-keyframes morebtn {
  0% {
    bottom: 9px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 9px;
  }
}
@keyframes morebtn {
  0% {
    bottom: 9px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 9px;
  }
}

/* linkfire button */
@-webkit-keyframes linkfirebtnB {
  0% {
    right: -5px;
  }
  50% {
    right: -9px;
  }
  100% {
    right: -5px;
  }
}
@keyframes linkfirebtnB {
  0% {
    right: -5px;
  }
  50% {
    right: -9px;
  }
  100% {
    right: -5px;
  }
}

@-webkit-keyframes linkfirebtnA {
  0% {
    right: -6px;
  }
  50% {
    right: -10px;
  }
  100% {
    right: -6px;
  }
}

@keyframes linkfirebtnA {
  0% {
    right: -6px;
  }
  50% {
    right: -10px;
  }
  100% {
    right: -6px;
  }
}

/**
 * loading
 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
 * image fadein
 */
@-webkit-keyframes passingBox {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes passingBox {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes passingImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes passingImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*-----------------------------------------------------------------
 * library
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
*	01. slick
*	02. fancybox
※当サイト用のカスタマイズは、各ライブラリcssの末尾に記載（上書き指定）
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
01. slick
----------------------------------------------------------------- */
/**
 * base
 */
.slick-slider {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-touch-action: pan-y;
  -ms-user-select: none;
  -webkit-box-sizing: border-box;
  -webkit-user-select: none;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}

.slick-track:before, .slick-track:after {
  content: '';
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*********************************
 * slick theme scss
 *********************************/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./") "../assets/img/common/ajax-loader.gif" center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/") "slick.eot";
  src: url("../assets/fonts/") "slick.eot?#iefix" format("embedded-opentype"), url("../assets/fonts/") "slick.woff" format("woff"), url("../assets/fonts/") "slick.ttf" format("truetype"), url("../assets/fonts/") "slick.svg#slick" format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
  -webkit-transform: translate(0, -50%);
  background: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir='rtl'] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir='rtl'] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.slick-dots li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  width: 20px;
}

.slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: none;
  padding: 5px;
  width: 20px;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: black;
  content: "•";
  font-family: "slick";
  font-size: 6px;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/**
 * コンポネ用カスタマイズ
 */
/* arrows */
.slick-prev,
.slick-next {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  background-color: #262626;
  border: solid 1px #262626;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
  font-size: 0;
  height: 32px;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 32px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  content: '';
  display: inline-block;
  height: 8px;
  opacity: 1;
  position: absolute;
  top: calc(50% - 3px);
  transform: rotate(-45deg) translate(-50%, -50%);
  transition: all 0.3s;
  width: 8px;
}

.slick-prev:active, .slick-prev:hover,
.slick-next:active,
.slick-next:hover {
  background-color: #000;
}

.slick-prev:active:before, .slick-prev:hover:before,
.slick-next:active:before,
.slick-next:hover:before {
  border-color: #fff;
}

.slick-prev {
  left: calc(28.7vw - 36px);
}

.slick-prev:before {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  left: calc(50% + 3px);
}

.slick-prev:hover:before {
  -webkit-animation: slickArrowP 0.5s ease-out 1 0.3s, slickArrow_bg 0.5s ease-out infinite 0.3s;
  animation: slickArrowP 0.5s ease-out 1 0.3s, slickArrow_bg 0.5s ease-out infinite 0.3s;
}

.slick-next {
  right: calc(28.7vw - 38px);
}

.slick-next:before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  left: 50%;
}

.slick-next:hover:before {
  -webkit-animation: slickArrowN 0.5s ease-out 1 0.3s, slickArrow_bg 0.5s ease-out infinite 0.3s;
  animation: slickArrowN 0.5s ease-out 1 0.3s, slickArrow_bg 0.5s ease-out infinite 0.3s;
}

/* dots */
.slick-dots {
  font-size: 0;
}

.slick-dots li {
  height: 2px;
  margin: 0 0 0 8px;
  width: 40px;
}

.slick-dots li:first-child {
  margin-left: 0;
}

.slick-dots li.slick-active button:before, .slick-dots li:hover button:before {
  background-color: #fff;
}

.slick-dots li button {
  height: 2px;
  padding: 0;
  width: 100%;
}

.slick-dots li button:before {
  -webkit-transition: all 0.3s;
  background-color: #fff;
  content: '';
  height: 100%;
  line-height: 0;
  padding: 0;
  transition: all 0.3s;
  width: 100%;
}

/* ----------------------------------------------------------------
02. fancybox
----------------------------------------------------------------- */
/**
 * base
 */
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -ms-touch-action: manipulation;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translateZ(0);
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  -webkit-transition-duration: inherit;
  -webkit-transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  color: #ccc;
  font-size: 13px;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  -webkit-transform: translateZ(0);
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-property: opacity, -webkit-transform;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  -webkit-overflow-scrolling: touch;
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  -webkit-user-select: none;
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  -webkit-box-shadow: none;
  -webkit-transition: color 0.2s;
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-timing-function: linear;
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: 0px) {
  .fancybox-caption {
    padding: 75px env(safe-area-inset-right), 44px env(safe-area-inset-bottom), 25px env(safe-area-inset-left), 44px;
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0);
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0);
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1);
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -webkit-transform: rotate(-360deg);
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  -webkit-transform: rotate(360deg);
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  -webkit-transform: rotate(0deg);
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-transition: all 0.2s;
  -webkit-user-select: none;
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */

/**
 * コンポネ用カスタマイズ
 */
/* bg */
.fancybox-bg {
  background: black;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.86;
}

/* num */
.fancybox-infobar {
  -webkit-transform: translateX(-50%);
  left: 50%;
  transform: translateX(-50%);
}

/* close */
.fancybox-button--close {
  height: 38px;
  padding: 0;
  position: fixed;
  right: 12px;
  top: 12px;
  width: 38px;
}

.fancybox-button--close svg {
  display: none;
}

.fancybox-button--close:before, .fancybox-button--close:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 36px;
}

.fancybox-button--close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.fancybox-button--close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* button */
.fancybox-navigation .fancybox-button {
  -webkit-transform: translateY(-50%);
  height: 32px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}

.fancybox-navigation .fancybox-button div {
  padding: 0;
}

.fancybox-navigation .fancybox-button--arrow_left,
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 0;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: calc((100vw - 640px) / 2 - 64px);
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: calc((100vw - 640px) / 2 - 64px);
}

/* caption */
.fancybox-caption {
  -webkit-transform: translateX(-50%);
  background: none;
  bottom: 5vw;
  color: #fff;
  left: 50%;
  padding: 0;
  position: fixed;
  top: auto;
  transform: translateX(-50%);
  width: 640px;
}

.fancybox-caption--separate {
  margin-top: 0;
}

/*--------------------------------------
02. base
--------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-feature-settings: 'palt' 1;
  color: #e5e5e5;
  font-family: noto-sans-cjk-jp, -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-feature-settings: 'palt' 1;
}

body a {
  -webkit-transition: all 0.3s;
  color: #e5e5e5;
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
}

/**
 * pc/sp
 */

/**
 * parts
 */
.fwb {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.dpb {
  display: block;
}

.dpib {
  display: inline-block;
}

/*--------------------------------------
03. content
--------------------------------------*/
/**
 * loading
 */
.loading {
  background-color: #000;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
}

.loader__icon {
  height: 40px;
  left: calc(50% - 20px);
  position: fixed;
  top: calc(50% - 20px);
  width: 40px;
}

.loader__icon__quart {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  display: inline-block;
  height: 40px;
  position: relative;
  vertical-align: middle;
  width: 40px;
}

.loader__icon__quart:after {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border: 2px solid transparent;
  border-radius: 50px;
  border-top-color: #eee;
  bottom: -2px;
  content: '';
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

.loader__ajax {
  margin-top: 16px;
  text-align: center;
}

/**
 * wrap
 */
.wrap {
  background-color: #000;
  overflow: hidden;
}

/**
 * sns
 */
.snsLists {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.snsLists .snsList__link {
  display: inline-block;
}

.snsLists .snsList__img {
  -webkit-transition: all 0.3s;
  display: inline-block;
  transition: all 0.3s;
  width: 30px;
}

/**
 * header
 */
.headerWrap {
  font-size: 0;
  margin: 0 auto;
  /* BEGIN navigation */
  /* END navigation */
  /* BEGIN spmenu icon */
  /* END spmenu icon */
}

.headerWrap .siteTtl .siteTtl__link {
  display: block;
}

.headerWrap .headerNavWrap {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.headerWrap .headerNavWrap .headerNav {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headerWrap .headerNavWrap .headerNav .headerMenu {
  position: relative;
}

.headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
  color: #fff;
  font-size: 14px;
  position: relative;
}

.headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:after {
  background-color: #fff;
  bottom: -10px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.headerWrap .headerNavWrap .headerNav .headerIcons {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.headerWrap .headerNavBg {
  -webkit-transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.5s;
  width: 100vw;
  z-index: -1;
}

.headerWrap .headerNavBg.is--show {
  opacity: 1;
  z-index: 101;
}

.headerWrap .acdIcon {
  height: 42px;
  mix-blend-mode: difference;
  position: fixed;
  right: 15px;
  top: 30px;
  width: 37px;
  z-index: 102;
}

.headerWrap .acdIcon.is--show .acdIcon__link:before, .headerWrap .acdIcon.is--show .acdIcon__link:after {
  left: 6px;
}

.headerWrap .acdIcon.is--show .acdIcon__link:before {
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: left top;
  transform: rotate(45deg);
  transform-origin: left top;
}

.headerWrap .acdIcon.is--show .acdIcon__link:after {
  -webkit-transform: rotate(-45deg);
  -webkit-transform-origin: left bottom;
  top: 25px;
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.headerWrap .acdIcon.is--show .acdIcon__link .acdIcon__linkDrawer {
  opacity: 0;
}

.headerWrap .acdIcon .acdIcon__link {
  -webkit-transition: all 0.5s;
  display: block;
  height: 100%;
  margin-top: 4px;
  position: relative;
  transition: all 0.5s;
  width: 100%;
}

.headerWrap .acdIcon .acdIcon__link:before, .headerWrap .acdIcon .acdIcon__link:after {
  -webkit-transition: all 0.5s;
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transition: all 0.5s;
  width: 37px;
}

.headerWrap .acdIcon .acdIcon__link:before {
  top: 0;
}

.headerWrap .acdIcon .acdIcon__link:after {
  top: 21px;
}

.headerWrap .acdIcon .acdIcon__link .acdIcon__linkDrawer {
  -webkit-transition: all 0.5s;
  background-color: #fff;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 11px;
  transition: all 0.5s;
  width: 100%;
}

.headerWrap .acdIcon .acdIcon__link .acdIcon__linkText {
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 11px;
  font-weight: 500;
  left: 50%;
  letter-spacing: 1.5px;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.5s;
}

/**
 * contents
 */
.contents--page,
.contents--pageTall {
  position: relative;
}

.contents--page:before,
.contents--pageTall:before {
  background-color: #525252;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.contents--page {
  padding: 77px 0 120px;
}

.contents--pageTall {
  padding: 100px 0;
}

/* BEGIN title fade in effext */
.pageTitle__wrap .pageTitle__fade.js-toggleTitle {
  -webkit-transform: translate(-100%, 0);
  display: inline-block;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translate(-100%, 0);
}

.pageTitle__wrap .pageTitle__fade.js-toggleTitle.is--show {
  -webkit-transform: translate(0%, 0);
  -webkit-transition: opacity 1.2s 0.5s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
  opacity: 1;
  transform: translate(0%, 0);
  transition: opacity 1.2s 0.5s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s, opacity 1.2s 0.5s;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s, opacity 1.2s 0.5s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
}

.pageTitle__wrap .pageTitle__fade.js-toggleTitle.is--show .pageTitle {
  -webkit-transform: translate(0%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
  transform: translate(0%, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1) 0.5s;
}

.pageTitle__wrap .pageTitle__fade.js-toggleTitle .pageTitle {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  width: 100%;
}

/* END title fade in effext */
.pageTitle {
  -webkit-transition: all 0.3s;
  color: #fff;
  font-family: interstate;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  transition: all 0.3s;
}

/**
 * footer
 */
.toTop {
  bottom: 15px;
  position: fixed;
  right: 15px;
  z-index: 100;
}

.toTop .toTop__btn {
  -webkit-filter: drop-shadow(4px 4px 16px rgba(0, 0, 0, 0.16));
  -webkit-transition: all 0.3s;
  display: inline-block;
  filter: drop-shadow(4px 4px 16px rgba(0, 0, 0, 0.16));
  transition: all 0.3s;
}

.footer__wrap {
  background-color: #171717;
  border-top: solid 1px #000;
  padding-top: 66px;
  /* BEGIN navi & sns */
  /* END navi & sns */
}

.footer__wrap .footerLogo {
  -webkit-transition: all 0.3s;
  text-align: center;
  transition: all 0.3s;
}

.footer__wrap .footerLogo .footerLogo__link {
  display: inline-block;
}

.footer__wrap .footerLogo .footerLogo__img {
  display: inline-block;
}

.footer__wrap .footerLinks {
  padding: 38px 0 60px;
}

.footer__wrap .footerLinks .footerNav {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__wrap .footerLinks .footerNav .footerNav__list {
  margin: 0 12px;
}

.footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link {
  -webkit-transition: all 0.3s;
  color: #fff;
  display: block;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 3.29;
  transition: all 0.3s;
}

.footer__wrap .footerLinks .footer__contact {
  background-color: #262626;
  border: 1px solid #262626;
  border-radius: 23px;
  display: block;
  height: 46px;
  margin: 32px auto 40px;
  width: 136px;
}

.footer__wrap .footerLinks .footer__contact .footer__contactLink {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: all 0.3s;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  height: 100%;
  justify-content: center;
  transition: all 0.3s;
  width: 100%;
}

.footer__wrap .footerLinks .snsLists {
  margin-top: 36px;
}

/*-----------------------------------------------------------------
 * page common parts                                             *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
*	01. title
*	02. notes(no contents)
*	03. navi & lists（第二階層indexでのカテゴリタブ、一覧リスト）
*	04. buttons（video用ボタン、矢印付き丸ボタン、青い長方形ボタン）
*	05. pagenation
*	06. post detail（記事本文装飾、最新記事一覧など）
----------------------------------------------------------------- */
.pageConts img {
  max-width: 100%;
}

/* ----------------------------------------------------------------
01. title
----------------------------------------------------------------- */
/**
 * sub title
 */
.pageConts__subtitle {
  color: #fff;
  font-family: interstate;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.pageConts__secondlySubtitle {
  color: #fff;
  font-family: interstate;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 40px;
}

/* ----------------------------------------------------------------
02. notes(no contents)
----------------------------------------------------------------- */
/**
 * no contents
 */
.noContents__text {
  font-family: interstate;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin: 100px auto 0;
  text-align: center;
}

.livetourWrap .noContents__text {
  margin-top: 20px;
}

/* ----------------------------------------------------------------
03. navi & lists（第二階層indexでのカテゴリタブ、一覧リスト）
----------------------------------------------------------------- */
/**
 * navi
 */
/* menu */

.postCats .postCat__wrap {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
}

.postCats .postCat__wrap::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.postCats .postCat__lists {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* BEGIN アンカーリンク */
  /* END アンカーリンク */
}

.postCats .postCat__lists.postCat__lists--anker .postCat__list {
  padding-right: 13px;
}

.postCats .postCat__lists.postCat__lists--anker .postCat__list:not(:first-child):before {
  -webkit-transform: translateY(-50%) rotate(43deg);
  background-color: #fff;
  height: 9px;
  left: auto;
  top: calc(50% + 1px);
  transform: translateY(-50%) rotate(43deg);
}

.postCats .postCat__lists.postCat__lists--anker .postCat__list:before, .postCats .postCat__lists.postCat__lists--anker .postCat__list:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  top: calc(50% + 1px);
  width: 1px;
}

.postCats .postCat__lists.postCat__lists--anker .postCat__list:before {
  -webkit-transform: translateY(-50%) rotate(43deg);
  right: 0;
  transform: translateY(-50%) rotate(43deg);
}

.postCats .postCat__lists.postCat__lists--anker .postCat__list:after {
  -webkit-transform: translateY(-50%) rotate(-43deg);
  right: 5px;
  transform: translateY(-50%) rotate(-43deg);
}

.postCats .postCat__lists .postCat__list {
  font-size: 14px;
  position: relative;
}

.postCats .postCat__lists .postCat__list:not(:first-child) {
  margin-left: 25px;
}

.postCats .postCat__lists .postCat__list:not(:first-child):before {
  -webkit-transform: translateY(-50%);
  background-color: #525252;
  content: '';
  display: block;
  height: 12px;
  left: -13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.postCats .postCat__lists .postCat__list .postCat__current {
  font-weight: bold;
}

.postCats .postCat__lists .postCat__list .postCat__link {
  color: #fff;
}

/**
 * information lists
 */
.infoLists {
  /* BEGIN 一覧index用 */
  /* END 一覧index用 */
  /* BEGIN 詳細下部 最新一覧用 */
  /* BEGIN 詳細下部 最新一覧用 */
}

.infoLists .infoList {
  -webkit-transition: all 0.5s;
  height: auto;
  transition: all 0.5s;
}

.infoLists .infoList:first-of-type .infoList__link {
  padding-top: 0;
}

.infoLists .infoList.is--hide {
  height: 0;
  opacity: 0;
}

.infoLists .infoList .infoList__link {
  display: block;
  padding: 19px 0 18px;
  position: relative;
  z-index: auto;
}

.infoLists .infoList .infoList__link:before {
  background-color: #525252;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.infoLists .infoList .infoList__link:after {
  -webkit-transition: opacity 0.3s;
  content: '';
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}

.infoLists .infoList .infoList__link:not(.infoList__link--noLink):active, .infoLists .infoList .infoList__link:not(.infoList__link--noLink):hover {
  z-index: 1;
}

.infoLists .infoList .infoList__link:not(.infoList__link--noLink):active:after, .infoLists .infoList .infoList__link:not(.infoList__link--noLink):hover:after {
  -webkit-box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  background-color: #262626;
  bottom: 0;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  top: -1px;
}

.infoLists .infoList .infoList__link .infoList__icons {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 7px;
  /* BEGIN LIVE sp用の幅狭アイコン */
  /* END LIVE sp用の幅狭アイコン */
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon {
  position: relative;
  z-index: 1;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon:not(:first-of-type) {
  margin-left: 10px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__category {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background-color: #131313;
  border-radius: 2px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: bold;
  height: 21px;
  justify-content: center;
  line-height: 1;
  width: 74px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__time {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.29;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__time .infoList__time__week {
  display: inline-block;
  margin-left: 4px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__new,
.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__update {
  border-radius: 10.5px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  height: 21px;
  line-height: 21px;
  text-align: center;
  vertical-align: middle;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__new {
  background-color: rgba(215, 1, 15, 0.5);
  width: 46px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__update {
  background-color: rgba(215, 1, 15, 0.5);
  width: 64px;
}

.infoLists .infoList .infoList__link .infoList__text {
  font-size: 14px;
  line-height: 1.71;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
04. buttons
----------------------------------------------------------------- */
/**
 * video button
 */
.video--icon {
  position: relative;
}

.video--icon:before {
  background: url("../img/video/icon_video.svg") 0 0 no-repeat;
  background-size: contain;
  bottom: 24px;
  content: '';
  display: block;
  height: 32px;
  left: 24px;
  position: absolute;
  width: 32px;
  z-index: 0;
}

/**
 * arrow button
 */
/* base(矢印右向き) */
.arrowBtn__link {
  display: inline-block;
  width: auto;
}

.arrowBtn__link .arrowBtn__icon,
.arrowBtn__link .arrowBtn__text {
  -webkit-transition: all 0.3s;
  display: inline-block;
  transition: all 0.3s;
  vertical-align: middle;
}

.arrowBtn__link .arrowBtn__icon {
  -webkit-transition: border-color 0.3s, background-color 0.75s;
  background-color: #262626;
  border: solid 1px #262626;
  border-radius: 16px;
  height: 32px;
  position: relative;
  transition: border-color 0.3s, background-color 0.75s;
  width: 32px;
}

.arrowBtn__link .arrowBtn__icon:before, .arrowBtn__link .arrowBtn__icon:after {
  -webkit-transition: all 0.3s;
  content: '';
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.arrowBtn__link .arrowBtn__icon:before {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  height: 1px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

.arrowBtn__link .arrowBtn__icon:after {
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 6px;
  right: 9px;
  top: calc(50% - 3px);
  transform: rotate(-45deg);
  width: 6px;
}

.arrowBtn__link .arrowBtn__text {
  color: #fff;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.71;
  margin-left: 8px;
}

/* 矢印左向き（back button） */

.arrowBtn__link.arrowBtn__link--left .arrowBtn__icon:before {
  left: 10px;
  right: auto;
}

.arrowBtn__link.arrowBtn__link--left .arrowBtn__icon:after {
  -webkit-transform: rotate(45deg);
  border-left: 1px solid #fff;
  border-right: none;
  left: 9px;
  right: auto;
  transform: rotate(45deg);
}

/* 矢印下向き */

.arrowBtn__link.arrowBtn__link--bottom .arrowBtn__icon:before {
  -webkit-transform: translateX(-50%);
  background-color: #fff;
  bottom: 9px;
  height: 13px;
  left: 50%;
  right: auto;
  top: auto;
  transform: translateX(-50%);
  width: 1px;
}

.arrowBtn__link.arrowBtn__link--bottom .arrowBtn__icon:after {
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: none;
  bottom: 9px;
  height: 6px;
  left: calc(50% - 3px);
  right: auto;
  top: auto;
  transform: rotate(-45deg);
  width: 6px;
}

/**
 * back button マージン調整
 */

/**
 * blue link button（ディスコグラフィー等で多用）
 */
/* base */
.btnLinks {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: opacity 0.3s;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: opacity 0.3s;
}

.btnLinks .btnLink {
  -webkit-transition: all 0.3s;
  border: solid 1px #262626;
  border-radius: 23px;
  height: 46px;
  position: relative;
  transition: all 0.3s;
  width: 128px;
  z-index: 0;
}

.btnLinks .btnLink:not(:first-of-type) {
  margin-left: 24px;
}

.btnLinks .btnLink .btnLink__link {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -webkit-transition-property: background-color, -webkit-box-shadow;
  align-items: center;
  background-color: #262626;
  border-radius: 23px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow, -webkit-box-shadow;
  width: 100%;
}

/* BEGIN バリエーション: discography（詳細と新人用）＆ discography（一覧用）＆ */

.btnLinks.btnLinks--disc .btnLink .btnLink__link {
  /* icon */
}

.btnLinks.btnLinks--disc .btnLink .btnLink__link:before {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  width: 18px;
}

.btnLinks.btnLinks--disc .btnLink .btnLink__link.btnLink__link--shop:before {
  background-image: url("../img/disc/icon_buy-white.svg");
}

.btnLinks.btnLinks--disc .btnLink .btnLink__link.btnLink__link--digital:before {
  background-image: url("../img/disc/icon_digital-white.svg");
}

.btnLinks.btnLinks--discFirst {
  margin-top: 40px;
}

.btnLinks.btnLinks--discThumb {
  bottom: 24px;
  display: block;
  left: auto;
  opacity: 0;
  position: absolute;
  right: 24px;
  top: auto;
}

.discography__wraplink:hover .btnLinks.btnLinks--discThumb {
  opacity: 1;
}

.btnLinks.btnLinks--discThumb .btnLink {
  margin-left: auto;
  width: 46px;
}

.btnLinks.btnLinks--discThumb .btnLink:not(:first-of-type) {
  margin-left: auto;
  margin-top: 12px;
}

.btnLinks.btnLinks--discThumb .btnLink:hover {
  cursor: pointer;
  width: 128px;
}

.btnLinks.btnLinks--discThumb .btnLink:hover .btnLink__link {
  font-size: 14px;
}

.btnLinks.btnLinks--discThumb .btnLink:hover .btnLink__link:before {
  margin-right: 8px;
}

.btnLinks.btnLinks--discThumb .btnLink .btnLink__link {
  font-size: 0;
  width: 100%;
}

.btnLinks.btnLinks--discThumb .btnLink .btnLink__link:before {
  margin-right: 0;
}

.btnLinks.btnLinks--discNewest {
  bottom: 20px;
  right: 20px;
}

/* END バリエーション: discography（詳細と新人用）＆ discography（一覧用）＆ */
/* BEGIN バリエーション: TOPとGOODS */

.btnLinks.btnLinks--goods {
  margin-bottom: 0;
  margin-top: 16px;
}

.btnLinks.btnLinks--goods .btnLink__link {
  /* icon */
}

.btnLinks.btnLinks--goods .btnLink__link.btnLink__link--goods:before {
  background: 0 0 no-repeat url("../img/goods/btn_goods_shop.svg");
  background-size: cover;
  content: '';
  display: inline-block;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  width: 18px;
}

/* END バリエーション: TOPとGOODS */
/* BEGIN safari hack */

/* END safari hack */
/* ----------------------------------------------------------------
05. pagenation
----------------------------------------------------------------- */
/**
 * pagination
 */
.pagingWrap {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  margin-top: 46px;
}

.pagingWrap .paging__prev,
.pagingWrap .paging__next {
  font-size: 0;
  height: 32px;
  width: 32px;
}

.pagingWrap .paging__lists {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
}

.pagingWrap .paging__lists .paging__list {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.13;
}

.pagingWrap .paging__lists .paging__list:not(:first-of-type) {
  margin-left: 32px;
}

.pagingWrap .paging__lists .paging__list .paging__list__current {
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.pagingWrap .paging__lists .paging__list .paging__list__link {
  color: #fff;
}

/* ----------------------------------------------------------------
06. post detail
----------------------------------------------------------------- */
/**
 * post detail
 */
/* thumbnail image */
.post__detailThumb {
  margin: 72px auto -48px;
  max-width: 808px;
  text-align: center;
}

.post__detailThumb .post__detailThumbImg {
  -o-object-fit: contain;
  height: auto;
  max-height: 539px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

/* title */

.postTitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 15px;
  margin-top: 14px;
}

.postDetail__data {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}

.postDetail__data .postDetail__date {
  font-size: 14px;
  line-height: 1;
}

.postDetail__data .postDetail__category {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.postDetail__data .postDetail__category .postDetail__category__cat {
  -webkit-box-sizing: border-box;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 2px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  height: 21px;
  line-height: 21px;
  text-align: center;
  width: 74px;
}

.postDetail__data .postDetail__category .postDetail__category__cat:not(:first-child) {
  margin-left: 8px;
}

.postDetail__data .postDetail__category .postDetail__category__cat.postDetail__category__cat--onAir {
  background-color: #fff;
  border-color: #000;
  color: #000;
  min-width: 74px;
  padding-left: 5px;
  padding-right: 5px;
  width: auto;
}

.postDetail__data .postDetail__snsWrap {
  -ms-flex-align: center;
  -ms-flex-pack: end;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.postDetail__data .postDetail__snsWrap .postDetail__sns {
  -webkit-transition: all 0.3s;
  font-size: 0;
  transition: all 0.3s;
}

.postDetail__data .postDetail__snsWrap .postDetail__sns:not(:first-of-type) {
  margin-left: 12px;
}

/**
 * post detail
 */
.post__detailPost {
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 58px;
  margin-top: 31px;
  word-break: break-all;
}

.post__detailPost a {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  vertical-align: middle;
  /* hover effect */
}

.post__detailPost img {
  -webkit-transition: all 0.3s;
  display: block;
  height: auto;
  margin: 10px auto;
  max-height: 640px;
  max-width: 640px;
  transition: all 0.3s;
  width: auto;
}

.post__detailPost sub,
.post__detailPost sup {
  display: inline-block;
  font-size: 10px;
}

.post__detailPost sub {
  vertical-align: sub;
}

.post__detailPost sup {
  vertical-align: super;
}

.post__detailPost blockquote {
  border: 1px solid #e2e2e2;
  display: inline-block;
  margin: 12px 0;
  padding: 10px 12px;
}

.post__detailPost ul,
.post__detailPost ol {
  margin: 10px 0;
}

.post__detailPost ul li,
.post__detailPost ol li {
  padding-left: 16px;
  position: relative;
}

.post__detailPost ul li:not(:last-child),
.post__detailPost ol li:not(:last-child) {
  margin-bottom: 2px;
}

.post__detailPost ul li:before {
  background-color: #ed2c96;
  border-radius: 2px;
  content: '';
  display: block;
  height: 4px;
  left: 3px;
  position: absolute;
  top: 9px;
  width: 4px;
}

.post__detailPost ol {
  counter-reset: numCount;
}

.post__detailPost ol li {
  counter-increment: numCount;
}

.post__detailPost ol li:before {
  content: counter(numCount) ".";
  display: block;
  left: -12px;
  position: absolute;
  text-align: right;
  top: 0;
  width: 24px;
}

.post__detailPost iframe {
  display: block;
  margin: 20px auto;
}

/**
 * recently posts
 */
.otherPosts {
  background-color: #171717;
  padding: 93px 0 71px;
  position: relative;
}

.otherPosts:before, .otherPosts:after {
  background-color: #171717;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc((100vw - 872px) / 2);
}

.otherPosts:before {
  left: calc((100vw - 872px) / 2 * -1);
}

.otherPosts:after {
  right: calc((100vw - 872px) / 2 * -1);
}

.otherPosts .otherPosts__title {
  color: #fff;
  font-family: interstate;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 40px;
}

.otherPosts .otherPosts__title .otherPosts__title__ja {
  font-family: noto-sans-cjk-jp, -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 1.2;
}

/*--------------------------------------
04. modules: top
--------------------------------------*/
/**
 * common
 */
/* BEGIN title fade in effext */

.topConts__titleWrap .topConts__titleFade.js-toggleSecTitle {
  -webkit-transform: translate(-100%, 0);
  display: inline-block;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translate(-100%, 0);
}

.topConts__titleWrap .topConts__titleFade.js-toggleSecTitle.is--show {
  -webkit-transform: translate(0%, 0);
  -webkit-transition: opacity 1.2s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  opacity: 1;
  transform: translate(0%, 0);
  transition: opacity 1.2s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1), opacity 1.2s;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1), opacity 1.2s, -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
}

.topConts__titleWrap .topConts__titleFade.js-toggleSecTitle.is--show .topConts__title {
  -webkit-transform: translate(0%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  transform: translate(0%, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  transition: transform 0.5s cubic-bezier(0.6, 0, 0.4, 1), -webkit-transform 0.5s cubic-bezier(0.6, 0, 0.4, 1);
}

.topConts__titleWrap .topConts__titleFade.js-toggleSecTitle .topConts__title {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  width: 100%;
}

/* END title fade in effext */
.topConts__title {
  color: #fff;
  font-family: interstate;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}

/* subtitle */
.topConts__subtitle {
  color: #fff;
  font-family: interstate;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

/**
 * pc/spのTOPコンテンツ用レイアウト
 */
.topConts {
  position: relative;
}

/**
 * icons
 */

/**
 * mv
 */
.topMv__wrap {
  margin-bottom: 40px;
  overflow: hidden;
}

.topMv__wrap .topMv__passing {
  -webkit-transform: translate3d(0, 0, 0);
  display: block;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.topMv__wrap .topMv__passing:before {
  background: #171717;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}

.topMv__wrap .topMv__passing.is--show:before {
  -webkit-animation: passingBox 1s ease 0s 1 normal forwards;
  animation: passingBox 1s ease 0s 1 normal forwards;
}

.topMv__wrap .topMv__passing.is--show .topMv__img {
  -webkit-animation: passingImg 0s ease 0.5s 1 normal forwards;
  animation: passingImg 0s ease 0.5s 1 normal forwards;
}

.topMv__wrap .topMv__img {
  display: inline-block;
  height: auto;
  opacity: 0;
  width: 100%;
}

/**
 * slide
 */
.topSlide__lists {
  /* BEGIN slick */
  /* END slick */
}

.topSlide__lists .topSlide__nolink,
.topSlide__lists .topSlide__link {
  -webkit-transition: all 0.3s;
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
  width: calc(100% - 32px);
  /* hover effect */
}

.topSlide__lists .topSlide__nolink .topSlide__img,
.topSlide__lists .topSlide__link .topSlide__img {
  -o-object-fit: cover;
  -webkit-box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #525252;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.topSlide__lists .slick-list {
  overflow: visible;
}

.topSlide__lists .slick-dots {
  bottom: -22px;
}

/**
 * new release
 */
.topConts--newrelease {
  width: 808px;
  /* BEGIN img */
  /* END img */
  /* BEGIN data */
  /* END data */
}

.topConts--newrelease .topConts__titleWrap {
  margin-bottom: 32px;
}

.topConts--newrelease .topRelease__thumbsWrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.topConts--newrelease .topRelease__thumbs {
  /* BEGIN slick */
  /* END slick */
}

.topConts--newrelease .topRelease__thumbs .slick-prev,
.topConts--newrelease .topRelease__thumbs .slick-next {
  -webkit-transform: translate(0, 0);
  bottom: 22px;
  top: auto;
  transform: translate(0, 0);
}

.topConts--newrelease .topRelease__thumbs .slick-prev.slick-disabled,
.topConts--newrelease .topRelease__thumbs .slick-next.slick-disabled {
  opacity: 0;
}

.topConts--newrelease .topRelease__thumbs .slick-prev {
  left: 400px;
}

.topConts--newrelease .topRelease__thumbs .slick-next {
  left: 440px;
  right: auto;
}

.topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb__link {
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s;
  /* hover effect */
}

.topConts--newrelease .topRelease__thumbs .slick-current.is--hover .topRelease__thumb .topRelease__thumb__link {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb {
  text-align: center;
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s;
  display: inline-block;
  height: 388px;
  opacity: 0.7;
  position: relative;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s;
  transition: all 0.3s;
  width: 388px;
  /* hover effect */
  /* BEGIN 画像スライド表示用 */
  /* END 画像スライド表示用 */
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link:after {
  background: #171717;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link.is--show:after {
  -webkit-animation: passingBox 1s ease 0s 1 normal forwards;
  animation: passingBox 1s ease 0s 1 normal forwards;
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link.is--show .topRelease__thumb__img {
  -webkit-animation: passingImg 0s ease 0.5s 1 normal forwards;
  animation: passingImg 0s ease 0.5s 1 normal forwards;
}

.topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__img {
  -o-object-fit: contain;
  -webkit-filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.3));
  display: inline-block;
  filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.3));
  height: 100%;
  object-fit: contain;
  opacity: 0;
  width: 100%;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists {
  /* BEGIN slick */
  /* END slick */
  /* BEGIN slick dot */
  /* END slick dot */
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots {
  bottom: auto;
  font-size: 0;
  text-align: left;
  top: 26px;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li {
  counter-increment: numCount;
  height: 32px;
  margin: 0 0 0 8px;
  text-align: center;
  width: 32px;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li:before {
  color: #fff;
  content: counter(numCount);
  display: block;
  font-size: 13px;
  line-height: 32px;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li:first-child {
  margin-left: 0;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li.slick-active:before, .topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li:hover:before {
  color: #fff;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li:hover button:before {
  border: 1px solid #525252;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li.slick-active button:before {
  background-color: #262626;
  border: 1px solid #262626;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li button {
  height: 32px;
  padding: 0;
  width: 32px;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .slick-dots li button:before {
  -webkit-transition: all 0.3s;
  background-color: transparent;
  border-radius: 16px;
  content: '';
  height: 100%;
  line-height: 0;
  padding: 0;
  transition: all 0.3s;
  width: 100%;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list {
  /* IE9〜11 */
  /* Edge12〜14 */
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataLink {
  -webkit-transition: all 0.3s;
  display: block;
  transition: all 0.3s;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead {
  position: relative;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__date {
  display: block;
  font-size: 14px;
  line-height: 1.71;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__name {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 24px;
  word-break: break-all;
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 24px;
  overflow: hidden;
}

@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__text {
    max-height: 70px;
    overflow: hidden;
    position: relative;
  }
}

.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list _:-ms-lang(x),
.topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__text {
  max-height: 70px;
  overflow: hidden;
  position: relative;
}

/**
 * news
 */
.topConts--news {
  /* info lists カスタマイズ */
}

/**
 * tour / live
 */

.topConts--livetour .topConts__subtitle {
  margin-top: 32px;
}

.topConts--livetour .topConts__subtitle:first-of-type {
  margin-top: 0;
}

.topConts--livetour .infoLists {
  margin-top: 20px;
}

/**
 * media
 */

/**
 * video
 */

.topConts--video .topConts__titleWrap {
  margin-bottom: 36px;
}

.topConts--video .topVideoArea {
  -webkit-box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.3);
  font-size: 0;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
  width: 808px;
  /* hover effect */
}

.topConts--video .topVideoArea iframe {
  height: 454px;
  width: 100%;
}

.topConts--video .topVideo__videoLink {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.topConts--video .topVideo__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 24px;
  margin-top: 16px;
  text-align: center;
}

.topConts--video .arrowBtn__Wrap {
  margin-top: 24px;
}

/* slide videos */

.topConts--videoSlide .topSlide__lists .topSlide__nolink,
.topConts--videoSlide .topSlide__lists .topSlide__link {
  height: calc((56vw - 32px) / 16 * 9);
}

.topConts--videoSlide .topVideo__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin: 12px auto 0;
  text-align: center;
  width: calc(100% - 80px);
}

/**
 * profile
 */
/* common parts（group） */
.topGroupArea {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* BEGIN 写真縦長 */
  /* END 写真縦長 */
}

.topGroupArea .topGroup__text .topConts__titleWrap {
  margin-left: -32px;
}

.topGroupArea .topGroup__text .topGroup__groupname {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 18px;
}

.topGroupArea .topGroup__text .topGroup__furigana {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
}

.topGroupArea .topGroup__text .topGroup__desc {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.71;
  overflow: hidden;
}

.topGroupArea .topGroup__imgWrap {
  width: 556px;
}

.topGroupArea .topGroup__imgWrap .topGroup__link {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  /* hover effect */
  /* BEGIN 画像初期スライド表示用 */
  /* END 画像初期スライド表示用 */
}

.topGroupArea .topGroup__imgWrap .topGroup__link:before {
  background: #171717;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}

.topGroupArea .topGroup__imgWrap .topGroup__link.is--show:before {
  -webkit-animation: passingBox 1s ease 0s 1 normal forwards;
  animation: passingBox 1s ease 0s 1 normal forwards;
}

.topGroupArea .topGroup__imgWrap .topGroup__link.is--show .topGroup__img {
  -webkit-animation: passingImg 0s ease 0.5s 1 normal forwards;
  animation: passingImg 0s ease 0.5s 1 normal forwards;
}

.topGroupArea .topGroup__imgWrap .topGroup__img {
  -webkit-box-shadow: 2px 4px 16px 0 rgba(143, 103, 94, 0.3);
  -webkit-transition: all 0.3s;
  box-shadow: 2px 4px 16px 0 rgba(143, 103, 94, 0.3);
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
}

.topGroupArea + .arrowBtn__Wrap {
  text-align: center;
}

/* BEGIN グループorソロアーティスト */
.topConts--profile {
  /* BEGIN topメンバーリスト */
  /* END topメンバーリスト */
}

.topConts--profile .memberLists {
  margin-top: 65px;
}

/* END グループorソロアーティスト */
/**
 * goods
 */

.topConts--goods .topConts__titleWrap {
  margin-bottom: 36px;
}

.topConts--goods .topGoods__wrap {
  margin-bottom: 30px;
}

.topConts--goods .topGoods__lists {
  -ms-flex-align: start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topConts--goods .topGoods__lists .topGoods__list {
  width: 240px;
}

.topConts--goods .topGoods__lists .topGoods__list .topGoods__link {
  display: block;
  /* hover effect */
}

.topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__img {
  -o-object-fit: contain;
  -webkit-transition: all 0.3s;
  display: inline-block;
  object-fit: contain;
  transition: all 0.3s;
}

.topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__name {
  -webkit-transition: all 0.3s;
  font-weight: bold;
  margin-top: 12px;
  text-align: center;
  transition: all 0.3s;
}

/**
 * instagram
 */

.topConts--insta .topConts__instaColumnWrap {
  /* BEGIN 集配サーバインスタ */
  /* END 集配サーバインスタ */
}

.topConts--insta .topConts__instaColumnWrap .topInsta__wrap {
  margin-bottom: 32px;
}

.topConts--insta .topConts__instaColumnWrap .topInsta__iframe {
  width: 100%;
}

.topConts--insta1 .topConts__instaColumnWrap .arrowBtn__Wrap {
  display: none;
}

/* BEGIN 集配サーバcss */

#datahub_social_posts {
  width: 100% !important;
}

#datahub_social_posts,
#timeline {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  width: auto;
}

#loading_bottom,
#datahub_social_posts br,
#datahub_social_posts .date,
#datahub_social_posts .icon,
#datahub_social_posts .header,
#loading_bottom,
div.datahub_social_posts div.timeline ul li div.post div.contents div.post_msg {
  display: none !important;
}

#datahub_social_posts {
  -ms-flex-align: start;
  -ms-flex-pack: start;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}

.instagram__contents2 #datahub_social_posts {
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.datahub_social_posts div.timeline ul li {
  margin-bottom: 0;
  margin-left: 0;
}

.instagram__contents2 div.datahub_social_posts div.timeline ul li {
  margin-bottom: 1px !important;
}

div.datahub_social_posts div.timeline ul li div.post {
  -webkit-transition: all 0.3s !important;
  background-color: transparent;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.3s !important;
}

div.datahub_social_posts div.timeline ul li div.post:hover {
  cursor: pointer;
  position: relative;
  z-index: 1;
}

div.datahub_social_posts div.timeline ul li div.post:hover div.post_image {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

#datahub_social_posts div.timeline ul li div.post div.contents div.post_image {
  -webkit-transition: all 0.3s;
  background-color: #171717;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.instagram__contents1 #datahub_social_posts div.timeline ul li div.post div.contents div.post_image {
  -webkit-box-shadow: 1px 3px 8px 0 rgba(195, 187, 177, 0.4);
  box-shadow: 1px 3px 8px 0 rgba(195, 187, 177, 0.4);
  height: 40vw;
  width: 40vw;
}

.instagram__contents2 #datahub_social_posts div.timeline ul li div.post div.contents div.post_image {
  height: 33.33vw;
  width: 33.33vw;
}

#datahub_social_posts div.timeline ul li div.post div.contents div.post_image img {
  -o-object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  display: inline-block;
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

/* IE11 hack */

/* END 集配サーバcss */
/**
 * sns
 */

.topConts--sns .topSns__wrap {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.topConts--sns .topSns__wrap .topConts__snsBox {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  border: solid 1px #525252;
  border-radius: 5px;
  height: 360px;
  overflow-y: scroll;
  width: 100%;
}

.topConts--sns .topSns__wrap .topConts__snsBox::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.topConts--sns .topSns__wrap .topConts__snsBox .fb-page {
  max-height: 100% !important;
  max-width: 100% !important;
}

/* カスタマイズ */

.timeline-Tweet-text {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/**
 * playlist
 */

.topConts--playlist .topPlaylist__lists {
  margin-top: 35px;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__subtitle {
  font-family: interstate;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__list {
  color: #fff;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__list:not(:first-of-type) {
  margin-left: 24px;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__link {
  display: inline-block;
}

.topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__link img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.topConts--playlist .topConts__playlistBox {
  border: solid 1px #525252;
  border-radius: 5px;
}

.topConts--playlist .topConts__playlistBox iframe {
  height: 100%;
  width: 100%;
}

.topConts--banner .bannerLists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.topConts--banner .bannerList__link {
  -webkit-transition: 0.3s;
  border: solid 1px #525252;
  display: block;
  text-align: center;
  transition: 0.3s;
}

/*--------------------------------------
04. modules: news
--------------------------------------*/
/**
 * common
 */

.pageConts--news .pageBack__Wrap {
  margin-top: 80px;
}

/*--------------------------------------
04. modules: profile
--------------------------------------*/
/**
 * common
 */

.pageConts--profdetail {
  margin: 0 auto;
}

/**
 * profile index
 */
.pageConts--profile {
  /* BEGIN member */
  /* END member */
}

.pageConts--profile .profGroup {
  /* BEGIN 縦長写真 */
  /* END 縦長写真 */
  /* BEGIN group data */
  /* END group data */
}

.pageConts--profile .profGroup.profGroup--horizontal .profGroup__mainImg {
  width: 472px;
}

.pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap .profGroup__disc {
  width: auto;
}

.pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap .snsLists .snsList:nth-child(6n) {
  margin-left: 0;
}

.pageConts--profile .profGroup .profGroup__mainImg {
  font-size: 0;
  text-align: center;
}

.pageConts--profile .profGroup .profGroup__mainImg .profGroup__mainImg__img {
  height: auto;
  max-width: 100%;
}

.pageConts--profile .profGroup .profGroup__dataWrap .profGroup__name {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 23px;
  text-align: center;
}

.pageConts--profile .profGroup .profGroup__dataWrap .profGroup__furigana {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.71;
  margin-bottom: 16px;
  text-align: center;
}

.pageConts--profile .profGroup .profGroup__dataWrap .profGroup__disc {
  font-size: 14px;
  line-height: 1.71;
}

.pageConts--profile .profMemberTitle {
  color: #fff;
  font-family: interstate;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 38px;
  margin-top: 86px;
  text-align: center;
}

/**
 * member lists
 */
.memberLists {
  -ms-flex-align: start;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: center;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.memberLists .memberList .memberList__link {
  display: block;
  /* hover effect */
  /* text hover */
  /* text hover */
}

.memberLists .memberList .memberList__imgWrap {
  margin-bottom: 9px;
}

.memberLists .memberList .memberList__imgWrap .memberList__img {
  -webkit-box-shadow: 2px 5px 20px 0 rgba(143, 103, 94, 0.3);
  -webkit-transition: all 0.3s;
  box-shadow: 2px 5px 20px 0 rgba(143, 103, 94, 0.3);
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  transition: all 0.3s;
  width: auto;
}

.memberLists .memberList .memberList__name,
.memberLists .memberList .memberList__furigana {
  -webkit-transition: all 0.3s;
  text-align: center;
  transition: all 0.3s;
}

.memberLists .memberList .memberList__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.63;
}

.memberLists .memberList .memberList__furigana {
  font-size: 14px;
  line-height: 1.71;
}

/**
 * profile detail
 */
.pageConts--profdetail {
  /**
  * other members
  */
}

.pageConts--profdetail .member__detailBox {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 80px;
}

.pageConts--profdetail .member__detailBox.is--flexStart {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__detail__name {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 2px;
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__detail__furigana {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__detail__outline {
  font-size: 14px;
  line-height: 1.71;
  margin-top: 25px;
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 23px;
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsLink {
  -webkit-transition: all 0.3s;
  display: inline-block;
  transition: all 0.3s;
  transition: all 0.3s;
  /* hover effect */
}

.pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsLink .member__snsIcon {
  width: 32px;
}

.pageConts--profdetail .member__detailBox .member__detail__imgWrap {
  text-align: center;
}

.pageConts--profdetail .member__detailBox .member__detail__imgWrap .member__detail__img {
  height: auto;
  max-width: 100%;
}

.pageConts--profdetail .otherMembers {
  background-color: #171717;
  padding: 48px 0 81px;
  position: relative;
}

.pageConts--profdetail .otherMembers:before, .pageConts--profdetail .otherMembers:after {
  background-color: #171717;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc((100vw - 872px) / 2);
}

.pageConts--profdetail .otherMembers:before {
  left: calc((100vw - 872px) / 2 * -1);
}

.pageConts--profdetail .otherMembers:after {
  right: calc((100vw - 872px) / 2 * -1);
}

.pageConts--profdetail .otherMembers .otherMembers__title {
  color: #fff;
  font-family: interstate;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
}

.pageConts--profdetail .pageBack__Wrap {
  margin-top: 54px;
}

/*--------------------------------------
04. modules: media
--------------------------------------*/
/**
 * common
 */
.pageConts--media {
  /**
  * media detail
  */
  /* title */
}

.pageConts--media .postDetail__data {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.pageConts--media .postDetail__data .postDetail__date {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.pageConts--media .postTitle {
  margin-bottom: 16px;
}

.pageConts--media .post__detailPost {
  margin-top: 16px;
}

.pageConts--media .pageBack__Wrap {
  margin-top: 80px;
}

/*--------------------------------------
04. modules: live & tour
--------------------------------------*/
/**
 * common
 */

/**
 * live & tour index
 */
.pageConts--livetour .livetourWrap {
  margin-top: 60px;
}

/**
 * more button
 */
.listMore__Wrap {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/**
 * livetour detail
 */
.pageConts--livetour {
  /* BEGIN tour detail */
  /* END tour detail */
}

.pageConts--livetour .post__tourData {
  border-bottom: 1px solid #525252;
  margin: 24px 0;
}

.pageConts--livetour .post__tourData .tourData__outline {
  border-top: 1px solid #525252;
  padding: 20px 0;
  position: relative;
}

.pageConts--livetour .post__tourData .tourData__outline.is--open .tourData__icon:after {
  display: none;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists {
  -ms-flex-align: start;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  -webkit-transition: all 0.3s;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  transition: all 0.3s;
  width: calc(100% - 52px);
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list {
  margin: 0;
  padding: 0;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list:before {
  display: none;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .label {
  border-radius: 11.5px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
  min-height: 21px;
  padding: 4px 8px 3px;
  vertical-align: middle;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .label--soldout {
  background-color: rgba(255, 0, 0, 0.5);
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .label--addstage {
  background-color: rgba(237, 44, 150, 0.5);
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .label--addfree {
  background-color: rgba(215, 1, 15, 0.5);
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--place {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  width: 100%;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__icon {
  -webkit-box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  background-color: #262626;
  border: 1px solid #262626;
  border-radius: 16px;
  box-sizing: border-box;
  display: block;
  height: 32px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 32px;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__icon:before, .pageConts--livetour .post__tourData .tourData__outline .tourData__icon:after {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  background-color: #fff;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  width: 13px;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.pageConts--livetour .post__tourData .tourData__detail {
  display: none;
  margin-top: -12px;
}

.pageConts--livetour .post__tourData .tourData__detail .tourData__text {
  font-size: 14px;
  line-height: 1.71;
  margin: 0 0 20px;
  padding-right: 52px;
}

.pageConts--livetour .post__tourData .tourData__detail .tourData__text li {
  padding: 0;
  position: relative;
}

.pageConts--livetour .post__tourData .tourData__detail .tourData__text li:before {
  background-color: #000;
  border-radius: 0;
  content: '';
  display: inline-block;
  height: 12px;
  left: auto;
  margin-right: 3px;
  position: relative;
  top: 1px;
  width: 12px;
}

.pageConts--livetour .post__tourData .tourData__detail .tourData__text li .tourData__price {
  margin-left: 53px;
}

/*--------------------------------------
04. modules: video
--------------------------------------*/
/**
 * common
 */

.pageConts--video .pagingWrap {
  margin-left: 0;
}

/**
 * video index
 */
.video__lists {
  -ms-flex-align: start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 64px;
}

.video__lists .video__list {
  width: 100%;
}

.video__lists .video__list .video__link {
  display: block;
  /* hover effect */
  /* hover effect */
}

.video__lists .video__list .video__link .video__thumb {
  -webkit-transition: all 0.3s;
  height: calc(100vw * 0.5173);
  position: relative;
  transition: all 0.3s;
}

.video__lists .video__list .video__link .video__thumb .video__thumb--img {
  -o-object-fit: cover;
  border: solid 1px #525252;
  display: inline-block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video__lists .video__list .video__link .video__caption {
  -webkit-transition: all 0.3s;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-top: 16px;
  text-align: center;
  transition: all 0.3s;
}

/**
 * modal contents
 */
.js-videoParents .video__modalConts {
  display: none;
}

.video__iframe {
  height: calc((100vw - 30px) / 16 * 9);
  width: 100%;
}

.modalMovie {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.modalMovie video {
  height: calc((100vw - 30px) / 16 * 9);
  width: 100vw;
}

.flashVideo {
  height: calc((100vw - 30px) / 16 * 9);
  width: 100vw;
}

.spVideo {
  height: calc((100vw - 30px) / 16 * 9);
  width: 100vw;
}

/* video-js.css */
.video-js .vjs-big-play-button:before,
.video-js .vjs-control:before,
.video-js .vjs-modal-dialog {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-js .vjs-big-play-button:before,
.video-js .vjs-control:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAA4wAAoAAAAAFfAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAD4AAABWUZFeBGNtYXAAAAE0AAAAOgAAAUriLxC2Z2x5ZgAAAXAAAAnnAAAO5OV/F/5oZWFkAAALWAAAACoAAAA2CsZ2fWhoZWEAAAuEAAAAGAAAACQOogcfaG10eAAAC5wAAAAPAAAAeNIAAABsb2NhAAALrAAAAD4AAAA+MMgtQm1heHAAAAvsAAAAHwAAACABLwB5bmFtZQAADAwAAAElAAACCtXH9aBwb3N0AAANNAAAAPkAAAF5vawAenicY2BkZ2CcwMDKwMFSyPKMgYHhF4RmjmEIZzzHwMDEwMrMgBUEpLmmMDh8ZPwoyw7iLmSHCDOCCADu/Qo9AAB4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGD7K/v8PUvCREUTzM0DVAwEjG8OIBwCOWgbUAAB4nI1XfVBU1xV/574vlsUlj/14grDs48FuAgaR3X2LEnY3UZSgEkTwAySAgkIwI8bRfFDjTszYCWRMW9lNa4y2meokmq+2k5ia0dpkmknbkWgSSW3GyaaNf0RTx0wxX7A3Pe/tQmIgHXf3vXvvueeee+45v3POXQYY/PCD/CBDGAYkIE2sxg+OXSJmhmH1OaFX6MU5C5PDMCZi5Rg2i+ELGSthwM14NCbgYGSBIZfhFA1H6Zu0OS0NDkMVfg+npdFm+maCvigI0JBIQIMg0BdJGdTj9ylj7nr+b97+Hl8C1+H2xNAvjPqxjIgaKtItICkSnIISeo40QQls4xxjlzgHsnGGvi7BxQiMlSlkPMhfCh67rAUEUQ6CHxW2O7JARCkKnlUQ7UEIyAEQZe4MdDW9xr5OPFuKbubpRxcPDY8da4MOelDfAYJLW+sGKn/Vlmjfv5+NdB4oOfTazJn3tGxZtL9xFNZX7PPRUbjcRg/SMB2EL+gblXn7shbO/WUbF9u/H5XQ9eKO8iMMr9tY35qYoRi20wGuXV/CHaGDk2fdgHwCk5HUXQpCcgHfBV2NjV3jkq4PHTSUSBwuOQALvxPAps6fiftk6P6yJpcm5bB4dFkgoh195mbiSTnkL3jupq7jh4ZZdvjQRVB4PPx3SsVTu5D/6kd85RU66ttXAeuuXYN1E/Y2sMMzZkZiZNRZlRS/ynr9Xr8Cql2RVNbutXslYo7B9ngsFqcDbCQO22PxeIxcpgMxkh6PjUdwkvw6hvRpZeoCFKshDQzJVr++DWyLx+hAXJcGp3TJMV1ME45xCNvHLsWRrpOZSduOoG0zERuIIwuIkhNkBREglQKLiODD45FQE0BTiE214xE2wp8zOt9NjH3GRtDMk7Ehoq2tzCzGxdyMEQJuD0qGIrQ58ApoWQE3D2h1h6zwuB14wYFIDAA5CZ11jT+92gFZ7B7/p7+hV8jFxBl4aG03wLiVXtBbCylLfIJzkPUAvWAw0yvsVdKdBbC6nnruP/RFkHqWJLZ2Auxdtgy+6qTf7l1WswTJcJ6mGVxwXj92UtfU2WXUNX+qBUCxK6D4FR4f/cufG1sZbiSkMcwdMdoxBxTTEXIp4SCXMNhHoFjvTTFP4vkoPReNRmPRCTwa+3qY0DR7qn7Vjh612wRRTaI04HWCnZ+gIzvS/ZJP0+mynphCui4hzmG0id6+aLSv2BV3FQMYDTHrlGQ/SZ+q4ZdF8aLa5Ar8GW3tVNKEj13cF0buMaesx1i9CL/Uo1tM0h+74o9HjQ+UcPaxy8mH9ccwK8KpKA3rHdIUjTKpfIBxuokpxUGBIILm84ATvHh8tAIe2iZj8KvYwUOXawHMVNgxZvlwSa0z8Zkokkxn3ey2nYTsbMO3mPh8cji7zklsPLD9a9f2s2w/uSt/FgSytWzw5bmS3PielU1P56aGrlz6NzlnbT8h/Wtb+1OxIqxBbC9g7kINUbtAEDxsKWSCe46eltCPmaiUxy2IrODIB8EmixaQrU4IAQ6THg6BFpAdWsCquT16DkL9ccIC/FGeP5AuiDExe8bx+QtzWVsmHcm0kdzqecdn5IhRkTc/zfNPm3ns5sw4Pq86l9gyofh6jkTF5iFChjYbbzZQWFvYb8qZAWyGiV9ya+5bFgnzpuWt3FuX8KYMmsiYZepPseBgGhZcOMt0+4Q8fDOTftJjHIuhdaLsFXFM9AclTi9jbGRq8ZvIOykZei77kfo53eoppVPovbGiyV63p/p/dkWETTjmhjTIm8RP284b04bcNYlRsvO6Gp2JeaiIueVHsgJGF2aASlCQLuG8EsBomzb++/AXmwhaOoLhL7iQ4/uc449gWJ56/XWDARn74v/PL1bRBB4TBEyYrqezSkUPHaWjPWCm13ogAzJ66LVpbTEuXccDZlyXxBQ/IrzKOPS7gAkkIyZ0N6joE6M246aDsO1kgucTJ/EdFWA5pbAcTfoSP4hJeBCni7nEn5IclL4kpDgmMMuH8Kpk0+WrBUIeKCyWS0nPVz7NW86Hnl55GxR5KB3+9tszL+wVRulXNTUn6D8SJvIl3PzP46eZST/tQTllTDXTzmxCaTYna7eJAqcWuD1ulBXQsMz5fQEBCfowCF5FVDF/2yysB9OW5veVEtRAFOy41FoeJEiAOZhDiFstsKAwJ8Hijs72q1jWvWx+uKU5XFZDLx189OK8ojW1u0By5dtLHUN/rwkte68PnhnYVbt0bvWiub9w1+f4C0L3hIuXZ8+xlVSt0eb3tgQsmVZnem5R3U0uf/fmFdqiLTvY3nPnet5/v4f9pLB6QX2krnnFQ1tXtN+2ePlAaUNWcfiWwrncn4ca9ml3hFeHHm+u2bq4MhxUZs3bMH/3jgaPUtlVunFjg2/8yRzf3cHsssKZqlnOqyCWworWykW9lXnspk0ffrjpfCreIpjPWbwnFxt3PAkcQgkUuH1auUMf+txJQ0hK1k1zsNaqQdaLMxfoq9AGGxtJQ+fGw53cE/TY8pWhJruZHiMAcCexFS/eGDp6hntiXGE/gvI7163b29ExfiHxNsnqub/a6/QmPoAn4GpZ2c9cZRX5/57IWUNYuubiQBAddhuxAKe6PA5vuV5dkk0VXkMM3zk42W3Awrgka8LQgjZY+tQIffd5+vnHasnHL/cczldyS4r79i6su6Nu9oPQ8lbaid2Pt9/bXtTTynevq7bkPkITV47d+3NugOzo4M3y77Zxbnb2nhWrl0T/kO4u3H1ig33e1lD6JDYjiKkCHOioF0pZv6T6gxxipxLNhFc8xERA48vq5ZfXdL/QV6c8W3PfwjIsZyI3Csvo72e4FpTVwTv/UYNAKtY+8MB84vogZ1Xr5lW38iJdPZ74xunzO4Gk7BARIkytjlyCoPVoIb3IluMfAYRhEoAO2aGXKc2TNAJaSwdzQEeq7jC7TWYF2Y2jrEIXlyVEhunBs5t7K62a7Z6qB0923/+vPT2v7mwpqV/mTEsTiCB5zz735HOP9VbVWtKKZK08uDJ7vcQN02HogGegY5iNnKUHh12ti9/zzHvsauy+tx+e375j94LuA64MV/5MQbZVNT95/re7jlxZVaVuW5Nffsd9TXfOpXcv6m2Bn3x6FgXg/oz+P0h/ce8g2mTEWxVTzzQzrTruNCcRdbu6VY87gLVXc4uSjXfosak7XxWM4oyl+ockmzCFhJXaGwK8e6sCW2T3sLmPnh5qSZtx9JHFL6QBHGnsTjdtWQ8PFygWtQTIkrI84NILfQSC65FUMFsnOYFHEoSmUCD49a4rt3985PTsd8GzB/5KEnzmhhORgVOZPM+yb5KmpRu38jQqviH6826Lrdrxx6DZdFPo2fVbTiy9AUpDJ3SxGYvpK7u+Rhz8D4BCxssAeJxjYGRgYABiwcIjbvH8Nl8ZuNkZQOBSiOgBZJqdASzOwcAEogDqtAdOAAB4nGNgZGBgZwCChWASxGZkQAVyABOTANd4nGNnYGBgHwAMADNUANMAAAAAAAAOAFAAZgCyAMYA5gEeAUgBdAGcAfICLgKOAroDCgOOA7AD6gQ4BHwEuAToBQwFogXoBjYGbAbaB3IAAHicY2BkYGCQY8hlYGcAASYg5gJCBob/YD4DABa6AakAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2P2XLCMAxFfYE4CWlZSveFP8hHOY4gHhw79VLav68hMNOH6kG60mg5YhM22pr9b1vGMMEUM2TgyFGgxBwVbnCLBZZYYY07bHCPBzziCc94wSve8I4PbGeDFj/VydVSOakpG0T0VH1ZHXuq+xhoftHaHq+yV+21o1P7brWLWnvpiExNJpBb/i18q8D9ZxSOcj8oY8iVPjZBBU2+kGIIypokuqTI+cx3qXMq7Z6PQIsx1DYGrQxtLul50YV50rVcCiNJc0enX4qdkNRYe8j2g46+SIMHapXJw1GFdIWH2DfalQknZeTDWsRW2bqlBK3ORIz9AqJUapQAAAA=) format("woff"), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAAKAIAAAwAgT1MvMlGRXgQAAAEoAAAAVmNtYXDiLxC2AAAB+AAAAUpnbHlm5X8X/gAAA4QAAA7kaGVhZArGdn0AAADQAAAANmhoZWEOogcfAAAArAAAACRobXR40gAAAAAAAYAAAAB4bG9jYTDILUIAAANEAAAAPm1heHABLwB5AAABCAAAACBuYW1l1cf1oAAAEmgAAAIKcG9zdL2sAHoAABR0AAABeQABAAAHAAAAAKEHAAAAAAAHAAABAAAAAAAAAAAAAAAAAAAAHgABAAAAAQAAEXIS2l8PPPUACwcAAAAAANJUFcAAAAAA0lQVwAAAAAAHAAcAAAAACAACAAAAAAAAAAEAAAAeAG0ABwAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQcAAZAABQAIBHEE5gAAAPoEcQTmAAADXABXAc4AAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA8QHxHQcAAAAAoQcAAAAAAAABAAAAAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADxHf//AAAAAPEB//8AAA8AAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AUABmALIAxgDmAR4BSAF0AZwB8gIuAo4CugMKA44DsAPqBDgEfAS4BOgFDAWiBegGNgZsBtoHcgAAAAEAAAAABYsFiwACAAABEQECVQM2BYv76gILAAADAAAAAAZrBmsAAgAOABoAAAkCEwQAAxIABSQAEwIAASYAJzYANxYAFwYAAusBwP5Alf7D/loICAGmAT0BPQGmCAj+Wv7D/f6uBgYBUv39AVIGBv6uAjABUAFQAZsI/lr+w/7D/loICAGmAT0BPQGm+sgGAVL9/QFSBgb+rv39/q4AAAACAAAAAAVABYsAAwAHAAABIREpAREhEQHAASv+1QJVASsBdQQW++oEFgAAAAQAAAAABiAGIAAGABMAJAAnAAABLgEnFRc2NwYHFz4BNSYAJxUWEgEHASERIQERAQYHFT4BNxc3AQcXBNABZVW4A7sCJ3ElKAX+3+Wlzvu3XwFh/p8BKwF1AT5MXU6KO5lf/WCcnAOAZJ4rpbgYGGpbcUacVPQBYziaNP70Aetf/p/+QP6LAfb+wjsdmhJEMZhfBJacnAAAAQAAAAAEqwXWAAUAAAERIQERAQILASoBdv6KBGD+QP6LBKr+iwAAAAIAAAAABWYF1gAGAAwAAAEuAScRPgEBESEBEQEFZQFlVFRl/BEBKwF1/osDgGSeK/2mK54BRP5A/osEqv6LAAADAAAAAAYgBg8ABQAMABoAABMRIQERAQUuAScRPgEDFRYSFwYCBxU2ADcmAOABKwF1/osCxQFlVVVluqXOAwPOpeUBIQUF/t8EYP5A/osEqv6L4GSeK/2mK54C85o0/vS1tf70NJo4AWL19QFiAAAABAAAAAAFiwWLAAUACwARABcAAAEjESE1IwMzNTM1IQEjFSERIwMVMxUzEQILlgF24JaW4P6KA4DgAXaW4OCWAuv+ipYCCuCW/ICWAXYCoJbgAXYABAAAAAAFiwWLAAUACwARABcAAAEzFTMRIRMjFSERIwEzNTM1IRM1IxEhNQF14Jb+iuDgAXaWAcCW4P6KlpYBdgJV4AF2AcCWAXb76uCWAcDg/oqWAAAAAAIAAAAABdYF1gAPABMAAAEhDgEHER4BFyE+ATcRLgEDIREhBUD8gD9VAQFVPwOAP1UBAVU//IADgAXVAVU//IA/VQEBVT8DgD9V++wDgAAABgAAAAAGawZrAAcADAATABsAIAAoAAAJASYnDgEHASUuAScBBSEBNhI3JgUBBgIHFhchBR4BFwEzARYXPgE3AQK+AWROVIfwYQESA4416aH+7gLl/dABelxoAQH8E/7dXGgBAQ4CMP3kNemhARJ4/t1OVIfwYf7uA/ACaBIBAVhQ/id3pfY+/idL/XNkAQGTTU0B+GT+/5NNSEul9j4B2f4IEgEBWFAB2QAAAAUAAAAABmsF1gAPABMAFwAbAB8AAAEhDgEHER4BFyE+ATcRLgEBIRUhASE1IQUhNSE1ITUhBdX7VkBUAgJUQASqQFQCAlT7FgEq/tYC6v0WAuoBwP7WASr9FgLqBdUBVT/8gD9VAQFVPwOAP1X9rJX+1ZWVlZaVAAMAAAAABiAF1gAPACcAPwAAASEOAQcRHgEXIT4BNxEuAQEjNSMVMzUzFRQGByMuAScRPgE3Mx4BFQUjNSMVMzUzFQ4BByMuATURNDY3Mx4BFwWL++o/VAICVD8EFj9UAgJU/WtwlZVwKiDgICoBASog4CAqAgtwlZVwASog4CAqKiDgICoBBdUBVT/8gD9VAQFVPwOAP1X99yXgJUogKgEBKiABKiAqAQEqIEol4CVKICoBASogASogKgEBKiAAAAYAAAAABiAE9gADAAcACwAPABMAFwAAEzM1IxEzNSMRMzUjASE1IREhNSERFSE14JWVlZWVlQErBBX76wQV++sEFQM1lv5AlQHAlf5Alv5AlQJVlZUAAAABAAAAAAYgBmwALgAAASIGBwE2NCcBHgEzPgE3LgEnDgEHFBcBLgEjDgEHHgEXMjY3AQYHHgEXPgE3LgEFQCtKHv3sBwcCDx5OLF9/AgJ/X19/Agf98R5OLF9/AgJ/XyxOHgIUBQEDe1xcewMDewJPHxsBNxk2GQE0HSACf19ffwICf18bGf7NHCACf19ffwIgHP7KFxpcewICe1xdewAAAgAAAAAGWQZrAEMATwAAATY0Jzc+AScDLgEPASYvAS4BJyEOAQ8BBgcnJgYHAwYWHwEGFBcHDgEXEx4BPwEWHwEeARchPgE/ATY3FxY2NxM2JicFLgEnPgE3HgEXDgEFqwUFngoGB5YHGQ26OkQcAxQP/tYPFAIcRTm6DRoHlQcFC50FBZ0LBQeVBxoNujlFHAIUDwEqDxQCHEU5ug0aB5UHBQv9OG+UAgKUb2+UAgKUAzckSiR7CRoNAQMMCQVLLRzGDhEBAREOxhwtSwUJDP79DBsJeyRKJHsJGg3+/QwJBUstHMYOEQEBEQ7GHC1LBQkMAQMMGwlBApRvb5QCApRvb5QAAAAAAQAAAAAGawZrAAsAABMSAAUkABMCACUEAJUIAaYBPQE9AaYICP5a/sP+w/5aA4D+w/5aCAgBpgE9AT0BpggI/loAAAACAAAAAAZrBmsACwAXAAABBAADEgAFJAATAgABJgAnNgA3FgAXBgADgP7D/loICAGmAT0BPQGmCAj+Wv7D/f6uBgYBUv39AVIGBv6uBmsI/lr+w/7D/loICAGmAT0BPQGm+sgGAVL9/QFSBgb+rv39/q4AAAMAAAAABmsGawALABcAIwAAAQQAAxIABSQAEwIAASYAJzYANxYAFwYAAw4BBy4BJz4BNx4BA4D+w/5aCAgBpgE9AT0BpggI/lr+w/3+rgYGAVL9/QFSBgb+rh0Cf19ffwICf19ffwZrCP5a/sP+w/5aCAgBpgE9AT0BpvrIBgFS/f0BUgYG/q79/f6uAk9ffwICf19ffwICfwAAAAQAAAAABiAGIAAPABsAJQApAAABIQ4BBxEeARchPgE3ES4BASM1IxUjETMVMzU7ASEeARcRDgEHITczNSMFi/vqP1QCAlQ/BBY/VAICVP1rcJVwcJVwlgEqICoBASog/tZwlZUGIAJUP/vqP1QCAlQ/BBY/VPyClZUBwLu7ASog/tYgKgFw4AACAAAAAAZrBmsACwAXAAABBAADEgAFJAATAgATBwkBJwkBNwkBFwEDgP7D/loICAGmAT0BPQGmCAj+Wjhp/vT+9GkBC/71aQEMAQxp/vUGawj+Wv7D/sP+WggIAaYBPQE9Aab8EWkBC/71aQEMAQxp/vUBC2n+9AABAAAAAAXWBrYAFgAAAREJAREeARcOAQcuAScjFgAXNgA3JgADgP6LAXW+/QUF/b6+/QWVBgFR/v4BUQYG/q8FiwEq/ov+iwEqBP2/vv0FBf2+/v6vBgYBUf7+AVEAAAABAAAAAAU/BwAAFAAAAREjIgYdASEDIxEhESMRMzU0NjMyBT+dVjwBJSf+/s7//9Ctkwb0/vhISL3+2P0JAvcBKNq6zQAAAAAEAAAAAAaOBwAAMABFAGAAbAAAARQeAxUUBwYEIyImJyY1NDY3NiUuATU0NwYjIiY1NDY3PgEzIQcjHgEVFA4DJzI2NzY1NC4CIyIGBwYVFB4DEzI+AjU0LgEvASYvAiYjIg4DFRQeAgEzFSMVIzUjNTM1MwMfQFtaQDBI/uqfhOU5JVlKgwERIB8VLhaUy0g/TdNwAaKKg0pMMUVGMZImUBo1Ij9qQCpRGS8UKz1ZNjprWzcODxMeChwlThAgNWhvUzZGcX0Da9XVadTUaQPkJEVDUIBOWlN6c1NgPEdRii5SEipAKSQxBMGUUpo2QkBYP4xaSHNHO0A+IRs5ZjqGfVInITtlLmdnUjT8lxo0Xj4ZMCQYIwsXHTgCDiQ4XTtGazsdA2xs29ts2QADAAAAAAaABmwAAwAOACoAAAERIREBFgYrASImNDYyFgERIRE0JiMiBgcGFREhEhAvASEVIz4DMzIWAd3+tgFfAWdUAlJkZ6ZkBI/+t1FWP1UVC/63AgEBAUkCFCpHZz+r0ASP/CED3wEySWJik2Fh/N39yAISaXdFMx4z/dcBjwHwMDCQIDA4H+MAAAEAAAAABpQGAAAxAAABBgcWFRQCDgEEIyAnFjMyNy4BJxYzMjcuAT0BFhcuATU0NxYEFyY1NDYzMhc2NwYHNgaUQ18BTJvW/tKs/vHhIyvhsGmmHyEcKypwk0ROQk4seQFbxgi9hoxgbWAlaV0FaGJFDhyC/v3ut22RBIoCfWEFCxexdQQmAyyOU1hLlbMKJiSGvWYVOXM/CgAAAAEAAAAABYAHAAAiAAABFw4BBwYuAzURIzU+BDc+ATsBESEVIREUHgI3NgUwUBewWWitcE4hqEhyRDAUBQEHBPQBTf6yDSBDME4Bz+0jPgECOFx4eDoCINcaV11vVy0FB/5Y/P36HjQ1HgECAAEAAAAABoAGgABKAAABFAIEIyInNj8BHgEzMj4BNTQuASMiDgMVFBYXFj8BNjc2JyY1NDYzMhYVFAYjIiY3PgI1NCYjIgYVFBcDBhcmAjU0EiQgBBIGgM7+n9FvazsTNhRqPXm+aHfijmm2f1srUE0eCAgGAgYRM9Gpl6mJaz1KDgglFzYyPlYZYxEEzv7OAWEBogFhzgOA0f6fziBdR9MnOYnwlnLIfjpgfYZDaJ4gDCAfGAYXFD1al9mkg6ruVz0jdVkfMkJyVUkx/l5Ga1sBfOnRAWHOzv6fAAAHAAAAAAcABM8ADgAXACoAPQBQAFoAXQAAARE2HgIHDgEHBiYjJyY3FjY3NiYHERQFFjY3PgE3LgEnIwYfAR4BFw4BFxY2Nz4BNy4BJyMGHwEeARcUBhcWNjc+ATcuAScjBh8BHgEXDgEFMz8BFTMRIwYDJRUnAxyEzZRbCA2rgketCAEBqlRoCglxYwF+IiEOIysBAkswHQEECiQ0AgE+YyIhDiIsAQJLMB4BBQokNAE/YyIhDiIsAQJLMB4BBQokNAEBPvmD7kHhqs0s0gEnjgHJAv0FD2a9gIrADwUFAwPDAlVMZ3MF/pUHwgc1HTyWV325PgsJED+oY3G9TAc1HTyWV325PgsJED+oY3G9TAc1HTyWV325PgsJED+oY3G9UmQBZQMMR/61g/kBAAAAAAAQAMYAAQAAAAAAAQAHAAAAAQAAAAAAAgAHAAcAAQAAAAAAAwAHAA4AAQAAAAAABAAHABUAAQAAAAAABQALABwAAQAAAAAABgAHACcAAQAAAAAACgArAC4AAQAAAAAACwATAFkAAwABBAkAAQAOAGwAAwABBAkAAgAOAHoAAwABBAkAAwAOAIgAAwABBAkABAAOAJYAAwABBAkABQAWAKQAAwABBAkABgAOALoAAwABBAkACgBWAMgAAwABBAkACwAmAR5WaWRlb0pTUmVndWxhclZpZGVvSlNWaWRlb0pTVmVyc2lvbiAxLjBWaWRlb0pTR2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AVgBpAGQAZQBvAEoAUwBSAGUAZwB1AGwAYQByAFYAaQBkAGUAbwBKAFMAVgBpAGQAZQBvAEoAUwBWAGUAcgBzAGkAbwBuACAAMQAuADAAVgBpAGQAZQBvAEoAUwBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAACAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBEwEUARUBFgEXARgBGQEaARsBHAEdAR4EcGxheQtwbGF5LWNpcmNsZQVwYXVzZQt2b2x1bWUtbXV0ZQp2b2x1bWUtbG93CnZvbHVtZS1taWQLdm9sdW1lLWhpZ2gQZnVsbHNjcmVlbi1lbnRlcg9mdWxsc2NyZWVuLWV4aXQGc3F1YXJlB3NwaW5uZXIJc3VidGl0bGVzCGNhcHRpb25zCGNoYXB0ZXJzBXNoYXJlA2NvZwZjaXJjbGUOY2lyY2xlLW91dGxpbmUTY2lyY2xlLWlubmVyLWNpcmNsZQJoZAZjYW5jZWwGcmVwbGF5CGZhY2Vib29rBWdwbHVzCGxpbmtlZGluB3R3aXR0ZXIGdHVtYmxyCXBpbnRlcmVzdBFhdWRpby1kZXNjcmlwdGlvbgAAAAAA) format("truetype");
}

.vjs-icon-play {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-big-play-button,
.video-js .vjs-play-control {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-play:before {
  content: '';
}

.video-js .vjs-big-play-button:before,
.video-js .vjs-play-control:before {
  content: '';
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-play-circle:before {
  content: '';
}

.vjs-icon-pause,
.video-js .vjs-play-control.vjs-playing {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-pause:before,
.video-js .vjs-play-control.vjs-playing:before {
  content: '';
}

.vjs-icon-volume-mute {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-0,
.video-js .vjs-volume-menu-button.vjs-vol-0 {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-volume-mute:before {
  content: '';
}

.video-js .vjs-mute-control.vjs-vol-0:before,
.video-js .vjs-volume-menu-button.vjs-vol-0:before {
  content: '';
}

.vjs-icon-volume-low {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-1,
.video-js .vjs-volume-menu-button.vjs-vol-1 {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-volume-low:before {
  content: '';
}

.video-js .vjs-mute-control.vjs-vol-1:before,
.video-js .vjs-volume-menu-button.vjs-vol-1:before {
  content: '';
}

.vjs-icon-volume-mid {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control.vjs-vol-2,
.video-js .vjs-volume-menu-button.vjs-vol-2 {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-volume-mid:before {
  content: '';
}

.video-js .vjs-mute-control.vjs-vol-2:before,
.video-js .vjs-volume-menu-button.vjs-vol-2:before {
  content: '';
}

.vjs-icon-volume-high {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mute-control,
.video-js .vjs-volume-menu-button {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-volume-high:before {
  content: '';
}

.video-js .vjs-mute-control:before,
.video-js .vjs-volume-menu-button:before {
  content: '';
}

.vjs-icon-fullscreen-enter,
.video-js .vjs-fullscreen-control {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-fullscreen-enter:before,
.video-js .vjs-fullscreen-control:before {
  content: '';
}

.vjs-icon-fullscreen-exit,
.video-js.vjs-fullscreen .vjs-fullscreen-control {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-fullscreen-exit:before,
.video-js.vjs-fullscreen .vjs-fullscreen-control:before {
  content: '';
}

.vjs-icon-square {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-square:before {
  content: '';
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-spinner:before {
  content: '';
}

.vjs-icon-subtitles,
.video-js .vjs-subtitles-button {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-subtitles:before,
.video-js .vjs-subtitles-button:before {
  content: '';
}

.vjs-icon-captions,
.video-js .vjs-captions-button {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-captions:before,
.video-js .vjs-captions-button:before {
  content: '';
}

.vjs-icon-chapters,
.video-js .vjs-chapters-button {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-chapters:before,
.video-js .vjs-chapters-button:before {
  content: '';
}

.vjs-icon-share {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-share:before {
  content: '';
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-cog:before {
  content: '';
}

.vjs-icon-circle {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.video-js .vjs-mouse-display,
.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-circle:before {
  content: '';
}

.video-js .vjs-mouse-display:before,
.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before {
  content: '';
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-circle-outline:before {
  content: '';
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-circle-inner-circle:before {
  content: '';
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-hd:before {
  content: '';
}

.vjs-icon-cancel,
.video-js .vjs-control.vjs-close-button {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-cancel:before,
.video-js .vjs-control.vjs-close-button:before {
  content: '';
}

.vjs-icon-replay {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-replay:before {
  content: '';
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-facebook:before {
  content: '';
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-gplus:before {
  content: '';
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-linkedin:before {
  content: '';
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-twitter:before {
  content: '';
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-tumblr:before {
  content: '';
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-pinterest:before {
  content: '';
}

.vjs-icon-audio-description {
  font-family: VideoJS;
  font-style: normal;
  font-weight: 400;
}

.vjs-icon-audio-description:before {
  content: '';
}

.video-js {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-box-sizing: border-box;
  -webkit-user-select: none;
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  position: relative;
  user-select: none;
  vertical-align: top;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  height: 100% !important;
  width: 100% !important;
}

.video-js *,
.video-js :before,
.video-js :after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.video-js.vjs-fluid, .video-js.vjs-16-9, .video-js.vjs-4-3 {
  height: 0;
  max-width: 100%;
  width: 100%;
}

.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

.video-js.vjs-4-3 {
  padding-top: 75%;
}

.video-js.vjs-fill {
  height: 100%;
  width: 100%;
}

.video-js .vjs-tech {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

body.vjs-full-window {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 0;
}

.vjs-full-window .video-js.vjs-fullscreen {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.video-js.vjs-fullscreen {
  height: 100% !important;
  padding-top: 0 !important;
  width: 100% !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.vjs-no-js {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  height: 150px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  width: 300px;
}

.vjs-no-js a {
  color: #66a8cc;
}

.vjs-no-js a:visited {
  color: #66a8cc;
}

.video-js .vjs-big-play-button {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  border: 0.06666em solid #fff;
  border-radius: 0.3em;
  cursor: pointer;
  display: block;
  font-size: 3em;
  height: 1.5em;
  left: 50%;
  line-height: 1.5em;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  width: 3em;
}

.vjs-big-play-centered .vjs-big-play-button {
  left: 50%;
  margin-left: -1.5em;
  margin-top: -0.75em;
  top: 50%;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  -webkit-transition: all 0s;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  border-color: #fff;
  outline: 0;
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.video-js button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-transition: none;
  appearance: none;
  background: 0 0;
  border: 0;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  overflow: visible;
  text-decoration: none;
  text-transform: none;
  transition: none;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu .vjs-menu-content {
  display: block;
  margin: 0;
  overflow: auto;
  padding: 0;
}

.vjs-scrubbing .vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  font-size: 1.2em;
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li:focus, .vjs-menu li:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  outline: 0;
}

.vjs-menu li.vjs-selected {
  background-color: #fff;
  color: #2b333f;
}

.vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2b333f;
}

.vjs-menu li.vjs-menu-title {
  cursor: default;
  font-size: 1em;
  font-weight: 700;
  line-height: 2em;
  margin: 0 0 0.3em;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

.vjs-menu-button-popup .vjs-menu {
  border-top-color: rgba(43, 51, 63, 0.7);
  bottom: 0;
  display: none;
  height: 0;
  left: -3em;
  margin-bottom: 1.5em;
  position: absolute;
  width: 10em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  bottom: 1.5em;
  max-height: 15em;
  position: absolute;
  width: 100%;
}

.vjs-menu-button-popup:hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  -webkit-transition: all 0.4s;
  overflow: hidden;
  transition: all 0.4s;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}

.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.video-js .vjs-menu-button-inline.vjs-slider-active {
  -webkit-transition: none;
  transition: none;
}

.vjs-menu-button-inline .vjs-menu {
  -webkit-transition: all 0.4s;
  height: 100%;
  left: 4em;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  width: auto;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  height: 100%;
  margin: 0;
  overflow: hidden;
  width: auto;
}

.video-js .vjs-control-bar {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  bottom: 0;
  display: none;
  height: 3em;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.vjs-has-started .vjs-control-bar {
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
  visibility: visible;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  -webkit-transition: visibility 1s, opacity 1s;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  visibility: hidden;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  -ms-flex: none;
  -webkit-box-flex: 0;
  flex: none;
  height: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 4em;
}

.video-js .vjs-control:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before, .video-js .vjs-control:focus {
  text-shadow: 0 0 1em #fff;
}

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  -ms-flex: auto;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-box-flex: 1;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: auto;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.video-js .vjs-progress-holder {
  -ms-flex: auto;
  -webkit-box-flex: 1;
  -webkit-transition: all 0.2s;
  flex: auto;
  height: 0.3em;
  transition: all 0.2s;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display:after,
.video-js .vjs-progress-control:hover .vjs-play-progress:after {
  display: block;
  font-size: 0.6em;
}

.video-js .vjs-progress-holder .vjs-play-progress {
  display: block;
  height: 0.3em;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.video-js .vjs-progress-holder .vjs-load-progress {
  display: block;
  height: 0.3em;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.video-js .vjs-progress-holder .vjs-load-progress div {
  display: block;
  height: 0.3em;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.video-js .vjs-mouse-display:before {
  display: none;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.333333333333333em;
}

.video-js .vjs-mouse-display:after {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  content: attr(data-current-time);
  display: none;
  font-size: 0.9em;
  padding: 0.2em 0.5em;
  position: absolute;
  right: -1.5em;
  top: -2.4em;
}

.video-js .vjs-play-progress:after {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  content: attr(data-current-time);
  display: none;
  font-size: 0.9em;
  padding: 0.2em 0.5em;
  position: absolute;
  right: -1.5em;
  top: -2.4em;
}

.video-js .vjs-play-progress:before, .video-js .vjs-play-progress:after {
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: ligthen(#73859f, 25%);
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: ligthen(#73859f, 50%);
  background: rgba(115, 133, 159, 0.75);
}

.video-js.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  background-color: #000;
  display: none;
  height: 100%;
  position: absolute;
  width: 1px;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  -webkit-transition: visibility 1s, opacity 1s;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  visibility: hidden;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display:after {
  -webkit-transition: visibility 1s, opacity 1s;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  visibility: hidden;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display:after {
  display: none;
}

.video-js .vjs-progress-control .vjs-mouse-display:after {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.video-js .vjs-slider {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  cursor: pointer;
  margin: 0 0.45em;
  outline: 0;
  padding: 0;
  position: relative;
}

.video-js .vjs-slider:focus {
  -webkit-box-shadow: 0 0 1em #fff;
  box-shadow: 0 0 1em #fff;
  text-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control,
.video-js .vjs-volume-menu-button {
  -ms-flex: none;
  -webkit-box-flex: 0;
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  -ms-flex: none;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-box-flex: 0;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: none;
  width: 5em;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  height: 0.3em;
  width: 5em;
}

.vjs-volume-bar.vjs-slider-vertical {
  height: 5em;
  margin: 1.35em auto;
  width: 0.3em;
}

.video-js .vjs-volume-level {
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
}

.video-js .vjs-volume-level:before {
  font-size: 0.9em;
  position: absolute;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  left: -0.3em;
  top: -0.5em;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  right: -0.5em;
  top: -0.3em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu {
  border-top-color: transparent;
  display: block;
  height: 0;
  width: 0;
}

.vjs-menu-button-popup.vjs-volume-menu-button-vertical .vjs-menu {
  height: 8em;
  left: 0.5em;
}

.vjs-menu-button-popup.vjs-volume-menu-button-horizontal .vjs-menu {
  left: -2em;
}

.vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu-content {
  height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 0;
}

.vjs-volume-menu-button-vertical:hover .vjs-menu-content,
.vjs-volume-menu-button-vertical .vjs-lock-showing .vjs-menu-content {
  height: 8em;
  width: 2.9em;
}

.vjs-volume-menu-button-horizontal:hover .vjs-menu-content,
.vjs-volume-menu-button-horizontal .vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 8em;
}

.vjs-volume-menu-button.vjs-menu-button-inline .vjs-menu-content {
  background-color: transparent !important;
}

.vjs-poster {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
}

.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  vertical-align: middle;
  width: 100%;
}

.vjs-has-started .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-controls-disabled .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.video-js .vjs-live-control {
  -ms-flex: auto;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -webkit-box-flex: 1;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  text-align: left;
  width: auto;
}

.video-js .vjs-time-control {
  -ms-flex: none;
  -webkit-box-flex: 0;
  flex: none;
  font-size: 1em;
  line-height: 3em;
}

.vjs-live .vjs-time-control,
.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time,
.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  -ms-flex: none;
  -webkit-box-flex: 0;
  cursor: pointer;
  flex: none;
}

.vjs-text-track-display {
  bottom: 3em;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.4em;
  margin-bottom: 0.1em;
  text-align: center;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-3em);
  transform: translateY(-3em);
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  -webkit-transform: translateY(-1.5em);
  transform: translateY(-1.5em);
}

.video-js .vjs-fullscreen-control {
  -ms-flex: none;
  -webkit-box-flex: 0;
  cursor: pointer;
  flex: none;
  width: 3.8em;
}

.vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  height: 100%;
  left: 0;
  line-height: 2;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.vjs-playback-rate .vjs-menu {
  left: 0;
  width: 4em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: 'X';
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-align: center;
  text-shadow: 0.05em 0.05em 0.1em #000;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  -webkit-box-sizing: border-box;
  background-clip: padding-box;
  border: 6px solid rgba(43, 51, 63, 0.7);
  border-radius: 25px;
  box-sizing: border-box;
  display: none;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  position: absolute;
  text-align: left;
  top: 50%;
  width: 50px;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
}

.vjs-loading-spinner:before, .vjs-loading-spinner:after {
  -webkit-box-sizing: inherit;
  border: inherit;
  border-color: transparent;
  border-radius: inherit;
  border-top-color: #fff;
  box-sizing: inherit;
  content: '';
  height: inherit;
  margin: -6px;
  opacity: 1;
  position: absolute;
  width: inherit;
}

.vjs-seeking .vjs-loading-spinner:before, .vjs-seeking .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-waiting .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: #fff;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
  border-top-color: #fff;
}

@keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: #fff;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}

@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: #fff;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}

.vjs-chapters-button .vjs-menu {
  left: -10em;
  width: 0;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  -ms-flex: auto;
  -webkit-box-flex: 1;
  flex: auto;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-menu-button {
  display: none;
}

.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-fullscreen-control {
  display: none;
}

.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button {
  display: none;
}

.vjs-caption-settings {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  font-size: 12px;
  height: 15em;
  margin: 0 auto;
  padding: 0.5em;
  position: relative;
  top: 1em;
  width: 40em;
}

.vjs-caption-settings .vjs-tracksettings {
  bottom: 2em;
  left: 0;
  overflow: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left;
}

.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after {
  clear: both;
}

.vjs-caption-settings .vjs-tracksettings-controls {
  bottom: 1em;
  position: absolute;
  right: 1em;
}

.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both;
}

.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  min-height: 40px;
  padding: 3px;
}

.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  margin-bottom: 5px;
  width: 100px;
}

.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px;
}

.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px;
}

.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  min-height: 0;
  padding-bottom: 0;
}

.vjs-caption-settings label > input {
  margin-right: 10px;
}

.vjs-caption-settings input[type=button] {
  height: 40px;
  width: 40px;
}

.video-js .vjs-modal-dialog {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

/*--------------------------------------
04. modules: goods
--------------------------------------*/
/**
 * common
 */

/**
 * goods index
 */
.goods__lists {
  -ms-flex-align: start;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 80px auto 0;
}

.goods__lists .goods__list {
  width: 100%;
}

.goods__lists .goods__list .goods__link {
  display: block;
  /* hover effect */
  /* hover effect */
}

.goods__lists .goods__list .goods__link .goods__thumb {
  -webkit-transition: all 0.3s;
  height: 304px;
  transition: all 0.3s;
  width: 304px;
}

.goods__lists .goods__list .goods__link .goods__thumb .goods__thumbImg {
  -o-object-fit: contain;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.goods__lists .goods__list .goods__link .goods__caption {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
}

/**
 * goods items
 */
.itemWrap {
  margin: 64px 0;
  /* BEGIN header */
  /* END header */
  /* BEGIN sub items */
  /* END sub items */
}

.itemWrap .itemHeader {
  -ms-flex-align: start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.itemWrap .itemHeader .item__title {
  width: calc(100% - 180px);
}

.itemWrap .itemHeader .item__snsWrap {
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
}

.itemWrap .itemHeader .item__snsWrap .item__sns:first-child {
  margin-right: 12px;
}

.itemWrap .shopBtn {
  border-radius: 40px;
  bottom: 128px;
  height: 80px;
  position: fixed;
  right: 32px;
  width: 80px;
  z-index: 5;
}

.itemWrap .shopBtn .shopBtn__link {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
  align-items: center;
  background-color: #262626;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  width: 100%;
  z-index: 1;
}

.itemWrap .shopBtn .shopBtn__link .shopBtn__link__icon {
  display: block;
}

.itemWrap .shopBtn .shopBtn__link .shopBtn__link__text {
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
  text-align: center;
  width: 100%;
}

.itemWrap .item__topText,
.itemWrap .item__bottomText {
  font-size: 14px;
  line-height: 1.71;
}

.itemWrap .item__topText img,
.itemWrap .item__bottomText img {
  -webkit-transition: all 0.3s;
  display: block;
  height: auto;
  margin: 10px auto;
  max-height: 640px;
  max-width: 640px;
  transition: all 0.3s;
  width: auto;
}

.itemWrap .item__subListsWrap {
  margin: 40px 0 48px;
}

.itemWrap .item__subLists .subitem__outline {
  position: relative;
}

.itemWrap .item__subLists .subitem__outline .subitem__images {
  margin-bottom: 12px;
  /* BEGIN slick */
  /* END slick */
}

.itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image__link {
  display: block;
  position: relative;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image__img {
  -o-object-fit: contain;
  height: 388px;
  object-fit: contain;
  width: 100%;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-counter {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  bottom: 12px;
  color: #fff;
  font-size: 14px;
  height: 32px;
  left: auto;
  line-height: 31px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: auto;
  width: 105px;
  z-index: 1;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-counter .current,
.itemWrap .item__subLists .subitem__outline .subitem__images .slick-counter .total {
  display: inline-block;
  margin: 0 2px;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev,
.itemWrap .item__subLists .subitem__outline .subitem__images .slick-next {
  -webkit-box-shadow: none;
  background-color: transparent;
  bottom: -4px;
  box-shadow: none;
  top: auto;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev:before,
.itemWrap .item__subLists .subitem__outline .subitem__images .slick-next:before {
  border-color: #fff;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev {
  left: auto;
  right: 83px;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-next {
  right: 10px;
}

.itemWrap .item__subLists .subitem__outline .item__subdataWrap--more.is--show .item__subMore__icon:after {
  opacity: 0;
}

.itemWrap .item__subLists .subitem__outline .item__subTitle {
  -webkit-transition: all 0.3s;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  transition: all 0.3s;
}

.itemWrap .item__subLists .subitem__outline .item__subPrice {
  -webkit-transition: all 0.3s;
  margin-top: 4px;
  transition: all 0.3s;
}

.itemWrap .item__subLists .subitem__outline .item__subPrice .item__subPrice__num,
.itemWrap .item__subLists .subitem__outline .item__subPrice .item__subPrice__yen {
  display: inline-block;
  vertical-align: middle;
}

.itemWrap .item__subLists .subitem__outline .item__subPrice .item__subPrice__num {
  font-size: 14px;
  line-height: 1.29;
}

.itemWrap .item__subLists .subitem__outline .item__subPrice .item__subPrice__yen {
  font-size: 12px;
  line-height: 1.83;
}

.itemWrap .item__subLists .subitem__outline .item__subMore {
  -webkit-transition: all 0.3s;
  bottom: 0;
  color: #fff;
  display: block;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
  position: absolute;
  right: 0;
  transition: all 0.3s;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore__icon {
  -webkit-transition: all 0.3s;
  border: solid 1px #fff;
  border-radius: 16px;
  bottom: 18px;
  display: block;
  height: 32px;
  position: absolute;
  transition: all 0.3s;
  width: 32px;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore__icon:before, .itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore__icon:after {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  background-color: #fff;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore__icon:before {
  height: 1px;
  width: 13px;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore__icon:after {
  height: 13px;
  width: 1px;
}

.itemWrap .item__subLists .subitem__detail {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  /* IE9〜11 */
  /* Edge12〜14 */
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
  -webkit-filter: drop-shadow(2px 1px 8px rgba(161, 161, 161, 0.6));
  border: 16px solid transparent;
  border-bottom-color: #171717;
  display: block;
  filter: drop-shadow(2px 1px 8px rgba(161, 161, 161, 0.6));
  height: 32px;
  margin-top: -8px;
  position: relative;
  width: 32px;
  z-index: 1;
}

@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
    border-bottom: none;
  }
}

.itemWrap .item__subLists .subitem__detail _:-ms-lang(x),
.itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
  border-bottom: none;
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__text {
  -webkit-box-shadow: 2px 1px 11px 0 rgba(161, 161, 161, 0.3);
  background-color: #171717;
  box-shadow: 2px 1px 11px 0 rgba(161, 161, 161, 0.3);
  font-size: 14px;
  line-height: 1.71;
  position: relative;
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__text:before {
  -webkit-transform: translateX(-50%);
  background-color: #171717;
  content: '';
  display: block;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  z-index: 5;
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__closeWrap {
  padding: 18px 0 13px;
  text-align: center;
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__close {
  -webkit-transition: all 0.3s;
  color: #fff;
  display: inline-block;
  font-family: interstate;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
  padding-left: 18px;
  position: relative;
  transition: all 0.3s;
}

.itemWrap .item__subLists .subitem__detail .subitem__detail__close:before {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 13px;
}

/* fancybox */
.fancybox-navigation .fancybox-button--arrow_right,
.fancybox-navigation .fancybox-button--arrow_left {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.fancybox-navigation .fancybox-button--arrow_right > div,
.fancybox-navigation .fancybox-button--arrow_left > div {
  border: 1px solid #fff;
  border-radius: 16px;
  height: 32px;
  position: relative;
  width: 32px;
}

.fancybox-navigation .fancybox-button--arrow_right > div:before,
.fancybox-navigation .fancybox-button--arrow_left > div:before {
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  width: 8px;
}

.fancybox-navigation .fancybox-button--arrow_right svg,
.fancybox-navigation .fancybox-button--arrow_left svg {
  display: none;
}

.fancybox-navigation .fancybox-button--arrow_right > div:before {
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 13px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.fancybox-navigation .fancybox-button--arrow_left > div:before {
  -webkit-transform: rotate(-45deg);
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  left: 13px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

/*--------------------------------------
04. modules: discography
--------------------------------------*/
/**
 * common
 */
/* wrap */

.pageConts--discography .pagingWrap,
.pageConts--discographyDetail .pagingWrap {
  margin-top: 80px;
}

.pageConts--discography .postCats.postCats--bottom,
.pageConts--discographyDetail .postCats.postCats--bottom {
  margin-top: 80px;
}

/* parts */

/* button */
.discography__blankLinks {
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-transition: all 0.3s;
  align-items: center;
  border-top: 1px solid #525252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 9px;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}

.discography__blankLinks .discography__blankLink:not(:first-of-type) {
  margin-left: 16px;
}

.discography__blankLinks .discography__blankLink .discography__digital,
.discography__blankLinks .discography__blankLink .discography__shop {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: all 0.3s;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 100%;
  justify-content: center;
  line-height: 1.43;
  transition: all 0.3s;
  width: 100%;
}

.discography__blankLinks .discography__blankLink .discography__digital:before,
.discography__blankLinks .discography__blankLink .discography__shop:before {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  width: 18px;
}

.discography__blankLinks .discography__blankLink .discography__shop:before {
  background-image: url(../img/disc/icon_buy.svg);
}

.discography__blankLinks .discography__blankLink .discography__digital:before {
  background-image: url(../img/disc/icon_digital.svg);
}

/**
 * discography index
 */
.discography__lists {
  -ms-flex-align: start;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.discography__lists .discography__list {
  margin-top: 56px;
  position: relative;
  width: 100%;
  /* BEGIN リンク */
  /* END リンク */
  /* BEGIN discベース */
  /* END discベース */
  /* BEGIN 最初のリスト以外 */
  /* END 最初のリスト以外 */
  /* BEGIN 最初のリスト */
  /* END 最初のリスト */
}

.discography__lists .discography__list .discography__wraplink {
  display: block;
  position: relative;
  /* END hoverエフェクト */
  /* ※中のボタンにhoverしたときはhoverアクションを解除する */
  /* END hoverエフェクト */
}

.discography__lists .discography__list .discography__wraplink:not(.is--btnHover) {
  /* BEGIN その他hover */
  /* hover effect */
  /* hover effect */
  /* hover effect */
  /* hover effect */
  /* END その他hover */
  /* BEGIN ボタン自体にhoverではなく、全体をwrapするlinkにhoverした時点でhover挙動を実行 */
  /* END ボタン自体にhoverではなく、全体をwrapするlinkにhoverした時点でhover挙動を実行 */
}

.discography__lists .discography__list .discography__column {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-transition: all 0.3s;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s;
  /* BEGIN view all button */
  /* END view all button */
  /* BEGIN サムネイル画像エリア */
  /* END サムネイル画像エリア */
  /* BEGIN タイトル・説明文エリア */
  /* END タイトル・説明文エリア */
}

.discography__lists .discography__list .discography__column .arrowBtn__Wrap {
  bottom: 24px;
  left: 24px;
  opacity: 0;
  position: absolute;
}

.discography__lists .discography__list .discography__column .discography__thumb {
  position: relative;
  text-align: center;
  z-index: 2;
}

.discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
  -webkit-transition: all 0.3s;
  display: inline-block;
  max-width: 100%;
  transition: all 0.3s;
  width: auto;
}

.discography__lists .discography__list .discography__column .discography__data {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* IE9〜11 */
  /* Edge12〜14 */
}

.discography__lists .discography__list .discography__column .discography__data .discography__meta {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -webkit-transition: all 0.3s;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s;
}

.discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList {
  margin-bottom: 8px;
}

.discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList .discography__date {
  font-size: 14px;
  line-height: 1.71;
}

.discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList .discography__newrelease {
  background-color: rgba(215, 1, 15, 0.5);
  border-radius: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  padding: 3px 8px 2px;
}

.discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList .discography__itemCategory {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.discography__lists .discography__list .discography__column .discography__data .discography__title {
  -webkit-transition: all 0.3s;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  transition: all 0.3s;
  word-break: break-all;
}

.discography__lists .discography__list .discography__column .discography__data .discography__desc {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-transition: all 0.3s;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.71;
  overflow: hidden;
  transition: all 0.3s;
}

@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .discography__lists .discography__list .discography__column .discography__data .discography__desc {
    max-height: 92px;
    overflow: hidden;
    position: relative;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__desc:after {
    background-color: #fff;
    bottom: 0;
    content: '...';
    display: block;
    left: auto;
    position: absolute;
    right: 0;
    top: auto;
  }
}

.discography__lists .discography__list .discography__column .discography__data _:-ms-lang(x),
.discography__lists .discography__list .discography__column .discography__data .discography__desc {
  max-height: 92px;
  overflow: hidden;
  position: relative;
}

.discography__lists .discography__list .discography__column .discography__data _:-ms-lang(x):after,
.discography__lists .discography__list .discography__column .discography__data .discography__desc:after {
  background-color: #fff;
  bottom: 0;
  content: '...';
  display: block;
  left: auto;
  position: absolute;
  right: 0;
  top: auto;
}

.discography__lists .discography__list:not(.discography__list--first) .discography__column {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.discography__lists .discography__list.discography__list--first {
  margin-top: 0;
}

.discography__lists .discography__list.discography__list--first .discography__column .discography__thumb {
  height: auto;
  width: auto;
}

.discography__lists .discography__list.discography__list--first .discography__column .discography__thumb .discography__thumbImg {
  height: auto;
  width: auto;
}

.discography__lists .discography__list.discography__list--first .discography__data {
  text-align: left;
}

.discography__lists .discography__list.discography__list--first .discography__data .discography__title {
  font-size: 16px;
  line-height: 1.63;
}

.discography__lists .discography__list.discography__list--first .discography__data .arrowBtn__Wrap {
  bottom: auto;
  height: 32px;
  left: auto;
  opacity: 1;
  position: relative;
}

/**
 * discography modal
 */
.modalWrap {
  background-color: rgba(0, 0, 0, 0.86);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
}

.modal__close {
  display: none;
  height: 28px;
  mix-blend-mode: difference;
  position: fixed;
  right: calc((100vw - 976px) / 2 - 32px);
  top: 36px;
  width: 28px;
  z-index: 205;
}

.modal__close:before, .modal__close:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 36px;
}

.modal__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__conts__detail {
  display: none;
}

.modal__conts {
  -ms-overflow-style: none;
  -webkit-box-sizing: border-box;
  -webkit-overflow-scrolling: auto;
  -webkit-transform: translateX(-50%);
  -webkit-transform: translate(-50%, -50%);
  box-sizing: border-box;
  display: none;
  left: 50%;
  max-height: 90vh;
  overflow-y: scroll;
  position: fixed;
  scrollbar-width: none;
  top: 50%;
  transform: translateX(-50%);
  transform: translate(-50%, -50%);
  width: 704px;
  z-index: 201;
}

.modal__conts::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.modal__conts .modal__conts__detail {
  display: block;
}

.modal__conts .modalDetails .modalDetail__list {
  -webkit-box-sizing: border-box;
  background-color: #000;
  border-radius: 2px;
  box-sizing: border-box;
  margin-bottom: 24px;
  padding: 32px;
  /* BEGIN outline */
  /* END outline */
  /* BEGIN shops */
  /* END shops */
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__type--sp {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 8px;
  text-align: center;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__imgWrap {
  height: 84px;
  margin-right: 20px;
  text-align: center;
  width: 84px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__imgWrap .modalDetail__img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details {
  width: 452px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details .modalDetail__type--pc {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  margin-bottom: 7px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details .modalDetail__packageName {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details .modalDetail__packagePrice {
  font-size: 14px;
  line-height: 1.75;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire {
  height: 56px;
  margin-left: 28px;
  width: 56px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  align-items: center;
  background-color: #262626;
  border: solid 1px #262626;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__icon {
  display: block;
  position: relative;
  z-index: 1;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__icon:before, .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__icon:after {
  -webkit-transition: all 0.3s;
  content: '';
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__icon:before {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  height: 1px;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__icon:after {
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 6px;
  right: -6px;
  top: calc(50% - 3px);
  transform: rotate(-45deg);
  width: 6px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops {
  margin-bottom: -22px;
  margin-top: 16px;
  min-height: 33px;
  position: relative;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops.is--open .modalDetail__more {
  display: none;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops.is--open .modalDetail__moreshopLinks {
  display: block;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more {
  border-top: 1px solid #525252;
  color: #fff;
  font-size: 12px;
  left: 0;
  line-height: 2;
  padding-top: 8px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more .modalDetail__more__btn {
  display: inline-block;
  position: relative;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more .modalDetail__more__btn:before, .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more .modalDetail__more__btn:after {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more .modalDetail__more__btn:before {
  height: 13px;
  left: -14px;
  width: 1px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__more .modalDetail__more__btn:after {
  height: 1px;
  left: -20px;
  width: 13px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks {
  display: none;
  font-size: 0;
  padding-bottom: 20px;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink {
  display: inline-block;
  vertical-align: top;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink .modalDetail__moreshopLink__link {
  display: block;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink .modalDetail__moreshopLink__img {
  height: auto;
  width: 100%;
}

/*--------------------------------------
04. modules: discography
--------------------------------------*/
/**
 * common parts
 */
/* BEGIN readmore button */
.package__readmore__btn {
  -webkit-transition: all 0.3s;
  background-color: #000;
  bottom: 0;
  color: #fff;
  font-family: interstate;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.package__readmore__btn.is--hide {
  display: none;
}

.package__readmore__btn.is--show {
  bottom: 0;
}

.package__readmore__btn.is--show:before {
  display: none;
}

.package__readmore__btn:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 80%);
  content: '';
  display: block;
  height: 32px;
  left: 0;
  position: absolute;
  top: -32px;
  width: 100%;
}

.discWrap__newArtists .discWrap:nth-child(even) .package__readmore__btn {
  background-color: #171717;
}

.discWrap__newArtists .discWrap:nth-child(even) .package__readmore__btn:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 23, 23, 0)), color-stop(80%, #171717));
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0) 0%, #171717 80%);
}

/* END note button */
/**
 * discography detail
 */
.pageConts--discographyDetail {
  /* BEGIN disc */
  /* END disc */
  /* BEGIN 最新disc */
  /* END 最新disc */
}

.pageConts--discographyDetail .discWrap {
  margin-top: 64px;
  padding-bottom: 80px;
  position: relative;
  /* BEGIN header */
  /* END header */
  /* BEGIN thumbnail */
  /* END thumbnail */
  /* BEGIN package nametab(sp) */
  /* END package nametab(sp) */
  /* BEGIN detail */
  /* END detail */
  /* BEGIN 下部のサムネイル */
  /* END 下部のサムネイル */
}

.pageConts--discographyDetail .discWrap .disc__header {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 15px 12px;
}

.pageConts--discographyDetail .discWrap .disc__header .disc__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  word-break: break-all;
}

.pageConts--discographyDetail .discWrap .disc__header .disc__snsWrap {
  -ms-flex-align: center;
  -ms-flex-pack: end;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pageConts--discographyDetail .discWrap .disc__header .disc__snsWrap .disc__sns {
  -webkit-transition: all 0.3s;
  font-size: 0;
  transition: all 0.3s;
}

.pageConts--discographyDetail .discWrap .disc__header .disc__snsWrap .disc__sns:not(:first-of-type) {
  margin-left: 12px;
}

.pageConts--discographyDetail .discWrap .disc__topText,
.pageConts--discographyDetail .discWrap .disc__bottomText {
  -webkit-transition: all 0.3s;
  height: auto;
  max-height: 96px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.pageConts--discographyDetail .discWrap .disc__topText.is--show,
.pageConts--discographyDetail .discWrap .disc__bottomText.is--show {
  padding-bottom: 20px;
}

.pageConts--discographyDetail .discWrap .disc__topText.is--show:after,
.pageConts--discographyDetail .discWrap .disc__bottomText.is--show:after {
  display: none;
}

.pageConts--discographyDetail .discWrap .disc__bottomText {
  margin-top: 24px;
}

.pageConts--discographyDetail .discWrap .disc__outlineText {
  font-size: 14px;
  line-height: 1.71;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap {
  position: relative;
  /* BEGIN slick */
  /* END slick */
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists {
  bottom: 0;
  padding: 0 40px;
  /* BEGIN slick */
  /* END slick */
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-list {
  padding-bottom: 20px;
  padding-left: 12px;
  padding-top: 12px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-prev,
.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-next {
  -webkit-transform: translate(0, 0);
  bottom: 26px;
  top: 16px;
  transform: translate(0, 0);
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-prev {
  left: 0;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-next {
  right: 0;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList {
  font-size: 0;
  margin-right: 16px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList:hover {
  cursor: pointer;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList:hover .package__thumbImg {
  opacity: 1;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList:hover .package__thumbImg__img {
  -webkit-transform: scale(1.125);
  -webkit-transition-delay: 0s;
  transform: scale(1.125);
  transition-delay: 0s;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList:hover .package__thumbType {
  color: #000;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbImg {
  -webkit-transform-origin: top left;
  -webkit-transition: opacity 0.3s;
  display: inline-block;
  height: 64px;
  opacity: 0.5;
  transform-origin: top left;
  transition: opacity 0.3s;
  vertical-align: middle;
  width: 64px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbImg .package__thumbImg__img {
  -o-object-fit: contain;
  -webkit-filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.3));
  -webkit-transition: all 0.3s;
  display: inline-block;
  filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.3));
  height: 64px;
  object-fit: contain;
  transition: all 0.3s;
  width: 64px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbType {
  -webkit-transition: all 0.3s;
  -webkit-transition-delay: 0.25s;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin-left: 8px;
  overflow: hidden;
  transition: all 0.3s;
  transition-delay: 0.25s;
  vertical-align: middle;
  width: 84px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-active.slick-slide,
.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-out.slick-slide {
  width: 368px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-active.slick-slide .package__thumbType,
.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-out.slick-slide .package__thumbType {
  display: none;
  opacity: 0;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-active.slick-slide .package__thumbImg {
  height: 336px;
  opacity: 1;
  width: 336px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-active.slick-slide .package__thumbImg .package__thumbImg__img {
  -webkit-transform: scale(1);
  -webkit-transition-delay: 1s;
  height: 336px;
  transform: scale(1);
  transition-delay: 1s;
  width: 336px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current {
  position: relative;
  z-index: 100;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList {
  margin-right: 32px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList:hover {
  cursor: auto;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList:hover .package__thumbImg {
  opacity: 1;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList:hover .package__thumbImg__img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList .package__thumbImg {
  height: 336px;
  opacity: 1;
  width: 336px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList .package__thumbImg .package__thumbImg__img {
  height: 336px;
  width: 336px;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList .package__thumbType {
  display: none;
  opacity: 0;
}

.pageConts--discographyDetail .discWrap .package__tabWrap {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  margin-left: -15px;
  overflow-x: scroll;
  position: relative;
  width: calc(100% + 30px);
}

.pageConts--discographyDetail .discWrap .package__tabWrap::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList {
  text-align: center;
  width: 19.2vw;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList:not(:first-of-type) {
  margin-left: 8.53vw;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList:first-of-type {
  margin-left: 40.26vw;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList:last-of-type {
  margin-right: 40.26vw;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList.js-current .package__tabType {
  color: #000;
}

.pageConts--discographyDetail .discWrap .package__tabWrap .package__tabLists .package__tabList .package__tabType {
  -webkit-transition: all 0.3s;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 6px;
  transition: all 0.3s;
}

.pageConts--discographyDetail .discWrap .package__detailWrap {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  background-color: #171717;
  border-radius: 2px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* package img (sp) */
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg {
  margin-left: -30px;
  text-align: center;
  top: -67px;
  width: calc(100% + 60px);
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg.slick-dotted {
  margin-bottom: -25px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .slick-list {
  padding-right: 12vw;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .slick-dots {
  bottom: -22px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .slick-current .package__mainImgList {
  text-align: right;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .slick-current .package__mainImgList .package__mainImgList__img {
  -webkit-transform: scale(1);
  opacity: 1;
  transform: scale(1);
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .package__mainImgList {
  display: inline-block;
  text-align: left;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .package__mainImgList .package__mainImgList__img {
  -o-object-fit: contain;
  -webkit-transform: scale(0.9);
  -webkit-transition: all 0.3s;
  display: inline-block;
  height: 76vw;
  object-fit: contain;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.3s;
  width: 76vw;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap .package__links {
  padding-top: 50px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap .package__links .slick-list {
  padding-bottom: 16px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap .package__links .slick-dots {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transform: translateX(-50%);
  align-items: center;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 100%;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap .package__links .slick-dots li {
  max-width: 100%;
  width: 40px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__readmore__btn {
  background-color: #171717;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__readmore__btn:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 23, 23, 0)), color-stop(80%, #171717));
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0) 0%, #171717 80%);
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details {
  position: relative;
  /* slick */
  /* BEGIN 個別のdetail */
  /* END 個別のdetail */
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .slick-slide {
  height: 0;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .slick-slide.slick-current {
  height: auto;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail {
  position: relative;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__type {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 4px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 8px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__metas {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__metas .package__meta {
  font-size: 14px;
  line-height: 1.71;
  position: relative;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__metas .package__meta:not(:first-of-type) {
  padding-left: 14px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__metas .package__meta:not(:first-of-type):before {
  -webkit-transform: translateY(-50%);
  content: '/';
  display: block;
  left: 5px;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc:not(:first-of-type) {
  margin-top: 12px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__cell {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__musics {
  -ms-flex-align: end;
  -ms-flex-pack: justify;
  -webkit-box-align: end;
  -webkit-box-pack: justify;
  align-items: flex-end;
  border-bottom: 1px solid #525252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  width: 100%;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__musics .package__music {
  padding-right: 10px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__samples {
  font-size: 0;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__samples .package__sample {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__samples .package__sample input {
  cursor: pointer;
  display: block;
  position: relative;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__samples .package__sample li:not(:first-of-type) {
  margin-left: 8px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes {
  -webkit-transition: all 0.3s;
  font-size: 14px;
  height: auto;
  line-height: 1.71;
  max-height: 96px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes.is--show {
  padding-bottom: 20px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes--top {
  margin-bottom: 16px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes--btm {
  margin-top: 16px;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes__content img {
  height: auto;
  max-width: 100%;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  margin-bottom: -36px;
  margin-left: -15px;
  overflow-x: scroll;
  position: relative;
  top: -36px;
  width: calc(100% + 30px);
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists {
  -ms-flex-align: start;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList {
  text-align: center;
  width: 19.2vw;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList:not(:first-of-type) {
  margin-left: 8.53vw;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList:first-of-type {
  margin-left: 40.26vw;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList:last-of-type {
  margin-right: 40.26vw;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList.js-current .package__thumbImg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList.js-current .package__thumbImg .package__thumbImg__img {
  opacity: 1;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList.js-current .package__thumbType {
  color: #000;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList .package__thumbImg {
  -webkit-transform: scale(0.88);
  -webkit-transition: all 0.3s;
  background-color: #fff;
  height: 19.2vw;
  transform: scale(0.88);
  transition: all 0.3s;
  width: 19.2vw;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList .package__thumbImg .package__thumbImg__img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  width: 100%;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList .package__thumbType {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 6px;
  width: 19.2vw;
}

.pageConts--discographyDetail .otherPosts .discography__lists {
  margin: 45px 0 0;
}

.pageConts--discographyDetail .otherPosts .discography__lists .discography__list:first-of-type {
  margin-top: 0;
}

/**
 * 新人アーティスト用
 */

.discWrap__newArtists .discWrap {
  margin-top: 0;
  padding-top: 80px;
}

.discWrap__newArtists .discWrap:nth-child(even) {
  background-color: #171717;
}

.discWrap__newArtists .discWrap:nth-child(even):before, .discWrap__newArtists .discWrap:nth-child(even):after {
  background-color: #171717;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc((100vw - 976px) / 2);
  z-index: 1;
}

.discWrap__newArtists .discWrap:nth-child(even):before {
  left: calc((100vw - 976px) / 2 * -1);
}

.discWrap__newArtists .discWrap:nth-child(even):after {
  right: calc((100vw - 976px) / 2 * -1);
}

.otherPosts.otherPosts--even {
  background-color: #fff;
}

.otherPosts.otherPosts--even:before, .otherPosts.otherPosts--even:after {
  background-color: #fff;
}

.otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
  color: #fff;
  font-family: interstate;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

/*--------------------------------------
04. modules: calendar
--------------------------------------*/
/* BEGIN 月切り替え */
.postSelect {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  margin-top: 66px;
  position: relative;
}

.postSelect.postSelect--bottom {
  margin-bottom: 0;
  margin-top: 35px;
}

.postSelect__current {
  color: #fff;
  font-family: interstate;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.19;
  margin-right: 12px;
}

.postSelect__btn {
  background-color: #262626;
  border: 1px solid #262626;
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  position: relative;
  width: 32px;
}

.postSelect__btn:hover, .postSelect__btn.is-active {
  background-color: #000;
}

.postSelect__btn:hover:before, .postSelect__btn.is-active:before {
  border-top-color: #fff;
}

.postSelect__btn:before {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 7px 5px;
  bottom: auto;
  content: '';
  display: block;
  height: 0;
  left: 10px;
  position: absolute;
  right: auto;
  top: 13px;
  width: 0;
}

.postSelect__modalBg {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 110;
}

.postSelect.is-active .postSelect__modalBg {
  display: block;
}

.postSelect__modal {
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  background-color: #171717;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  display: none;
  left: 118px;
  position: absolute;
  top: 44px;
  z-index: 111;
}

.postSelect__modalTitle {
  font-size: 16px;
  font-weight: bold;
}

.postSelect__modalClose {
  height: 30px;
  position: relative;
  width: 30px;
}

.postSelect__modalClose:before, .postSelect__modalClose:after {
  background-color: #000;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 30px;
}

.postSelect__modalClose:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.postSelect__modalClose:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.postSelect__lists {
  overflow-y: scroll;
}

.postSelect__list:not(:last-child) {
  border-bottom: 1px solid #525252;
}

.postSelect__link {
  display: block;
  padding: 17px 15px 18px 47px;
  position: relative;
}

.postSelect__link:hover {
  opacity: 0.5;
}

.postSelect__link:before {
  background-color: #171717;
  border: solid 1px #979797;
  border-radius: 50%;
  content: '';
  display: block;
  height: 22px;
  left: 15px;
  position: absolute;
  top: calc(50% - 11px);
  width: 22px;
}

.postSelect__link:after {
  background-color: #171717;
  border-radius: 50%;
  content: '';
  display: block;
  height: 14px;
  left: 19px;
  position: absolute;
  top: calc(50% - 7px);
  width: 14px;
}

.postSelect__link.postSelect__link--select {
  background-color: #262626;
}

.postSelect__link.postSelect__link--select:before {
  background-color: #fafafa;
  border-color: #d7010f;
}

.postSelect__link.postSelect__link--select:after {
  background-color: #d7010f;
}

/* END 月切り替え */
/* BEGIN カレンダー */

.calendar__item {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  border-bottom: 1px solid #525252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calendar__date {
  font-weight: bold;
  padding-bottom: 24px;
  padding-top: 24px;
  width: 100px;
}

.calendar__day {
  display: inline-block;
  font-size: 24px;
  line-height: 1.33333;
}

.calendar__week {
  display: inline-block;
  font-size: 14px;
  line-height: 2.28571;
  vertical-align: middle;
}

.calendar__events {
  margin-top: 1px;
  width: calc(100% - 100px);
}

.calendar__link {
  display: block;
  padding: 24px 0;
  position: relative;
}

.calendar__event + .calendar__event .calendar__link:before {
  background-color: #525252;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.calendar__link:after {
  -webkit-transition: opacity 0.3s;
  content: '';
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}

.calendar__link:active, .calendar__link:hover {
  z-index: 1;
}

.calendar__link:active:after, .calendar__link:hover:after {
  -webkit-box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  background-color: #262626;
  bottom: 0;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  top: -1px;
}

.calendar__category {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background-color: #131313;
  border-radius: 2px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  width: 82px;
  z-index: 1;
}

.calendar__title {
  line-height: 1.71;
  position: relative;
  word-break: break-all;
  z-index: 1;
}

/* END カレンダー */
/*--------------------------------------
04. modules: 404
--------------------------------------*/
/* wrap */
.pageConts--404 {
  text-align: center;
}

/* logo */
.notfoundLogo {
  -ms-flex-align: end;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-box-pack: center;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  justify-content: center;
  margin-bottom: 64px;
}

.notfoundLogo .notfoundLogo__logo {
  font-size: 0;
}

.notfoundLogo .notfoundLogo__logo .notfoundLogo__logo__img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.notfoundLogo .notfoundLogo__icon {
  -webkit-box-shadow: inset 2px 2px 24px 0 rgba(0, 0, 0, 0.4);
  border-radius: 109px;
  box-shadow: inset 2px 2px 24px 0 rgba(0, 0, 0, 0.4);
  height: 217px;
  margin-left: 28px;
  margin-right: 23px;
  overflow: hidden;
  text-align: center;
  width: 217px;
}

.notfoundLogo .notfoundLogo__icon .notfoundLogo__icon__img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: auto;
}

/* info text */
.notfound__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 4px;
}

.notfound__notes {
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 40px;
}

/*--------------------------------------
03. liquid PCとSPの間のレイアウト
--------------------------------------*/
/**
 * header
 */

/**
 * top
 */

/**
 * news & media & live tour
 */

/**
 * profile
 */

/**
 * discography
 */

.modal__close {
  right: 32px;
}

/**
 * video
 */

/**
 * goods
 */

/*-----------------------------------------------------------------
 * loading parts                                                 *
-----------------------------------------------------------------*/
.loadingBg {
  -webkit-transition: opacity 0.75s;
  -webkit-transition-delay: 0.5s;
  -webkit-transition-property: opacity;
  background: #000;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.75s;
  transition-delay: 0.5s;
  transition-property: opacity;
  width: 100vw;
  z-index: 1000;
}

.loadingBg.is-hide {
  opacity: 0;
}

.loadingBg.is-end {
  display: none;
}

.loadingConts {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.75s;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.75s;
  z-index: 1001;
  /* BEGIN %ゲージ */
  /* END %ゲージ */
  /* BEGIN ロゴ */
  /* END ロゴ */
  /* BEGIN %テキスト */
  /* END %テキスト */
}

.loadingConts.is-hide {
  opacity: 0;
}

.loadingConts.is-end {
  display: none;
}

.loadingConts .loadingConts__gauge {
  background-color: #333;
  border-radius: 2px;
  height: 2px;
  position: relative;
  width: 300px;
}

.loadingConts .loadingConts__gauge .loadingConts__gaugeBar {
  background-color: #eee;
  border-radius: 2px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.loadingConts .loadingConts__logo {
  background: url("../img/common/logo_loading-bg.svg") 0 0 no-repeat;
  background-size: 142px 42px;
  font-size: 0;
  height: 42px;
  margin: 24px auto 16px;
  position: relative;
  width: 142px;
}

.loadingConts .loadingConts__logo .loadingConts__logoImg {
  background: url("../img/common/logo_loading.svg") 0 bottom no-repeat;
  background-size: 142px 42px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.loadingConts .loadingConts__percent {
  color: #eee;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}

.loadingConts .loadingConts__percent .loadingConts__percentText {
  display: inline-block;
  padding-right: 1px;
}

@media screen and (max-width: 767px) {
  .slick-dots {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -webkit-transform: translateX(-50%);
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
  .slick-dots li {
    max-width: 100%;
    width: 40px;
  }
  .fancybox-navigation .fancybox-button--arrow_left {
    left: 15px;
  }
  .fancybox-navigation .fancybox-button--arrow_right {
    right: 15px;
  }
  .fancybox-caption {
    bottom: auto;
    text-align: left;
    top: calc((100vh - 100vw) / 2 + 100vw + 20px);
    width: 80vw;
  }
  .pc--only {
    display: none !important;
  }
  .snsLists .snsList__link:active .snsList__img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .headerWrap {
    margin: 0 15px;
    padding: 30px 0;
  }
  .headerWrap .siteTtl .siteTtl__link:active {
    opacity: 0.6;
  }
  .headerWrap .headerNavWrap {
    -webkit-transform: translateX(88vw);
    bottom: 0;
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(88vw);
    width: 88vw;
    z-index: 101;
  }
  .headerWrap .headerNavWrap.is--show {
    display: block;
  }
  .headerWrap .headerNavWrap.is--active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .headerWrap .headerNavWrap .headerNav {
    -ms-flex-wrap: wrap;
    -ms-overflow-style: none;
    -webkit-box-sizing: border-box;
    -webkit-overflow-scrolling: auto;
    background-color: #171717;
    box-sizing: border-box;
    flex-wrap: wrap;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 32px;
    padding-top: 64px;
    position: relative;
    z-index: 1;
  }
  .headerWrap .headerNavWrap .headerNav::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu {
    padding-left: calc(100vw * 0.14);
    width: calc(100% - 140px);
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu:before {
    background-color: #525252;
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: -0.5px;
    top: 0;
    width: 1px;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list:not(:last-child) {
    margin-bottom: 24px;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
    font-family: interstate;
    font-style: normal;
    font-weight: 300;
    line-height: 1.71;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:active {
    opacity: 0.6;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons {
    position: relative;
    width: 140px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons:before {
    background-color: #525252;
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    left: -0.5px;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsList {
    text-align: center;
    width: 100%;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsList:not(:first-child) {
    margin-top: 24px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .musicLists {
    margin-top: 56px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .musicLists .musicList {
    text-align: center;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .musicLists .musicList:not(:first-child) {
    margin-top: 24px;
  }
  .contents--page {
    padding: 60px 0 98px;
  }
  .pageTitle {
    font-size: 42px;
    line-height: 1.1;
  }
  .toTop .toTop__btn {
    height: 48px;
    width: 48px;
  }
  .toTop .toTop__btn:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .footer__wrap .footerLogo .footerLogo__link:active {
    opacity: 0.7;
  }
  .footer__wrap .footerLinks {
    padding: 46px 0 62px;
  }
  .footer__wrap .footerLinks .footerNav .footerNav__list {
    margin: 0 16px;
  }
  .footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link:active {
    opacity: 0.7;
  }
  .footer__wrap .footerLinks .footer__contact .footer__contactLink:active {
    opacity: 0.7;
  }
  .footer__wrap .footerLinks .snsLists {
    margin: 30px 15px 15px;
  }
  .footer__wrap .footerLinks .snsLists .snsList {
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 9px;
  }
  .pageConts__subtitle {
    font-size: 28px;
  }
  .pageConts__secondlySubtitle {
    font-size: 22px;
  }
  .postCats .postCat__wrap {
    margin-top: 24px;
    overflow-x: scroll;
    width: calc(100% + 30px);
  }
  .postCats .postCat__wrap:not(:last-of-type) {
    margin-top: 16px;
  }
  .infoLists {
    margin-top: 35px;
  }
  .infoLists.infoLists--index {
    margin-top: 66px;
  }
  .infoLists .infoList:first-of-type .infoList__link:active:after {
    top: -22px;
  }
  .infoLists .infoList .infoList__link {
    padding: 23px 0 22px;
  }
  .infoLists .infoList .infoList__link:not(.infoList__link--noLink):active:before {
    display: none;
  }
  .infoLists .infoList .infoList__link:not(.infoList__link--noLink):active:after {
    left: -15px;
    opacity: 1;
    right: -15px;
  }
  .infoLists .infoList .infoList__link .infoList__icons {
    margin-bottom: 8px;
  }
  .infoLists .infoList .infoList__link .infoList__icons.infoList__icons--narrow .infoList__icon .infoList__time .infoList__time__week {
    margin-left: 1px;
  }
  .infoLists .infoList .infoList__link .infoList__icons.infoList__icons--narrow .infoList__icon .infoList__update {
    width: 58px;
  }
  .infoLists .infoList .infoList__link .infoList__icons .infoList__icon:not(:first-of-type) {
    margin-left: 12px;
  }
  .arrowBtn__link:active .arrowBtn__icon {
    background-color: #000;
    border-color: #000;
  }
  .arrowBtn__link:active .arrowBtn__icon:before {
    -webkit-animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
    animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
  }
  .arrowBtn__link:active .arrowBtn__icon:after {
    -webkit-animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
    animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
  }
  .arrowBtn__link:active .arrowBtn__text {
    color: #fff;
  }
  .arrowBtn__link .arrowBtn__icon {
    -webkit-transition: border-color 0s, background-color 0s;
    transition: border-color 0s, background-color 0s;
  }
  .arrowBtn__link.arrowBtn__link--left:active .arrowBtn__icon:before {
    -webkit-animation: backbtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
    animation: backbtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
  }
  .arrowBtn__link.arrowBtn__link--left:active .arrowBtn__icon:after {
    -webkit-animation: backbtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
    animation: backbtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
  }
  .arrowBtn__link.arrowBtn__link--bottom:active .arrowBtn__icon:before {
    -webkit-animation: morebtn 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
    animation: morebtn 0.5s ease-out 1 0.3s, iconHoverB_bg 0.25s ease-out infinite 0s;
  }
  .arrowBtn__link.arrowBtn__link--bottom:active .arrowBtn__icon:after {
    -webkit-animation: morebtn 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
    animation: morebtn 0.5s ease-out 1 0.3s, iconHoverA_bg 0.25s ease-out infinite 0s;
  }
  .pageBack__Wrap {
    margin-bottom: -54px;
  }
  .btnLinks .btnLink .btnLink__link:active {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .btnLinks .btnLink .btnLink__link {
    -webkit-transition: background-color 0.25s, -webkit-box-shadow 0.1s;
    transition: background-color 0.25s, -webkit-box-shadow 0.1s;
    transition: background-color 0.25s, box-shadow 0.1s;
    transition: background-color 0.25s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
  }
  .btnLinks.btnLinks--disc .btnLink:not(:first-of-type) {
    margin-left: 16px;
  }
  .btnLinks.btnLinks--discFirst {
    border-top: 1px solid #525252;
    margin-top: 16px;
    padding-top: 16px;
  }
  .pagingWrap {
    margin-top: 38px;
  }
  .pagingWrap .paging__prev + .paging__lists {
    margin-left: 0;
  }
  .pagingWrap .paging__lists {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 32px;
    width: calc(100% - 64px);
  }
  .post__detailThumb {
    margin-bottom: -40px;
    margin-left: -15px;
    margin-top: 61px;
    max-height: calc(100vw - 30px);
    width: calc(100% + 30px);
  }
  .post__detailThumb .post__detailThumbImg {
    max-height: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
  .postTitle {
    font-size: 16px;
    margin-bottom: 21px;
  }
  .postDetail__data {
    margin-top: 64px;
  }
  .postDetail__data .postDetail__date {
    font-size: 16px;
    line-height: 1.25;
  }
  .postDetail__data .postDetail__snsWrap {
    left: 0;
    padding-right: 15px;
    position: absolute;
    top: 143px;
    width: 100%;
  }
  .post__detailPost a:active img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .post__detailPost a:active {
    opacity: 0.7;
  }
  .post__detailPost img {
    max-height: calc(100vw - 60px);
    max-width: 100%;
  }
  .post__detailPost iframe {
    height: calc((100vw - 60px) * 0.5625);
    width: 100%;
  }
  .otherPosts {
    padding-top: 61px;
  }
  .otherPosts:before, .otherPosts:after {
    width: 30px;
  }
  .otherPosts:before {
    left: -30px;
  }
  .otherPosts:after {
    right: -30px;
  }
  .otherPosts .otherPosts__title {
    font-size: 28px;
  }
  .otherPosts .otherPosts__title {
    margin-bottom: 36px;
  }
  .otherPosts .otherPosts__title .otherPosts__title__ja {
    font-size: 28px;
    line-height: 1;
  }
  .topConts__titleWrap {
    text-align: center;
  }
  .topConts__title {
    font-size: 36px;
  }
  .topConts__title {
    text-align: center;
  }
  .topConts__subtitle {
    font-size: 28px;
  }
  .topConts {
    margin: 104px auto;
  }
  .topConts--flex {
    padding-bottom: 56px;
  }
  .topConts--flex .topConts__titleArea .arrowBtn__Wrap {
    -webkit-transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  .top__icons {
    margin-bottom: 82px;
    margin-top: 88px;
  }
  .top__icons .snsLists .snsList {
    margin-left: 6px;
    margin-right: 6px;
    margin-top: 8px;
  }
  .topMv__wrap {
    margin-bottom: 24px;
  }
  .topSlide__lists .topSlide__nolink,
  .topSlide__lists .topSlide__link {
    width: calc(100% - 16px);
  }
  .topSlide__lists .topSlide__nolink:active,
  .topSlide__lists .topSlide__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topSlide__lists .slick-dots {
    bottom: -18px;
  }
  .topConts--newrelease {
    width: 100%;
  }
  .topConts--newrelease .topConts__titleWrap {
    margin-bottom: 31px;
  }
  .topConts--newrelease .topRelease__thumbs .slick-list {
    padding-right: 12vw;
  }
  .topConts--newrelease .topRelease__thumbs .slick-dotted.slick-slider {
    margin-bottom: 22px;
  }
  .topConts--newrelease .topRelease__thumbs .slick-dots {
    bottom: -10px;
  }
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb {
    margin-left: 0;
  }
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb__link {
    margin-left: 12vw;
  }
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb {
    margin: 5px 0 12px -5.8vw;
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link:active {
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link {
    -webkit-transform: scale(0.87);
    height: 76vw;
    transform: scale(0.87);
    width: 76vw;
  }
  .topConts--newrelease .topRelease__wrap {
    margin: 12px 30px 0;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .slick-list {
    overflow: visible;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list {
    width: calc(100% - 60px);
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataLink:active {
    opacity: 0.7;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataLink {
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead .arrowBtn__Wrap {
    -webkit-transform: translateY(-50%);
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__date {
    padding-right: 40px;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__name {
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 6px;
    padding-right: 40px;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__text {
    margin-bottom: 16px;
    max-height: 70px;
    width: calc(100vw - 60px);
  }
  .topConts--newrelease .arrowBtn__Wrap {
    margin-top: 24px;
    text-align: center;
  }
  .topConts--news {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--news .infoLists .infoList .infoList__link .infoList__icons {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .topConts--livetour {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--livetour .topConts__subtitle {
    margin-top: 28px;
  }
  .topConts--livetour .topConts__subtitle:first-of-type {
    margin-top: 38px;
  }
  .topConts--livetour .infoLists {
    margin-top: 30px;
  }
  .topConts--livetour .infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__time .infoList__time__week {
    margin-left: 0;
  }
  .topConts--media {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--video {
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
  }
  .topConts--video .topVideoArea {
    width: 100%;
  }
  .topConts--video .topVideoArea:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--video .topVideoArea iframe {
    height: calc((100vw - 30px) / 16 * 9);
  }
  .topConts--video .topVideo__name {
    margin-top: 13px;
  }
  .topConts--video .arrowBtn__Wrap {
    margin-top: 32px;
  }
  .topConts--videoSlide .topConts__titleWrap {
    margin-bottom: 36px;
    text-align: center;
  }
  .topConts--videoSlide .topSlide__lists .topSlide__nolink,
  .topConts--videoSlide .topSlide__lists .topSlide__link {
    height: calc((68.4vw - 16px) / 16 * 9);
  }
  .topConts--videoSlide .topVideo__name {
    width: calc(100% - 16px);
  }
  .topConts--videoSlide .arrowBtn__Wrap {
    margin-top: 50px;
    text-align: center;
  }
  .topGroupArea {
    margin-bottom: 24px;
  }
  .topGroupArea.topGroupArea--horizontal {
    margin-bottom: 32px;
    margin-left: -30px;
    margin-top: 40px;
    width: calc(100% + 60px);
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__text {
    -ms-flex-order: unset;
    -webkit-box-ordinal-group: unset;
    margin-left: 30px;
    margin-top: 0;
    order: unset;
    width: 36vw;
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__text .topGroup__groupname {
    text-align: left;
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__text .topGroup__furigana {
    text-align: left;
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__imgWrap {
    margin-top: 0;
    width: 52vw;
  }
  .topGroupArea .topGroup__text {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    margin-top: 24px;
    order: 1;
    width: 100%;
  }
  .topGroupArea .topGroup__text .topGroup__groupname {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: center;
  }
  .topGroupArea .topGroup__text .topGroup__furigana {
    margin-bottom: 12px;
    margin-top: -8px;
    text-align: center;
  }
  .topGroupArea .topGroup__text .topGroup__desc {
    -webkit-line-clamp: 3;
  }
  .topGroupArea .topGroup__text .arrowBtn__Wrap {
    text-align: center;
  }
  .topGroupArea .topGroup__imgWrap {
    margin-top: 36px;
    width: 100%;
  }
  .topGroupArea .topGroup__imgWrap .topGroup__link:active .topGroup__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--profile {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--profile .memberLists {
    margin-top: 37px;
  }
  .topConts--goods {
    margin-left: 15px;
    margin-right: 15px;
  }
  .topConts--goods .topGoods__wrap {
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: auto;
    margin-bottom: 35px;
    margin-right: -15px;
    overflow-x: scroll;
    width: calc(100% + 15px);
  }
  .topConts--goods .topGoods__wrap::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
  .topConts--goods .topGoods__lists {
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:active .topGoods__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:active .topGoods__name {
    opacity: 0.7;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__img {
    height: 240px;
    width: 240px;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__name {
    margin-top: 14px;
    text-align: left;
  }
  .topConts--goods .arrowBtn__Wrap {
    text-align: center;
  }
  .topConts--insta {
    margin-left: 15px;
    margin-right: 15px;
  }
  .topConts--insta .topConts__instaColumnWrap .topConts__titleWrap {
    margin-bottom: 36px;
  }
  .topConts--insta .topConts__instaColumnWrap .arrowBtn__Wrap {
    display: none;
  }
  .topConts--insta .topConts__instaColumnWrap + .arrowBtn__Wrap {
    text-align: center;
  }
  .topConts--insta1 .topConts__instaColumnWrap .topInsta__iframe {
    height: 42vw;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .topConts--insta2 .topConts__instaColumnWrap .topInsta__iframe {
    height: 61.86vw;
  }
  .instagram__contents1 {
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: auto;
    overflow-x: scroll;
    padding-left: 15px;
    padding-top: 1vw;
    width: calc(100vw - 15px);
  }
  .instagram__contents1::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
  .instagram__contents1 div.datahub_social_posts div.timeline ul li {
    margin-right: calc(100vw * 0.04) !important;
  }
  .topConts--sns {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--sns .topSns__wrap:not(:first-of-type) {
    margin-top: 104px;
  }
  .topConts--sns .topSns__wrap .topConts__titleWrap {
    margin: 0 auto 36px;
  }
  .topConts--sns .topSns__wrap .arrowBtn__Wrap {
    margin: 32px auto 0;
  }
  .topConts--sns .topSns__wrap .topConts__snsBox .fb-page {
    height: 360px;
  }
  .topConts--playlist {
    margin-left: 30px;
    margin-right: 30px;
  }
  .topConts--playlist .topConts__titleWrap {
    margin-bottom: 36px;
  }
  .topConts--playlist .topPlaylist__lists {
    -ms-flex-align: start;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 32px;
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__subtitle {
    width: 90px;
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__list {
    width: calc(100% - 90px);
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__link:active img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .topConts--playlist .topConts__playlistBox {
    height: 360px;
    padding: 15px;
    width: 100%;
  }
  .topConts--banner {
    margin-left: 15px;
    margin-right: 15px;
  }
  .topConts--banner .bannerLists {
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
  }
  .topConts--banner .bannerList {
    padding: 6px 10px;
  }
  .topConts--banner .bannerList__link {
    padding: 12px 12px;
  }
  .pageConts--news {
    margin: 0 30px;
  }
  .pageConts--news .otherPosts {
    margin-bottom: -98px;
  }
  .pageConts--news .pageBack__Wrap {
    margin-bottom: 44px;
    margin-top: 64px;
  }
  .pageConts--profile {
    margin: 0 15px;
  }
  .pageConts--profile .pageTitle {
    margin-left: 10px;
  }
  .pageConts--profdetail {
    width: calc(100% - 60px);
  }
  .pageConts--profdetail .pageTitle {
    margin-bottom: 56px;
    margin-left: -2px;
  }
  .pageConts--profile .profGroup {
    margin-top: 64px;
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__mainImg {
    margin-left: 0;
    width: 100%;
  }
  .pageConts--profile .profGroup .profGroup__mainImg {
    margin-bottom: 20px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .profGroup__name {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .profGroup__furigana {
    margin-top: -16px;
    text-align: center;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .snsLists {
    margin-top: 16px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .snsLists .snsList {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 8px;
  }
  .pageConts--profile .profMemberTitle {
    font-size: 28px;
  }
  .pageConts--profile .profMemberTitle {
    margin-bottom: 28px;
    margin-top: 64px;
  }
  .memberLists .memberList {
    width: calc((100% - 15px)/2);
  }
  .memberLists .memberList:nth-child(n + 3) {
    margin-top: 23px;
  }
  .memberLists .memberList:nth-child(even) {
    margin-left: 15px;
  }
  .memberLists .memberList .memberList__link:active .memberList__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .memberLists .memberList .memberList__link:active .memberList__name {
    opacity: 0.7;
  }
  .memberLists .memberList .memberList__link:active .memberList__furigana {
    opacity: 0.7;
  }
  .memberLists .memberList .memberList__name {
    font-size: 16px;
  }
  .pageConts--profdetail .member__detailBox {
    margin-bottom: 65px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    margin-top: 28px;
    order: 1;
    width: 100%;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__detail__name {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__detail__furigana {
    text-align: center;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 12px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsList {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 12px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsLink:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .pageConts--profdetail .member__detailBox .member__detail__imgWrap {
    width: 100%;
  }
  .pageConts--profdetail .otherMembers {
    margin-left: -15px;
    padding: 47px 0 59px;
    width: calc(100% + 30px);
  }
  .pageConts--profdetail .otherMembers:before, .pageConts--profdetail .otherMembers:after {
    width: 15px;
  }
  .pageConts--profdetail .otherMembers:before {
    left: -15px;
  }
  .pageConts--profdetail .otherMembers:after {
    right: -15px;
  }
  .pageConts--profdetail .otherMembers .otherMembers__title {
    font-size: 28px;
  }
  .pageConts--profdetail .otherMembers .otherMembers__title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 30px;
  }
  .pageConts--profdetail .pageBack__Wrap {
    margin-top: 63px;
  }
  .pageConts--media {
    margin: 0 30px;
  }
  .pageConts--media .postDetail__data .postDetail__category {
    margin-bottom: 12px;
    width: 100%;
  }
  .pageConts--media .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
  .pageConts--media .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 64px;
  }
  .pageConts--livetour {
    margin: 0 30px;
  }
  .pageConts--livetour .livetourListsWrap {
    margin-top: 28px;
  }
  .listMore__Wrap {
    text-align: center;
  }
  .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon {
    background-color: #262626;
    border-color: #262626;
  }
  .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon:before, .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon:after {
    background-color: #fff;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date {
    margin-right: 12px;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date span {
    margin-left: 5px;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .label {
    margin-bottom: 2px;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--place {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .pageConts--livetour .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
  .pageConts--livetour .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 64px;
  }
  .pageConts--video {
    margin: 0 15px;
  }
  .pageConts--video .pageTitle {
    margin-left: 10px;
  }
  .pageConts--video .pagingWrap {
    margin: 0 15px;
  }
  .video__lists .video__list:not(:first-child) {
    margin-top: 56px;
  }
  .video__lists .video__list .video__link:active .video__thumb {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .video__lists .video__list .video__link:active .video__caption {
    opacity: 0.7;
  }
  .pageConts--goods {
    margin: 0 30px;
  }
  .pageConts--goods .pageTitle {
    margin-left: 10px;
  }
  .goods__lists {
    margin: 52px auto 0;
  }
  .goods__lists .goods__list:not(:first-child) {
    margin-top: 48px;
  }
  .goods__lists .goods__list .goods__link {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .goods__lists .goods__list .goods__link:active .goods__thumb {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .goods__lists .goods__list .goods__link:active .goods__caption {
    opacity: 0.7;
  }
  .goods__lists .goods__list .goods__link .goods__thumb {
    height: calc(100vw * 0.36);
    width: calc(100vw * 0.36);
  }
  .goods__lists .goods__list .goods__link .goods__caption {
    line-height: 1.43;
    width: calc(100vw * 0.44);
  }
  .itemWrap .itemHeader {
    margin-bottom: 12px;
  }
  .itemWrap .itemHeader .item__title {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
    width: 100%;
  }
  .itemWrap .itemHeader .item__snsWrap {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-bottom: 12px;
    width: 100%;
  }
  .itemWrap .shopBtn {
    border-radius: 32px;
    bottom: 79px;
    height: 64px;
    right: 7px;
    width: 64px;
  }
  .itemWrap .shopBtn:active .shopBtn__link {
    -webkit-box-shadow: none;
    -webkit-transform: scale(1.1);
    background-color: #000;
    box-shadow: none;
    transform: scale(1.1);
  }
  .itemWrap .shopBtn .shopBtn__link:active {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .itemWrap .shopBtn .shopBtn__link .shopBtn__link__text {
    font-size: 13px;
  }
  .itemWrap .item__topText img,
  .itemWrap .item__bottomText img {
    max-height: calc(100vw - 60px);
    max-width: 100%;
  }
  .itemWrap .item__subLists:not(:first-child) {
    margin-top: 48px;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images {
    margin-left: -30px;
    width: calc(100% + 60px);
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image {
    width: calc(100vw - 60px);
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image:not(:first-child) {
    margin-left: 8px;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image__img {
    height: calc(100vw * 0.84);
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-list .slick-slide {
    padding-left: 30px;
    padding-right: 30px;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-list .slick-slide .subitem__image {
    margin-left: -45px;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-list .is-active-next .subitem__image,
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-list .slick-current .subitem__image {
    margin-left: 0;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-counter {
    bottom: 12px;
    left: auto;
    position: absolute;
    right: 42px;
    top: auto;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev {
    right: 113px;
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-next {
    right: 40px;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subTitle {
    opacity: 0.7;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subPrice {
    opacity: 0.7;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subMore .item__subMore__icon {
    background-color: #000;
    border-color: #000;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subMore .item__subMore__icon:before, .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subMore .item__subMore__icon:after {
    background-color: #fff;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subMore .item__subMore__text {
    color: #000;
  }
  .itemWrap .item__subLists .subitem__outline .item__subPrice .item__subPrice__yen {
    display: none;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
    margin-left: auto;
    margin-right: auto;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__text {
    padding: 30px 19px 0;
  }
  .pageConts--discography,
  .pageConts--discographyDetail {
    margin: 0 30px;
  }
  .pageConts--discography .pagingWrap,
  .pageConts--discographyDetail .pagingWrap {
    margin-top: 48px;
  }
  .pageConts--discography .postCats.postCats--bottom,
  .pageConts--discographyDetail .postCats.postCats--bottom {
    margin-top: 48px;
  }
  .pageConts--discographyDetail .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
  .pageConts--discographyDetail .pageBack__Wrap {
    margin-bottom: 0;
  }
  .discography__lists {
    margin-top: 52px;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__thumbImg {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__meta {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__title {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__desc {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon {
    background-color: #000;
    border-color: #000;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon:before {
    -webkit-animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon:after {
    -webkit-animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .discography__lists .discography__list .discography__column {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .discography__lists .discography__list .discography__column .discography__thumb {
    height: calc(100vw * 0.36);
    width: calc(100vw * 0.36);
  }
  .discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
    height: auto;
    max-height: 100%;
  }
  .discography__lists .discography__list .discography__column .discography__data {
    width: calc(100vw * 0.44);
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__meta {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .discography__lists .discography__list:not(.discography__list--first) .discography__data .discography__meta .discography__metaList--new {
    width: 100%;
  }
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb {
    margin: 0 auto;
    max-height: calc(100vw * 0.84);
    max-width: calc(100vw * 0.84);
  }
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb .discography__thumbImg {
    max-height: calc(100vw * 0.84);
  }
  .discography__lists .discography__list.discography__list--first .discography__data {
    margin-top: 12px;
    width: 100%;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__meta {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__meta .discography__metaList:first-of-type {
    margin-right: 8px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__meta .discography__metaList--category {
    bottom: auto;
    left: auto;
    position: absolute;
    right: 0;
    top: 2px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__titleWrap {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__title {
    width: calc(100% - 45px);
  }
  .discography__lists .discography__list.discography__list--first .discography__data .arrowBtn__Wrap {
    display: block;
    width: 32px;
  }
  .discography__lists.discography__lists--nextpage .discography__list:first-of-type {
    margin-top: 0;
  }
  .modal__close {
    right: 25px;
    top: 25px;
  }
  .modal__conts {
    width: calc(100% - 30px);
  }
  .modal__conts .modalDetails .modalDetail__list {
    padding: 16px 15px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__imgWrap {
    height: 19.2vw;
    margin-right: 10px;
    width: 19.2vw;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details {
    width: calc(100% - 19.2vw - 10px - 56px);
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details .modalDetail__type--pc {
    display: none;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire {
    height: 46px;
    margin-left: 10px;
    width: 46px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link:active {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link {
    -webkit-transition: background-color 0.25s, -webkit-box-shadow 0.1s;
    border-radius: 23px;
    transition: background-color 0.25s, -webkit-box-shadow 0.1s;
    transition: background-color 0.25s, box-shadow 0.1s;
    transition: background-color 0.25s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops {
    min-height: 50px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink {
    width: calc((100% - 15px) / 2);
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink:nth-child(even) {
    margin-left: 15px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink:nth-child(n + 3) {
    margin-top: 15px;
  }
  .package__readmore__btn.package__readmore__btn--top {
    bottom: 1px;
    padding-bottom: 7px;
  }
  .package__readmore__btn:before {
    top: -31px;
  }
  .pageConts--discographyDetail .discWrap {
    margin-left: -15px;
    margin-top: 80px;
    padding-bottom: 64px;
    width: calc(100% + 30px);
  }
  .pageConts--discographyDetail .discWrap .disc__header .disc__title {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    margin-top: 12px;
    order: 1;
    width: 100%;
  }
  .pageConts--discographyDetail .discWrap .disc__header .disc__snsWrap {
    width: 100%;
  }
  .pageConts--discographyDetail .discWrap .disc__topText,
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-left: 15px;
    margin-right: 15px;
  }
  .pageConts--discographyDetail .discWrap .disc__topText {
    margin-bottom: 16px;
    padding-bottom: 1px;
  }
  .pageConts--discographyDetail .discWrap .disc__topText:after {
    background-color: #525252;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap {
    display: none;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap {
    -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
    margin-top: 80px;
    padding: 0 15px calc(100vw * 0.1813);
    position: relative;
    z-index: 2;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap {
    display: none;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__type {
    text-align: center;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__title {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__metas {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes--top {
    margin-bottom: 12px;
    margin-top: 12px;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes--btm {
    margin-top: 12px;
  }
  .pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap {
    z-index: 2;
  }
  .discWrap__newArtists {
    margin-top: 16px;
  }
  .discWrap__newArtists .discWrap {
    margin-top: 0;
    padding-top: 64px;
  }
  .discWrap__newArtists .discWrap:nth-child(even):before, .discWrap__newArtists .discWrap:nth-child(even):after {
    width: 15px;
  }
  .discWrap__newArtists .discWrap:nth-child(even):before {
    left: -15px;
  }
  .discWrap__newArtists .discWrap:nth-child(even):after {
    right: -15px;
  }
  .otherPosts.otherPosts--newartists {
    margin-top: 0;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats {
    margin-top: 58px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats:first-of-type {
    margin-top: 38px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    justify-content: space-between;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
    font-size: 22px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .arrowBtn__Wrap .arrowBtn__text {
    display: none;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .discography__lists {
    margin-top: 24px;
  }
  .postSelect {
    margin-bottom: 8px;
    margin-top: 62px;
  }
  .postSelect__modalBg {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .postSelect__modal {
    bottom: 77px;
    left: 15px;
    position: fixed;
    right: 15px;
    top: 77px;
  }
  .postSelect__modalHead {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    align-items: center;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 13px 14px 13px 15px;
  }
  .postSelect__lists {
    height: calc(100% - 56px);
    overflow-y: scroll;
  }
  .postSelect__link {
    padding-left: 62px;
  }
  .postSelect__link:before {
    left: 30px;
  }
  .postSelect__link:after {
    left: 34px;
  }
  .calendar__date {
    margin-right: 16px;
    padding-top: 22px;
    text-align: center;
    width: 49px;
  }
  .calendar__day {
    display: block;
    font-size: 20px;
    line-height: 1.6;
  }
  .calendar__week {
    display: block;
    line-height: 1.42857;
  }
  .calendar__events {
    width: calc(100% - 65px);
  }
  .calendar__event + .calendar__event .calendar__link:active:before {
    display: none;
  }
  .calendar__link:active:after {
    left: -15px;
    opacity: 1;
    right: -15px;
  }
  .pageConts--404 {
    margin: 0 auto;
    width: calc(100% - 60px);
  }
  .notfoundLogo .notfoundLogo__logo {
    width: 22.9vw;
  }
  .notfoundLogo .notfoundLogo__icon {
    height: 29.6vw;
    margin-left: 4vw;
    margin-right: 2.9vw;
    width: 29.6vw;
  }
  .notfound__title {
    font-size: 16px;
  }
  .loadingConts .loadingConts__gauge {
    width: 70vw;
  }
}

@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: 0px) {
    .fancybox-caption {
      padding-left: env(safe-area-inset-left), 12px;
      padding-right: env(safe-area-inset-right), 12px;
    }
  }
}

@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

@media screen and (min-width: 768px) {
  .fancybox-button--close {
    right: calc((100vw - 640px) / 2);
  }
  .sp--only {
    display: none !important;
  }
  .snsLists .snsList__link:hover {
    cursor: pointer;
  }
  .snsLists .snsList__link:hover .snsList__img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .headerWrap {
    padding: 36px 0 34px;
    width: 1024px;
  }
  .headerWrap .siteTtl .siteTtl__link:hover {
    opacity: 0.6;
  }
  .headerWrap .headerNavWrap .headerNav {
    -ms-flex-direction: column-reverse;
    -ms-flex-pack: justify;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-box-pack: justify;
    flex-direction: column-reverse;
    justify-content: space-between;
    margin-top: -30px;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu {
    -ms-flex: 1 0 60px;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-flex: 1;
    -webkit-box-pack: center;
    -webkit-box-sizing: border-box;
    align-items: center;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1 0 60px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list {
    margin: 0 12px;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
    font-family: interstate;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 3.29;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:hover {
    opacity: 0.6;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link.is--current:after {
    opacity: 1;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons {
    width: 100%;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons.headerIcons--lng0 {
    width: 0;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons.headerIcons--lng2 {
    width: 84px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons.headerIcons--lng3 {
    width: 130px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsList:not(:first-child) {
    margin-left: 16px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .musicLists {
    display: none;
  }
  .headerWrap .acdIcon {
    display: none;
  }
  .toTop {
    bottom: 40px;
    right: 40px;
  }
  .toTop .toTop__btn:hover {
    -webkit-transform: scale(1.03);
    cursor: pointer;
    transform: scale(1.03);
  }
  .footer__wrap .footerLogo .footerLogo__link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .footer__wrap .footerLinks .footer__contact .footer__contactLink:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .footer__wrap .footerLinks .snsLists .snsList:not(:first-of-type) {
    margin-left: 24px;
  }
  .postCats {
    -ms-flex-align: center;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 32px;
  }
  .postCats .postCat__wrap {
    margin-bottom: 12px;
  }
  .postCats .postCat__wrap:not(:last-of-type) {
    margin-right: 32px;
  }
  .postCats .postCat__lists .postCat__list {
    line-height: 1.29;
  }
  .infoLists.infoLists--index {
    margin-left: 116px;
    margin-top: 68px;
  }
  .infoLists.infoLists--newest {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
  .infoLists .infoList:first-of-type .infoList__link:hover:after {
    top: -19px;
  }
  .infoLists .infoList .infoList__link:not(.infoList__link--noLink):hover:before {
    display: none;
  }
  .infoLists .infoList .infoList__link:not(.infoList__link--noLink):hover:after {
    left: -32px;
    opacity: 1;
    right: -32px;
  }
  .arrowBtn__link:hover {
    cursor: pointer;
  }
  .arrowBtn__link:hover .arrowBtn__icon {
    background-color: #000;
    border: solid 1px #262626;
  }
  .arrowBtn__link:hover .arrowBtn__icon:before {
    -webkit-animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .arrowBtn__link:hover .arrowBtn__icon:after {
    -webkit-animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .arrowBtn__link:hover .arrowBtn__text {
    color: #fff;
  }
  .arrowBtn__link.arrowBtn__link--left:hover .arrowBtn__icon:before {
    -webkit-animation: backbtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: backbtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .arrowBtn__link.arrowBtn__link--left:hover .arrowBtn__icon:after {
    -webkit-animation: backbtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: backbtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .arrowBtn__link.arrowBtn__link--bottom:hover .arrowBtn__icon:before {
    -webkit-animation: morebtn 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: morebtn 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .arrowBtn__link.arrowBtn__link--bottom:hover .arrowBtn__icon:after {
    -webkit-animation: morebtn 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: morebtn 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .pageBack__Wrap {
    margin-bottom: -56px;
  }
  .btnLinks .btnLink .btnLink__link:hover {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .btnLinks .btnLink .btnLink__link {
    -webkit-transition: background-color 1s, -webkit-box-shadow 0.3s;
    -webkit-transition-delay: 0.25s, 0;
    transition: background-color 1s, -webkit-box-shadow 0.3s;
    transition: background-color 1s, box-shadow 0.3s;
    transition: background-color 1s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
    transition-delay: 0.25s, 0;
  }
  .btnLinks .btnLink .btnLink__link:hover {
    cursor: pointer;
  }
  .btnLinks.btnLinks--discFirst {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .btnLinks.btnLinks--top {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .btnLinks.btnLinks--goods {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  _::-webkit-full-page-media,
  _:future,
  :root .btnLinks--discThumb .btnLink .btnLink__link {
    font-size: 1px;
  }
  .pagingWrap {
    margin-left: 116px;
  }
  .pagingWrap .paging__prev {
    margin-right: 35px;
  }
  .pagingWrap .paging__next {
    margin-left: 35px;
  }
  .postTitle,
  .postDetail__data {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
  .post__detailPost {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
  .post__detailPost a:hover {
    cursor: pointer;
  }
  .post__detailPost a:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .post__detailPost a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .otherListsWrap {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
  .topConts__subtitle {
    margin-bottom: 22px;
  }
  .topConts {
    margin: 160px auto;
  }
  .topConts--flex {
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 808px;
  }
  .topConts--flex .topConts__titleArea {
    width: calc(100% - 672px);
  }
  .topConts--flex .topConts__titleArea .topConts__titleWrap {
    margin-left: -32px;
  }
  .topConts--flex .topConts__titleArea .arrowBtn__Wrap {
    margin-top: 32px;
  }
  .topConts--flex .infoLists {
    width: 588px;
  }
  .top__icons {
    display: none;
  }
  .top__icons .snsLists .snsList:not(:first-child) {
    margin-left: 32px;
  }
  .topSlide__lists .topSlide__nolink:hover,
  .topSlide__lists .topSlide__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--newrelease .topConts__titleWrap {
    margin-left: -32px;
  }
  .topConts--newrelease .topRelease__thumbsWrap {
    height: 420px;
    overflow: hidden;
    padding-left: 52%;
    padding-top: 16px;
    width: calc((100vw - 808px) / 2 + 808px);
  }
  .topConts--newrelease .topRelease__thumbsWrap:before {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, black), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, black 50%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(808px * 0.25);
    z-index: 1;
  }
  .topConts--newrelease .topRelease__thumbs .slick-list {
    overflow: visible;
    padding-right: calc((100vw - 808px) / 2);
  }
  .topConts--newrelease .topRelease__thumbs .is--hide .topRelease__thumb .topRelease__thumb__link {
    opacity: 0.2;
  }
  .topConts--newrelease .topRelease__thumbs .slick-dots {
    display: none;
  }
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link:hover {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__link {
    -webkit-transform: scale(0.824);
    transform: scale(0.824);
  }
  .topConts--newrelease .topRelease__wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: -388px;
    min-height: 388px;
    position: relative;
    top: -388px;
    width: 48%;
    z-index: 1;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list {
    padding-bottom: 20px;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataLink:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead {
    margin-top: 98px;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead .arrowBtn__Wrap {
    display: none;
  }
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__date {
    margin-bottom: 12px;
  }
  .topConts--video {
    width: 808px;
  }
  .topConts--video .topConts__titleWrap {
    margin-left: -32px;
  }
  .topConts--video .topVideoArea:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--videoSlide .topConts__titleWrap {
    margin: 0 auto 65px;
    width: 872px;
  }
  .topConts--videoSlide .topSlide__lists .slick-prev,
  .topConts--videoSlide .topSlide__lists .slick-next {
    top: calc((56vw - 32px) / 16 * 9 / 2);
  }
  .topConts--videoSlide .topSlide__lists .slick-prev {
    left: calc(22vw - 36px);
  }
  .topConts--videoSlide .topSlide__lists .slick-next {
    right: calc(22vw - 38px);
  }
  .topConts--videoSlide .arrowBtn__Wrap {
    margin: 10px auto 0;
    width: 872px;
  }
  .topGroupArea.topGroupArea--horizontal {
    margin-left: auto;
    margin-right: auto;
    width: 808px;
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__text {
    margin-left: 0;
    width: calc(100% - 32px - 472px);
  }
  .topGroupArea.topGroupArea--horizontal .topGroup__imgWrap {
    width: 472px;
  }
  .topGroupArea .topGroup__text {
    margin-left: 84px;
    width: calc(100% - 84px - 32px - 556px);
  }
  .topGroupArea .topGroup__text .topGroup__groupname {
    margin-top: 64px;
  }
  .topGroupArea .topGroup__text .topGroup__furigana {
    margin-bottom: 16px;
    margin-top: -14px;
  }
  .topGroupArea .topGroup__text .topGroup__desc {
    margin-bottom: 24px;
  }
  .topGroupArea .topGroup__imgWrap .topGroup__link:hover {
    cursor: pointer;
  }
  .topGroupArea .topGroup__imgWrap .topGroup__link:hover .topGroup__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--profile {
    width: 976px;
  }
  .topConts--profile .memberLists .memberList .memberList__imgWrap {
    margin-bottom: 12px;
  }
  .topConts--goods {
    width: 976px;
  }
  .topConts--goods .topConts__titleWrap {
    margin-bottom: 63px;
    margin-left: 56px;
  }
  .topConts--goods .topGoods__lists .topGoods__list {
    width: 304px;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:hover {
    cursor: pointer;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:hover .topGoods__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:hover {
    cursor: pointer;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link:hover .topGoods__name {
    opacity: 0.7;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__img {
    height: 304px;
    width: 304px;
  }
  .topConts--goods .arrowBtn__Wrap {
    margin-left: 84px;
  }
  .topConts--insta {
    width: 976px;
  }
  .topConts--insta .topConts__instaColumnWrap .topConts__titleWrap {
    margin-left: 52px;
  }
  .topConts--insta .topConts__instaColumnWrap + .arrowBtn__Wrap {
    margin-left: 82px;
  }
  .topConts--insta1 .topConts__instaColumnWrap .topConts__titleWrap {
    margin-bottom: 49px;
  }
  .topConts--insta1 .topConts__instaColumnWrap .topInsta__iframe {
    height: 406px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .topConts--insta2 .topConts__instaColumnWrap {
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topConts--insta2 .topConts__instaColumnWrap .arrowBtn__Wrap {
    margin-left: 32px;
    margin-top: 32px;
  }
  .topConts--insta2 .topConts__instaColumnWrap .topInsta__wrap {
    margin-bottom: 0;
    width: 588px;
  }
  .topConts--insta2 .topConts__instaColumnWrap .topInsta__iframe {
    height: 424px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .topConts--insta2 .topConts__instaColumnWrap + .arrowBtn__Wrap {
    display: none;
  }
  .instagram__contents1 {
    padding: 6px 15px 24px;
  }
  .instagram__contents1 #datahub_social_posts {
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .instagram__contents1 div.datahub_social_posts div.timeline ul li {
    margin-bottom: 20px !important;
  }
  .instagram__contents1 #datahub_social_posts div.timeline ul li div.post div.contents div.post_image {
    height: 18vw;
    width: 18vw;
  }
  .topConts--sns {
    width: 808px;
  }
  .topConts--snsColumn1 .topSns__wrap:not(:first-of-type) {
    margin-top: 160px;
  }
  .topConts--snsColumn1 .topSns__wrap .topConts__titleWrap {
    margin-left: -32px;
    margin-top: 8px;
    width: calc(100% - 472px);
  }
  .topConts--snsColumn1 .topSns__wrap .topConts__snsBox {
    height: 620px;
    width: 472px;
  }
  .topConts--snsColumn1 .topSns__wrap .arrowBtn__Wrap {
    bottom: 208px;
    left: 0;
    position: absolute;
  }
  .topConts--snsColumn2 {
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topConts--snsColumn2 .topSns__wrap {
    width: calc((100% - 82px) / 2);
  }
  .topConts--snsColumn2 .topSns__wrap .topConts__titleWrap {
    margin: 0 auto 48px;
  }
  .topConts--snsColumn2 .topSns__wrap .topConts__snsBox {
    height: 473px;
  }
  .topConts--snsColumn2 .topSns__wrap .arrowBtn__Wrap {
    margin: 32px auto 0;
  }
  .topConts--playlist {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 808px;
  }
  .topConts--playlist .topPlaylist__data {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 20px;
    width: calc(100% - 472px);
  }
  .topConts--playlist .topConts__titleWrap {
    font-size: 54px;
    margin-bottom: 40px;
    margin-left: -32px;
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__subtitle {
    margin-bottom: 12px;
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__link:hover {
    cursor: pointer;
  }
  .topConts--playlist .topPlaylist__lists .topPlaylist__list .topPlaylist__list__lists .topPlaylist__list__link:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .topConts--playlist .topConts__playlistBox {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 469px;
    padding: 33px 30px;
    width: 472px;
  }
  .topConts--banner {
    width: 976px;
  }
  .topConts--banner .bannerList {
    padding: 15px;
    width: 33.33%;
  }
  .topConts--banner .bannerList__link {
    padding: 24px 12px;
  }
  .topConts--banner .bannerList__link:hover {
    background-color: #262626;
  }
  .pageConts--news {
    margin: 0 auto;
    width: 872px;
  }
  .pageConts--news .otherPosts {
    margin: 64px auto -120px;
  }
  .pageConts--news .pageBack__Wrap {
    margin-bottom: 0;
  }
  .pageConts--profile {
    margin: 0 auto;
    width: 976px;
  }
  .pageConts--profdetail {
    width: 872px;
  }
  .pageConts--profdetail .pageTitle {
    margin-bottom: 80px;
  }
  .pageConts--profile .profGroup {
    margin-top: 80px;
  }
  .pageConts--profile .profGroup.profGroup--horizontal {
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 808px;
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__mainImg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    margin: 0;
    order: 1;
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap {
    width: calc(100% - 502px);
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap .profGroup__name {
    text-align: left;
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap .profGroup__furigana {
    text-align: left;
  }
  .pageConts--profile .profGroup.profGroup--horizontal .profGroup__dataWrap .snsLists {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .pageConts--profile .profGroup .profGroup__mainImg {
    margin: 0 auto 40px;
    width: 100%;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .profGroup__furigana {
    margin-top: -20px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .profGroup__disc {
    margin: 0 auto;
    width: 640px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .snsLists {
    margin-top: 24px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .snsLists .snsList {
    margin-top: 24px;
  }
  .pageConts--profile .profGroup .profGroup__dataWrap .snsLists .snsList:not(:first-of-type) {
    margin-left: 32px;
  }
  .memberLists.memberLists--num5, .memberLists.memberLists--num6, .memberLists.memberLists--num9 {
    margin-left: auto;
    margin-right: auto;
    width: 724px;
  }
  .memberLists.memberLists--num5 .memberList, .memberLists.memberLists--num6 .memberList, .memberLists.memberLists--num9 .memberList {
    margin: 0;
  }
  .memberLists.memberLists--num5 .memberList:not(:nth-child(4n+1)), .memberLists.memberLists--num6 .memberList:not(:nth-child(4n+1)), .memberLists.memberLists--num9 .memberList:not(:nth-child(4n+1)) {
    margin-left: 0;
  }
  .memberLists.memberLists--num5 .memberList:not(:nth-child(3n+1)), .memberLists.memberLists--num6 .memberList:not(:nth-child(3n+1)), .memberLists.memberLists--num9 .memberList:not(:nth-child(3n+1)) {
    margin-left: 32px;
  }
  .memberLists.memberLists--num5 .memberList:nth-child(n+4), .memberLists.memberLists--num6 .memberList:nth-child(n+4), .memberLists.memberLists--num9 .memberList:nth-child(n+4) {
    margin-top: 32px;
  }
  .memberLists .memberList {
    width: 220px;
  }
  .memberLists .memberList:not(:nth-child(4n + 1)) {
    margin-left: 32px;
  }
  .memberLists .memberList:nth-child(n + 5) {
    margin-top: 32px;
  }
  .memberLists .memberList .memberList__link:hover {
    cursor: pointer;
  }
  .memberLists .memberList .memberList__link:hover .memberList__img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .memberLists .memberList .memberList__link:hover {
    cursor: pointer;
  }
  .memberLists .memberList .memberList__link:hover .memberList__name {
    opacity: 0.7;
  }
  .memberLists .memberList .memberList__link:hover {
    cursor: pointer;
  }
  .memberLists .memberList .memberList__link:hover .memberList__furigana {
    opacity: 0.7;
  }
  .memberLists .memberList .memberList__name {
    line-height: 1.67;
    margin-bottom: 2px;
  }
  .pageConts--profdetail .member__detailBox {
    width: 808px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data {
    width: 304px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsList {
    margin-top: 12px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsList:not(:last-child) {
    margin-right: 32px;
  }
  .pageConts--profdetail .member__detailBox .member__detail__data .member__snsLists .member__snsLink:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .pageConts--profdetail .member__detailBox .member__detail__imgWrap {
    width: 472px;
  }
  .pageConts--profdetail .otherMembers {
    margin-left: -70px;
    width: calc(100% + 140px);
  }
  .pageConts--media {
    margin: 0 auto;
    width: 872px;
  }
  .pageConts--media .pagingWrap {
    margin-left: 120px;
  }
  .pageConts--media .postDetail__data .postDetail__category {
    margin-right: 16px;
  }
  .pageConts--media .postDetail__data .postDetail__snsWrap {
    -ms-flex: 1 0 100px;
    -ms-flex-order: 1;
    -webkit-box-flex: 1;
    -webkit-box-ordinal-group: 2;
    flex: 1 0 100px;
    order: 1;
  }
  .pageConts--media .otherPosts {
    margin: 64px auto -120px;
  }
  .pageConts--media .pageBack__Wrap {
    margin-bottom: 0;
  }
  .pageConts--livetour {
    margin: 0 auto;
    width: 872px;
  }
  .pageConts--livetour .livetourWrap {
    margin-top: 80px;
  }
  .pageConts--livetour .livetourListsWrap {
    margin-left: 116px;
    margin-top: 34px;
  }
  .pageConts--livetour .post__tourData .tourData__outline {
    padding: 22px 0;
  }
  .pageConts--livetour .post__tourData .tourData__outline:hover {
    cursor: pointer;
  }
  .pageConts--livetour .post__tourData .tourData__outline:hover .tourData__icon {
    background-color: #000;
    border-color: #262626;
  }
  .pageConts--livetour .post__tourData .tourData__outline:hover .tourData__icon:before, .pageConts--livetour .post__tourData .tourData__outline:hover .tourData__icon:after {
    background-color: #fff;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date {
    margin-bottom: -10px;
    width: 124px;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date span:not(:first-of-type) {
    margin-top: 4px;
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--place {
    padding-right: 20px;
    width: calc(100% - 124px - 80px);
  }
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--time {
    width: 80px;
  }
  .pageConts--livetour .post__tourData .tourData__detail .tourData__text {
    margin-bottom: 16px;
    padding-left: 124px;
  }
  .pageConts--livetour .otherPosts {
    margin: 64px auto -120px;
  }
  .pageConts--livetour .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 80px;
  }
  .pageConts--video {
    margin: 0 auto;
    width: 976px;
  }
  .pageConts--video .pageTitle {
    margin-left: 52px;
  }
  .pageConts--video .pagingWrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .video__lists {
    margin-top: 80px;
  }
  .video__lists .video__list {
    width: calc((100% - 32px) / 2);
  }
  .video__lists .video__list:nth-child(n+3) {
    margin-top: 80px;
  }
  .video__lists .video__list .video__link:hover {
    cursor: pointer;
  }
  .video__lists .video__list .video__link:hover .video__thumb {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .video__lists .video__list .video__link:hover {
    cursor: pointer;
  }
  .video__lists .video__list .video__link:hover .video__caption {
    opacity: 0.7;
  }
  .video__lists .video__list .video__link .video__thumb {
    height: 266px;
    max-height: calc(100vw * 0.2078);
  }
  .video__iframe {
    height: 396px;
  }
  .modalMovie video {
    height: 396px;
    width: 100%;
  }
  .flashVideo {
    height: 396px;
    width: 100vw;
  }
  .pageConts--goods {
    margin: 0 auto;
    width: 976px;
  }
  .pageConts--goods .pageTitle {
    margin-left: 52px;
  }
  .pageConts--goods .pagingWrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 0;
  }
  .goods__lists .goods__list {
    width: 304px;
  }
  .goods__lists .goods__list:not(:nth-child(3n - 2)) {
    margin-left: 32px;
  }
  .goods__lists .goods__list:nth-child(n + 4) {
    margin-top: 80px;
  }
  .goods__lists .goods__list .goods__link:hover {
    cursor: pointer;
  }
  .goods__lists .goods__list .goods__link:hover .goods__thumb {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .goods__lists .goods__list .goods__link:hover {
    cursor: pointer;
  }
  .goods__lists .goods__list .goods__link:hover .goods__caption {
    opacity: 0.7;
  }
  .goods__lists .goods__list .goods__link .goods__caption {
    margin-top: 16px;
  }
  .itemWrap {
    margin: 80px 84px;
  }
  .itemWrap .itemHeader {
    margin-bottom: 16px;
  }
  .itemWrap .itemHeader .item__snsWrap {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-top: 5px;
  }
  .itemWrap .shopBtn:hover .shopBtn__link {
    -webkit-box-shadow: none;
    -webkit-transform: scale(1.1);
    background-color: #000;
    box-shadow: none;
    transform: scale(1.1);
  }
  .itemWrap .shopBtn .shopBtn__link:hover {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .itemWrap .item__subListsWrap {
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 48px 0 52px;
  }
  .itemWrap .item__subLists {
    width: calc((100% - 32px) / 2);
  }
  .itemWrap .item__subLists:nth-child(n + 3) {
    margin-top: 56px;
  }
  .itemWrap .item__subLists:nth-child(even) .subitem__detail {
    margin-left: calc((100% + 32px) * -1);
  }
  .itemWrap .item__subLists:nth-child(even) .subitem__detail .subitem__detail__arrow {
    margin-left: 75%;
  }
  .itemWrap .item__subLists:nth-child(even) .subitem__detail .subitem__detail__text:before {
    left: calc(75% + 16px);
  }
  .itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image__link:hover {
    cursor: url("../img/goods/icon_img_cursor.svg") 24 24, pointer;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover {
    cursor: pointer;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subTitle {
    opacity: 0.7;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover {
    cursor: pointer;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subPrice {
    opacity: 0.7;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover {
    cursor: pointer;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subMore .item__subMore__icon {
    background-color: #000;
    border-color: #000;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subMore .item__subMore__icon:before, .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subMore .item__subMore__icon:after {
    background-color: #fff;
  }
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:hover .item__subMore .item__subMore__text {
    color: #000;
  }
  .itemWrap .item__subLists .subitem__detail {
    width: calc(200% + 32px);
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
    margin-left: calc(25% - 16px);
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__text {
    padding: 24px 24px 0;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__text:before {
    left: 25%;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__closeWrap {
    padding: 2px 0 14px;
    text-align: right;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__close:hover {
    cursor: pointer;
  }
  .pageConts--discography,
  .pageConts--discographyDetail {
    margin: 0 auto;
    width: 976px;
  }
  .pageConts--discography .pagingWrap,
  .pageConts--discographyDetail .pagingWrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 0;
  }
  .pageConts--discography .pageTitle,
  .pageConts--discographyDetail .pageTitle {
    margin-left: 48px;
  }
  .pageConts--discography .postCats,
  .pageConts--discographyDetail .postCats {
    margin-left: 52px;
  }
  .pageConts--discographyDetail .otherPosts {
    margin: 64px auto -120px;
    width: 872px;
  }
  .pageConts--discographyDetail .otherPosts:before, .pageConts--discographyDetail .otherPosts:after {
    width: calc((100vw - 872px) / 2);
  }
  .pageConts--discographyDetail .otherPosts:before {
    left: calc((100vw - 872px)/2 * -1);
  }
  .pageConts--discographyDetail .otherPosts:after {
    right: calc((100vw - 872px)/2 * -1);
  }
  .pageConts--discographyDetail .pageBack__Wrap {
    margin-bottom: 0;
    margin-left: 52px;
  }
  .discography__lists {
    margin-top: 80px;
  }
  .discography__lists .discography__list {
    margin-top: 80px;
    width: calc((100% - 64px) / 3);
  }
  .discography__lists .discography__list:nth-child(n + 3) {
    margin-left: 32px;
  }
  .discography__lists .discography__list:nth-child(3n - 1) {
    margin-left: 0;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover {
    cursor: pointer;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .discography__thumbImg {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover {
    cursor: pointer;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .discography__meta {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover {
    cursor: pointer;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .discography__title {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover {
    cursor: pointer;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .discography__desc {
    opacity: 0.7;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover {
    cursor: pointer;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .arrowBtn__Wrap .arrowBtn__icon {
    background-color: #000;
    border: solid 1px #262626;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .arrowBtn__Wrap .arrowBtn__icon:before {
    -webkit-animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .arrowBtn__Wrap .arrowBtn__icon:after {
    -webkit-animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: iconHoverA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .discography__lists .discography__list .discography__wraplink:not(.is--btnHover):hover .arrowBtn__Wrap .arrowBtn__text {
    color: #fff;
  }
  .discography__lists .discography__list .discography__column .discography__thumb {
    height: 304px;
    margin: 0 auto;
    max-width: 304px;
  }
  .discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
    -o-object-fit: contain;
    height: 100%;
    max-height: 304px;
    object-fit: contain;
  }
  .discography__lists .discography__list .discography__column .discography__data {
    margin-top: 14px;
    width: 100%;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList {
    margin-bottom: 6px;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__meta .discography__metaList:not(:first-child) {
    margin-left: 12px;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__title {
    line-height: 1.71;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__desc {
    -webkit-line-clamp: 4;
  }
  .discography__lists .discography__list:not(.discography__list--first) .discography__data .discography__meta .discography__metaList--category {
    bottom: auto;
    left: auto;
    position: absolute;
    right: 0;
    top: 2px;
  }
  .discography__lists .discography__list.discography__list--first {
    margin-left: auto;
    margin-right: auto;
    max-width: 808px;
    text-align: center;
    width: 100%;
  }
  .discography__lists .discography__list.discography__list--first .discography__wraplink {
    display: inline-block;
  }
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb {
    max-height: 388px;
    max-width: 388px;
  }
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb .discography__thumbImg {
    max-height: 388px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data {
    margin-left: 32px;
    width: 388px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__meta .discography__metaList {
    margin-bottom: 10px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .discography__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .discography__lists .discography__list.discography__list--first .discography__data .arrowBtn__Wrap {
    margin-top: 16px;
  }
  .discography__lists.discography__lists--nextpage .discography__list {
    margin-left: 32px;
    margin-top: 0;
  }
  .discography__lists.discography__lists--nextpage .discography__list:nth-child(n + 4) {
    margin-top: 80px;
  }
  .discography__lists.discography__lists--nextpage .discography__list:nth-child(3n - 2) {
    margin-left: 0;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__type--sp {
    display: none;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link:hover {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link {
    -webkit-transition: background-color 1s, -webkit-box-shadow 0.3s;
    -webkit-transition-delay: 0.25s, 0;
    transition: background-color 1s, -webkit-box-shadow 0.3s;
    transition: background-color 1s, box-shadow 0.3s;
    transition: background-color 1s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
    transition-delay: 0.25s, 0;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link:hover .modalDetail__linkfire__icon:before {
    -webkit-animation: linkfirebtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
    animation: linkfirebtnB 0.5s ease-out 1 0.3s, iconHoverB_bg 0.5s ease-out infinite 0.3s;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__linkfire .modalDetail__linkfire__link:hover .modalDetail__linkfire__icon:after {
    -webkit-animation: linkfirebtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
    animation: linkfirebtnA 0.5s ease-out 1 0.3s, iconHoverA_bg 0.5s ease-out infinite 0.3s;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink {
    width: 136px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink:not(:nth-child(4n - 3)) {
    margin-left: 32px;
  }
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops .modalDetail__moreshopLinks .modalDetail__moreshopLink:nth-child(n + 5) {
    margin-top: 16px;
  }
  .package__readmore__btn:hover {
    cursor: pointer;
  }
  .pageConts--discographyDetail .discWrap .disc__header {
    margin: 0 52px 16px;
  }
  .pageConts--discographyDetail .discWrap .disc__header .disc__title {
    font-size: 24px;
    line-height: 1.33;
    width: calc(100% - 200px);
  }
  .pageConts--discographyDetail .discWrap .disc__topText,
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-left: 52px;
    margin-right: 52px;
  }
  .pageConts--discographyDetail .discWrap .disc__topText {
    margin-bottom: 34px;
  }
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-top: 32px;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap {
    height: 76px;
  }
  .pageConts--discographyDetail .discWrap .package__tabWrap {
    display: none;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap {
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: justify;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 52px;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg {
    display: none;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap {
    margin-top: 232px;
    width: 336px;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details {
    width: calc(100% - 368px);
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__musics {
    padding: 12px 0;
  }
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__disc .package__samples .package__sample li:not(:first-of-type) {
    margin-left: 11px;
  }
  .pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap {
    display: none;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists {
    margin: 0 0 0 auto;
    width: calc(100% - 148px);
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list {
    margin-left: 32px;
    margin-top: 0;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list:nth-child(3n - 2) {
    margin-left: 0;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list .discography__thumb {
    height: 220px;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list .discography__thumb .arrowBtn__Wrap {
    bottom: 20px;
    left: 20px;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list .discography__thumb .arrowBtn__Wrap .arrowBtn__text {
    display: none;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists .discography__list .discography__thumb .discography__thumbImg {
    height: 220px;
  }
  .otherPosts.otherPosts--newartists {
    margin-top: 0;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap {
    -ms-flex-align: start;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 84px;
    margin-right: 32px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats {
    -ms-flex-align: start;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-box-pack: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: calc((100% - 52px) / 2);
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats:nth-child(even) {
    margin-left: 52px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats:nth-child(n + 3) {
    margin-top: 56px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead {
    width: calc(100% - 220px);
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
    margin-bottom: 18px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .discography__lists {
    width: 220px;
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .discography__lists .discography__list:first-of-type {
    width: 100%;
  }
  .postSelect {
    margin-left: 116px;
  }
  .postSelect__modal {
    width: 388px;
  }
  .postSelect__modalHead {
    display: none;
  }
  .postSelect__lists {
    height: 740px;
  }
  .postSelect__modal--bottom .postSelect__lists {
    height: 504px;
  }
  .calendar {
    margin-left: 116px;
    margin-right: 32px;
  }
  .calendar__day {
    margin-right: 2px;
    vertical-align: middle;
    width: 33px;
  }
  .calendar__event + .calendar__event .calendar__link:hover:before {
    display: none;
  }
  .calendar__link:hover:after {
    left: -5px;
    opacity: 1;
    right: -0;
  }
}

@media all and (-ms-high-contrast: none) {
  .topSlide__lists .topSlide__nolink .topSlide__img,
  .topSlide__lists .topSlide__link .topSlide__img {
    -o-object-fit: none;
    max-height: 100%;
    max-width: 100%;
    object-fit: none;
  }
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb__img {
    -o-object-fit: none;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: none;
    width: auto;
  }
  *::-ms-backdrop,
  .post_image img {
    height: auto;
    width: auto;
  }
  .video__lists .video__list .video__link .video__thumb .video__thumb--img {
    -o-object-fit: none;
    max-height: 100%;
    max-width: 100%;
    object-fit: none;
  }
  .discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
    -o-object-fit: none;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: none;
    width: 100%;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbImg .package__thumbImg__img {
    -o-object-fit: none;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: none;
    width: auto;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbImg {
    text-align: center;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-active.slick-slide .package__thumbImg .package__thumbImg__img {
    height: auto;
    width: auto;
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList .package__thumbImg .package__thumbImg__img {
    height: auto;
    width: auto;
  }
}

@media screen and (min-width: 0\0) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0) and (min-resolution: 72dpi) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list__text {
    max-height: 70px;
    overflow: hidden;
    position: relative;
  }
  .itemWrap .item__subLists .subitem__detail .subitem__detail__arrow {
    border-bottom: none;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__desc {
    max-height: 92px;
    overflow: hidden;
    position: relative;
  }
  .discography__lists .discography__list .discography__column .discography__data .discography__desc:after {
    background-color: #fff;
    bottom: 0;
    content: '...';
    display: block;
    left: auto;
    position: absolute;
    right: 0;
    top: auto;
  }
}

@media screen and (min-width: 588px) {
  .instagram__contents2 {
    padding: 6px 12px 24px;
  }
  .instagram__contents2 div.datahub_social_posts div.timeline ul li {
    margin-bottom: 12px !important;
  }
  .instagram__contents2 #datahub_social_posts div.timeline ul li div.post div.contents div.post_image {
    -webkit-box-shadow: 1px 3px 8px 0 rgba(195, 187, 177, 0.4);
    box-shadow: 1px 3px 8px 0 rgba(195, 187, 177, 0.4);
    height: 31.97vw;
    width: 31.97vw;
  }
}

@media screen {
  .vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: '';
  }
}

@media screen and (min-width: 768px) and (max-width: 1040px) {
  .headerWrap {
    margin-left: 5px;
    padding: 42px 0 44px;
    width: calc(100% - 10px);
  }
  /* new release */
  .topConts--newrelease {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--newrelease .topConts__titleWrap {
    margin-left: 0;
  }
  .topConts--newrelease .topRelease__thumbsWrap {
    width: calc(100vw - 20px);
  }
  .topConts--newrelease .topRelease__thumbsWrap:before {
    width: calc((100vw - 40px) * 0.25);
  }
  .topConts--newrelease .topRelease__thumbsWrap .topRelease__thumbs {
    /* BEGIN slick */
    /* END slick */
  }
  .topConts--newrelease .topRelease__thumbsWrap .topRelease__thumbs .slick-list {
    padding-right: 20px;
  }
  .topConts--newrelease .topRelease__thumbsWrap .topRelease__thumbs .slick-next {
    left: auto;
    right: 32px;
  }
  .topConts--newrelease .topRelease__thumbsWrap .topRelease__thumbs .slick-prev {
    left: auto;
    right: 72px;
  }
  .topConts--newrelease .topRelease__thumbsWrap .topRelease__thumbs .topRelease__thumb__link {
    height: 360px;
    max-width: 360px;
  }
  /* news & live tour & media */
  .topConts--flex {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--flex .topConts__titleArea .topConts__titleWrap {
    margin-left: 0;
  }
  .topConts--flex .infoLists {
    margin-right: 20px;
    max-width: 588px;
    width: calc(100% - 230px);
  }
  .topConts--flex .topConts__infoArea {
    margin-right: 20px;
    max-width: 588px;
    width: calc(100% - 230px);
  }
  .topConts--flex .topConts__infoArea .infoLists {
    margin-right: 0;
    width: 100%;
  }
  /* profile */
  .topConts--profile {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .topConts--profile .topGroupArea .topGroup__text {
    margin-left: 24px;
    width: calc(100% - 622px);
  }
  .topConts--profile .memberLists.memberLists--num5, .topConts--profile .memberLists.memberLists--num6, .topConts--profile .memberLists.memberLists--num9 {
    padding-left: 0;
    padding-right: 0;
  }
  .topConts--profile .memberLists.memberLists--num5 .memberList, .topConts--profile .memberLists.memberLists--num6 .memberList, .topConts--profile .memberLists.memberLists--num9 .memberList {
    width: 220px;
  }
  .topConts--profile .memberLists.memberLists--num5 .memberList .memberList__imgWrap, .topConts--profile .memberLists.memberLists--num6 .memberList .memberList__imgWrap, .topConts--profile .memberLists.memberLists--num9 .memberList .memberList__imgWrap {
    height: 330px;
  }
  .topConts--profile .memberLists .memberList {
    width: calc((100% - 96px) / 4);
  }
  .topConts--profile .memberLists .memberList .memberList__imgWrap {
    height: calc(100vw * 0.31);
  }
  /* video */
  .topConts--videoSlide {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .topConts--videoSlide .topConts__titleWrap {
    width: 100%;
  }
  .topConts--video {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .topConts--video .topConts__titleWrap {
    margin-left: 0;
  }
  .topConts--video .topVideoArea {
    margin: 0 auto;
    width: 80%;
  }
  .topConts--video .topVideoArea iframe {
    height: calc(80vw / 16 * 9);
  }
  .topConts--video .topVideoArea .topVideo__videoLink {
    width: 100%;
  }
  .topConts--video .arrowBtn__Wrap {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  /* goods */
  .topConts--goods {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--goods .topConts__titleWrap {
    margin-left: 0;
  }
  .topConts--goods .topGoods__lists .topGoods__list {
    width: 31.14%;
  }
  .topConts--goods .topGoods__lists .topGoods__list .topGoods__link .topGoods__img {
    height: auto;
    width: 100%;
  }
  /* instagram */
  .topConts--insta {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--insta .topConts__titleWrap {
    margin-left: 0;
  }
  /* sns */
  .topConts--sns {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--sns.topConts--snsColumn1 .topSns__wrap .topConts__titleWrap {
    margin-left: 0;
    margin-top: 0;
  }
  .topConts--sns.topConts--snsColumn1 .topSns__wrap .arrowBtn__Wrap {
    bottom: 180px;
  }
  .topConts--sns.topConts--snsColumn1 .topSns__wrap .topConts__snsBox {
    height: 500px;
    margin-right: 0;
    width: 420px;
  }
  .pageConts--news,
  .pageConts--media,
  .pageConts--livetour {
    margin-left: 30px;
    width: calc(100% - 60px);
  }
  .pageConts--news .livetourWrap .pageConts__subtitle,
  .pageConts--media .livetourWrap .pageConts__subtitle,
  .pageConts--livetour .livetourWrap .pageConts__subtitle {
    width: 160px;
  }
  .pageConts--news .livetourWrap .livetourListsWrap,
  .pageConts--media .livetourWrap .livetourListsWrap,
  .pageConts--livetour .livetourWrap .livetourListsWrap {
    width: calc(100% - 200px);
  }
  .pageConts--news .infoLists--index,
  .pageConts--media .infoLists--index,
  .pageConts--livetour .infoLists--index {
    margin-right: 20px;
  }
  .pageConts--news .otherPosts:before, .pageConts--news .otherPosts:after,
  .pageConts--media .otherPosts:before,
  .pageConts--media .otherPosts:after,
  .pageConts--livetour .otherPosts:before,
  .pageConts--livetour .otherPosts:after {
    width: calc((100vw - 100%) / 2);
  }
  .pageConts--news .otherPosts:before,
  .pageConts--media .otherPosts:before,
  .pageConts--livetour .otherPosts:before {
    left: calc((100vw - 100%) / 2 * -1);
  }
  .pageConts--news .otherPosts:after,
  .pageConts--media .otherPosts:after,
  .pageConts--livetour .otherPosts:after {
    right: calc((100vw - 100%) / 2 * -1);
  }
  .pageConts--news .otherPosts .otherPosts__title,
  .pageConts--media .otherPosts .otherPosts__title,
  .pageConts--livetour .otherPosts .otherPosts__title {
    width: 150px;
  }
  .pageConts--profile {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--profile .memberLists.memberLists--num5, .pageConts--profile .memberLists.memberLists--num6, .pageConts--profile .memberLists.memberLists--num9,
  .pageConts--profdetail .memberLists.memberLists--num5,
  .pageConts--profdetail .memberLists.memberLists--num6,
  .pageConts--profdetail .memberLists.memberLists--num9 {
    padding-left: 0;
    padding-right: 0;
  }
  .pageConts--profile .memberLists.memberLists--num5 .memberList, .pageConts--profile .memberLists.memberLists--num6 .memberList, .pageConts--profile .memberLists.memberLists--num9 .memberList,
  .pageConts--profdetail .memberLists.memberLists--num5 .memberList,
  .pageConts--profdetail .memberLists.memberLists--num6 .memberList,
  .pageConts--profdetail .memberLists.memberLists--num9 .memberList {
    width: 220px;
  }
  .pageConts--profile .memberLists.memberLists--num5 .memberList .memberList__imgWrap, .pageConts--profile .memberLists.memberLists--num6 .memberList .memberList__imgWrap, .pageConts--profile .memberLists.memberLists--num9 .memberList .memberList__imgWrap,
  .pageConts--profdetail .memberLists.memberLists--num5 .memberList .memberList__imgWrap,
  .pageConts--profdetail .memberLists.memberLists--num6 .memberList .memberList__imgWrap,
  .pageConts--profdetail .memberLists.memberLists--num9 .memberList .memberList__imgWrap {
    height: 330px;
  }
  .pageConts--profile .memberLists .memberList,
  .pageConts--profdetail .memberLists .memberList {
    width: calc((100% - 96px) / 4);
  }
  .pageConts--profile .memberLists .memberList .memberList__imgWrap,
  .pageConts--profdetail .memberLists .memberList .memberList__imgWrap {
    height: calc(100vw * 0.31);
  }
  .pageConts--profdetail .otherMembers {
    margin-left: calc((100vw - 876px) / 2 * -1);
    width: 100vw;
  }
  .pageConts--profdetail .otherMembers .memberLists {
    padding-left: 10px;
    padding-right: 10px;
  }
  .pageConts--profdetail .otherMembers .memberLists.memberLists--num5, .pageConts--profdetail .otherMembers .memberLists.memberLists--num6, .pageConts--profdetail .otherMembers .memberLists.memberLists--num9 {
    padding-left: 0;
    padding-right: 0;
  }
  .pageConts--profdetail {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--profdetail .member__detailBox {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--profdetail .member__detailBox .member__detail__data {
    width: 41.6%;
  }
  .pageConts--profdetail .member__detailBox .member__detail__imgWrap {
    width: 58.4%;
  }
  .pageConts--profdetail .otherMembers {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  .pageConts--discography {
    width: calc(100% - 40px);
  }
  .pageConts--video {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--goods {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--goods .goods__lists .goods__list {
    width: 31.14%;
  }
}

@media screen and (min-width: 768px) and (max-width: 872px) {
  .topGroupArea.topGroupArea--horizontal {
    width: 100%;
  }
  .topGroupArea .topGroup__text .topConts__titleWrap {
    margin-left: -13px;
  }
  .topConts--playlist {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--playlist .topConts__titleWrap {
    margin-left: 0;
  }
  .topConts--playlist .topConts__playlistBox {
    width: 400px;
  }
  .pageConts--discographyDetail .otherPosts {
    width: 100%;
  }
  .pageConts--discographyDetail .otherPosts .discography__lists {
    margin: 0 auto;
    width: calc(100% - 40px);
  }
  .pageConts--discographyDetail .otherPosts .otherPosts__catWrap {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 976px) {
  .pageConts--discographyDetail {
    width: 100%;
  }
  .pageConts--discographyDetail .otherPosts__title {
    margin-left: 30px;
  }
  .discWrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
