@charset "UTF-8";
/* CSS Document */
html {
    overflow-x: hidden;
    scroll-behavior: auto;
    scroll-padding-top: 0; /*任意の数値を設定*/
    scrollbar-gutter: stable; /*スクロールバーの有無によるズレ回避*/
}

body {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    font-family: YakuHanJP, "Noto Sans JP", serif;
    background: #fff;
    margin: 0;
}

#wrapper {
    overflow-x: hidden; /*スマホ横ブレ防止*/
}

@media only screen and (max-width: 1024px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #fb5360;
}
a:hover {
    color: #cb2b37;
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.4;
    padding: 0.2em 0;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}
h1 {
    font-size: 3.0em;
}
h2 {
    font-size: 2.2em;
}
h3 {
    font-size: 1.6em;
}
h4 {
    font-size: 1.25em;
}
h5 {
    font-size: 1.1em;
}
h6 {
    font-size: 1.05em;
}

/*　汎用クラス
**************************************************************/

/* 文字揃え */
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-just {
    text-align: justify;
}
.text-center {
    text-align: center;
}

/*テキスト装飾*/
.text-border-top {
    border-top: 1px solid;
}
.text-border-bottom {
    border-bottom: 1px solid;
}
.text-frame {
    line-height: 1.0 !important;
    border: 1px solid;
    padding: 0.3em 0.6em 0.35em 0.6em;
}
.text-info-red {
    font-size: inherit;
    color: #fff;
    padding: 0.3em 0.6em 0.35em 0.6em;
    background: #cc0000;
}
.text-info-orange {
    font-size: inherit;
    color: #fff;
    padding: 0.3em 0.6em 0.35em 0.6em;
    background: #fe6214;
}
.text-info-green {
    font-size: inherit;
    color: #fff;
    padding: 0.3em 0.6em 0.35em 0.6em;
    background: #79bfb3;
}
.inline-block {
    display: inline-block;
}
.text-s {
    font-size: 90%;
}
.text-ss {
    font-size: 80%;
}
.text-sss {
    font-size: 70%;
}
.text-l {
    font-size: 107%;
}
.text-ll {
    font-size: 115%;
}
.text-lll {
    font-size: 125%;
}
.text-llll {
    font-size: 135%;
}
.text-lllll {
    font-size: 150%;
}
.text-normal {
    font-weight: normal;
}
.text-bold {
    font-weight: 600;
}
.lh-narrow {
    line-height: 1.5;
}

/*リンクURL*/
.url {
    line-height: 1.5;
    word-break: break-all;
}

