@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
/* 1. 数値だけをそのまま変数に入れる */
  --line-height-base01: 1.875; 
  --line-height-base02: 1.625;
  --line-height-base03: 1.92;
  --line-height-base04: 2;
  --line-height-base05: 1.75;
  --line-height-base06: 1.42;
  --line-height-base07: 1.2;
  --line-height-base08: 1.16;
  --line-height-base09: 1.5;
  --line-height-base10: 1;
  --line-height-heading: 1.3;
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-orenge01:#ffbc00;
  --color-orenge02:#ffa200;
  --color-gray01:#333333;
  --color-gray02:#818181;
  --color-gray03:#737373;
  --color-gray04:#4c4c4c;
  --color-gray05:#666666;
  --color-gray06:#dbdbdb;
  --color-gray07:#efefef;
  --color-gray08:#727272;
  --color-gray09:#eeeeee;
  --color-black01:#231815;
   --color-green01:#005342;
   --color-green02:#42923f;
   --color-green03:#0a7425;

   --color-deepgreen01:#002820;
   --color-gold01:#cbc382;
/*  --color-green01:#024724;
  --color-green02:#0a7425;
  --color-green03:#054d1b;*/
  --color-red01:#c52833;
  --color-lightpurple01:#8b9bce;
  --color-purple01:#4861b0;
}

/* ==========================================================================
   ▼ 【16px基準】rem変換早見表（いつでも確認用）
   --------------------------------------------------------------------------
   40px = 2.5rem      | 18px = c
   32px = 2rem        | 16px = 1rem (本文標準)
   24px = 1.5rem      | 15px = 0.9375rem
   20px = 1.25rem     | 14px = 0.875rem
   ========================================================================== */

html {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background: var(--color-bg);
}

body {
  overflow-x: hidden;
  line-height: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

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

a,
a > *{
    transition: 0.3s;
}

a.noLink{
    pointer-events: none;
    opacity: 0.6;
}

.spOnly{display: none;}

.js-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease !important;
}

.js-scroll.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {    
    .pcOnly{
        display: none !important;
    }
    
    .spOnly{
        display: inline-block;
    }
    
}


/* header //////////////*/
header{
    width: 100%;
    z-index: 5;
    transition: 0.3s;
    position: fixed;
    background: var(--color-bg);
    top: 0;
    height: 70px;
}

header.is-fixed{
    border-bottom: 2px solid var(--color-gray01);
}


header .navBg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    background: var(--color-bg);

    transform: scaleY(0);
    transform-origin: top;
    transition: transform .45s cubic-bezier(.22,.61,.36,1);

    z-index: 1;
}

header.menuOpen .navBg{
    height: 100%;
}

header.menuOpen .navBg{
    transform: scaleY(1);
}

