@charset "UTF-8";
/**
 * Colors
 */
/*--------------------------------------
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;
  }
}

/* wa-suta button */
@-webkit-keyframes iconBtn-right {
  0% {
    left: 50%;
  }
  50% {
    left: calc(50% + 3px);
  }
  100% {
    left: 50%;
  }
}
@keyframes iconBtn-right {
  0% {
    left: 50%;
  }
  50% {
    left: calc(50% + 3px);
  }
  100% {
    left: 50%;
  }
}

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

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

@-webkit-keyframes iconBtn-top {
  0% {
    top: 50%;
  }
  50% {
    top: calc(50% - 3px);
  }
  100% {
    top: 50%;
  }
}

@keyframes iconBtn-top {
  0% {
    top: 50%;
  }
  50% {
    top: calc(50% - 3px);
  }
  100% {
    top: 50%;
  }
}

@-webkit-keyframes iconBtn-bottom {
  0% {
    top: 50%;
  }
  50% {
    top: calc(50% + 3px);
  }
  100% {
    top: 50%;
  }
}

@keyframes iconBtn-bottom {
  0% {
    top: 50%;
  }
  50% {
    top: calc(50% + 3px);
  }
  100% {
    top: 50%;
  }
}

/* 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-transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  background: url("../img/common/icon_linkbtn.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  font-size: 0;
  height: 34px;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 32px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  width: 6px;
}

@media screen and (min-width: 768px) {
  .slick-prev:before,
  .slick-next:before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.slick-prev:active, .slick-prev:hover,
.slick-next:active,
.slick-next:hover {
  background-image: url("../img/common/icon_linkbtn-hover.svg");
}

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

.slick-prev:before {
  background-image: url("../img/common/icon_arrow-left.svg");
}

.slick-prev:hover:before {
  -webkit-animation: iconBtn-left 0.5s ease-out 1 0.3s;
  animation: iconBtn-left 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-left-hover.svg");
}

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

.slick-next:before {
  background-image: url("../img/common/icon_arrow-right.svg");
}

.slick-next:hover:before {
  -webkit-animation: iconBtn-right 0.5s ease-out 1 0.3s;
  animation: iconBtn-right 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-right-hover.svg");
}

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

@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 {
  height: 2px;
  margin: 0 0 0 8px;
  width: 40px;
}

@media screen and (max-width: 767px) {
  .slick-dots li {
    max-width: 100%;
    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: #000;
}

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

.slick-dots li button:before {
  -webkit-transition: all 0.3s;
  background-color: #583795;
  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 */
@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;
    }
  }
}

/* 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 */
@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);
  }
}

/**
 * コンポネ用カスタマイズ
 */
/* 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;
}

@media screen and (min-width: 768px) {
  .fancybox-button--close {
    right: calc((100vw - 640px) / 2);
  }
}

.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);
}

@media screen and (max-width: 767px) {
  .fancybox-navigation .fancybox-button--arrow_left {
    left: 15px;
  }
}

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

@media screen and (max-width: 767px) {
  .fancybox-navigation .fancybox-button--arrow_right {
    right: 15px;
  }
}

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

@media screen and (max-width: 767px) {
  .fancybox-caption {
    bottom: auto;
    text-align: left;
    top: calc((100vh - 100vw) / 2 + 100vw + 20px);
    width: 80vw;
  }
}

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

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

body {
  -webkit-font-feature-settings: 'palt' 1;
  color: #666;
  font-family: "Noto Sans JP", "Fredoka One", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, cursive, sans-serif;
  font-feature-settings: 'palt' 1;
}

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

/**
 * pc/sp
 */
@media screen and (max-width: 767px) {
  .pc--only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp--only {
    display: none !important;
  }
}

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

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.vam {
  vertical-align: middle;
}

.vat {
  vertical-align: top;
}

.vab {
  vertical-align: bottom;
}

.dpb {
  display: block;
}

.dpib {
  display: inline-block;
}

/*--------------------------------------
03. content
--------------------------------------*/
/**
 * loading
 */