/*　マージン・パディング
**************************************************************/
/* マージン0 */
.margin-0 {
    margin: 0;
}
/* 左右マージン */
.mx-auto {
    margin-right: auto;
    margin-left: auto;
}
/* 左右余白 */
.px-0 {
    padding-right: 0;
    padding-left: 0;
}
.px-05 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.px-10 {
    padding-right: 1.0rem;
    padding-left: 1.0rem;
}
.px-15 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.px-20 {
    padding-right: 2.0rem;
    padding-left: 2.0rem;
}
.px-30 {
    padding-right: 3.0rem;
    padding-left: 3.0rem;
}
/* 上マージン */
.mt-0 { margin-top: 0!important; }
.mt-1 { margin-top: 1.0rem!important; }
.mt-2 { margin-top: 2.0rem!important; }
.mt-3 { margin-top: 3.0rem!important; }
.mt-4 { margin-top: 4.0rem!important; }
.mt-5 { margin-top: 5.0rem!important; }
/* 下マージン */ 
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 1.0rem!important; }
.mb-2 { margin-bottom: 2.0rem!important; }
.mb-3 { margin-bottom: 3.0rem!important; }
.mb-4 { margin-bottom: 4.0rem!important; }
.mb-5 { margin-bottom: 5.0rem!important; }
/* 左マージン */
.ml-0 { margin-left: 0!important; }
.ml-1 { margin-left: 1.0rem!important; }
.ml-2 { margin-left: 2.0rem!important; }
.ml-3 { margin-left: 3.0rem!important; }
.ml-4 { margin-left: 4.0rem!important; }
.ml-5 { margin-left: 5.0rem!important; }
/* 右マージン */
.mr-0 { margin-right: 0!important; }
.mr-1 { margin-right: 1.0rem!important; }
.mr-2 { margin-right: 2.0rem!important; }
.mr-3 { margin-right: 3.0rem!important; }
.mr-4 { margin-right: 4.0rem!important; }
.mr-5 { margin-right: 5.0rem!important; }
/* 上パディング */
.pt-0 { padding-top: 0!important; }
.pt-1 { padding-top: 1.0rem!important; }
.pt-2 { padding-top: 2.0rem!important; }
.pt-3 { padding-top: 3.0rem!important; }
.pt-4 { padding-top: 4.0rem!important; }
.pt-5 { padding-top: 5.0rem!important; }
/* 下パディング */ 
.pb-0 { padding-bottom: 0!important; }
.pb-1 { padding-bottom: 1.0rem!important; }
.pb-2 { padding-bottom: 2.0rem!important; }
.pb-3 { padding-bottom: 3.0rem!important; }
.pb-4 { padding-bottom: 4.0rem!important; }
.pb-5 { padding-bottom: 5.0rem!important; }
/* 左パディング */
.pl-0 { padding-left: 0!important; }
.pl-1 { padding-left: 1.0rem!important; }
.pl-2 { padding-left: 2.0rem!important; }
.pl-3 { padding-left: 3.0rem!important; }
.pl-4 { padding-left: 4.0rem!important; }
.pl-5 { padding-left: 5.0rem!important; }
/* 右パディング */ 
.pr-0 { padding-right: 0!important; }
.pr-1 { padding-right: 1.0rem!important; }
.pr-2 { padding-right: 2.0rem!important; }
.pr-3 { padding-right: 3.0rem!important; }
.pr-4 { padding-right: 4.0rem!important; }
.pr-5 { padding-right: 5.0rem!important; }

/*　footer
**************************************************************/
footer {
    width: 100%;
    height: auto;
    font-size:15px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
}
footer .footer-outer {
    padding: 30px 0 120px 0;
}
footer .footer-logo-outer {
    text-align: center;
    margin: 1.2em 0 0.5em 0;
    display: block;
}
footer .copyright {
    font-size: 12px;
    color: #000;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
footer .footer-logo-outer span.footer-logo {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

/* PC・SP 表示・非表示
**************************************************************/
.pconly {
    display: inline-block;
}
.sponly {
    display: none;
}
@media only screen and (max-width: 768px) {
    .pconly {
        display: none;
    }
    .sponly {
        display: inline-block;
    }
}

/*　Contents
**************************************************************/
.contents-block {
    width: 100%;
    margin: 0;
    padding: 0;
}
.contents-outer {
    width: 100%;
}
.contents-inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}
.column-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.column-box .col-25,
.column-box .col-30,
.column-box .col-33,
.column-box .col-50,
.column-box .col-70,
.column-box .col-75,
.column-box .col-100 {
    padding: 0 2.5%;
}
.column-box .col-25 {
    width: 25%; 
}
.column-box .col-30 {
    width: 30%; 
}
.column-box .col-33 {
    width: calc(100% / 3); 
}
.column-box .col-50 {
    width: 50%; 
}
.column-box .col-70 {
    width: 70%; 
}
.column-box .col-75 {
    width: 75%; 
}
.column-box .col-100 {
    width: 100%; 
}
.column-box .mx-auto {
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 540px) {
    .contents-inner {
        width: 90%;
    }
    .column-box .col-30 {
        width: 70%;
        margin: 0 auto 1.5em auto;
    }
    .column-box .col-50 {
        width: 100%; 
    }
    .column-box .col-70 {
        width: 100%; 
    }
    .column-box .col-sp-50 {
        width: 50%;
    }
    .column-box .col-sp-70 {
        width: 70%;
    }
    .column-box .col-sp-100 {
        width: 100%; 
    }
}

@media screen and (max-width: 425px) {
    .column-box .col-sp-50 {
        width: 100%;
    }
}

/* ナビゲーションメニュー
**************************************************************/
/* ===== 全体レイアウト ===== */
#nav-wrap {
    position: relative;
    z-index: 1000;
}