header .headerWrap{
    position: relative;
    z-index: 2;
    display: flex;
    padding: 9px 50px 6px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .headerLogo{
}

header .headerLogo a{
    display: flex;
    gap:18px;
    align-items: center;
}

header .headerLogo img{
    width: 127px;
}

header .headerLogo span{
    font-size: 1.063rem;
    font-weight: 700;
}

header .headerActions{
    display: flex;
    justify-content: space-between;
    gap:0 53px;
}

header .headerLinks{
    display: flex;
    gap:0 25px;
    align-items: center;
}

header .headerLinks .headerLinksItem{
    align-items: flex-end;
}

header .headerLinks .headerLinksItem a{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

header .headerLinks .headerLinksItem .icn{
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .headerLinks .headerLinksItem.fanclub img{ width: 21px;}
header .headerLinks .headerLinksItem.goods img{ width: 22px;}
header .headerLinks .headerLinksItem.tickets img{ width: 29px;}

header .headerLinks span.txt{
    font-family: "Roboto Condensed", sans-serif;
    margin-top: 6px;
}

header .headerLinks .headerLinksItem:hover span.txt{
    color: var(--color-orenge01);
}

header .headerLinks .headerLinksItem:hover .noLink span.txt{
    color: var(--color-text);
}

.menuButton{
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;

    background: transparent;
    border: none;
    cursor: pointer;
}

.menuButton span{
    display: block;
    height: 3px;
    background: var(--color-text);
    transition: 0.3s;
}

/* 上・下 */
.menuButton span:nth-child(1),
.menuButton span:nth-child(3){
    width: 28px;
}

/* 真ん中だけ長い */
.menuButton span:nth-child(2){
    width: 35px;
}

.menuButton.active span:nth-child(1){
    transform: translateY(10px) rotate(30deg);
    width: 35px;
}

.menuButton.active span:nth-child(2){
    opacity: 0;
}

.menuButton.active span:nth-child(3){
    transform: translateY(-10px) rotate(-30deg);
    width: 35px;
}

header .globalNav{
    opacity: 0;
    position: absolute;
    top: 145px;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

header.menuOpen .globalNav{
    opacity: 1;
    visibility: visible;
}

header .globalNavSitemap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:60px 0;
    margin-bottom: 60px;
}

header .globalNavSitemap > *{
    width: 20%;
}

header .globalNavSitemap dt{
    font-size: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px;
}

header .globalNavSitemap dd{
    line-height: var(--line-height-base02);    
}

header .globalNavSitemap dd + dd{
    margin-top: 3px;
}

header .globalNavSitemap dd a{
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

header .globalNavSitemap dd a:before{
    content: "・";
}

header .globalNavSitemap dd a:hover{
    color: var(--color-orenge01);
}

header .globalNavSns{
    display: flex;
    gap:0 20px;
    align-items: center;
    width: 40%;
}

header .globalNavSns .facebook{ width: 31px;}
header .globalNavSns .x{ width: 24px;}
header .globalNavSns .instagram{ width: 29px;}
header .globalNavSns .youtube{ width: 32px;}
header .globalNavSns .tiktok{ width: 73px;}

header .globalNavSns a:hover img{
    opacity: 0.7;
}

header .globalNavBnr{
    display: flex;
    justify-content: space-between;
}

header .globalNavBnr li{
    width: 31.33%;
    position: relative;
    max-width: 375px;
}

header .globalNavBnr li.comingsoon:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

header .globalNavBnr li.comingsoon:after{
    content: "coming soon";
    font-family: "Roboto Condensed", sans-serif;    
    font-size: 2rem;
    font-weight:700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translateY(-50%) translateX(-50%);   
    z-index: 2;
    width: 100%;
    text-align: center;
}

header .globalNavBnr li a:hover img{
    filter: brightness(1.25);
}

header .globalNavBnr li.fanclub .btnFlex{
    position: absolute;
    top: 98px;
    left: 50%;
    width: calc(100% - 34px);
    transform: translateX(-50%);    
    display: flex;
    gap:12px;
}

header .globalNavBnr li.fanclub .btnDesign{
    width: calc(50% - 6px);
    height: 35px;
    background: var(--color-lightpurple01);
    border-color:var(--color-purple01);
    color: var(--color-bg);
}

header .globalNavBnr li.fanclub .btnDesign a{
    font-size: 0.9375rem;
    padding-left: 10px;
}

header .globalNavBnr li.fanclub .btnDesign a::after {
  font-size: 0.375rem;
    background:var(--color-purple01);
    color: var(--color-text);
}

header .globalNavBnr li.fanclub .btnDesign:before{
    background: var(--color-text);
}

header .globalNavBnr li.fanclub .btnDesign:hover{
    color: var(--color-bg);
    background: var(--color-purple01);
}

header .globalNavBnr li.fanclub .btnDesign:hover a:after{
    background: var(--color-lightpurple01);
    color: var(--color-text);
}


@media screen and (max-width: 1280px) {    
    header .globalNavSitemap > * {
      width: 33.33%;
    }    
    
    header .globalNavBnr{
        flex-wrap: wrap;
        gap:20px ;
        justify-content: center;
    }    
    
    header .globalNavBnr li {
        width: 48%;
    }    
        
}


@media screen and (max-width: 767px) {    
    header{
        height: calc(120vw / 7.5);
        left: 0;
        top: 0;
    }
    
    header .headerWrap{
        padding: calc(17vw / 7.5)  calc(40vw / 7.5)  calc(12vw / 7.5);
    }

    header .headerLogo img{
        width: calc(199vw / 7.5);
    }

    header .headerActions{
        gap:0 calc(45vw / 7.5);
        align-items: center;
    }

    header .headerLinks{
        gap:0  calc(30vw / 7.5);
    }

    header .headerLinks .headerLinksItem .icn{
        height: calc(38vw / 7.5);
    }

    header .headerLinks .headerLinksItem.fanclub img{ width: calc(35vw / 7.5);}
    header .headerLinks .headerLinksItem.goods img{ width: calc(38vw / 7.5);}
    header .headerLinks .headerLinksItem.tickets img{ width: calc(50vw / 7.5);}

    header .headerLinks span.txt{
        font-size: calc(27vw / 7.5);
        margin-top: calc(12vw / 7.5);
    }

    .menuButton{
        width: calc(59vw / 7.5);
        height: calc(59vw / 7.5);
        gap:calc(10vw / 7.5);
    }

    .menuButton span{
        height: calc(3vw / 7.5);
    }

    /* 上・下 */
    .menuButton span:nth-child(1),
    .menuButton span:nth-child(3){
        width: calc(48vw / 7.5);
    }

    /* 真ん中だけ長い */
    .menuButton span:nth-child(2){
        width:calc(59vw / 7.5);
    }

    .menuButton.active span:nth-child(1){
        transform: translateY(calc(13vw / 7.5)) rotate(30deg);
        width: calc(55vw / 7.5);
    }

    .menuButton.active span:nth-child(3){
        transform: translateY(calc(-13vw / 7.5)) rotate(-30deg);
        width: calc(55vw / 7.5);
    }

    header .globalNav{
        top:calc(120vw / 7.5);
    }

    header.is-fixed .globalNav{
        top:calc(120vw / 7.5);
        padding: 0;
    }

    header.menuOpen .globalNav{
        opacity: 1;
        visibility: visible;
        padding: 0;
        width: 100%;
       height: calc(100dvh - (150vw / 7.5));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;        
        padding-bottom: calc(80vw / 7.5);
        left:0;
        transform: translateX(0);        
         overflow-x:hidden;
        
    }

    header .globalNavSitemap{
        gap: 0;
        margin-bottom: calc(95vw / 7.5);
        border-top: 1px solid var(--color-gray05);
    }

    header .globalNavSitemapp > *{
        width: 100%;
        border-bottom: 2px solid var(--color-gray05);
    }    
    
    header .globalNavSitemap{
        gap: 0;
        margin-bottom: calc(95vw / 7.5);
    }

    header .globalNavSitemap > *{
        width: 100%;
        border-bottom: 1px solid var(--color-gray05);
    }

    header .globalNavSitemap dt{
        cursor: pointer;
        font-size: calc(50vw / 7.5);
        display: flex;
        align-items: baseline;
        margin-bottom: 0;
        padding: calc(30vw / 7.5) calc(50vw / 7.5);
        position: relative;
    }

    header .globalNavSitemap dl dt::before,
    header .globalNavSitemap dl dt::after{
        content: "";
        position: absolute;
        right: 15px;
        top: 50%;
        width: calc(31vw / 7.5);
        height: 2px;
        background: var(--color-text); /* 色は調整 */
        transition: .3s;
    }

    header .globalNavSitemap dl dt::before{
        transform: translateY(-50%);
    }

    header .globalNavSitemap dl dt::after{
        transform: translateY(-50%) rotate(90deg);
    }

    header .globalNavSitemap dl.open dt::after{
        transform: translateY(-50%) rotate(0);
        opacity: 0;
    }
    
    
    header .globalNavSitemap dt span{
        font-size: calc(28vw / 7.5);
        font-family: "Noto Sans JP", sans-serif;
        padding-left: 10px;
        font-weight: 500;
    }

    header .globalNavSitemap dt span:before{
        content: " / ";
        font-size: calc(50vw / 7.5);
        font-weight: 400;
        position: relative;
        bottom: 5px;
    }
    
    header .globalNavSitemap dl.open dd {
        grid-template-rows: 1fr;
    }

    header .globalNavSitemap dl dd {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
        margin: 0;
    }

    header .globalNavSitemap dl dd > * {
        overflow: hidden;
    }    
    
    header .globalNavSitemap dd{
        font-size: calc(30vw / 7.5);
        padding:  0 calc(70vw / 7.5) ;
    }    
    
    header .globalNavSitemap dl.open dd:last-of-type{
        padding-bottom:  calc(60vw / 7.5) ;
    }
    
    header .globalNavSitemap dl.open dt + dd{
        padding-top:  calc(20vw / 7.5);
    }
    
    header .globalNavSitemap dl.open  dd + dd{
        margin-top: calc(35vw / 7.5);
    }    
    
    header .globalNavSns{
        padding-top: calc(95vw / 7.5);
        gap:0 calc(45vw / 7.5);
        width: 100%;
        justify-content: center;
        border: none;
    }

    header .globalNavSns .facebook{ width:calc(65vw / 7.5);}
    header .globalNavSns .x{width:calc(50vw / 7.5);}
    header .globalNavSns .instagram{width:calc(60vw / 7.5);}
    header .globalNavSns .youtube{width:calc(67vw / 7.5);}
    header .globalNavSns .tiktok{width:calc(140vw / 7.5);}    

    header .globalNavBnr{
        padding: 0 calc(40vw / 7.5);
        gap: calc(35vw / 7.5);
        flex-direction: column;
    }

    header .globalNavBnr li{
        max-width: inherit;
        width: 100%;
    }
    
    header .globalNavBnr li.fanclub .btnFlex{
        flex-direction: column;
        top: calc(14vw / 7.5);
        left: calc(415vw / 7.5);
        width: calc(100% - 34px);
        gap:calc(10vw / 7.5);
        transform: translateX(0);
    }

    header .globalNavBnr li.fanclub .btnDesign{
        width: calc(240vw / 7.5);
        height:calc(50vw / 7.5);
    }

    header .globalNavBnr li.fanclub .btnDesign a{
        font-size:calc(23vw / 7.5);
        padding-left: calc(15vw / 7.5);
    }

    header .globalNavBnr li.fanclub .btnDesign a::after {
      font-size:calc(9vw / 7.5);
    }
        
    header .globalNavBnr li.comingsoon:after{
        font-size:calc(50vw / 7.5);
    }
    
    
}

/* main //////////////*/
main{
    margin-top: 70px;
}

@media screen and (max-width: 767px) {   
main{
    margin-top: calc(115vw / 7.5);
}
    
    
}    
/* footer //////////////*/
footer{
    padding-bottom: 35px;
    border-top: 1px solid #4c4c4c;
}

footer .footerWrap1{
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 70px;
}

footer .footerSitemap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:60px 0;
    margin-bottom: 60px;
}


footer .footerSitemap > *{
    width: 20%;
}

footer .footerSitemap dt{
    font-size: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px;
}

footer .footerSitemap dd{
    line-height: var(--line-height-base02);    
}

footer .footerSitemap dd + dd{
    margin-top: 3px;
}

footer .footerSitemap dd a{
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

footer .footerSitemap dd a:before{
    content: "・";
}

footer .footerSitemap dd a:hover{
    color: var(--color-orenge01);
}

footer .footerSns{
    display: flex;
    gap:0 20px;
    align-items: center;
    width: 40%;
}

footer .footerSns .facebook{ width: 31px;}
footer .footerSns .x{ width: 24px;}
footer .footerSns .instagram{ width: 29px;}
footer .footerSns .youtube{ width: 32px;}
footer .footerSns .tiktok{ width: 73px;}

footer .footerSns a:hover img{
    opacity: 0.7;
}

footer .footerBnr{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footerBnr li{
    width: 31.33%;
    max-width: 375px;
    position: relative;
}

footer .footerBnr li.fanclub .btnFlex{
    position: absolute;
    top: 98px;
    left: 50%;
    width: calc(100% - 34px);
    transform: translateX(-50%);    
    display: flex;
    gap:12px;
}

footer .footerBnr li.fanclub .btnDesign{
    width: calc(50% - 6px);
    height: 35px;
    background: var(--color-lightpurple01);
    border-color:var(--color-purple01);
    color: var(--color-bg);
}

footer .footerBnr li.fanclub .btnDesign a{
    font-size: 0.9375rem;
    padding-left: 10px;
}

footer .footerBnr li.fanclub .btnDesign a::after {
  font-size: 0.375rem;
    background:var(--color-purple01);
    color: var(--color-text);
}

footer .footerBnr li.fanclub .btnDesign:before{
    background: var(--color-text);
}

footer .footerBnr li.fanclub .btnDesign:hover{
    color: var(--color-bg);
    background: var(--color-purple01);
}

footer .footerBnr li.fanclub .btnDesign:hover a:after{
    background: var(--color-lightpurple01);
    color: var(--color-text);
}

footer .footerBnr li a:hover img{
    filter: brightness(1.25);
}

footer .footerBnr li.comingsoon:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

footer .footerBnr li.comingsoon:after{
    content: "coming soon";
    font-family: "Roboto Condensed", sans-serif;    
    font-size: 2rem;
    font-weight:700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translateY(-50%) translateX(-50%);   
    z-index: 2;
    width: 100%;
    text-align: center;
}


footer .footerWrap2{
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 45px 40px 0 40px;
}

footer .footerWrap2:before{
    content: "";
    width: 100vw;
    height: 1px;
    background:var(--color-gray01);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);    
}

footer .footerLogo{
    max-width: 49px;
    margin: 0 auto 30px;
}

footer .footerLinks{
    display: flex;
    font-size: 0.9375rem;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

footer .footerLinks li:after{
    content: " ｜ ";
}

footer .footerLinks li:last-child:after{
    display: none;
}

footer .footerLinks li a:hover{
    color: var(--color-orenge01);
}

footer .footerCopy{
    text-align: center;
    font-size: 0.875rem;
}

#pagetop{
    position: fixed;
    right: 21px;
    bottom: 20px;
    z-index: 4;
    display: none;
}

#pagetop.is-stop{
    position: absolute;
}

#pagetop img {
    width: 70px;
}

@media screen and (max-width: 1280px) {    
    footer .footerSitemap > * {
      width: 33.33%;
    }    
    
    footer .footerBnr{
        flex-wrap: wrap;
        gap:20px ;
        justify-content: center;
    }    
    
    footer .footerBnr li {
        width: 48%;
    }        
}

@media screen and (max-width: 767px) {    
    footer{
        padding-bottom:calc(40vw / 7.5);
    }

    footer .footerWrap1{
        padding: 0 0 calc(95vw / 7.5);
    }

    footer .footerSitemap{
        gap: 0;
        margin-bottom: calc(95vw / 7.5);
    }

    footer .footerSitemap > *{
        width: 100%;
        border-bottom: 1px solid var(--color-gray05);
    }

    footer .footerSitemap dt{
        cursor: pointer;
        font-size: calc(50vw / 7.5);
        display: flex;
        align-items: baseline;
        margin-bottom: 0;
        padding: calc(30vw / 7.5) calc(50vw / 7.5);
        position: relative;
    }

    footer .footerSitemap dl dt::before,
    footer .footerSitemap dl dt::after{
        content: "";
        position: absolute;
        right: 15px;
        top: 50%;
        width: calc(31vw / 7.5);
        height: 2px;
        background: var(--color-text); /* 色は調整 */
        transition: .3s;
    }

    footer .footerSitemap dl dt::before{
        transform: translateY(-50%);
    }

    footer .footerSitemap dl dt::after{
        transform: translateY(-50%) rotate(90deg);
    }

    footer .footerSitemap dl.open dt::after{
        transform: translateY(-50%) rotate(0);
        opacity: 0;
    }
    
    
    footer .footerSitemap dt span{
        font-size: calc(28vw / 7.5);
        font-family: "Noto Sans JP", sans-serif;
        padding-left: 10px;
        font-weight: 500;
    }

    footer .footerSitemap dt span:before{
        content: " / ";
        font-size: calc(50vw / 7.5);
        font-weight: 400;
        position: relative;
        bottom: 5px;
    }
    
    footer .footerSitemap dl.open dd {
        grid-template-rows: 1fr;
    }

    footer .footerSitemap dl dd {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
        margin: 0;
    }

    footer .footerSitemap dl dd > * {
        overflow: hidden;
    }    
    
    footer .footerSitemap dd{
        font-size: calc(30vw / 7.5);
        padding:  0 calc(70vw / 7.5) ;
    }    
    
    footer .footerSitemap dl.open dd:last-of-type{
        padding-bottom:  calc(60vw / 7.5) ;
    }
    
    footer .footerSitemap dl.open dt + dd{
        padding-top:  calc(20vw / 7.5);
    }
    
    footer .footerSitemap dl.open  dd + dd{
        margin-top: calc(35vw / 7.5);
    }

    footer .footerSns{
        padding-top: calc(95vw / 7.5);
        gap:0 calc(45vw / 7.5);
        width: 100%;
        justify-content: center;
        border: none;
    }

    footer .footerSns .facebook{ width:calc(65vw / 7.5);}
    footer .footerSns .x{width:calc(50vw / 7.5);}
    footer .footerSns .instagram{width:calc(60vw / 7.5);}
    footer .footerSns .youtube{width:calc(67vw / 7.5);}
    footer .footerSns .tiktok{width:calc(140vw / 7.5);}

    footer .footerBnr{
        padding: 0 calc(40vw / 7.5);
        gap: calc(35vw / 7.5);
    }

    footer .footerBnr li{
        width: 100%;
        max-width: inherit;
    }

    footer .footerBnr li.fanclub .btnFlex{
        flex-direction: column;
        top: calc(14vw / 7.5);
        left: calc(415vw / 7.5);
        width: calc(100% - 34px);
        gap:calc(10vw / 7.5);
        transform: translateX(0);
    }

    footer .footerBnr li.fanclub .btnDesign{
        width: calc(240vw / 7.5);
        height:calc(50vw / 7.5);
    }

    footer .footerBnr li.fanclub .btnDesign a{
        font-size:calc(23vw / 7.5);
        padding-left: calc(15vw / 7.5);
    }

    footer .footerBnr li.fanclub .btnDesign a::after {
      font-size:calc(9vw / 7.5);
    }
    
    footer .footerBnr li.comingsoon:after{
        font-size:calc(50vw / 7.5);
    }
    
    footer .footerWrap2{
        padding-top: calc(85vw / 7.5);
    }

    footer .footerLogo{
        max-width: calc(97vw / 7.5);
        margin: 0 auto calc(75vw / 7.5);
    }

    footer .footerLinks{
        display: flex;
        gap: calc(50vw / 7.5);
        flex-direction: column;        
        font-size: calc(24vw / 7.5);
        margin-bottom:  calc(90vw / 7.5);
        text-align: center;
    }

    footer .footerLinks li:after{
        display: none;
    }

    footer .footerCopy{
        font-size: calc(20vw / 7.5);
    }

    #pagetop{
        right:calc(20vw / 7.5);
        bottom: calc(20vw / 7.5);
    }

    #pagetop img {
        width: calc(70vw / 7.5);
    }

    
}


