﻿@charset "UTF-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 70px;
    scrollbar-gutter: stable both-edges;/*ハンバーガーメニュー開閉時にメインコンテンツがずれるのを防ぐ*/
}
body {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    background: #fff;
    font-family: YakuHanJP, "Noto Sans JP", serif;
}
#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.25em 0.5em 0.3em 0.5em;
}
.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: 500;
}
.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; }

/*　Page Top ボタン
**************************************************************/
/*ボタンデザイン*/
#page-top a {
	display: block;
    font-size: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    background: #000 url("../img/btn_arrow.png") no-repeat center center;
    background-size:55%;
    border-radius:50%;
    position: relative;
}
#page-top a:hover {
	background:#555 url("../img/btn_arrow.png") no-repeat center center;
    background-size:55%;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 5%;
	bottom:50px;
	z-index: 999;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
p#page-top {
    margin-bottom:0;
}
/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.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: 1024px) {
    #page-top {
        right: 15px;
    }
}

/*　footer
**************************************************************/
footer {
    width: 100%;
    height: auto;
    font-size:15px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: #fff;
    padding-bottom: 110px;
}
footer .footer-outer {
    padding: 30px 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;
}
.sponly2 {
display:inline-block;
}
@media only screen and (max-width: 768px) {
    .pconly {
        display: none;
    }
    .sponly {
        display: inline-block;
    }
}
.sponly2 {
display: none;
}

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

/* SNSシェアアイコン
**************************************************************/
.sns-share {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: #fff;
}
.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: #000;
    font-size: 11px;
    font-weight: normal;
    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;
}

/*　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: 100px;
  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("../img/btn_arrow_up.png") no-repeat center center;
  background-size:55%;
  border-radius:50%;
  position: absolute;
  top: 30px;
  right: 30px;
}
.footer-box a.btn-top:hover {
  background:#555 url("../img/btn_arrow.png") no-repeat center center;
  background-size:55%;
}
.footer-box a.btn-buy {
  display: inline-block;
  width: 20em;
  max-width: 70%;
  height: 2.4em;
  position: absolute;
  top: 25px;
  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: #4acccc url("../img/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: #00aec6 url("../img/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: 480px) {
  .footer-box a.btn-top {
    right: 15px;
  }
}
@media screen and (max-width: 320px) {
  .footer-box a.btn-buy {
    font-size: 0.9em;
    top: 30px;
    right: unset;
    left: 30px;
  }
}

/**************************************************************
Maki LP
**************************************************************/
#wrapper {
    background: #4acccc;
}

/*ドットライン*/
hr.dotted-line {
    border: none;
    border-top: 4px dotted #000;
    margin: 70px 0;
}
@media screen and (max-width: 540px) {
    hr.dotted-line {
        margin: 40px 0;
    }
}

/*　header
---------------------------------------------------------*/
#header {
    width: 100%;
    height: 80px;
    position:fixed;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 15px 30px;
    z-index: 999;
}
h1.title {
    width: 115px;
    height: auto;
    margin: 10px auto 0 0;
    font-size: 1.0em;
    line-height: 1.0;
}

/*　nav menu
---------------------------------------------------------*/
#header #nav-wrap {
    width: calc(100% - 10vw);
    position: relative;
    z-index: 1000;
}
#nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
#nav .menu a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding: 12px 15px;
    letter-spacing: 0.05em;
    transition: background-color .2s ease;
}
#nav .menu a:hover {
    color: #fff;
}
.menu-bottom-logo {
    display: none;
}

@media only screen and (max-width:1024px) {
    #nav .menu a {
        font-size: 16px;
        padding: 12px 9px;
    }
}

@media only screen and (max-width:800px) {
    /* ハンバーガーボタン */
    .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: #4acccc;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 1001;
        padding: 80px 40px;
        box-sizing: border-box;
        overflow-y: auto;
    }
    #nav .menu {
        flex-direction: column;
    }
    #nav .menu li + li { margin-top: 12px; }
    #nav .menu a {
        color: #fff;
        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);
    }
    .menu-bottom-logo {
        display: block;
        margin: 30px 0 0 0;
        text-align: center;
    }
    .menu-bottom-logo img {
        width: 30%;
        height: auto;
    }
    /* ===== マスク ===== */
    #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;
    }
}