/* ハンバーガーボタン */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: #111;
    transition: all .25s ease;
}
#nav-wrap.is-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff;
}
#nav-wrap.is-open .hamburger span:nth-child(2) {
    opacity: 0;
}
#nav-wrap.is-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff;
}


/* ===== ナビゲーション ===== */
#nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 420px);
    background: #fe6214;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1001;
    padding: 80px 24px;
    box-sizing: border-box;
    overflow-y: auto;
}
#nav .menu {
    list-style: none;
    margin: 0 0 0 10px;
    padding: 0;
}
#nav .menu li + li { margin-top: 12px; }
#nav .menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    letter-spacing: 0.05em;
    transition: background-color .2s ease;
}
#nav .menu a:hover {
    background: rgba(255,255,255,0.1);
}
#nav .menu li {
    padding-left: 1.8em;
    position: relative;
}
#nav .menu li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1.4em;
    left: 0;
}

/* ===== マスク ===== */
#mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1000;
}

/* ===== 開いた状態 ===== */
#nav-wrap.is-open #nav {
    transform: translateX(0);
}
#nav-wrap.is-open #mask {
    opacity: 1;
    pointer-events: auto;
}
html.no-scroll, body.no-scroll {
    overflow: hidden;
}
#nav-wrap.is-open .hamburger {
    gap: 5px;
}

/* SNSシェアアイコン
**************************************************************/
.sns-share {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: none;
}
.sns-share dl.share-list {
    text-align: center;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.sns-share .share-list dt.share-ttl {
    display: inline-block;
    color: #6db2a6;
    font-size: 12px;
    font-weight: 500;
    line-height:50px;
    text-align: center;
    width: 50px;
}
.sns-share .share-list dd {
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 10px;
}
.sns-share .share-list dd img {
    width: 100%;
    height: auto;
    vertical-align: top;
}
.sns-share .share-list dd img:hover {
    opacity: 0.7;
}

/* 汎用リスト
**************************************************************/
.simple-list {
    font-size: inherit;
    text-indent: -1.0em;
    margin-left: 1.0em;
}
.simple-list.note {
    font-size: 85%;
}

/*　Youtube 埋め込み
**************************************************************/
.youtube {
    width:100%;
    height:auto;
    position: relative;
    padding-bottom: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*　way points Animation
**************************************************************/
.anm-fadeIn {
    opacity:0;
    transition:1.0s;
    transform:translateX(50px);
}
.anm-fadeIn.active {
    opacity:1.0;
    transition:1.0s;
    transform:translateX(0);
}
.anm-fadeIn-left {
    opacity:0;
    transition:1.0s;
    transform:translateX(-100px);
}
.anm-fadeIn-left.active {
    opacity:1.0;
    transition:1.0s;
    transform:translateX(0);
}
.anm-fadeInUp {
    opacity:0;
    transition:1.0s;
    transform:translateY(50px);
}
.anm-fadeInUp.active {
    opacity:1.0;
    transition:1.0s;
    transform:translateY(0);
}

/*　Page Top ボタン
**************************************************************/
/*下に固定*/
#bottom-cta-box {
  display: block;
  width: 100%;
  height: 90px;
  background: #000;
  position: fixed;
  left: 0;
  bottom:0;
  z-index: 999;
/*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
.footer-box {
  display: flex;
  flex-direction: row;
  position: relative;
}
/*ボタンデザイン*/
.footer-box a.btn-top {
  display: inline-block;
  font-size: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  background: #fff url("../img5th/btn_arrow_up.png") no-repeat center center;
  background-size:55%;
  border-radius:50%;
  position: absolute;
  top: 25px;
  right: 30px;
}
.footer-box a.btn-top:hover {
  background:#555 url("../img5th/btn_arrow.png") no-repeat center center;
  background-size:55%;
}
.footer-box a.btn-buy {
  display: inline-block;
  width: 30em;
  max-width: 70%;
  height: 2.4em;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding-right: 1.0em;
  font-size: 1.2em;
  color: #fff;
  font-weight: 700;
  line-height: 2.4;
  text-align: center;
  background: #fb9510 url("../img5th/chevron-right_white.png") no-repeat;
  background-size: 0.6em;
  background-position: top 0.7em right 0.7em;
  border-radius: 4px;
}
.footer-box a.btn-buy:hover {
  color: #fff;
  background: #fe6214 url("../img5th/chevron-right_white.png") no-repeat;
  background-size: 0.6em;
  background-position: top 0.7em right 0.7em;
}
/*　上に上がる動き　*/
#bottom-cta-box.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#bottom-cta-box.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 1;
      transform: translateY(0);
    }
    to {
        opacity: 1;
      transform: translateY(100px);
    }
}