/* parts //////////////*/
.btnDesign{
    border-radius: 4px;
    border: 2px solid var(--color-text);
    color: var(--color-text);
    background: var(--color-bg);
    width: 300px;
    height: 60px;
    position: relative;
    overflow: hidden;
    transition: color .35s ease;    
}

.btnDesign a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.btnDesign a span{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;   
    gap:0 9px;
}

.btnDesign #icon-window{
    width: 22px;
    transition: 0.3s;
}
    
.btnDesign #icon-pdf{
    fill: #c3002f;
    width: 18px;
    transition: 0.3s;
}
    

.btnDesign a:after{
    content: "▶";
    height: 100%;
    width: 25px;
    background: var(--color-text);
    color:  var(--color-bg);
    text-align: center;
    font-size: 0.5625rem;
    align-items: center;
    display: flex;
    justify-content: center;    
}

.btnDesign.whiteVer{
    border: 2px solid var(--color-bg);
    color: var(--color-bg);
    background: var(--color-text);
    margin: 0;
}

.btnDesign.whiteVer a:after{
    background: var(--color-bg);
    color:  var(--color-text);
}

.btnDesign:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-text);
    transition: width .45s cubic-bezier(.22,.61,.36,1);
    z-index: 1;
}

.btnDesign a:after{
    transition:
        background .35s ease,
        color .35s ease;
}