.loading {
  background-color: #fff;
  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(0, 0, 0, 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: #004cad;
  bottom: -2px;
  content: '';
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

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

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

.is-blur {
  -webkit-filter: blur(10px);
  -webkit-transition: -webkit-filter 0.3s;
  filter: blur(10px);
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

/**
 * 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;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .snsLists .snsList--link:active svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media screen and (min-width: 768px) {
  .snsLists .snsList--link:hover {
    cursor: pointer;
  }
  .snsLists .snsList--link:hover svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.snsLists .snsList--link:hover svg path, .snsLists .snsList--link:active svg path {
  fill: #583791;
}

.snsLists svg {
  -webkit-transition: all 0.3s;
  display: inline-block;
  transition: all 0.3s;
}

/**
 * header
 */
.headerWrap {
  -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;
  font-size: 0;
  justify-content: space-between;
  margin: 0 auto;
  /* BEGIN navigation */
  /* END navigation */
  /* BEGIN spmenu icon */
  /* END spmenu icon */
}

@media screen and (min-width: 768px) {
  .headerWrap {
    max-width: 1040px;
    padding: 40px 0 41px;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap {
    height: 98px;
    padding-left: 14px;
  }
}

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

@media screen and (max-width: 767px) {
  .headerWrap .siteTtl .siteTtl__link:active {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .headerWrap .siteTtl .siteTtl__link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .headerWrap .siteTtl .siteTtl__link {
    width: 232px;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .siteTtl .siteTtl__link {
    width: 40.2666vw;
  }
}

.headerWrap .siteTtl .siteTtl__link .siteTtl__img {
  display: block;
  height: auto;
  width: 100%;
}

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

@media screen and (max-width: 767px) {
  .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-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav {
    -ms-overflow-style: none;
    -webkit-box-sizing: border-box;
    -webkit-overflow-scrolling: auto;
    box-sizing: border-box;
    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:before, .headerWrap .headerNavWrap .headerNav:after {
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .headerWrap .headerNavWrap .headerNav:before {
    background-color: rgba(0, 0, 0, 0.22);
  }
  .headerWrap .headerNavWrap .headerNav:after {
    background-color: rgba(255, 255, 255, 0.75);
  }
}

.headerWrap .headerNavWrap .headerNav .headerNavConts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerNavConts {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerNavConts {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

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

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu {
    -ms-flex: 1 0 100px;
    -ms-flex-align: center;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-flex: 1;
    -webkit-box-pack: start;
    -webkit-box-sizing: border-box;
    align-items: center;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1 0 100px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu {
    padding-left: calc(100vw * 0.146);
    width: calc(100% - 130px);
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu:before {
    background-image: radial-gradient(circle at 50% 150%, #fff796, #b8dfd7 16%, #c4badb 33%, #f9d0d3 51%, #b3dcf6 67%), -webkit-gradient(linear, left top, left bottom, from(#583795), to(#583795));
    background-image: radial-gradient(circle at 50% 150%, #fff796, #b8dfd7 16%, #c4badb 33%, #f9d0d3 51%, #b3dcf6 67%), linear-gradient(to bottom, #583795, #583795);
    border-radius: 1.5px;
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: -1.5px;
    top: 0;
    width: 3px;
  }
}

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list:not(:last-child) {
    margin-right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list:not(:last-child) {
    margin-bottom: 24px;
  }
}

.headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
  color: #666;
  font-family: 'Fredoka One';
  font-size: 16px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
    -webkit-transition: color 0.3s;
    font-size: 12px;
    line-height: 3.29;
    transition: color 0.3s;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:hover {
    color: #583791;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link.is-current:after {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link {
    line-height: 1.71;
  }
  .headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:active {
    color: #583791;
  }
}

.headerWrap .headerNavWrap .headerNav .headerMenu .headerMenu__list .headerMenu__link:after {
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
  border-radius: 2px;
  bottom: -10px;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

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

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerIcons {
    width: 175px;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerIcons {
    position: relative;
    width: 130px;
  }
}

@media screen and (min-width: 768px) {
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    gap: 12px 16px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists .snsList {
    text-align: center;
    width: 100%;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists .snsList:not(:first-child) {
    margin-top: 24px;
  }
}

.headerWrap .headerNavBg {
  -webkit-transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0);
  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 {
  -webkit-transform: translateY(-50%);
  height: 42px;
  mix-blend-mode: difference;
  position: fixed;
  right: 15px;
  top: calc((19.73vw + 13px +13px) / 2);
  transform: translateY(-50%);
  width: 37px;
  z-index: 102;
}

@media screen and (min-width: 768px) {
  .headerWrap .acdIcon {
    display: none;
  }
}

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

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

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

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

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

.headerWrap .acdIcon.is-show .acdIcon__link .acdIcon__linkText:after {
  opacity: 1;
}

.headerWrap .acdIcon .acdIcon__link {
  -webkit-transition: all 0.5s;
  display: block;
  height: 100%;
  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: #999;
  border-radius: 4px;
  content: '';
  display: block;
  height: 4px;
  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: #999;
  border-radius: 2px;
  display: block;
  height: 4px;
  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;
  font-size: 0;
  height: 9px;
  left: 50%;
  letter-spacing: 0.2px;
  position: absolute;
  right: auto;
  top: auto;
  transform: translateX(-50%);
  transition: all 0.5s;
  width: 36px;
}

.headerWrap .acdIcon .acdIcon__link .acdIcon__linkText:before, .headerWrap .acdIcon .acdIcon__link .acdIcon__linkText:after {
  -webkit-transition: opacity 0.3s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  bottom: 0;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
}

.headerWrap .acdIcon .acdIcon__link .acdIcon__linkText:before {
  background-image: url("../img/common/text_icon_menu.svg");
  opacity: 1;
}

.headerWrap .acdIcon .acdIcon__link .acdIcon__linkText:after {
  background-image: url("../img/common/text_icon_close.svg");
  opacity: 0;
}

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

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

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

@media screen and (max-width: 767px) {
  .contents--page {
    padding: 60px 0 98px;
  }
}

.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, -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);
}

.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);
  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);
}

.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-background-clip: text;
  -webkit-transition: all 0.3s;
  background-clip: text;
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
  color: transparent;
  font-family: 'Fredoka One';
  font-size: 50px;
  letter-spacing: 2.07px;
  line-height: 1.2;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .pageTitle {
    font-size: 42px;
    letter-spacing: normal;
    line-height: 1.1;
  }
}

@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) {
  /* IE10,11 */
  .pageTitle {
    background: transparent;
    background-image: none;
    color: #666;
  }
}

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

@media screen and (min-width: 768px) {
  .toTop {
    bottom: 40px;
    right: 40px;
  }
}

.toTop .toTop__btn {
  -webkit-transition: all 0.3s;
  background: url("../img/common/btn_totop.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  display: block;
  height: 66px;
  position: relative;
  transition: all 0.3s;
  width: 64px;
}

@media screen and (max-width: 767px) {
  .toTop .toTop__btn {
    height: 49px;
    width: 48px;
  }
}

.toTop .toTop__btn:hover, .toTop .toTop__btn:active {
  background-image: url("../img/common/btn_totop-hover.svg");
  cursor: pointer;
}

.toTop .toTop__btn:hover:before, .toTop .toTop__btn:active:before {
  -webkit-animation: iconBtn-top 0.5s ease-out 1 0.3s;
  animation: iconBtn-top 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-top-hover.svg");
}

.toTop .toTop__btn:before {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  background: url("../img/common/icon_arrow-top.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  width: 19px;
}

@media screen and (min-width: 768px) {
  .toTop .toTop__btn:before {
    -webkit-transition: all 0.3s;
    height: 13px;
    transition: all 0.3s;
    width: 23px;
  }
}

.footer__wrap {
  border-top: 2px solid #583795;
  position: relative;
  /* BEGIN navi & sns */
  /* END navi & sns */
}

.footer__wrap:before {
  background-image: radial-gradient(circle at 100% 100%, #fff796, #b8dfd7 22%, #c4badb 46%, #f9d0d3 72%, #b3dcf6 94%);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .footer__wrap:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff796), color-stop(25%, #b8dfd7), color-stop(50%, #c4badb), color-stop(75%, #f9d0d3), to(#b3dcf6));
    background-image: linear-gradient(to bottom, #fff796 0%, #b8dfd7 25%, #c4badb 50%, #f9d0d3 75%, #b3dcf6 100%);
    bottom: 60px;
  }
}

.footer__wrap .footerLogo {
  -webkit-transition: all 0.3s;
  margin: 0 auto;
  position: relative;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.footer__wrap .footerLogo .footerLogo--link,
.footer__wrap .footerLogo .footerLogo--img {
  display: inline-block;
}

.footer__wrap .footerLogo .footerLogo--link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLogo .footerLogo--link {
    width: 318px;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLogo .footerLogo--link {
    width: 61.86666vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLogo .footerLogo--link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLogo .footerLogo--link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.footer__wrap .footerLogo .footerLogo--img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLogo .footerLogo--img {
    margin-top: -56px;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLogo .footerLogo--img {
    margin-top: -11.7vw;
  }
}

.footer__wrap .footerLinks {
  padding-top: 26px;
  position: relative;
}

.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;
  padding-bottom: 24px;
}

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

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerNav .footerNav__list {
    margin: 0 8px;
  }
}

.footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link {
  -webkit-transition: all 0.3s;
  color: #7280ab;
  display: block;
  font-family: 'Fredoka One';
  font-size: 14px;
  font-weight: 900;
  line-height: 3.54;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link:hover {
    color: #583791;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerNav .footerNav__list .footerNav__link:active {
    color: #583791;
  }
}

.footer__wrap .footerLinks .footerBtn {
  -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;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLinks .footerBtn {
    width: 432px;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn {
    width: calc(100% - 30px);
  }
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list {
  -webkit-transition: all 0.3s;
  border-radius: 23px;
  display: block;
  height: 46px;
  position: relative;
  transition: all 0.3s;
  width: 208px;
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list {
    width: calc((100% - 15px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list:first-of-type {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list:first-of-type {
    margin-right: 15px;
  }
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list:last-of-type {
  margin-top: 24px;
  width: 136px;
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list:last-of-type {
    margin-top: 16px;
    width: 36vw;
  }
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__bg {
  border-radius: 23px;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__bg:before, .footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__bg:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 24px;
  bottom: auto;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__bg:before {
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.22turn, #c4badb 0.41turn, #f9d0d3 0.57turn, #b3dcf6 0.82turn, #fff796);
  height: 100%;
  width: 100%;
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__bg:after {
  background-color: #fff;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__link {
  -webkit-transition: all 0.3s;
  border-radius: 23px;
  color: #7280ab;
  display: block;
  font-size: 12px;
  font-weight: 900;
  height: 100%;
  line-height: 46px;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__link {
    font-size: 11px;
  }
}

.footer__wrap .footerLinks .footerBtn .footerBtn__list .footerBtn__link.footerBtn__link--en {
  font-family: 'Fredoka One';
  font-weight: normal;
}

.footer__wrap .footerLinks .snsLists {
  margin: 40px auto 68px;
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .snsLists {
    margin: 44px 15px 60px;
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap .footerLinks .snsLists .snsList:not(:first-of-type) {
    margin-left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .footer__wrap .footerLinks .snsLists .snsList {
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 9px;
  }
}

.footer__wrap .footerLinks .snsLists .snsList svg path {
  fill: #7280ab;
}

.footer__wrap .footerLinks .snsLists .snsList .snsList--link:hover svg path, .footer__wrap .footerLinks .snsLists .snsList .snsList--link:active svg path {
  fill: #583791;
}

.footer__wrap #acommoncopy,
.footer__wrap #acmncopy {
  position: relative;
}

/*-----------------------------------------------------------------
 * page common parts                                             *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
*	01. title
*	02. notes(no contents)
*	03. navi & lists（第二階層indexでのカテゴリタブ、一覧リスト）
*	04. buttons（video用ボタン、矢印付き丸ボタン、青い長方形ボタン）
*	05. pagenation
*	06. post detail（記事本文装飾、最新記事一覧など）
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
01. title
----------------------------------------------------------------- */
/**
 * sub title
 */
.pageConts__subtitle {
  font-family: 'Fredoka One';
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  /* BEGIN LIVE詳細下部 最新記事一覧用 */
  /* END LIVE詳細下部 最新記事一覧用 */
}

.pageConts__subtitle.pageConts__subtitle--others {
  font-size: 24px;
  margin-bottom: 24px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .pageConts__subtitle.pageConts__subtitle--others {
    font-size: 22px;
  }
}

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

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

/* ----------------------------------------------------------------
03. navi & lists（第二階層indexでのカテゴリタブ、一覧リスト）
----------------------------------------------------------------- */
/**
 * navi
 */
/* menu */
@media screen and (min-width: 768px) {
  .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 {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
}

@media screen and (max-width: 767px) {
  .postCats .postCat__wrap {
    margin-top: 24px;
    overflow-x: scroll;
    width: calc(100% + 30px);
  }
}

@media screen and (min-width: 768px) {
  .postCats .postCat__wrap:not(:last-of-type) {
    margin-right: 32px;
  }
}

@media screen and (max-width: 767px) {
  .postCats .postCat__wrap:not(:last-of-type) {
    margin-top: 16px;
  }
}

.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: #9fa5d0;
  height: 8px;
  left: auto;
  top: calc(50% + 1px);
  transform: translateY(-50%) rotate(43deg);
  width: 2px;
}

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

@media screen and (min-width: 768px) {
  .postCats .postCat__lists.postCat__lists--anker .postCat__list:before, .postCats .postCat__lists.postCat__lists--anker .postCat__list:after {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.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__lists--anker .postCat__list:hover:before, .postCats .postCat__lists.postCat__lists--anker .postCat__list:hover:after, .postCats .postCat__lists.postCat__lists--anker .postCat__list:active:before, .postCats .postCat__lists.postCat__lists--anker .postCat__list:active:after {
  background-color: #583791;
}

.postCats .postCat__lists .postCat__list {
  font-family: 'Fredoka One';
  font-size: 14px;
  font-weight: bold;
  position: relative;
}

@media screen and (min-width: 768px) {
  .postCats .postCat__lists .postCat__list {
    line-height: 1.29;
  }
}

.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: #ccc;
  content: '';
  display: block;
  height: 12px;
  left: -13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.postCats .postCat__lists .postCat__list .postCat__link {
  color: #9fa5d0;
}

.postCats .postCat__lists .postCat__list .postCat__link:hover, .postCats .postCat__lists .postCat__list .postCat__link:active {
  color: #583791;
}

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

@media screen and (max-width: 767px) {
  .infoLists {
    margin-bottom: 32px;
    margin-top: 35px;
  }
}

@media screen and (min-width: 768px) {
  .infoLists.infoLists--index {
    margin-left: 84px;
    margin-top: 68px;
  }
}

@media screen and (max-width: 767px) {
  .infoLists.infoLists--index {
    margin-bottom: 0;
    margin-top: 66px;
  }
}

@media screen and (min-width: 768px) {
  .infoLists.infoLists--newest {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
}

@media screen and (max-width: 767px) {
  .infoLists.infoLists--newest {
    margin-bottom: 0;
  }
}

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

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

.infoLists .infoList:not(:last-of-type) {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .infoLists .infoList:not(:last-of-type) {
    margin-bottom: 16px;
  }
}

.infoLists .infoList .infoList__link {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  display: block;
  padding: 26px 32px 24px;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .infoLists .infoList .infoList__link {
    padding: 24px 30px;
  }
}

@media screen and (max-width: 320px) {
  .infoLists .infoList .infoList__link {
    padding: 18px 12px;
  }
}

@media screen and (max-width: 767px) {
  .infoLists .infoList .infoList__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .infoLists .infoList .infoList__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.infoLists .infoList .infoList__link:before, .infoLists .infoList .infoList__link:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 12px;
  bottom: auto;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.infoLists .infoList .infoList__link:before {
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.22turn, #c4badb 0.41turn, #f9d0d3 0.57turn, #b3dcf6 0.82turn, #fff796);
  height: calc(100% + 6px);
  width: calc(100% + 6px);
}

.infoLists .infoList .infoList__link:after {
  background-color: #fff;
  height: 100%;
  width: 100%;
}

.infoLists .infoList .infoList__link .infoList__icons {
  -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: 7px;
  /* BEGIN MEDIA用 */
  /* END MEDIA用 */
}

@media screen and (max-width: 767px) {
  .infoLists .infoList .infoList__link .infoList__icons {
    margin-bottom: 8px;
  }
}

.infoLists .infoList .infoList__link .infoList__icons.infoList__icons--livetour {
  position: relative;
  width: 100%;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon.infoList__icon--flex {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -10px;
  padding-right: 68px;
  width: 100%;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon.infoList__icon--flex .infoList__time {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .infoLists .infoList .infoList__link .infoList__icons .infoList__icon.infoList__icon--flex .infoList__time {
    font-size: 12px;
  }
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon.infoList__icon--abs {
  position: absolute;
  right: 0;
  top: -2px;
}

.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: #9499a9;
  border-radius: 6px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Fredoka One';
  font-size: 12px;
  height: 20px;
  justify-content: center;
  line-height: 1;
  margin-right: 8px;
  margin-top: 10px;
  width: 106px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__time {
  font-family: 'Fredoka One';
  font-size: 14px;
  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;
  display: inline-block;
  font-family: 'Fredoka One';
  font-size: 11px;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__new {
  background-color: #35d95c;
  color: #fff;
  width: 46px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__update {
  background-color: #35d95c;
  color: #fff;
  width: 67px;
}

.infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__update.infoList__update--purple {
  background-color: #c92bff;
}

.infoLists .infoList .infoList__link .infoList__text {
  font-size: 14px;
  line-height: 1.71;
}

/* ----------------------------------------------------------------
04. buttons
----------------------------------------------------------------- */
/**
 * view all button
 */
.viewallBtn__link {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  color: #9fa5d0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Fredoka One';
  font-size: 14px;
  height: 48px;
  justify-content: center;
  line-height: 1.71;
  position: relative;
  transition: all 0.3s;
  width: 126px;
}

@media screen and (max-width: 767px) {
  .viewallBtn__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .viewallBtn__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.viewallBtn__link.viewallBtn__link--long {
  width: 194px;
}

.viewallBtn__link.viewallBtn__link--green, .viewallBtn__link.viewallBtn__link--purple, .viewallBtn__link.viewallBtn__link--pink, .viewallBtn__link.viewallBtn__link--blue {
  color: #fff;
}

.viewallBtn__link.viewallBtn__link--green .viewallBtn__bg:before, .viewallBtn__link.viewallBtn__link--purple .viewallBtn__bg:before, .viewallBtn__link.viewallBtn__link--pink .viewallBtn__bg:before, .viewallBtn__link.viewallBtn__link--blue .viewallBtn__bg:before {
  background-color: #fff;
  background-image: none;
}

.viewallBtn__link.viewallBtn__link--green .viewallBtn__bg:after, .viewallBtn__link.viewallBtn__link--purple .viewallBtn__bg:after, .viewallBtn__link.viewallBtn__link--pink .viewallBtn__bg:after, .viewallBtn__link.viewallBtn__link--blue .viewallBtn__bg:after {
  background-image: none;
}

.viewallBtn__link.viewallBtn__link--green .viewallBtn__text {
  text-shadow: 0 0 16px rgba(109, 86, 6, 0.4);
}

.viewallBtn__link.viewallBtn__link--green .viewallBtn__bg:before {
  opacity: 0.5;
}

.viewallBtn__link.viewallBtn__link--green .viewallBtn__bg:after {
  background-color: #aee4ae;
}

@media screen and (max-width: 767px) {
  .viewallBtn__link.viewallBtn__link--green .viewallBtn__bg:after {
    background-color: #b6e49a;
  }
}

.viewallBtn__link.viewallBtn__link--purple .viewallBtn__bg:before {
  opacity: 0.5;
}

.viewallBtn__link.viewallBtn__link--purple .viewallBtn__bg:after {
  background-color: rgba(196, 168, 223, 0.9);
}

@media screen and (max-width: 767px) {
  .viewallBtn__link.viewallBtn__link--purple .viewallBtn__bg:after {
    background-color: rgba(211, 167, 216, 0.9);
  }
}

.viewallBtn__link.viewallBtn__link--pink .viewallBtn__bg:before {
  opacity: 0.5;
}

.viewallBtn__link.viewallBtn__link--pink .viewallBtn__bg:after {
  background-color: rgba(244, 184, 188, 0.95);
}

@media screen and (max-width: 767px) {
  .viewallBtn__link.viewallBtn__link--pink .viewallBtn__bg:after {
    background-color: rgba(247, 182, 198, 0.9);
  }
}

.viewallBtn__link.viewallBtn__link--blue .viewallBtn__bg:before {
  opacity: 0.4;
}

.viewallBtn__link.viewallBtn__link--blue .viewallBtn__bg:after {
  background-color: rgba(143, 217, 247, 0.95);
}

@media screen and (max-width: 767px) {
  .viewallBtn__link.viewallBtn__link--blue .viewallBtn__bg:after {
    background-color: rgba(143, 218, 247, 0.95);
  }
}

.viewallBtn__link .viewallBtn__text {
  display: block;
  height: 100%;
  letter-spacing: 1px;
  line-height: 48px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.viewallBtn__link .viewallBtn__bg {
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.viewallBtn__link .viewallBtn__bg:before, .viewallBtn__link .viewallBtn__bg:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 24px;
  bottom: auto;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.viewallBtn__link .viewallBtn__bg:before {
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.23turn, #c4badb 0.41turn, #f9d0d3 0.56turn, #b3dcf6 0.8turn, #fff796);
  height: 100%;
  opacity: 0.8;
  width: 100%;
}

.viewallBtn__link .viewallBtn__bg:after {
  background-color: #fff;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
}

/**
 * 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:hover, .arrowBtn__link:active {
  cursor: pointer;
}

.arrowBtn__link:hover .arrowBtn__icon, .arrowBtn__link:active .arrowBtn__icon {
  background-image: url("../img/common/icon_linkbtn-hover.svg");
}

.arrowBtn__link:hover .arrowBtn__icon:before, .arrowBtn__link:active .arrowBtn__icon:before {
  -webkit-animation: iconBtn-right 0.5s ease-out 1 0.3s;
  animation: iconBtn-right 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-right-hover.svg");
}

.arrowBtn__link:hover .arrowBtn__text, .arrowBtn__link:active .arrowBtn__text {
  color: #583791;
}

.arrowBtn__link .arrowBtn__icon {
  background: url("../img/common/icon_linkbtn.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  height: 34px;
  position: relative;
  width: 32px;
}

@media screen and (min-width: 768px) {
  .arrowBtn__link .arrowBtn__icon {
    -webkit-transition: background-image 0.75s;
    transition: background-image 0.75s;
  }
}

.arrowBtn__link .arrowBtn__icon:before {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  background: url("../img/common/icon_arrow-right.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 12px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  width: 9px;
}

@media screen and (min-width: 768px) {
  .arrowBtn__link .arrowBtn__icon:before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.arrowBtn__link .arrowBtn__text {
  color: #7a7a93;
  font-family: 'Fredoka One';
  font-size: 16px;
  line-height: 1.71;
  margin-left: 11px;
}

/* 矢印左向き（back button） */
.arrowBtn__link.arrowBtn__link--left .arrowBtn__icon:before {
  background-image: url("../img/common/icon_arrow-left.svg");
}

.arrowBtn__link.arrowBtn__link--left:hover .arrowBtn__icon:before, .arrowBtn__link.arrowBtn__link--left:active .arrowBtn__icon:before {
  -webkit-animation: iconBtn-left 0.5s ease-out 1 0.3s;
  animation: iconBtn-left 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-left-hover.svg");
}

/* 矢印下向き */
.arrowBtn__link.arrowBtn__link--bottom .arrowBtn__icon:before {
  background-image: url("../img/common/icon_arrow-bottom.svg");
  height: 9px;
  width: 12px;
}

.arrowBtn__link.arrowBtn__link--bottom:hover .arrowBtn__icon:before, .arrowBtn__link.arrowBtn__link--bottom:active .arrowBtn__icon:before {
  -webkit-animation: iconBtn-bottom 0.5s ease-out 1 0.3s;
  animation: iconBtn-bottom 0.5s ease-out 1 0.3s;
  background-image: url("../img/common/icon_arrow-bottom-hover.svg");
}

/**
 * back button マージン調整
 */
@media screen and (min-width: 768px) {
  .pageBack__Wrap {
    margin-bottom: -56px;
  }
}

@media screen and (max-width: 767px) {
  .pageBack__Wrap {
    margin-bottom: -54px;
  }
}

/**
 * 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-radius: 23px;
  height: 46px;
  position: relative;
  transition: all 0.3s;
  width: 128px;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .btnLinks .btnLink:hover {
    cursor: pointer;
  }
  .btnLinks .btnLink:hover:after {
    opacity: 1;
  }
  .btnLinks .btnLink:hover .btnLink--link {
    -webkit-box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.3s;
    box-shadow: none;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .btnLinks .btnLink:active:after {
    opacity: 1;
  }
  .btnLinks .btnLink:active .btnLink--link {
    -webkit-box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.1s;
    box-shadow: none;
    transition: -webkit-box-shadow 0.1s;
    transition: box-shadow 0.1s;
    transition: box-shadow 0.1s, -webkit-box-shadow 0.1s;
  }
}

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

.btnLinks .btnLink:before, .btnLinks .btnLink:after {
  border-radius: 23px;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .btnLinks .btnLink:before, .btnLinks .btnLink:after {
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
  }
}

.btnLinks .btnLink:before {
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
}

.btnLinks .btnLink:after {
  background-image: conic-gradient(from 0.45turn, #583791, #583791 0.31turn, #583791 0.69turn, #583791), -webkit-gradient(linear, left top, left bottom, from(#583791), to(#583791));
  background-image: conic-gradient(from 0.45turn, #583791, #583791 0.31turn, #583791 0.69turn, #583791), linear-gradient(to bottom, #583791, #583791);
  opacity: 0;
}

.btnLinks .btnLink .btnLink--link {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  align-items: center;
  border-radius: 23px;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Fredoka One';
  height: 100%;
  justify-content: center;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

@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) {
  /* IE10,11 */
  .btnLinks .btnLink:before {
    background-color: #e13ee1;
    background-image: none;
  }
  .btnLinks .btnLink:after {
    background-color: #583791;
    background-image: none;
  }
}

/* BEGIN バリエーション: discography（詳細と新人用）＆ discography（一覧用）＆ */
@media screen and (max-width: 767px) {
  .btnLinks.btnLinks--disc .btnLink:not(:first-of-type) {
    margin-left: 16px;
  }
}

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

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

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

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

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

@media screen and (min-width: 768px) {
  .btnLinks.btnLinks--discFirst {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .btnLinks.btnLinks--discFirst {
    border-top: 1px solid #e2e2e2;
    margin-top: 16px;
    padding-top: 16px;
  }
}

.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 */
@media screen and (min-width: 768px) {
  .btnLinks.btnLinks--top {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

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

@media screen and (min-width: 768px) {
  .btnLinks.btnLinks--goods {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

/* END バリエーション: TOPとGOODS */
/* BEGIN safari hack */
@media screen and (min-width: 768px) {
  _::-webkit-full-page-media,
  _:future,
  :root .btnLinks--discThumb .btnLink .btnLink--link {
    font-size: 1px;
  }
}

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

@media screen and (max-width: 767px) {
  .pagingWrap {
    margin-top: 38px;
  }
}

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

@media screen and (min-width: 768px) {
  .pagingWrap .paging__prev {
    margin-right: 35px;
  }
}

.pagingWrap .paging__prev + .paging__lists {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .pagingWrap .paging__next {
    margin-left: 35px;
  }
}

.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;
  margin-left: calc(32px + 35px);
}

@media screen and (max-width: 767px) {
  .pagingWrap .paging__lists {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 32px;
    width: calc(100% - 64px);
  }
}

.pagingWrap .paging__lists .paging__list {
  font-family: 'Fredoka One';
  font-size: 16px;
  line-height: 1.63;
}

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

@media screen and (max-width: 767px) {
  .pagingWrap .paging__lists .paging__list:not(:first-of-type) {
    margin-left: 32px;
  }
}

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

.pagingWrap .paging__lists .paging__list .paging__list--link {
  color: #9fa5d0;
}

.pagingWrap .paging__lists .paging__list .paging__list--link:hover, .pagingWrap .paging__lists .paging__list .paging__list--link:active {
  color: #583791;
}

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

@media screen and (max-width: 767px) {
  .post__detailThumb {
    margin-bottom: -40px;
    margin-left: -15px;
    margin-top: 61px;
    max-height: calc(100vw - 30px);
    width: calc(100% + 30px);
  }
}

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

@media screen and (max-width: 767px) {
  .post__detailThumb .post__detailThumbImg {
    max-height: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
}

/* title */
@media screen and (min-width: 768px) {
  .postTitle,
  .postDetail__data {
    margin-left: 116px;
    margin-right: 116px;
  }
}

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

@media screen and (max-width: 767px) {
  .postTitle {
    font-size: 16px;
    margin-bottom: 21px;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .postDetail__data {
    margin-top: 64px;
  }
}

.postDetail__data .postDetail__date {
  font-family: 'Fredoka One';
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .postDetail__data .postDetail__date {
    font-size: 16px;
    line-height: 1.25;
  }
}

.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: #9499a9;
  border: 1px solid #9499a9;
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 80px;
}

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

.postDetail__data .postDetail__category .postDetail__category--cat.category--onair {
  background-color: #fff;
  border-color: #9499a9;
  border-width: 2px;
  color: #9499a9;
}

.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;
}

@media screen and (max-width: 767px) {
  .postDetail__data .postDetail__snsWrap {
    left: 0;
    padding-right: 15px;
    position: absolute;
    top: 143px;
    width: 100%;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .post__detailPost {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
}

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

@media screen and (max-width: 767px) {
  .post__detailPost a:active img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .post__detailPost a:hover {
    cursor: pointer;
  }
  .post__detailPost a:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (max-width: 767px) {
  .post__detailPost a:active {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .post__detailPost a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

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

@media screen and (max-width: 767px) {
  .post__detailPost img {
    max-height: calc(100vw - 60px) !important;
    max-width: 100%;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .post__detailPost iframe {
    height: calc((100vw - 60px) * 0.5625);
    width: 100%;
  }
}

/**
 * recently posts
 */
.otherPosts {
  background-color: #f5f5f5;
  padding: 60px 0 120px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .otherPosts {
    padding-bottom: 80px;
  }
}

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

@media screen and (max-width: 767px) {
  .otherPosts:before, .otherPosts:after {
    width: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .otherPosts:before {
    left: -30px;
  }
}

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

@media screen and (max-width: 767px) {
  .otherPosts:after {
    right: -30px;
  }
}

.otherPosts .otherPosts__title {
  font-family: 'Fredoka One';
  font-size: 32px;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .otherPosts .otherPosts__title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 36px;
  }
}

@media screen and (min-width: 768px) {
  .otherListsWrap {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
}

/*--------------------------------------
04. modules: top
--------------------------------------*/
/**
 * common
 */
/* BEGIN title fade in effext */
@media screen and (max-width: 767px) {
  .topConts__titleWrap {
    text-align: center;
  }
}

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

@media screen and (min-width: 768px) {
  .topConts__titleWrap .topConts__titleFade.js-toggleSecTitle {
    margin-left: -6px;
  }
}

.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: 'Fredoka One';
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.2;
  padding-right: 10px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
  .topConts__title {
    padding-left: 6px;
  }
}

@media screen and (max-width: 767px) {
  .topConts__title {
    font-size: 36px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-top: 3px;
    text-align: center;
  }
}

.topConts__title.topConts__title--rainbow {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#b3dcf6), color-stop(25%, #f9d0d3), color-stop(50%, #c4badb), color-stop(75%, #b8dfd7), to(#fff796));
  background-image: linear-gradient(to right, #b3dcf6 0%, #f9d0d3 25%, #c4badb 50%, #b8dfd7 75%, #fff796 100%);
  color: transparent;
  text-shadow: none;
}

@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) {
  /* IE10,11 */
  .topConts__title.topConts__title--rainbow {
    background: transparent;
    background-image: none;
    color: #666;
  }
}

/* subtitle */
.topConts__subtitle {
  color: #fff;
  font-family: 'Fredoka One';
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 768px) {
  .topConts__subtitle {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .topConts__subtitle {
    font-size: 28px;
  }
}

.topConts__subtitle.topConts__subtitle--video {
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .topConts__subtitle.topConts__subtitle--video {
    margin-left: 52px;
  }
}

@media screen and (max-width: 767px) {
  .topConts__subtitle.topConts__subtitle--video {
    margin-left: 15px;
  }
}

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

@media screen and (min-width: 768px) {
  .topContsWrap {
    padding: 148px 0 120px;
  }
}

@media screen and (max-width: 767px) {
  .topContsWrap {
    padding: 88px 0 60px;
  }
}

.topContsWrap:after {
  background-position: 0 bottom;
  background-repeat: repeat-x;
  background-size: auto 100%;
  bottom: -27px;
  content: '';
  display: block;
  height: 75px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .topContsWrap:after {
    background-position: center bottom;
  }
}

.topConts {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .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;
    max-width: 872px;
  }
  .topConts--flex .topConts__titleArea {
    width: calc(100% - 620px);
  }
  .topConts--flex .topConts__titleArea .viewallBtn__Wrap {
    margin-top: 32px;
  }
  .topConts--flex .infoLists {
    width: 620px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--flex {
    padding-bottom: 56px;
  }
  .topConts--flex .topConts__titleArea .viewallBtn__Wrap {
    -webkit-transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}

/**
 * 各種要素背景
 */
.topContsWrap--news {
  background-image: conic-gradient(from 0.33turn, #c8dfb8, #c8dfb8 0.12turn, #b8dfd7 0.43turn, #b8d6df 0.76turn, #c8dfb8), -webkit-gradient(linear, left top, left bottom, from(#b8dfd7), to(#b8dfd7));
  background-image: conic-gradient(from 0.33turn, #c8dfb8, #c8dfb8 0.12turn, #b8dfd7 0.43turn, #b8d6df 0.76turn, #c8dfb8), linear-gradient(to bottom, #b8dfd7, #b8dfd7);
}

@media screen and (min-width: 768px) {
  .topContsWrap--news {
    padding-top: 148px;
  }
}

@media screen and (max-width: 767px) {
  .topContsWrap--news {
    padding-top: 88px;
  }
}

.topContsWrap--news:before {
  background-image: url("../img/top/bg_top_news-top.png");
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: auto 100%;
  bottom: auto;
  content: '';
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  top: -1px;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .topContsWrap--news:before {
    background-position: center bottom;
  }
}

.topContsWrap--news:after {
  background-image: url("../img/top/bg_top_livetour.png");
}

.topContsWrap--livetour {
  background-image: conic-gradient(from 0.39turn, #dbbad0, #c4badb 0.32turn, #b8c8e6 0.75turn, #dbbad0), -webkit-gradient(linear, left top, left bottom, from(#c4badb), to(#c4badb));
  background-image: conic-gradient(from 0.39turn, #dbbad0, #c4badb 0.32turn, #b8c8e6 0.75turn, #dbbad0), linear-gradient(to bottom, #c4badb, #c4badb);
}

@media screen and (min-width: 768px) {
  .topContsWrap--livetour {
    padding-top: 148px;
  }
}

@media screen and (max-width: 767px) {
  .topContsWrap--livetour {
    padding-bottom: 58px;
    padding-top: 88px;
  }
}

.topContsWrap--livetour:after {
  background-image: url("../img/top/bg_top_media.png");
}

.topContsWrap--media {
  background-image: conic-gradient(from 0.39turn, #dbbad0, #c4badb 0.32turn, #b8c8e6 0.75turn, #dbbad0), -webkit-gradient(linear, left top, left bottom, from(#c4badb), to(#c4badb));
  background-image: conic-gradient(from 0.39turn, #dbbad0, #c4badb 0.32turn, #b8c8e6 0.75turn, #dbbad0), linear-gradient(to bottom, #c4badb, #c4badb);
}

.topContsWrap--media:after {
  background-image: url("../img/top/bg_top_media.png");
}

.topContsWrap--video {
  background-image: conic-gradient(from 0.3turn, #f4cdc3, #ecc9e1 0.19turn, #f9d0da 0.41turn, #f4d2c3 0.63turn, #f3d2bf 0.88turn, #f4cdc3), -webkit-gradient(linear, left top, left bottom, from(#f9d0d3), to(#f9d0d3));
  background-image: conic-gradient(from 0.3turn, #f4cdc3, #ecc9e1 0.19turn, #f9d0da 0.41turn, #f4d2c3 0.63turn, #f3d2bf 0.88turn, #f4cdc3), linear-gradient(to bottom, #f9d0d3, #f9d0d3);
  padding-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .topContsWrap--video {
    padding-bottom: 136px;
  }
}

/**
 * icons
 */
@media screen and (min-width: 768px) {
  .top__icons {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top__icons {
    margin-bottom: 70px;
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .top__icons .snsLists .snsList {
    margin-left: 12px;
    margin-right: 12px;
  }
}

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

@media screen and (max-width: 767px) {
  .topMv__wrap {
    margin-bottom: 24px;
  }
}

.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: #eee;
  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 */
}

@media screen and (max-width: 767px) {
  .topSlide__lists .topSlide__nolink,
  .topSlide__lists .topSlide__link {
    width: calc(100% - 16px);
  }
}

@media screen and (max-width: 767px) {
  .topSlide__lists .topSlide__nolink:active,
  .topSlide__lists .topSlide__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .topSlide__lists .topSlide__nolink:hover,
  .topSlide__lists .topSlide__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.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-radius: 12px;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@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;
  }
}

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

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

@media screen and (max-width: 767px) {
  .topSlide__lists .slick-dots {
    bottom: -18px;
  }
}

/**
 * new release
 */
.topConts--newrelease {
  /* BEGIN img */
  /* END img */
  /* BEGIN data */
  /* END data */
}

@media screen and (min-width: 768px) {
  .topConts--newrelease {
    margin-bottom: 136px;
    margin-top: 120px;
    max-width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease {
    margin-bottom: 60px;
    width: 100%;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--newrelease .topConts__titleWrap {
    margin-bottom: 40px;
  }
}

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

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbsWrap {
    height: 420px;
    overflow: hidden;
    padding-left: 52%;
    padding-top: 16px;
    width: calc((100vw - 872px) / 2 + 872px);
  }
  .topConts--newrelease .topRelease__thumbsWrap:before {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(872px * 0.25);
    z-index: 1;
  }
}

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

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbs .slick-list {
    overflow: visible;
    padding-right: calc((100vw - 808px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-list {
    padding-right: 12vw;
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbs .is-hide .topRelease__thumb .topRelease__thumb--link {
    opacity: 0.2;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-dotted.slick-slider {
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-dots {
    bottom: -10px;
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbs .slick-dots {
    display: none;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb {
    margin-left: 0;
  }
}

.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 */
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb--link {
    margin-left: 12vw;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .slick-current .topRelease__thumb .topRelease__thumb--link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .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 .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;
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb {
    margin: 5px 0 12px -5.8vw;
  }
}

.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 画像スライド表示用 */
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb--link:active {
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb--link:hover {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb--link {
    -webkit-transform: scale(0.824);
    transform: scale(0.824);
  }
}

@media screen and (max-width: 767px) {
  .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__thumbs .topRelease__thumb .topRelease__thumb--link:after {
  background: #eee;
  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));
  border-radius: 12px;
  display: inline-block;
  filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.3));
  height: 100%;
  object-fit: contain;
  opacity: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__thumbs .topRelease__thumb .topRelease__thumb--img {
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    border-radius: 9px;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  }
}

@media all and (-ms-high-contrast: 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;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap {
    margin: 12px 30px 0;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .slick-list {
    overflow: visible;
  }
}

.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: #9fa5d0;
  content: counter(numCount);
  display: block;
  font-family: 'Fredoka One';
  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: #583791;
}

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

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

.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 */
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list {
    width: calc(100% - 60px);
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list {
    padding-bottom: 20px;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__data--link:active {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__data--link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__data--link {
    -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 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead {
    margin-top: 98px;
  }
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead .topReleaseBtn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__dataHead .topReleaseBtn {
    -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 {
  display: block;
  font-family: 'Fredoka One';
  font-size: 14px;
  line-height: 1.71;
}

@media screen and (min-width: 768px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list--date {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) {
  .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: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 24px;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .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 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 24px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .topRelease__wrap .topRelease__lists .topRelease__list .topRelease__list--text {
    margin-bottom: 16px;
    max-height: 70px;
    width: calc(100vw - 60px);
  }
}

@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;
  }
}

@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;
}

@media screen and (max-width: 767px) {
  .topConts--newrelease .viewallBtn__Wrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--news {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--news .infoLists .infoList .infoList__link .infoList__icons {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

/**
 * tour / live
 */
@media screen and (min-width: 768px) {
  .topConts--livetour {
    max-width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--livetour {
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .topConts--livetour .topConts__titleArea .topConts__title {
    font-size: 38px;
    line-height: 1.58;
  }
}

@media screen and (max-width: 767px) {
  .topConts--livetour .infoLists {
    margin-bottom: 0;
  }
  .topConts--livetour .infoLists .infoList .infoList__link .infoList__icons .infoList__icon .infoList__time .infoList__time--week {
    margin-left: 0;
  }
}

/**
 * media
 */
@media screen and (max-width: 767px) {
  .topConts--media {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/**
 * video
 */
@media screen and (max-width: 767px) {
  .topConts--video {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media screen and (min-width: 768px) {
  .topConts--video {
    width: 808px;
  }
}

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

@media screen and (min-width: 768px) {
  .topConts--video .topConts__titleWrap {
    margin-left: -32px;
  }
}

.topConts--video .topVideoAreaWrap:not(:first-of-type) {
  margin-top: 49px;
}

@media screen and (max-width: 767px) {
  .topConts--video .topVideoAreaWrap:not(:first-of-type) {
    margin-top: 40px;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--video .topVideoArea {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .topConts--video .topVideoArea:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .topConts--video .topVideoArea:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

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

.topConts--video .topVideo__img {
  width: 100%;
}

.topConts--video .topVideo__name {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 24px;
  margin-top: 16px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .topConts--video .topVideo__name {
    margin-top: 13px;
  }
}

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

@media screen and (max-width: 767px) {
  .topConts--video .viewallBtn__Wrap {
    margin-top: 32px;
  }
}

.topConts--video .viewallBtn__Wrap .viewallBtn__link {
  margin-left: auto;
  margin-right: auto;
}

/* slide videos */
@media screen and (max-width: 767px) {
  .topConts--videoSlide .topConts__titleWrap {
    margin-bottom: 40px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .topConts--videoSlide .topConts__titleWrap {
    margin: 0 auto 65px;
    width: 872px;
  }
}

@media screen and (min-width: 768px) {
  .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 .topSlide__lists .topSlide__nolink,
.topConts--videoSlide .topSlide__lists .topSlide__link {
  height: calc((56vw - 32px) / 16 * 9);
}

@media screen and (max-width: 767px) {
  .topConts--videoSlide .topSlide__lists .topSlide__nolink,
  .topConts--videoSlide .topSlide__lists .topSlide__link {
    height: calc((68.4vw - 16px) / 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);
}

@media screen and (max-width: 767px) {
  .topConts--videoSlide .topVideo__name {
    width: calc(100% - 16px);
  }
}

@media screen and (min-width: 768px) {
  .topConts--videoSlide .viewallBtn__Wrap {
    margin: 10px auto 0;
    width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .topConts--videoSlide .viewallBtn__Wrap {
    margin-top: 32px;
    text-align: center;
  }
}

/**
 * sns
 */
@media screen and (max-width: 767px) {
  .topConts--sns {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .topConts--sns {
    max-width: 840px;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .topConts--sns .topSns__wrap .topConts__titleWrap {
    width: calc(100% - 472px);
  }
  .topConts--sns .topSns__wrap .topConts__snsBox {
    height: 620px;
    width: 472px;
  }
  .topConts--sns .topSns__wrap .viewallBtn__Wrap {
    bottom: 208px;
    left: 0;
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  .topConts--sns .topSns__wrap .topConts__titleWrap {
    margin: 0 auto 32px;
  }
  .topConts--sns .topSns__wrap .viewallBtn__Wrap {
    margin: 32px auto 0;
  }
}

.topConts--sns .topConts__snsBox {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  height: 360px;
  padding: 10px;
  position: relative;
  width: 100%;
}

.topConts--sns .topConts__snsBox:before, .topConts--sns .topConts__snsBox:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 12px;
  bottom: auto;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.topConts--sns .topConts__snsBox:before {
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.22turn, #c4badb 0.41turn, #f9d0d3 0.57turn, #b3dcf6 0.82turn, #fff796);
  height: 100%;
  width: 100%;
}

.topConts--sns .topConts__snsBox:after {
  background-color: #fff;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
}

.topConts--sns .topConts__sns {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  height: 100%;
  overflow-y: scroll;
  position: relative;
  width: 100%;
  z-index: 1;
}

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

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

/**
 * twitter retweeted
*/
.topConts--tweet {
  margin-bottom: 56px;
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .topConts--tweet {
    margin-bottom: 36px;
    margin-top: 60px;
  }
}

.retweetListTitle {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .retweetListTitle {
    max-width: 840px;
  }
}

@media screen and (max-width: 767px) {
  .retweetListTitle {
    margin-left: auto;
    margin-right: auto;
    width: 288px;
  }
}

.retweetListTitle .retweetListTitle__img {
  -webkit-filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.3));
  display: block;
  filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.3));
  height: auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .retweetListTitle .retweetListTitle__img {
    width: 400px;
  }
}

/* retweeted slide */
.swiper-container {
  padding-bottom: 24px;
  padding-top: 24px;
}

.swiper-wrapper {
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  /* BEGIN コンテンツ中身 */
  /* END コンテンツ中身 */
}

.swiper-wrapper .swiper-slide {
  height: 325px;
  width: 304px;
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .swiper-slide {
    height: 72.26vw;
    width: 68vw;
  }
}

.swiper-wrapper .retweetList__a {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: block;
  height: 325px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .retweetList__a {
    height: 100%;
  }
}

.swiper-wrapper .retweetList__a.tws_hazuki:hover {
  background: #fff796;
}

.swiper-wrapper .retweetList__a.tws_miri:hover {
  background: #c4badb;
}

.swiper-wrapper .retweetList__a.tws_nanase:hover {
  background: #b8dfd7;
}

.swiper-wrapper .retweetList__a.tws_ruka:hover {
  background: #f9d0d3;
}

.swiper-wrapper .retweetList__a.tws_ririka:hover {
  background: #b3dcf6;
}

.swiper-wrapper .retweetList__dl {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .retweetList__dl {
    height: calc(100% - 49.6vw);
    padding: 20px;
  }
}

.swiper-wrapper .retweetList__dl .retweetList__dt {
  width: 56px;
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .retweetList__dl .retweetList__dt {
    width: 45px;
  }
}

.swiper-wrapper .retweetList__dl .retweetList__dt .retweetList__img {
  border-radius: 28px;
  display: block;
  width: 100%;
}

.swiper-wrapper .retweetList__dl .retweetList__dd {
  width: calc(100% - 56px - 12px);
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .retweetList__dl .retweetList__dd {
    width: calc(100% - 45px - 10px);
  }
}

.swiper-wrapper .retweetList__dl .retweetList__dd .retweetList__mark {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  line-height: 1.71;
}

.swiper-wrapper .retweetList__dl .retweetList__dd .retweetList__span {
  color: #aaa;
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-top: 1px;
}

.swiper-wrapper .retweetList__p {
  height: 221px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .swiper-wrapper .retweetList__p {
    height: 49.6vw;
  }
}

.swiper-wrapper .retweetList__p .retweetList__img {
  -o-object-fit: cover;
  -o-object-position: 50% 0;
  border-radius: 0 0 12px 12px;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: 50% 0;
  position: absolute;
  width: 100%;
}

/**
 * twitter follower
 */
.topConts--follower {
  text-align: center;
}

.followerTitleWrap {
  -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;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .followerTitleWrap {
    margin-bottom: 24px;
  }
}

.followerTitleWrap .followerTitle {
  color: #219cd8;
  font-family: 'Fredoka One';
  font-size: 20px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .followerTitleWrap .followerTitle {
    font-size: 16px;
  }
}

.followerTitleWrap .followerTitle:before, .followerTitleWrap .followerTitle:after {
  background-color: #219cd8;
  border-radius: 2px;
  bottom: auto;
  content: '';
  display: block;
  height: 11px;
  left: auto;
  position: absolute;
  right: auto;
  top: 50%;
  width: 4px;
}

@media screen and (min-width: 768px) {
  .followerTitleWrap .followerTitle:before, .followerTitleWrap .followerTitle:after {
    height: 15px;
  }
}

.followerTitleWrap .followerTitle:before {
  -webkit-transform: rotate(-25deg) translateY(-50%);
  left: 0;
  transform: rotate(-25deg) translateY(-50%);
}

.followerTitleWrap .followerTitle:after {
  -webkit-transform: rotate(25deg) translateY(-50%);
  right: 0;
  transform: rotate(25deg) translateY(-50%);
}

.twitterfollowers {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
  align-items: center;
  background-color: #fff;
  border-radius: 49px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  height: 98px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 52px;
  padding-right: 52px;
  width: 486px;
}

@media screen and (max-width: 767px) {
  .twitterfollowers {
    border-radius: 40px;
    height: 80px;
    padding-left: 40px;
    padding-right: 40px;
    width: calc(100% - 30px);
  }
}

.twitterfollowers .twitterfollowers__list.twitterfollowers__list--text {
  color: #aaa;
  font-family: 'Fredoka One';
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .twitterfollowers .twitterfollowers__list.twitterfollowers__list--text {
    font-size: 14px;
  }
}

.twitterfollowers .twitterfollowers__list.twitterfollowers__list--num {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#b3dcf6), color-stop(24%, #f9d0d3), color-stop(50%, #c4badb), color-stop(77%, #b8dfd7), to(#fff796));
  background-image: linear-gradient(to right, #b3dcf6 0%, #f9d0d3 24%, #c4badb 50%, #b8dfd7 77%, #fff796 100%);
  color: transparent;
  font-family: 'Fredoka One';
  font-size: 48px;
}

@media screen and (max-width: 767px) {
  .twitterfollowers .twitterfollowers__list.twitterfollowers__list--num {
    font-size: 32px;
  }
}

@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) {
  /* IE10,11 */
  .twitterfollowers .twitterfollowers__list.twitterfollowers__list--num {
    background: transparent;
    background-image: none;
    color: #666;
  }
}

/*--------------------------------------
04. modules: news
--------------------------------------*/
/**
 * common
 */
@media screen and (min-width: 768px) {
  .pageConts--news {
    margin: 0 auto;
    width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--news {
    margin: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--news .otherPosts {
    margin: 64px auto -120px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--news .otherPosts {
    margin-bottom: -98px;
  }
}

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

@media screen and (min-width: 768px) {
  .pageConts--news .pageBack__Wrap {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--news .pageBack__Wrap {
    margin-bottom: 44px;
    margin-top: 64px;
  }
}

/*--------------------------------------
04. modules: profile
--------------------------------------*/
/**
 * common
 */
@media screen and (min-width: 768px) {
  .pageConts--profile {
    margin: 0 auto 75px;
    width: 976px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile {
    margin: 0 30px 14.93vw;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profile .pageTitle__wrap {
    margin-left: 50px;
  }
}

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

@media screen and (min-width: 768px) {
  .pageConts--profdetail {
    width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail {
    width: calc(100% - 60px);
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profdetail .pageTitle {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .pageTitle {
    margin-bottom: 56px;
    margin-left: -2px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap {
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap {
    margin-top: 58px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--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 .prof__groupWrap.prof__groupWrap--horizontal .prof__mainImg--wrap {
  width: 472px;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__mainImg--wrap {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    margin: 0;
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__mainImg--wrap {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__groupdataWrap {
    width: calc(100% - 502px);
  }
}

.pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__groupdataWrap .prof__groupName {
  color: #000;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__groupdataWrap .prof__groupName {
    text-align: left;
  }
}

.pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__groupdataWrap .prof__groupDisc {
  width: auto;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap.prof__groupWrap--horizontal .prof__groupdataWrap .snsLists {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.pageConts--profile .prof__groupWrap .prof__mainImg--wrap {
  font-size: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap .prof__mainImg--wrap {
    margin: 0 auto 40px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap .prof__mainImg--wrap {
    margin-bottom: 20px;
    margin-left: -30px;
    width: calc(100% + 60px);
  }
}

.pageConts--profile .prof__groupWrap .prof__mainImg--wrap .prof__mainImg--img {
  height: auto;
  width: 100%;
}

.pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupName {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 23px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupName {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

.pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupFurigana {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.71;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupFurigana {
    margin-top: -20px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupFurigana {
    margin-top: -16px;
    text-align: center;
  }
}

.pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupDisc {
  font-size: 14px;
  line-height: 1.71;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .prof__groupDisc {
    margin: 0 auto;
    width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .snsLists {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .snsLists {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .snsLists .snsList:not(:first-of-type) {
    margin-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__groupWrap .prof__groupdataWrap .snsLists .snsList {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 8px;
  }
}

.pageConts--profile .prof__memberNotes {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
  color: transparent;
  font-family: 'Fredoka One';
  font-size: 30px;
  line-height: 1.47;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .pageConts--profile .prof__memberNotes {
    letter-spacing: 2.13px;
    margin-left: 50px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profile .prof__memberNotes {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 28px;
    margin-top: 64px;
    text-align: center;
  }
}

/**
 * member lists
 */
.prof__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;
}

@media screen and (min-width: 768px) {
  .prof__memberLists {
    margin-left: auto;
    margin-right: auto;
    max-width: 976px;
  }
}

@media screen and (min-width: 768px) {
  .prof__memberLists .prof__memberList {
    width: 220px;
  }
  .prof__memberLists .prof__memberList:not(:nth-child(4n + 1)) {
    margin-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .prof__memberLists .prof__memberList {
    width: calc((100% - 15px)/2);
  }
  .prof__memberLists .prof__memberList:nth-child(n + 3) {
    margin-top: 24px;
  }
  .prof__memberLists .prof__memberList:nth-child(even) {
    margin-left: 15px;
  }
}

.prof__memberLists .prof__memberList .memberList__link {
  display: block;
  /* hover effect */
  /* text hover */
  /* text hover */
}

@media screen and (max-width: 767px) {
  .prof__memberLists .prof__memberList .memberList__link:active .memberList__img--img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .prof__memberLists .prof__memberList .memberList__link:hover {
    cursor: pointer;
  }
  .prof__memberLists .prof__memberList .memberList__link:hover .memberList__img--img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (max-width: 767px) {
  .prof__memberLists .prof__memberList .memberList__link:active .memberList__name {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .prof__memberLists .prof__memberList .memberList__link:hover {
    cursor: pointer;
  }
  .prof__memberLists .prof__memberList .memberList__link:hover .memberList__name {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .prof__memberLists .prof__memberList .memberList__link:active .memberList__furigana {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .prof__memberLists .prof__memberList .memberList__link:hover {
    cursor: pointer;
  }
  .prof__memberLists .prof__memberList .memberList__link:hover .memberList__furigana {
    opacity: 0.7;
  }
}

.prof__memberLists .prof__memberList .memberList__img--wrap {
  -webkit-box-shadow: 1px 3px 11px 0 rgba(0, 0, 0, 0.16);
  border-radius: 8.2px;
  box-shadow: 1px 3px 11px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 12px;
  overflow: hidden;
}

.prof__memberLists .prof__memberList .memberList__img--wrap .memberList__img--img {
  -webkit-transition: all 0.3s;
  display: block;
  height: auto;
  max-height: 100%;
  transition: all 0.3s;
  width: 200%;
}

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

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

@media screen and (min-width: 768px) {
  .prof__memberLists .prof__memberList .memberList__name {
    line-height: 1.67;
    margin-bottom: 2px;
  }
}

@media screen and (max-width: 767px) {
  .prof__memberLists .prof__memberList .memberList__name {
    font-size: 16px;
  }
}

.prof__memberLists .prof__memberList .memberList__furigana {
  font-size: 14px;
  line-height: 1.71;
}

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

.pageConts--profdetail .member__detailBox {
  -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: 0 auto 80px;
}

@media screen and (min-width: 768px) {
  .pageConts--profdetail .member__detailBox {
    width: 808px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .member__detailBox {
    margin-bottom: 65px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--profdetail .member__detailBox .member__detail--data {
    width: 409px;
  }
}

@media screen and (max-width: 767px) {
  .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: 24px;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .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--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;
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .member__detailBox .member__detail--data .member__snsLists {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 12px;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .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 {
  -webkit-transition: all 0.3s;
  display: inline-block;
  transition: all 0.3s;
  transition: all 0.3s;
  /* hover effect */
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .member__detailBox .member__detail--data .member__snsLists .member__snsLink:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .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 {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .pageConts--profdetail .member__detailBox .member__detail--imgWrap {
    width: 367px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .member__detailBox .member__detail--imgWrap {
    width: 100%;
  }
}

.pageConts--profdetail .member__detailBox .member__detail--imgWrap .member__detailImgSlides {
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.3);
  font-size: 0;
}

.pageConts--profdetail .member__detailBox .member__detail--imgWrap .member__detailImgSlide {
  border-radius: 12px;
  overflow: hidden;
}

.pageConts--profdetail .member__detailBox .member__detail--imgWrap .member__detailImg {
  display: block;
  height: auto;
  width: 200%;
}

.pageConts--profdetail .member__detailBox .member__detail--imgWrap .member__detailImg.member__detailImg--2 {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

@media screen and (min-width: 768px) {
  .pageConts--profdetail .otherMembers {
    margin-left: -70px;
    width: calc(100% + 140px);
  }
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .otherMembers {
    margin-left: -15px;
    padding: 47px 0 59px;
    width: calc(100% + 30px);
  }
}

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

@media screen and (max-width: 767px) {
  .pageConts--profdetail .otherMembers:before, .pageConts--profdetail .otherMembers:after {
    width: 15px;
  }
}

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

@media screen and (max-width: 767px) {
  .pageConts--profdetail .otherMembers:before {
    left: -15px;
  }
}

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

@media screen and (max-width: 767px) {
  .pageConts--profdetail .otherMembers:after {
    right: -15px;
  }
}

.pageConts--profdetail .otherMembers .otherMembers__title {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
  color: transparent;
  font-family: 'Fredoka One';
  font-size: 30px;
  font-weight: 300;
  line-height: 1.47;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageConts--profdetail .otherMembers .otherMembers__title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .pageConts--profdetail .pageBack__Wrap {
    margin-top: 63px;
  }
}

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

@media screen and (min-width: 768px) {
  .pageConts--media {
    margin: 0 auto;
    width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--media {
    margin: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--media .pagingWrap {
    margin-left: 120px;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .pageConts--media .postDetail__data .postDetail__category {
    margin-right: 16px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--media .postDetail__data .postDetail__category {
    margin-bottom: 12px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .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 .postTitle {
  margin-bottom: 16px;
}

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

@media screen and (min-width: 768px) {
  .pageConts--media .otherPosts {
    margin: 64px auto -120px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--media .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
}

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

@media screen and (min-width: 768px) {
  .pageConts--media .pageBack__Wrap {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--media .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 64px;
  }
}

/*--------------------------------------
04. modules: calendar
--------------------------------------*/
/* BEGIN 月切り替え */
.postSelect {
  margin-bottom: 50px;
  margin-top: 62px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .postSelect {
    margin-bottom: 40px;
    margin-left: -15px;
    margin-top: 52px;
    width: calc(100% + 30px);
  }
}

.postSelect__current {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
  color: transparent;
  font-family: 'Fredoka One';
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .postSelect__current {
    font-size: 36px;
    line-height: 1.278;
  }
}

.postSelect__lists {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-transform: translateY(-50%);
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.postSelect__link {
  color: #9fa5d0;
  display: inline-block;
  font-family: 'Fredoka One';
  font-size: 32px;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .postSelect__link {
    font-size: 18px;
    line-height: 1.333;
  }
}

.postSelect__link:hover {
  color: #583791;
}

.postSelect__link:hover:before {
  background-image: url("../img/common/icon_arrow-right-hover.svg");
}

.postSelect__link--next:before,
.postSelect__link--prev:before {
  -webkit-transition: all 0.3s;
  background-image: url("../img/common/icon_arrow-right.svg");
  background-size: 100% 100%;
  content: '';
  height: 24px;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
  width: 16px;
}

@media screen and (max-width: 767px) {
  .postSelect__link--next:before,
  .postSelect__link--prev:before {
    height: 12px;
    width: 8px;
  }
}

.postSelect__link--next {
  padding-right: 26px;
}

@media screen and (max-width: 767px) {
  .postSelect__link--next {
    padding-right: 15px;
  }
}

.postSelect__link--next:before {
  -webkit-transform: rotate(0) translateY(-50%);
  right: 0;
  transform: rotate(0) translateY(-50%);
}

.postSelect__link--prev {
  padding-left: 26px;
}

@media screen and (max-width: 767px) {
  .postSelect__link--prev {
    padding-left: 15px;
  }
}

.postSelect__link--prev:before {
  -webkit-transform: rotate(180deg) translateY(50%);
  left: 0;
  transform: rotate(180deg) translateY(50%);
}

/* END 月切り替え */
/* BEGIN カレンダー */
.calendar {
  margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
  .calendar {
    margin-bottom: 52px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}

.calendar__item {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calendar__item:not(:first-of-type) {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .calendar__item:not(:first-of-type) {
    margin-top: 16px;
  }
}

.calendar__date {
  font-weight: bold;
  padding-top: 13px;
  text-align: center;
  width: 116px;
}

@media screen and (max-width: 767px) {
  .calendar__date {
    display: none;
  }
}

.calendar__day {
  color: #9499a9;
  display: block;
  font-family: "Fredoka One", sans-serif;
  font-size: 56px;
  line-height: 0.8;
}

.calendar__week {
  background-color: #9499a9;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-family: "Fredoka One", sans-serif;
  font-size: 11px;
  height: 20px;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin: 8px auto 0;
  width: 46px;
}

.calendar__events {
  width: calc(100% - 116px);
}

@media screen and (max-width: 767px) {
  .calendar__events {
    width: 100%;
  }
}

.calendar__events .calendar__event:not(:first-of-type) {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .calendar__events .calendar__event:not(:first-of-type) {
    margin-top: 16px;
  }
}

.calendar__link {
  -webkit-box-sizing: border-box;
  -webkit-transition: all 0.3s;
  border-radius: 12px;
  box-sizing: border-box;
  display: block;
  padding: 24px 32px;
  position: relative;
  transition: all 0.3s;
  z-index: auto;
}

@media screen and (max-width: 767px) {
  .calendar__link {
    -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;
    padding: 24px 16px 16px 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .calendar__link:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .calendar__link:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.calendar__link:before, .calendar__link:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 12px;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.calendar__link:before {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.23turn, #c4badb 0.41turn, #f9d0d3 0.56turn, #b3dcf6 0.8turn, #fff796);
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  z-index: 0;
}

.calendar__link:after {
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .calendar__postDate {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .calendar__postDate {
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    width: 68px;
    z-index: 2;
  }
  .calendar__postDate:before {
    -webkit-transform: translateY(-50%);
    background-color: #f0f0f0;
    content: '';
    display: block;
    height: calc(100% + 24px + 16px);
    position: absolute;
    right: -1px;
    top: calc(50% - 4px);
    transform: translateY(-50%);
    width: 1px;
  }
}

.calendar__postDate .calendar__postDate__day {
  color: #9499a9;
  display: block;
  font-family: "Fredoka One", sans-serif;
  font-size: 32px;
  line-height: 0.9;
}

.calendar__postDate .calendar__postDate__week {
  background-color: #9499a9;
  border-radius: 9.5px;
  color: #fff;
  display: block;
  font-family: "Fredoka One", sans-serif;
  font-size: 10px;
  height: 19px;
  letter-spacing: 0.45px;
  line-height: 19px;
  margin: 4px auto 0;
  width: 38px;
}

.calendar__postDtl {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .calendar__postDtl {
    padding-left: 14px;
    position: relative;
    width: calc(100% - 68px);
  }
  .calendar__postDtl:before {
    -webkit-transform: translateY(-50%);
    background-color: #f0f0f0;
    content: '';
    display: block;
    height: calc(100% + 24px + 16px);
    left: 0;
    position: absolute;
    top: calc(50% - 4px);
    transform: translateY(-50%);
    width: 1px;
  }
}

.calendar__category {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background-color: #9499a9;
  border-radius: 6px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Fredoka One", sans-serif;
  font-size: 12px;
  font-weight: normal;
  height: 20px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  width: 106px;
}

@media screen and (max-width: 767px) {
  .calendar__category {
    margin-bottom: 8px;
  }
}

.calendar__title {
  line-height: 1.71;
  word-break: break-all;
}

/* END カレンダー */
/* BEGIN イベント無し月 */
.calendar__noConts {
  -webkit-box-sizing: border-box;
  border-radius: 12px;
  box-sizing: border-box;
  margin: 64px auto 75px;
  padding: 83px 0;
  position: relative;
  width: 636px;
}

@media screen and (max-width: 767px) {
  .calendar__noConts {
    margin-bottom: 52px;
    margin-top: 56px;
    padding: 53px 0 54px;
    width: 100%;
  }
}

.calendar__noConts:before, .calendar__noConts:after {
  -webkit-transform: translate(-50%, -50%);
  border-radius: 12px;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.calendar__noConts:before {
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  background-image: conic-gradient(from 0.36turn, #fff796, #b8dfd7 0.23turn, #c4badb 0.41turn, #f9d0d3 0.56turn, #b3dcf6 0.8turn, #fff796);
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  z-index: 0;
}

.calendar__noConts:after {
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.calendar__noConts .calendar__noConts__text {
  color: #9499a9;
  font-family: "Fredoka One", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1.44;
  position: relative;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .calendar__noConts .calendar__noConts__text {
    font-size: 24px;
    line-height: 1.92;
  }
}

/* END イベント無し月 */
/*--------------------------------------
04. modules: live & tour
--------------------------------------*/
/**
 * common
 */
@media screen and (min-width: 768px) {
  .pageConts--livetour {
    margin: 0 auto;
    width: 872px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--livetour {
    margin: 0 30px;
  }
}

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

@media screen and (min-width: 768px) {
  .pageConts--livetour .livetourWrap {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .livetourListsWrap {
    margin-left: 116px;
    margin-top: 34px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .livetourListsWrap {
    margin-top: 28px;
  }
}

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

@media screen and (max-width: 767px) {
  .listMore__Wrap {
    margin-top: 24px;
    text-align: center;
  }
}

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

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

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

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__outline {
    padding: 22px 0;
  }
}

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

@media screen and (max-width: 767px) {
  .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon {
    background-color: #9fa5d0;
    border-color: #9fa5d0;
  }
  .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon:before, .pageConts--livetour .post__tourData .tourData__outline:active .tourData__icon:after {
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__outline:hover {
    cursor: pointer;
  }
  .pageConts--livetour .post__tourData .tourData__outline:hover .tourData__icon {
    background-color: #9fa5d0;
    border-color: #9fa5d0;
  }
  .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 {
  -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;
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date {
    margin-right: 12px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date {
    margin-bottom: -10px;
    width: 124px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date span {
    margin-left: 5px;
  }
}

@media screen and (min-width: 768px) {
  .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--date .icon--soldout,
.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addstage,
.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addfree {
  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;
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--soldout,
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addstage,
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addfree {
    margin-bottom: 2px;
  }
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--soldout {
  background-color: #f00;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addstage {
  background-color: #ed2c96;
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--date .icon--addfree {
  background-color: #ff602b;
}

.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%;
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--place {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--place {
    padding-right: 20px;
    width: calc(100% - 124px - 80px);
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__outline .tourData__lists .tourData__list.tourData__list--time {
    width: 80px;
  }
}

.pageConts--livetour .post__tourData .tourData__outline .tourData__icon {
  -webkit-box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  border: 1px solid #9fa5d0;
  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: #9fa5d0;
  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;
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .post__tourData .tourData__detail .tourData__text {
    margin-bottom: 16px;
    padding-left: 124px;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .otherPosts {
    margin: 64px auto -120px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--livetour .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--livetour .pageBack__Wrap {
    margin-bottom: 0;
    margin-top: 64px;
  }
}

/*--------------------------------------
04. modules: goods
--------------------------------------*/
/**
 * common
 */
@media screen and (min-width: 768px) {
  .pageConts--goods {
    margin: 0 auto;
    width: 976px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--goods {
    margin: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--goods .pageTitle {
    margin-left: 52px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--goods .pageTitle {
    margin-left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--goods .pagingWrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 0;
  }
}

/**
 * goods index
 */
.goods__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: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .goods__lists {
    margin: 52px auto 0;
  }
}

.goods__lists .goods__list {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .goods__lists .goods__list:not(:first-child) {
    margin-top: 48px;
  }
}

@media screen and (min-width: 768px) {
  .goods__lists .goods__list {
    width: 304px;
  }
  .goods__lists .goods__list:nth-child(n + 4) {
    margin-top: 80px;
  }
}

.goods__lists .goods__list .goods__link {
  display: block;
  /* hover effect */
  /* hover effect */
}

@media screen and (max-width: 767px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .goods__lists .goods__list .goods__link:active .goods__thumb {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .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);
  }
}

@media screen and (max-width: 767px) {
  .goods__lists .goods__list .goods__link:active .goods__caption {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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__thumb {
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
  height: 304px;
  transition: all 0.3s;
  width: 304px;
}

@media screen and (max-width: 767px) {
  .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__thumb .goods__thumb--img {
  -o-object-fit: contain;
  border-radius: 12px;
  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;
}

@media screen and (min-width: 768px) {
  .goods__lists .goods__list .goods__link .goods__caption {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .goods__lists .goods__list .goods__link .goods__caption {
    line-height: 1.43;
    width: calc(100vw * 0.44);
  }
}

/**
 * goods items
 */
.itemWrap {
  margin: 64px 0;
  /* BEGIN header */
  /* END header */
  /* BEGIN sub items */
  /* END sub items */
}

@media screen and (min-width: 768px) {
  .itemWrap {
    margin: 80px 84px;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .itemWrap .itemHeader {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .itemWrap .itemHeader {
    margin-bottom: 12px;
  }
}

.itemWrap .itemHeader .item__title {
  width: calc(100% - 180px);
}

@media screen and (max-width: 767px) {
  .itemWrap .itemHeader .item__title {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
    width: 100%;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .itemWrap .itemHeader .item__snsWrap {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .itemWrap .itemHeader .item__snsWrap {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-bottom: 12px;
    width: 100%;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .itemWrap .shopBtn {
    border-radius: 32px;
    bottom: 79px;
    height: 64px;
    right: 7px;
    width: 64px;
  }
  .itemWrap .shopBtn:active:after {
    opacity: 1;
  }
  .itemWrap .shopBtn:active .btnLink--link {
    -webkit-box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.1s;
    box-shadow: none;
    transition: -webkit-box-shadow 0.1s;
    transition: box-shadow 0.1s;
    transition: box-shadow 0.1s, -webkit-box-shadow 0.1s;
  }
}

@media screen and (min-width: 768px) {
  .itemWrap .shopBtn:hover {
    cursor: pointer;
  }
  .itemWrap .shopBtn:hover:after {
    opacity: 1;
  }
  .itemWrap .shopBtn:hover .btnLink--link {
    -webkit-box-shadow: none;
    -webkit-transition: -webkit-box-shadow 0.3s;
    box-shadow: none;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
}

.itemWrap .shopBtn:before, .itemWrap .shopBtn:after {
  border-radius: 50%;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .itemWrap .shopBtn:before, .itemWrap .shopBtn:after {
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
  }
}

.itemWrap .shopBtn:before {
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), -webkit-gradient(linear, left top, left bottom, from(#e13eaf), to(#e13eaf));
  background-image: conic-gradient(from 0.45turn, #e13ee1, #e13eaf 0.31turn, #e13e92 0.69turn, #e13ee1), linear-gradient(to bottom, #e13eaf, #e13eaf);
}

.itemWrap .shopBtn:after {
  background-image: conic-gradient(from 0.45turn, #583791, #583791 0.31turn, #583791 0.69turn, #583791), -webkit-gradient(linear, left top, left bottom, from(#583791), to(#583791));
  background-image: conic-gradient(from 0.45turn, #583791, #583791 0.31turn, #583791 0.69turn, #583791), linear-gradient(to bottom, #583791, #583791);
  opacity: 0;
}

.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: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
  align-items: center;
  border-radius: 50%;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-family: 'Fredoka One';
  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 {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .itemWrap .shopBtn .shopBtn__link .shopBtn__link--text {
    font-size: 13px;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__topText img,
  .itemWrap .item__bottomText img {
    max-height: calc(100vw - 60px);
    max-width: 100%;
  }
}

.itemWrap .item__subListsWrap {
  margin: 40px 0 48px;
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .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);
  }
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists:not(:first-child) {
    margin-top: 48px;
  }
}

.itemWrap .item__subLists .subitem__outline {
  position: relative;
}

.itemWrap .item__subLists .subitem__outline .subitem__images {
  margin-bottom: 12px;
  /* BEGIN slick */
  /* END slick */
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .subitem__images {
    margin-left: -30px;
    width: calc(100% + 60px);
  }
}

@media screen and (max-width: 767px) {
  .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--link {
  display: block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .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 .subitem__images .subitem__image--img {
  -o-object-fit: contain;
  height: 388px;
  object-fit: contain;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .subitem__images .subitem__image--img {
    height: calc(100vw * 0.84);
  }
}

@media screen and (max-width: 767px) {
  .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 {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  bottom: 12px;
  color: #fff;
  font-family: 'Fredoka One';
  font-size: 14px;
  height: 32px;
  left: auto;
  line-height: 31px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: auto;
  width: 105px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .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-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 {
  background-color: transparent;
  background-image: none;
  bottom: -4px;
  height: 32px;
  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;
  border-radius: 2px;
  border-width: 2px;
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev {
  left: auto;
  right: 83px;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev {
    right: 113px;
  }
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-prev:before {
  background-image: url("../img/goods/icon_arrow-left.svg");
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-next {
  right: 10px;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .subitem__images .slick-next {
    right: 40px;
  }
}

.itemWrap .item__subLists .subitem__outline .subitem__images .slick-next:before {
  background-image: url("../img/goods/icon_arrow-right.svg");
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subTitle {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subPrice {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .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: #9fa5d0;
    border-color: #9fa5d0;
  }
  .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: #9fa5d0;
  }
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__outline .item__subdataWrap--more:active .item__subMore .item__subMore--icon {
    background-color: #9fa5d0;
    border-color: #9fa5d0;
  }
  .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: #9fa5d0;
  }
}

.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;
  padding-right: 40px;
  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: #9fa5d0;
  display: block;
  font-family: 'Fredoka One';
  font-size: 14px;
  height: 49px;
  line-height: 1;
  position: absolute;
  right: 0;
  transition: all 0.3s;
  width: 32px;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore--icon {
  -webkit-transition: all 0.3s;
  border: solid 2px #9fa5d0;
  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: #9fa5d0;
  border-radius: 1px;
  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: 2px;
  width: 10px;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore--icon:after {
  height: 10px;
  width: 2px;
}

.itemWrap .item__subLists .subitem__outline .item__subMore .item__subMore--text {
  -webkit-transform: translateX(-50%);
  bottom: 0;
  font-size: 12px;
  left: 50%;
  position: absolute;
  right: auto;
  top: auto;
  transform: translateX(-50%);
}

.itemWrap .item__subLists .subitem__detail {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  /* IE9〜11 */
  /* Edge12〜14 */
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail {
    width: calc(200% + 32px);
  }
}

.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: #fff;
  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;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--arrow {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--arrow {
    margin-left: calc(25% - 16px);
  }
}

@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) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--arrow {
    border-bottom: none;
  }
}

@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);
  border-radius: 12px;
  box-shadow: 2px 1px 11px 0 rgba(161, 161, 161, 0.3);
  font-size: 14px;
  line-height: 1.71;
  position: relative;
}

@media screen and (max-width: 767px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--text {
    padding: 30px 19px 0;
  }
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--text {
    padding: 24px 24px 0;
  }
}

.itemWrap .item__subLists .subitem__detail .subitem__detail--text:before {
  -webkit-transform: translateX(-50%);
  background-color: #fff;
  content: '';
  display: block;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--text:before {
    left: 25%;
  }
}

.itemWrap .item__subLists .subitem__detail .subitem__detail--closeWrap {
  padding: 18px 0 13px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--closeWrap {
    padding: 2px 0 14px;
    text-align: right;
  }
}

.itemWrap .item__subLists .subitem__detail .subitem__detail--close {
  -webkit-transition: all 0.3s;
  color: #9fa5d0;
  display: inline-block;
  font-family: 'Fredoka One';
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  padding-left: 16px;
  position: relative;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .itemWrap .item__subLists .subitem__detail .subitem__detail--close:hover {
    cursor: pointer;
  }
}

.itemWrap .item__subLists .subitem__detail .subitem__detail--close:before {
  -webkit-transform: translateY(-50%);
  background-color: #9fa5d0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  width: 10px;
}

/* 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);
}

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

/*--------------------------------------
04. modules: discography
--------------------------------------*/
/**
 * common
 */
/* wrap */
@media screen and (min-width: 768px) {
  .pageConts--discography,
  .pageConts--discographyDetail {
    margin: 0 auto;
    width: 976px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discography,
  .pageConts--discographyDetail {
    margin: 0 30px;
  }
}

.pageConts--discography .pagingWrap,
.pageConts--discographyDetail .pagingWrap {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .pageConts--discography .pagingWrap,
  .pageConts--discographyDetail .pagingWrap {
    margin-top: 48px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--discography .pagingWrap,
  .pageConts--discographyDetail .pagingWrap {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 0;
  }
}

/* parts */
@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .pageTitle {
    margin-left: 48px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .postCats {
    margin-left: 52px;
  }
}

@media screen and (min-width: 768px) {
  .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);
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .otherPosts {
    margin-bottom: -98px;
    margin-top: 44px;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .pageBack__Wrap {
    margin-bottom: 0;
    margin-left: 52px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .pageBack__Wrap {
    margin-bottom: 0;
  }
}

/* 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 #e2e2e2;
  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:active .discography__digital,
.discography__blankLinks .discography__blankLink:active .discography__shop {
  color: #583791;
}

.discography__blankLinks .discography__blankLink:active .discography__shop:before {
  background-image: url("../img/disc/icon_buy-hover.svg");
}

.discography__blankLinks .discography__blankLink:active .discography__digital:before {
  background-image: url("../img/disc/icon_digital-hover.svg");
}

.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: #9fa5d0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Fredoka One';
  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: contain;
  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;
}

@media screen and (max-width: 767px) {
  .discography__lists {
    margin-top: 52px;
  }
}

@media screen and (min-width: 768px) {
  .discography__lists {
    margin-top: 80px;
  }
}

.discography__lists .discography__list {
  margin-top: 56px;
  position: relative;
  width: 100%;
  /* BEGIN リンク */
  /* END リンク */
  /* BEGIN discベース */
  /* END discベース */
  /* BEGIN 最初のリスト以外 */
  /* END 最初のリスト以外 */
  /* BEGIN 最初のリスト */
  /* END 最初のリスト */
}

@media screen and (min-width: 768px) {
  .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 {
  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挙動を実行 */
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__thumbImg {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}

@media screen and (min-width: 768px) {
  .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);
  }
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__meta {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__title {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__desc {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .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-image: url("../img/common/icon_linkbtn-hover.svg");
  }
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):hover .arrowBtn__Wrap .arrowBtn__icon:before {
    -webkit-animation: iconBtn-right 0.5s ease-out 1 0.3s;
    animation: iconBtn-right 0.5s ease-out 1 0.3s;
    background-image: url("../img/common/icon_arrow-right-hover.svg");
  }
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):hover .arrowBtn__Wrap .arrowBtn__text {
    color: #583791;
  }
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon .arrowBtn__icon {
    background-image: url("../img/common/icon_linkbtn-hover.svg");
  }
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon .arrowBtn__icon:before {
    -webkit-animation: iconBtn-right 0.5s ease-out 1 0.3s;
    animation: iconBtn-right 0.5s ease-out 1 0.3s;
    background-image: url("../img/common/icon_arrow-right-hover.svg");
  }
  .discography__lists .discography__list .discography__wraplink:not(.is-btnHover):active .discography__column .arrowBtn__Wrap .arrowBtn__icon .arrowBtn__text {
    color: #583791;
  }
}

.discography__lists .discography__list .discography__column {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-transition: all 0.3s;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  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;
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list .discography__column .discography__thumb {
    height: 304px;
    margin: 0 auto;
    max-width: 304px;
  }
}

@media screen and (max-width: 767px) {
  .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 {
  -webkit-transition: all 0.3s;
  border-radius: 12px;
  display: inline-block;
  max-width: 100%;
  transition: all 0.3s;
  width: auto;
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
    -o-object-fit: contain;
    -webkit-filter: drop-shadow(2px 2px 11px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(2px 2px 11px rgba(0, 0, 0, 0.3));
    height: 100%;
    max-height: 304px;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__column .discography__thumb .discography__thumbImg {
    -webkit-box-shadow: 3px 5px 21px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 3px 5px 21px 0 rgba(0, 0, 0, 0.3);
    height: auto;
    max-height: 100%;
  }
}

@media all and (-ms-high-contrast: 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%;
  }
}

.discography__lists .discography__list .discography__column .discography__data {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* IE9〜11 */
  /* Edge12〜14 */
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list .discography__column .discography__data {
    width: calc(100vw * 0.44);
  }
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list .discography__column .discography__data {
    margin-top: 14px;
    width: 100%;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .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 .discography__column .discography__data .discography__meta .discography__metaList {
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .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__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: #35d95c;
  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;
}

@media screen and (min-width: 768px) {
  .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-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;
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list .discography__column .discography__data .discography__desc {
    -webkit-line-clamp: 4;
  }
}

@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) {
  .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;
  }
}

@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;
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list:not(.discography__list--first) .discography__data .discography__meta .discography__metaList--new {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .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-top: 0;
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first {
    margin-left: 84px;
    text-align: center;
    width: calc(100% - 168px);
  }
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first .discography__wraplink {
    display: inline-block;
  }
}

.discography__lists .discography__list.discography__list--first .discography__column .discography__thumb {
  height: auto;
  width: auto;
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb {
    max-height: 388px;
    max-width: 388px;
  }
}

@media screen and (max-width: 767px) {
  .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 {
  height: auto;
  width: auto;
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list.discography__list--first .discography__column .discography__thumb .discography__thumbImg {
    max-height: calc(100vw * 0.84);
  }
}

@media screen and (min-width: 768px) {
  .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 {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list.discography__list--first .discography__data {
    margin-top: 12px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first .discography__data {
    margin-left: 32px;
    width: 388px;
  }
}

@media screen and (max-width: 767px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first .discography__data .discography__meta .discography__metaList {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .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 {
  font-size: 16px;
  line-height: 1.63;
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list.discography__list--first .discography__data .discography__title {
    width: calc(100% - 45px);
  }
}

@media screen and (min-width: 768px) {
  .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 {
  bottom: auto;
  height: 32px;
  left: auto;
  opacity: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .discography__lists .discography__list.discography__list--first .discography__data .arrowBtn__Wrap {
    display: block;
    width: 32px;
  }
}

@media screen and (min-width: 768px) {
  .discography__lists .discography__list.discography__list--first .discography__data .arrowBtn__Wrap {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .discography__lists.discography__lists--nextpage .discography__list:first-of-type {
    margin-top: 0;
  }
}

/**
 * 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;
}

@media screen and (max-width: 767px) {
  .modal__close {
    right: 25px;
    top: 25px;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .modal__conts {
    width: calc(100% - 30px);
  }
}

.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: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  margin-bottom: 24px;
  padding: 32px;
  /* BEGIN outline */
  /* END outline */
  /* BEGIN shops */
  /* END shops */
}

@media screen and (max-width: 767px) {
  .modal__conts .modalDetails .modalDetail__list {
    padding: 16px 15px;
  }
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__type--sp {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 8px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal__conts .modalDetails .modalDetail__list .modalDetail__type--sp {
    display: none;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .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__imgWrap .modalDetail__img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details {
  width: 452px;
}

@media screen and (max-width: 767px) {
  .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 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
  .modal__conts .modalDetails .modalDetail__list .modalDetail__outline .modalDetail__details .modalDetail__type--pc {
    display: none;
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .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 {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(15, 14, 255, 0.2);
  align-items: center;
  background-color: #2038ee;
  border-radius: 28px;
  border-radius: 28px;
  box-shadow: 2px 2px 8px 0 rgba(15, 14, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .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 {
    -webkit-box-shadow: none;
    background-color: #000;
    box-shadow: none;
  }
  .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;
  }
}

@media screen and (max-width: 767px) {
  .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__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--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;
}

@media screen and (max-width: 767px) {
  .modal__conts .modalDetails .modalDetail__list .modalDetail__moreshops {
    min-height: 50px;
  }
}

.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 #e2e2e2;
  color: #583795;
  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: #583795;
  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;
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .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;
  }
}

.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: #fff;
  bottom: 0;
  color: #583795;
  font-family: 'Fredoka One';
  font-size: 16px;
  font-weight: bold;
  left: 0;
  line-height: 1;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .package__readmore--btn.package__readmore--btnTop {
    bottom: 1px;
    padding-bottom: 7px;
  }
}

.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(255, 255, 255, 0)), color-stop(80%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 80%);
  content: '';
  display: block;
  height: 32px;
  left: 0;
  position: absolute;
  top: -32px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .package__readmore--btn:before {
    top: -31px;
  }
}

@media screen and (min-width: 768px) {
  .package__readmore--btn:hover {
    cursor: pointer;
  }
}

.discWrap__newArtists .discWrap:nth-child(even) .package__readmore--btn {
  background-color: #f8f8f8;
}

.discWrap__newArtists .discWrap:nth-child(even) .package__readmore--btn:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), color-stop(80%, #f8f8f8));
  background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, #f8f8f8 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 下部のサムネイル */
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap {
    margin-left: -15px;
    margin-top: 80px;
    padding-bottom: 64px;
    width: calc(100% + 30px);
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .disc__header {
    margin: 0 52px 16px;
  }
}

.pageConts--discographyDetail .discWrap .disc__header .disc__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .disc__header .disc__title {
    font-size: 24px;
    line-height: 1.33;
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .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 {
  -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;
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .disc__header .disc__snsWrap {
    width: 100%;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .disc__topText,
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-left: 52px;
    margin-right: 52px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .disc__topText,
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.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;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .disc__topText {
    margin-bottom: 34px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .disc__topText {
    margin-bottom: 16px;
    padding-bottom: 1px;
  }
  .pageConts--discographyDetail .discWrap .disc__topText:after {
    background-color: #e2e2e2;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
}

.pageConts--discographyDetail .discWrap .disc__bottomText {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .disc__bottomText {
    margin-top: 32px;
  }
}

.pageConts--discographyDetail .discWrap .disc__outlineText--content {
  font-size: 14px;
  line-height: 1.71;
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap {
  position: relative;
  /* BEGIN slick */
  /* END slick */
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap {
    height: 76px;
  }
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap {
    display: none;
  }
}

.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;
  border-radius: 12px;
  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;
}

@media all and (-ms-high-contrast: none) {
  .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;
  }
}

@media all and (-ms-high-contrast: none) {
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbImg {
    text-align: center;
  }
}

.pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .package__thumbList .package__thumbType {
  -webkit-transition: all 0.3s;
  -webkit-transition-delay: 0.25s;
  color: #9fa5d0;
  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;
}

@media all and (-ms-high-contrast: none) {
  .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 {
  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;
}

@media all and (-ms-high-contrast: none) {
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .is-current .package__thumbList .package__thumbImg .package__thumbImg--img {
    height: auto;
    width: auto;
  }
}

.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);
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__tabWrap {
    display: none;
  }
}

.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: #9fa5d0;
  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: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* package img (sp) */
}

@media screen and (max-width: 767px) {
  .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;
    padding-bottom: calc(100vw * 0.1813);
  }
}

@media screen and (min-width: 768px) {
  .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 {
  margin-left: -30px;
  text-align: center;
  top: -67px;
  width: calc(100% + 60px);
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg {
    display: none;
  }
}

.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__mainImg--img {
  -webkit-transform: scale(1);
  opacity: 1;
  transform: scale(1);
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .package__mainImgList {
  display: inline-block;
  padding-bottom: 1px;
  padding-top: 1px;
  text-align: left;
}

.pageConts--discographyDetail .discWrap .package__detailWrap .package__mainImg .package__mainImgList .package__mainImg--img {
  -o-object-fit: contain;
  -webkit-filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
  -webkit-transform: scale(0.9);
  -webkit-transition: all 0.3s;
  border-radius: 12px;
  display: inline-block;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
  height: 76vw;
  object-fit: contain;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.3s;
  width: 76vw;
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__linksWrap {
    margin-top: 232px;
    width: 336px;
  }
}

.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__details {
  position: relative;
  /* slick */
  /* BEGIN 個別のdetail */
  /* END 個別のdetail */
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details {
    width: calc(100% - 368px);
  }
}

.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;
}

@media screen and (max-width: 767px) {
  .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: 18px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .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-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;
}

@media screen and (max-width: 767px) {
  .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__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 #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .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__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;
}

@media screen and (min-width: 768px) {
  .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__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;
}

@media screen and (max-width: 767px) {
  .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: 16px;
}

@media screen and (max-width: 767px) {
  .pageConts--discographyDetail .discWrap .package__detailWrap .package__details .package__detail .package__notes--btm {
    margin-top: 12px;
  }
}

.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);
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap {
    display: none;
  }
}

.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;
  border-radius: 12px;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  width: 100%;
}

.pageConts--discographyDetail .discWrap .package__thumbBtmListsWrap .package__thumbBtmLists .package__thumbBtmList .package__thumbType {
  color: #9fa5d0;
  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;
}

@media screen and (min-width: 768px) {
  .pageConts--discographyDetail .otherPosts .discography__lists {
    margin: 0 0 0 auto;
    width: calc(100% - 148px);
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

.pageConts--discographyDetail .otherPosts .discography__lists .discography__list:first-of-type {
  margin-top: 0;
}

/**
 * 新人アーティスト用
 */
@media screen and (max-width: 767px) {
  .discWrap__newArtists {
    margin-top: 16px;
  }
}

.discWrap__newArtists .discWrap {
  margin-top: 0;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .discWrap__newArtists .discWrap {
    margin-top: 0;
    padding-top: 64px;
  }
}

.discWrap__newArtists .discWrap:nth-child(even) {
  background-color: #f8f8f8;
}

.discWrap__newArtists .discWrap:nth-child(even):before, .discWrap__newArtists .discWrap:nth-child(even):after {
  background-color: #f8f8f8;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc((100vw - 976px) / 2);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .discWrap__newArtists .discWrap:nth-child(even):before, .discWrap__newArtists .discWrap:nth-child(even):after {
    width: 15px;
  }
}

.discWrap__newArtists .discWrap:nth-child(even):before {
  left: calc((100vw - 976px) / 2 * -1);
}

@media screen and (max-width: 767px) {
  .discWrap__newArtists .discWrap:nth-child(even):before {
    left: -15px;
  }
}

.discWrap__newArtists .discWrap:nth-child(even):after {
  right: calc((100vw - 976px) / 2 * -1);
}

@media screen and (max-width: 767px) {
  .discWrap__newArtists .discWrap:nth-child(even):after {
    right: -15px;
  }
}

.otherPosts.otherPosts--even {
  background-color: #fff;
}

.otherPosts.otherPosts--even:before, .otherPosts.otherPosts--even:after {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .otherPosts.otherPosts--newartists {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .otherPosts.otherPosts--newartists {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (min-width: 768px) {
  .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;
  }
}

@media screen and (max-width: 767px) {
  .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 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead {
    width: calc(100% - 220px);
  }
}

.otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
  color: #666;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.18;
}

@media screen and (min-width: 768px) {
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .otherPosts__catTitle {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .arrowBtn__Wrap {
    -webkit-transform: translateY(-50%);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .otherPosts__catHead .arrowBtn__Wrap .arrowBtn__text {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .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%;
  }
}

@media screen and (max-width: 767px) {
  .otherPosts.otherPosts--newartists .otherPosts__catWrap .otherPosts__cats .discography__lists {
    margin-top: 24px;
  }
}

/*--------------------------------------
04. modules: 404
--------------------------------------*/
/* wrap */
.contents--404 {
  padding: 120px 0 170px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contents--404 {
    padding: 100px 0 155px;
  }
}

.pageConts--404 {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageConts--404 {
    margin: 0 auto;
    width: calc(100% - 60px);
  }
}

/* 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: 54px;
}

.notfoundLogo .notfoundLogo__logo {
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .notfoundLogo .notfoundLogo__logo {
    width: 81.86vw;
  }
}

.notfoundLogo .notfoundLogo__logo .notfoundLogo__logo--img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

/* info text */
.notfound__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .notfound__title {
    font-size: 16px;
  }
}

.notfound__notes {
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 40px;
}

/*--------------------------------------
03. liquid PCとSPの間のレイアウト
--------------------------------------*/
/**
 * header
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .headerWrap {
    margin-left: 5px;
    padding: 42px 0 44px;
    width: calc(100% - 10px);
  }
  .headerWrap .headerNavWrap {
    margin-left: 32px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons {
    width: 80px;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    gap: 12px 0;
    justify-content: space-between;
  }
  .headerWrap .headerNavWrap .headerNav .headerIcons .snsLists .snsList {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    width: 38px;
  }
}

/**
 * top
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  /* 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%;
  }
  /* video */
  .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%;
  }
  /* sns */
  .topConts--sns {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .topConts--sns .topSns__wrap .topConts__titleWrap {
    margin-left: 0;
    margin-top: 0;
  }
  .topConts--sns .topSns__wrap .viewallBtn__Wrap {
    bottom: 160px;
  }
  .topConts--sns .topSns__wrap .topConts__snsBox {
    height: 500px;
    margin-right: 0;
    width: 420px;
  }
  .topConts--tweet .retweetListTitle {
    margin-left: 20px;
  }
}

@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;
  }
}

/**
 * news & media & live tour
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .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;
  }
}

/**
 * profile
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .pageConts--profile {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--profile .prof__memberLists .prof__memberList,
  .pageConts--profdetail .prof__memberLists .prof__memberList {
    width: calc((100% - 96px) / 3);
  }
  .pageConts--profdetail .otherMembers {
    margin-left: calc((100vw - 876px) / 2 * -1);
    width: 100vw;
  }
  .pageConts--profdetail .otherMembers .prof__memberLists {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1040px) {
  .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);
  }
}

/**
 * discography
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .pageConts--discography {
    width: calc(100% - 40px);
  }
  .pageConts--discographyDetail .discWrap .package__thumbListsWrap .package__thumbLists .slick-next {
    right: 32px;
  }
}

@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;
  }
}

@media screen and (min-width: 768px) and (max-width: 872px) {
  .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;
  }
}

.modal__close {
  right: 32px;
}

/**
 * goods
 */
@media screen and (min-width: 768px) and (max-width: 1040px) {
  .pageConts--goods {
    margin-left: 10px;
    width: calc(100% - 20px);
  }
  .pageConts--goods .goods__lists .goods__list {
    width: 31.14%;
  }
  .pageConts--goods .goods__lists .goods__list .goods__link .goods__thumb {
    height: calc((100vw - 20px) / 3);
    width: 100%;
  }
}