@media screen and (max-width: 540px) {
  .footer-box a.btn-top {
    right: 15px;
  }
  #bottom-cta-box.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 1;
      transform: translateY(0);
    }
    to {
        opacity: 1;
      transform: translateY(110px);
    }
}
}
@media screen and (max-width: 320px) {
  .footer-box a.btn-buy {
    font-size: 1.1em;
    right: unset;
    left: 30px;
  }
}

/**************************************************************
プロジェクトセカイ COLORFUL LIVE 5th - Frontier - Blu-ray
**************************************************************/

/*　全体背景指定
---------------------------------------------------------*/
.bg-fixed {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; と同じ */
  background: url("../images5th/background_map.jpg") center/cover no-repeat;
  z-index: -1;
}
#wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
    position: relative;
}

/*　firstView
---------------------------------------------------------*/
#firstView {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
}
#firstView .kv-stage {
  position: relative;
  display: inline-block;
}
#firstView #keyVisual,
#firstView #keyVisual img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 90svh;
}
#firstView .fifth-title {
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 35%;
    padding: 0.5%;
    background: rgba(255, 255, 255, 0.8);
}
#firstView .fifth-title img {
    width: 100%;
    height: auto;
    display: block;
}
#firstView #fv-circle-btn-wrap {
    display: block;
    width: 220px;
    height: 220px;
    position: absolute;
    bottom: 8svh;
    right: -60px;
}
#fv-circle-btn-wrap .fv-circle-top {
    display: flex;
    width: 220px;
    height: 110px;
    background: rgba(212,232,231,0.8);
    border-radius: 110px 110px 0 0;
    align-items: flex-end;
    justify-content: center;
}
#fv-circle-btn-wrap .fv-circle-top span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom:12px;
}
#fv-circle-btn-wrap .fv-circle-bottom {
    display: flex;
    width: 220px;
    height: 110px;
    background: #79bfb3;
    border-radius: 0 0 110px 110px;
    align-items: flex-start;
    justify-content: center;
}
#fv-circle-btn-wrap .fv-circle-bottom:hover {
    background: #6db2a6;
}
#fv-circle-btn-wrap .fv-circle-bottom span {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-top:10px;
    display:block;
    position: relative;
}
#fv-circle-btn-wrap .fv-circle-bottom span::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    bottom: -20px;
    left: calc(50% - 10px);
}