.btnDesign:hover{
    color: var(--color-bg);
}

.btnDesign:hover:before{
    width: 100%;
}

.btnDesign:hover a:after{
    background: var(--color-bg);
    color: var(--color-text);
}

.btnDesign.whiteVer:before{
    background: var(--color-bg);
}

.btnDesign.whiteVer:hover{
    color: var(--color-text);
}

.btnDesign.whiteVer:hover a:after{
    background: var(--color-text);
    color: var(--color-bg);
}

/* すべてのSNS共通の基本設定 */
.globalNavSns .icon-sns,
.footerSns .icon-sns,
.officelSns .icon-sns{
    fill: var(--color-text);
    transition: fill 0.3s ease;
}
.globalNavSns .icon-sns-line,
.footerSns .icon-sns-line,
.officelSns .icon-sns-line{
    fill: none;
    stroke:  var(--color-text);   
    stroke-width: 2px;
    transition: fill 0.3s ease;
}

/* 共通のホバー設定（一括で同じ色にする場合） */
.globalNavSns a:hover .icon-sns,
.footerSns a:hover .icon-sns,
.officelSns a:hover .icon-sns{
    fill: var(--color-orenge01);
}

.globalNavSns a:hover .icon-sns-line,
.footerSns a:hover .icon-sns-line,
.officelSns a:hover .icon-sns-line{
    stroke: var(--color-orenge01);
}

@media screen and (max-width: 767px) {    
    .btnDesign{
        width: calc(450vw / 7.5);
        height: calc(90vw / 7.5);
    }
    
    .btnDesign #icon-window{
        width: calc(32vw / 7.5);
    }

    .btnDesign #icon-pdf{
        width: calc(25vw / 7.5);
    }

    .btnDesign a{
        padding-left: calc(25vw / 7.5);
        font-size:  calc(27vw / 7.5);
    }

    .btnDesign a span{
        width: 100%;
        gap:0 calc(8vw / 7.5);
    }

    .btnDesign a:after{
        width: calc(35vw / 7.5);
        font-size:calc(14vw / 7.5);
    }    
    
}