/*　key visual
---------------------------------------------------------*/
#key-visual {
    z-index: 0;
}
.fv-logo {
    z-index: 1;
}
#key-visual .maincopy, #key-visual .main-copy-2026 {
    z-index: 2;
}
#key-visual {
    width: 100%;
    aspect-ratio: 3000 / 1700;
    overflow: hidden;
    position: relative;
    background: url("../images/maki_kv_pc.jpg") center bottom no-repeat;
    background-size: 100%;
}
#key-visual .maincopy {
    position: absolute;
    top: 100px;
    left: -5px;
    font-size: 1.4vw;
    line-height: 1.6;
    font-weight: 700;
    color: #fff;
    background: #000;
    padding: 0.6em 1.0em 0.6em 1.0em;
    transform: rotate(345deg);
}
#key-visual .main-copy-2026 {
    font-size: 2.2svw;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    text-align:center;
    text-shadow: 1px 1px 2px #000;
    position: absolute;
    bottom: 2vh;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/*飾りlogo*/
.fv-logo {
    position: absolute;
    left: -6vw; /* はみ出し量 */
    bottom: -3vw; /* はみ出し量 */
    width: min(1800px, 102vw); /* ほぼ画面幅いっぱい */
    margin: 0;
    pointer-events: none;
    opacity: .7; /* 写真に“透過で重ねる” */
    color: #4acccc;
}
.fv-logo__svg {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width:1024px) {
    #key-visual .maincopy {
        font-size: 2.2vw;
        left: 30px;
    }
}
@media only screen and (max-width:800px) {
    h1.title {
        width: 12svw;
    }
    #key-visual {
        background: url("../images/maki_kv_sp.jpg") center bottom no-repeat;
        background-size: 100%;
        aspect-ratio: 1600 / 1280;
    }
    #key-visual .maincopy {
        top: 12svw;
        left: -1svw;
    }
    #key-visual .main-copy-2026 {
        font-size: 3.6svw;
        bottom: 5svw;
    }
}
@media only screen and (max-width:540px) {
    #header {
        padding-left: 15px;
    }
    h1.title {
        width: 17svw;
        margin-top: 0;
    }
    .hamburger {
        top: 7px;
        right: 15px;
    }
    #key-visual {
        overflow: visible;
    }
    #key-visual .maincopy {
        font-size: 3.0vw;
        transform: rotate(350deg);
    }
    #key-visual .main-copy-2026 {
        font-size: 3.55svw;
        bottom: -19svw;
    }
    .fv-logo {
        bottom: -3px;
    }
}

/*　contents-block
---------------------------------------------------------*/
#main-contents {
    padding-bottom: 50px;
}
h2.section-title {
    min-width: 300px;
    font-size: 1.25em;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    display: inline-block;
    background: #000;
    padding: 0.7em 1.0em 0.15em;
    margin: 10px 0 15px;
    position: relative;
}
h2.section-title::before {
    display: block;
    content: "";
    width: 100vw;
    height: 1px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.contents-block {
    width: 100%;
}
.contents-outer {
    width: 100%;
}
.contents-inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
p.contents-lead {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 1.5em;
}

/*　a URL リンク
---------------------------------------------------------*/
a.url {
    color: #fff;
    transition: color .3s ease;
}
a.url:hover {
    color: #fb5360;
}

/*　リンクボタン
---------------------------------------------------------*/
a.btn-link {
    font-size: 1.1em;
    color: #fff;
    line-height: 1.0;
    padding: 0.7em 0.7em 0.8em 0.9em;
    background: #000;
    display: inline-block;
    border-radius: 4px;
}
a.btn-link::after {
    content: "";
    display: inline-block;
    width: 1.0em;
    height: 1.0em;
    background: url("../img/arrow-right.png") no-repeat;
    background-size: 100%;
    vertical-align: -0.1em;
    margin-left: 0.25em;
}
a.btn-link:hover {
    background:#555;
}
a.btn-link.btn-full-width {
    width: 100%;
    text-align: center;
}

/*　収録曲リスト
---------------------------------------------------------*/
.songlist-head {
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
    line-height: 4.7;
    text-align: center;
    display: block;
    width: 5.0em;
    height:5.0em;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 1.0em;
}
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;
}

/*　about NEVERMIND Rec.
---------------------------------------------------------*/
#LABEL {
    position: relative;
}
#LABEL .contents-inner {
    padding-top: 20px;
    position: relative;
}
#LABEL .circle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 210px;
    height: 105px;
    border-radius: 50% / 100% 100% 0 0;
    background: #4acccc;
    position: absolute;
    top: -100px;
    left: calc(50% - 45vw);
    z-index: 4;
}
.launched {
    font-size: 20px;
    font-family:  "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    line-height: 1.35;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: -15px;
    background: url("../img/arrow-down.png") bottom center no-repeat;
    background-size: 24px;
}
.launched a {
    display:block;
    color: #fff;
}
h2.anniv-title {
    font-size: 2.4em;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    text-align: center;
    margin: 30px 0 30px;
    padding-bottom: 20px;
    position: relative;
}
h2.anniv-title::after {
    content: "";
    display: block;
    width: 4%;
    height: 2px;
    background: #111;
    position: absolute;
    left:48%;
    bottom: 0;
}
h2.concept-title {
    font-size: 1.5em;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 10px 0 15px;
}
.label-logo {
    width: 100%;
    max-width: 600px;
    margin: 70px auto 70px auto;
}