@media (max-width: 1440px) {
    #firstView #keyVisual,
    #firstView #keyVisual img {
        max-width: 1300px;
        width: 90vw;
        height: auto;
        max-height: 90svh;
        margin: 0 auto 0;
    }
    #firstView #fv-circle-btn-wrap {
        right: -35px;
        bottom: 70px;
    }
}
@media (max-width: 1280px) {
    #firstView .fifth-title {
        left: 0;
    }
    #firstView #fv-circle-btn-wrap {
        width: 15vw;
        height: 15vw;
        right: 15px;
    }
    #fv-circle-btn-wrap .fv-circle-top,
    #fv-circle-btn-wrap .fv-circle-bottom {
        width: 15vw;
        height: 7.5vw;
    }
    #fv-circle-btn-wrap .fv-circle-top span {
        font-size: 1.7svw;
        margin-bottom: 0.8svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span {
        font-size: 1.7svw;
        margin-top: 0.7svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span::after {
        width: 1.2svw;
        height: 1.2svw;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        bottom: -1.4svw;
    }
}
@media (max-width: 1024px) {
    #firstView {
        height: auto;
        min-height: 90svh;
        justify-content: flex-start;
        align-items: center;
    }
    #firstView #keyVisual,
    #firstView #keyVisual img {
        margin: 0 auto;
        width: 85svw;
        height: auto;
        max-height: none;
    }
    #firstView .fifth-title {
        width: 90%;
        background: none;
        left: 5%;
        bottom: 13svw;
    }
    #title-logo img {
        width: 100%;
        height: auto;
    }
    #firstView #fv-circle-btn-wrap {
        width: 20vw;
        height: 20vw;
        right: -5svw;
        bottom: -1svh;
    }
    #fv-circle-btn-wrap .fv-circle-top,
    #fv-circle-btn-wrap .fv-circle-bottom {
        width: 20vw;
        height: 10vw;
    }
    #fv-circle-btn-wrap .fv-circle-top span {
        font-size: 2.1svw;
        margin-bottom: 1.2svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span {
        font-size: 2.1svw;
        margin-top: 1.1svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span::after {
        width: 2.0svw;
        height: 2.0svw;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        bottom: -2.1svw;
    }
}
@media (max-width: 540px) {
    #firstView {
        min-height: auto;
    }
    #firstView .kv-stage {
        padding-bottom: 5svw;
    }
    #firstView #keyVisual, #firstView #keyVisual img {
        width: 100%;
    }
    #firstView .fifth-title {
        width: 110%;
        background: none;
        left: -5%;
        bottom: -5svw;
    }
    #title-logo img {
        width: 100%;
        height: auto;
    }
    #firstView #fv-circle-btn-wrap {
        width: 30vw;
        height: 30vw;
        right: -2.5svw;
        bottom: 50svw;
    }
    #fv-circle-btn-wrap .fv-circle-top,
    #fv-circle-btn-wrap .fv-circle-bottom {
        width: 30vw;
        height: 15vw;
    }
    #fv-circle-btn-wrap .fv-circle-top span {
        font-size: 3.3svw;
        margin-bottom: 1.2svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span {
        font-size: 3.3svw;
        margin-top: 1.1svw;
    }
    #fv-circle-btn-wrap .fv-circle-bottom span::after {
        width: 3.0svw;
        height: 3.0svw;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        bottom: -3.2svw;
    }
}


/*　Topics
**************************************************************/
/*　WHAT'S NEW */
.scroll-box {
    width: 100%;
    height: 240px;
    overflow-y: scroll;
    margin: 0 auto 0 0;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
}
dl.topics {
    display:flex;
    flex-wrap: wrap;
    margin: 1.5em;
}
dl.topics dt.update {
    width: 6.0em;
    font-size: 0.9em;
    line-height: 1.5;
    color: #000;
    display: block;
    padding: 0.5em 0.75em;
}
dl.topics dd {
    width: calc(100% - 7.0em);
    margin-left: 1.0em;
    margin-bottom: 1.0em;
    padding: 0.25em 0.75em;
    border-bottom: 1px dotted #6db2a6;
}
dl.topics dd a {
    display: block;
    color: #222;
    position: relative;
}
dl.topics dd a:hover {
  color: #00aec6;
}
dl.topics dd a::after {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    right: 0;
    background: url("../img5th/arrow-down.png") no-repeat;
    background-size: 66%;
    background-position: center center;
    background-color: #79bfb3;
    border-radius: 50vh;
    margin-left: 0.5em;
    vertical-align: -0.2em;
}

/*　simplebar
**************************************************************/
.scroll-box::-webkit-scrollbar {/*デフォルトを非表示*/
    display: none;
}
.simplebar-track {
    background: none;
    border-radius: 2px;
}
.simplebar-track .simplebar-scrollbar.simplebar-visible::before{
    opacity:1;
}
.simplebar-track .simplebar-scrollbar::before{
    background: #79bfb3;
}