/*メンバーコメント*/
#member-comment {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 70px;
}
#member-comment .member-comment-box {
    width: 31%;
    padding: 2% 2.5%;
    background-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1024px) {
    #LABEL .circle-box {
        width: 20vw;
        height: 10vw;
        top: -9.5vw;
        left: auto;
        right: -4.5vw;
    }
    .launched {
        font-size: 2vw;
    }
}
@media only screen and (max-width: 800px) {
    .label-logo {
        margin: 7svw auto 7svw auto;
    }
    #member-comment .member-comment-box {
        width: 100%;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 540px) {
    #LABEL .circle-box {
        width: 28vw;
        height: 14vw;
        top: -13vw;
    }
    .launched {
        font-size: 2.6vw;
        background-size: 3vw;
        padding-bottom: 3.5vw;
        margin-bottom: -2vw;
    }
    h2.anniv-title {
        font-size: 7.0svw;
        margin-top: 20svw;
    }
    h2.concept-title {
        font-size: 4svw;
    }
}

/*　NEW RELEASE
---------------------------------------------------------*/
.release-title-wrap {
    display: block;
    text-align: center;
    position: relative;
    margin: 30px 0;
}
.release-title {
    font-size: 2.0em;
    font-weight: 900;
    line-height: 1.4;
    color: #000;
}
.release-date {
    position: absolute;
    top: -25px;
    left: calc(50% - 26svw);
    display: inline-block;
    margin: 0 auto;
    font-size: 1.4em;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.0;
    color: #fff;
    background: #000;
    padding: 0.5em 0.7em 0.35em;
    transform: rotate(345deg);
}
@media (max-width: 1024px) {
    .release-date {
        position: absolute;
        top: -4svw;
        left: calc(50% - 27svw);
    }
}
@media (max-width: 800px) {
    .release-date {
        position: absolute;
        top: -4svw;
        left: calc(50% - 35svw);
    }
}
@media (max-width: 540px) {
    .release-date {
        font-size: 1.2em;
        position: absolute;
        top: -8svw;
        left: 1.5svw;
    }
    .release-title {
        font-size: 7.0svw;
    }
}

/*　TOUR SCHEDULE
---------------------------------------------------------*/
table.tour-schedule {
    width: 100%;
    border: none;
    margin: 30px 0;
}
table.tour-schedule td {
    padding: 12px 15px;
}
table.tour-schedule td.date {
    width: 8.0em;
}
table.tour-schedule td.place {
    font-weight: 600;
}
table.tour-schedule td.open {
    width: 15.0em;
}
table.tour-schedule tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.2);
}
table.tour-schedule .oneman {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.0;
    display: inline-block;
    background: #d37739;
    padding: 0.25em 0.6em;
    margin-left: 1.0em;
}
@media (max-width: 540px) {
    table.tour-schedule td {
        padding: 10px 8px;
    }
    table.tour-schedule td.date {
        display: inline-block;
        width: 8.0em;
        padding-bottom: 0;
    }
    table.tour-schedule td.open {
        display: inline-block;
        width: calc(100% - 8.0em);
        padding-bottom: 0;
    }
    table.tour-schedule td.place {
        display: block;
        width: 100%;
        padding-top: 0;
        padding-left: calc(8.0em + 8px);
    }
}

/*　INFORMATION
---------------------------------------------------------*/
.info-topic-title {
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.6;
    border-bottom: 2px dotted;
    margin-bottom: 0.7em;
}

/*　SNS リンク
---------------------------------------------------------*/
.sns-lists {
    display: flex;
    flex-direction: row;
    margin: 0 auto 30px auto;
}
.sns-list-icon {
    width: 28px;
    height: 28px;
    margin: 0 30px 0 0;
}
.menu-bottom-sns-lists {
    display: none;
}
@media only screen and (max-width: 800px) {
    .menu-bottom-sns-lists {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .menu-bottom-sns-lists > .sns-list-icon {
        width: 24px;
        height: 24px;
        margin: 0 15px;
    }
}
@media only screen and (max-width: 540px) {
    .sns-lists {
        justify-content: center;
    }
    .sns-list-icon {
        width: 24px;
        height: 24px;
        margin: 0 10px;
    }
}

/*　1024px以下
---------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
    /*contents-inner*/
    .contents-inner {
        padding: 25px 0;
    }
}

/*　800px以下
---------------------------------------------------------*/
@media only screen and (max-width: 800px) {

}

/*　540px以下
---------------------------------------------------------*/
@media only screen and (max-width: 540px) {

}