/*　contents-block
---------------------------------------------------------*/
#main-contents {
    padding-top: 0;
    padding-bottom: 50px;
}
h2.section-title {
    font-size: 3.0em;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #fe6214;
    text-align: center;
    letter-spacing: 0.5em;
    margin: 30px 0;
    position: relative;
}
.contents-block {
    width: 100%;
}
.contents-outer {
    width: 100%;
}
.contents-inner {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}
.contents-inner-wide {
    width: 92%;
    margin: 0 auto;
}
.contents-box {
    padding: 40px 50px;
    background: #fff;
}

/*　初回限定盤＆通常盤
---------------------------------------------------------*/
.syokai-tokuten-title {
    font-size: 1.4em;
    color: #fff;
    font-weight: 700;
    padding: 0.3em 0.6em 0.35em;
    background: #fe6214;
    display: inline-block;
    margin-bottom: 0.5em;
}
.syokai-tokuten-list {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 1.0em;
    margin-left: 1.0em;
    text-indent: -1.0em;
}
.disc-topics {
    font-size: 1.05em;
    margin-bottom: 0.5em;
}
.disc-topics li {
    margin-left: 4.5em;
    margin-bottom: 0.5em;
}
.disc-topics li span {
    display: inline-block;
    width: 4.0em;
    margin-left: -4.5em;
    margin-right: 0.5em;
    text-align: center;
    padding: 0.25em 0.5em 0.3em;
    border: 1px solid;
    line-height: 1.0;
}

/*　SET LIST
---------------------------------------------------------*/
.setlist-wrapper-day {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #fe6214;
    margin-bottom: 30px;
}
.setlist-head-day {
    color: #fff;
    text-align:center;
    margin: 0 0 30px 0;
    padding: 0.5em;
    background: #fe6214;
}
.setlist-wrapper-night {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #6db2a6;
    margin-bottom: 30px;
}
.setlist-head-night {
    color: #fff;
    text-align:center;
    margin: 0 0 30px 0;
    padding: 0.5em;
    background: #6db2a6;
}
dl.songlist {
    margin: 15px 15px 30px 30px;
}
dl.songlist dt {
    float:left;
    width:150px;
    min-height:66px;
    text-align:center;
}
dl.songlist dt.floatnone {
    float:none;
    width:100%;
    min-height:unset;
    background:#dceff3;
    margin-bottom:18px;
}
dl.songlist dd {
    font-weight: bold;
    line-height: 1.8;
    width:auto;
    min-height:66px;
    margin-left:160px;
    margin-bottom:20px;
}
dl.songlist dd::after {
    dispaly:block;
    content:"";
    clear:left;
}
dl.songlist dd span.small {
    display: inline-block;
    font-size: 0.8em;
    font-weight: normal;
    margin-bottom: 1.0em;
}
h6.encoir {
    display: inline-block;
    font-size:0.85em;
    text-align:center;
    padding:0.2em 0.7em;
    border:1px solid;
    margin-bottom:1.0em;
}

/*　予約特典見出し
---------------------------------------------------------*/
.border-bottom-orange {
    margin-bottom: 1.5em;
    padding-bottom:0.2em;
    border-bottom: 2px solid #fe6214;
}

/*　予約ボタン
---------------------------------------------------------*/
a.btn-reserve {
    display: inline-flex;
    position: relative;
    width: 500px;
    height: 62px;
    font-size: 1.3em;
    font-weight: 500;
    color: #fff;
    background: #fe6214;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    padding-right: 1.0em;
    margin: 0;
}
a.btn-reserve::after {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
}
a.btn-reserve:hover {
    background: #fa5d44;
}

/*　リンクボタン
---------------------------------------------------------*/
a.btn-link {
    font-size: 1.15em;
    color: #fff;
    line-height: 1.0;
    padding: 0.5em 0.7em 0.7em 1.0em;
    background: #fe6214;
    display: inline-block;
    border-radius: 4px;
}
a.btn-link::after {
    content: "";
    display: inline-block;
    width: 1.0em;
    height: 1.0em;
    background: url("../img5th/arrow-right.png") no-repeat;
    background-size: 100%;
    vertical-align: -0.1em;
    margin-left: 0.25em;
}
a.btn-link:hover {
    background:#fb9510;
}

/*　収録曲リスト
---------------------------------------------------------*/
ol.song-list {
    counter-reset: listnum;
    margin: 0 0 30px 0;
}
ol.song-list li {
    font-size: 1.05em;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0.5em;
}
ol.song-list li::before {
    counter-increment: listnum;
    content: counter(listnum, decimal-leading-zero)".";
    padding-right: 0.3em;
}
ol.song-list li span {
    font-size: 80%;
    font-weight: 400;
}

/* シリーズバナー
---------------------------------------------------------*/
.bannar-btn-box img:hover {
    opacity: 0.7;
}



/*　1024px以下
---------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
    /*Hamburger*/
    .hamburger {
        position: fixed;
        top:2.0vw;
        right: 2.0vw;
    }
    #main-contents {
        padding-top: 70px;
    }
    .contents-inner {
        padding: 25px 0;
    }
}

/*　540px以下
---------------------------------------------------------*/
@media only screen and (max-width: 540px) {
    #main-contents {
        padding-top: 0;
    }
    h2.section-title {
        font-size: 2.4em;
    }
    a.btn-reserve {
        width: 100%;
    }
    a.btn-link {
        display: block;
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }
}

/*　425px以下
---------------------------------------------------------*/
@media only screen and (max-width: 425px) {
    /*H2*/
    h2.section-title {
        font-size: 2.0em;
    }
    /*SET LIST*/
    dl.songlist {
        margin-left: 15px;
    }
    dl.songlist dt {
        width: 100px;
    }
    dl.songlist dd {
        margin-left: 110px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   権利表記 共通
━━━━━━━━━━━━━━━━━━━━━━━*/
.kv-copyright {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #000;
}
img.piapro {
    display: inline-block;
    width: 4.2em;
    height: auto;
    margin: 0 2px;
    vertical-align: middle;
}
/*スラッシュ*/
.pc-slash {
    display: inline-block;
}
.pc-slash::after {
    content: "/";
    display: inline-block;
    margin: 0 0.3em;
}
/*改行*/
.sp-br, .ssp-br {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   firstView 内
━━━━━━━━━━━━━━━━━━━━━━━*/
#firstView .kv-artist-name {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 0.3em;
}
#firstView .kv-artist-name, #firstView .kv-copyright {
    text-align: right; /* PC時：右揃え */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   footer 内
━━━━━━━━━━━━━━━━━━━━━━━*/
.footer-copyright {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    margin: 10px 0;
}
#firstView .kv-stage {
    padding-bottom: 45px;
}
/* PC：画像の中に右下配置 */
#firstView .kv-meta-pc {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    font-size: 12px;
    line-height: 1.4;
}
/* PC では SP版は消しておく */
#firstView .kv-meta-sp {
    display: none;
}
@media only screen and (max-width: 1024px) {
    #firstView .kv-stage {
        padding-bottom: 0;
    }
    /* PC版は非表示 */
    #firstView .kv-meta-pc {
        display: none;
    }
    #firstView .kv-artist-name, #firstView .kv-copyright {
        text-align: left; /* タブレット以下：左揃え */
    }
    /* SP版だけ表示して、ヘッダー直下に置く */
    #firstView .kv-meta-sp {
        display: block;
        width: 85svw;
        padding: 0;
        margin-top: 8px;
        font-size: 10px;
        line-height: 1.4;
        text-align: left;
    }
}
@media only screen and (max-width: 800px) {
    .sp-br {
        display: inline;
    }
}
@media only screen and (max-width: 540px) {
    #firstView .kv-meta-sp {
        width: 89svw;
        margin-top: 0;
    }
    .pc-slash {
        display: none;
    }  
}
@media only screen and (max-width: 450px) {
    .ssp-br {
        display: inline;
    }
}