@charset "utf-8";

:root {
    --main: #1D9FAB;
    --white: #fff;
    --white25: #ffffff25;
    --white10: rgb(255 255 255 / 0.1);
    --black: #000;
    --gray: #a6a6a6;
    --main-font: "Shippori Mincho", "Noto Serif JP", serif;
    --tit-font: "Libre Baskerville", serif;
}


/*===================================================
    fanpla
====================================================*/
body #header-nav,
body .drawer__btn,
body footer {
    display: none;
}

body .wrap {
    padding: 0;
}

@media screen and (max-width: 960px) {

    body h1 {
        display: none;
    }

    body .wrap:not(.page--home) {
        padding: 0;
    }

}


/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--main);
    z-index: 9999;
}

.action.act01 {
    background: var(--main);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(0);
    transition: .5s ease-out;
}
.action.act02 {
    transform: translateY(30px);
    opacity:0;
    transition: .5s ease-out;
}
.loaded .action.act01 {
    transform: translateY(-100%);
    transition-delay: 1.25s;
}
.loaded .action.act02 {
    transform: translateX(0);
    transition-delay: 1.5s;
    opacity:1;
}

h3.anim span {
    opacity: 0;
    display: inline-block;
    transition: all .5s ease-out;
    transform: translateY(30px);
}
h3.anim.on span{
    opacity: 1;
    transform: translateY(0);
}
h3.anim span:nth-child(2) {transition-delay: 0s;}
h3.anim span:nth-child(3) {transition-delay: 0.05s;}
h3.anim span:nth-child(4) {transition-delay: 0.1s;}
h3.anim span:nth-child(5) {transition-delay: 0.15s;}
h3.anim span:nth-child(6) {transition-delay: 0.2s;}
h3.anim span:nth-child(7) {transition-delay: 0.25s;}
h3.anim span:nth-child(8) {transition-delay: 0.3s;}

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .3s ease-out;
}
.mainWrap .anim.fadeX {
    transform: translateX(20px);
}
.mainWrap .anim.fadeY {
    transform: translateY(20px);
}
.mainWrap .anim.fadeX.on,
.mainWrap .anim.fadeY.on {
    opacity: 1;
}
.mainWrap .anim.fadeX.on {
    transform: translateX(0px);
}
.mainWrap .anim.fadeY.on {
    transform: translateY(0px);
}

@media screen and (max-width: 960px){}


/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--main);
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 2px;
    background: var(--white);
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 27.5%;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 27.5%;
}
.hamBtn.open span {
    background: var(--white);
}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamBtn.open span:nth-of-type(2) {
    opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}

.navigation {
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: var(--main);
    color: var(--white);
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-direction: row;
}
.navigation .headerNavBox .headerNav {}

.navigation .heroNavLogo {
    width: 75%;
    max-width: 300px;
    margin: 0 90px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 20px;
    line-height: 1;
    font-family: var(--tit-font);
}
.navigation .headerNav li:nth-last-child(2) {
    margin-bottom: 40px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
}

.navigation .snsList {
	display: flex;
}
.navigation .snsList p {
    margin: 0 20px 0 0px;
}
.navigation .snsList p:last-child {
    margin: 0;
}
.navigation .snsList p a {
    font-size: 24px;
}


@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        width: 45px;
        height: 45px;
    }
    .hamBtn span {
        right: 20%;
        width: 60%;
    }

	.navigation .headerNav {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
	    overflow: hidden;
	    object-fit: cover;
	}

    .navigation .headerNavBox {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .navigation .heroNavLogo {
        width: 50%;
        max-width: 175px;
        margin: 0px 0 30px;
    }
    .navigation .headerNav li {
        margin: 0 0 15px;
    }
    .navigation .headerNav li a {
        font-size: 18px;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 25px;
    }
    .navigation .headerNav .menuList li:nth-last-child(2) {
        margin: 0 10px 0 0;
    }

}


/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    min-height: 600px;
    z-index: -1;
    transform: translate3d(-50%, -50%, -1px);
    background: var(--main);
}
.bgBox .inBg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bgBlack {
    background: var(--black);
    opacity: 0.5;
    z-index: 5;
}
.bgBox .bgBlack.on {
    opacity: 0;
}
.bgBox .bg01 {
    background: url(/static/fcopen/fanplakit/artist/sakurashimeji_u4LsHZ9w/feature/hallLive2026_nrh8s2yB/image/ph_bg_01_0t5n2G3e.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.bgBox .bg02 {
    background: url(/static/fcopen/fanplakit/artist/sakurashimeji_u4LsHZ9w/feature/hallLive2026_nrh8s2yB/image/ph_bg_03_0t5n2G3e.jpg) no-repeat;
    background-position: center 30%;
    background-size: cover;
    z-index: 2;
    opacity: 0;
}
.bgBox .bg02.on {
    opacity: 1;
}
/*
.bgBox .bg03 {
    background: url(/static/fcopen/fanplakit/artist/sakurashimeji_u4LsHZ9w/feature/hallLive2026_nrh8s2yB/image/ph_bg_04_0t5n2G3e.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 3;
    opacity: 0;
}
.bgBox .bg03.on {
    opacity: 1;
} 
*/

@media screen and (max-width: 960px) {

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .inBg {
		height: 100vh;
	}
    .bgBox .bg01 {
        background: url(/static/fcopen/fanplakit/artist/sakurashimeji_u4LsHZ9w/feature/hallLive2026_nrh8s2yB/image/ph_bg_01_sp_0t5n2G3e.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
        z-index: 1;
    }
    .bgBox .bg02 {
        background: url(/static/fcopen/fanplakit/artist/sakurashimeji_u4LsHZ9w/feature/hallLive2026_nrh8s2yB/image/ph_bg_03_sp_0t5n2G3e.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
        z-index: 2;
        opacity: 0;
    }

}


/*===================================================
    all
====================================================*/
html {
    scroll-behavior: smooth;
}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: var(--white)
}
.mainWrap img {
    display: block;
}

main.container {
    background-color: var(--main);
}

section {
    position: relative;
    padding:160px 0 0;
}
section#movie,
section#news,
section#profile,
section#access {
    padding: 160px 0;
}
section#goods {
    padding: 160px 0 240px;
}
section.bgColor {
    background: var(--main);
}
section h3 {
    font-family: var(--tit-font);
    margin: 0 auto 45px;
    width: 90%;
    max-width: 1200px;
    font-size: 88px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
section .inBox {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section .inBox.frame {
    padding: 40px;
    border: 1px solid var(--white);
}

section .inBox a {
    color: var(--white);
}
section .inBox .soon {
    text-align: center;
    padding: 20px 0;
}

.op_accord .accordionList{}
.op_accord .accordionList .accordionTit{
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
.op_accord .accordionList .accordionTit span {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
    transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}
.op_accord .accordionList .accordionDetail {
    display: none;
}

.copy {
    text-align: center;
    font-size: 10px;
    padding: 120px 0 30px;
    background-color: var(--main);
}
.copy a {
    text-decoration: underline;
    color: var(--white);
}

@media screen and (min-width: 961px) {
    
    .sp {
        display: none;
    }

    a {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .copy a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {
    
    .pc {
        display: none;
    }

    html {}

    .mainWrap {
        font-size: 14px;
    }
        
    main.container {}

    section {
        padding: 90px 0 0;
    }
    section#movie,
    section#news,
    section#profile,
    section#access {
        padding: 90px 0;
    }
    section#goods {
        padding: 90px 0 120px;
    }
    section.bgColor {}
    section h3 {
        font-size: 42px;
        margin: 0 auto 30px;
    }
    section .inBox {}
    section .inBox.frame {
        padding: 20px;
    }

    section .inBox a {}
    section .inBox .soon {}

    .copy {
            padding: 90px 0 20px;
    }

}


/*===================================================
    heroView
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

#heroView .heroInner {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}
#heroView .heroInner .logoBox {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main);
}
#heroView .heroInner .logoBox .mainLogo {
    width: 75%;
}
#heroView .heroInner .kv {
    width: 65%;
    height: 100%;
    overflow: clip;
    position: relative;
}
#heroView .heroInner .kv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

#heroView .artistLogo {
    position: absolute;
    width: 100px;
    top: 30px;
    left: 30px;
}

#heroView  .scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView  .scrollBox .scroll {
    width: 120px;
    height: 120px;
    position: absolute;
    left: 30px;
    bottom: -60px;
}
#heroView .scrollBox .scroll img {
    animation: scrollAnim 20s linear infinite;
}
@keyframes scrollAnim {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
}

#heroView .snsWrap {
    position: absolute;
    bottom: 25px;
    right: 30px;
}
#heroView .snsWrap .menuList {
	display: flex;
}
#heroView .snsWrap .menuList li {
	margin: 0 20px 0 0;
}
#heroView .snsWrap .menuList li:last-child {
	margin: 0;
}
#heroView .snsWrap .menuList li a {
	font-size: 20px;
    color: var(--white);
}
#heroView .snsWrap .menuList li a i {}

@media screen and (min-width: 961px) {

    #heroView .artistLogo img {
        transition: all 0.5s ease;
    }
    #heroView .artistLogo img:hover {
        opacity: 0.7;
    }

    #heroView .snsWrap .menuList li a:hover {
        color: var(--main);
    }

}

@media screen and (max-width: 960px) {

	#heroView {
        height: 100svh;
        min-height: 450px;
    }

    #heroView .heroInner {
        flex-direction: column-reverse;
    }
    #heroView .heroInner .logoBox {
        width: 100%;
        height: 30%;
    }
    #heroView .heroInner .logoBox .mainLogo {
        width: initial;
        aspect-ratio: 1600 / 1491;
        height: 22.5svh;
    }
    #heroView .heroInner .kv {
        width: 100%;
        height: 70%;
    }
    #heroView .heroInner .kv img {
        object-position: center 35%;
    }

    #heroView .artistLogo {
        width: 75px;
        top: 20px;
        left: 20px;
    }

    #heroView  .scrollBox {
        min-height: 450px;
    }
    #heroView .scrollBox .scroll {
        width: 90px;
        height: 90px;
        position: absolute;
        left: -30px;
        bottom: -30px;
    }

}

@media screen and (max-width: 600px) {

    #heroView .heroInner .kv img {
        object-position: center center;
    }

}


/*===================================================
    lead
====================================================*/
#lead {}
#lead .inBox {}

#lead .inBox .leadBox {}
#lead .inBox .leadBox .leadTxt {
    margin-bottom: 20px;
}
#lead .inBox .leadBox .leadTxt:last-child {
    margin-bottom: 0;
}
#lead .inBox .leadBox .leadTxt p {
    margin-bottom: 10px;
}
#lead .inBox .leadBox .leadTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #lead {}
    #lead .inBox {}

    #lead .inBox .leadBox {}
    #lead .inBox .leadBox .leadTxt {}
    #lead .inBox .leadBox .leadTxt:last-child {}
    #lead .inBox .leadBox .leadTxt p {}
    #lead .inBox .leadBox .leadTxt p:last-child {}

}


/*===================================================
    schedule
====================================================*/
#schedule {}
#schedule h3 {}
#schedule .inBox {}

#schedule .inBox .scheduleList {}
#schedule .inBox .scheduleList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: stretch;
}
#schedule .inBox .scheduleList li .main {}
#schedule .inBox .scheduleList li .sub {
    width: 25%;
    max-width: 300px;
    padding: 20px;
    background: var(--white10);
    display: flex;
    align-items: center;
}
#schedule .inBox .scheduleList li .top {
    display: flex;
    align-items: flex-end;
}
#schedule .inBox .scheduleList li .top .topDate {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 10px;

}
#schedule .inBox .scheduleList li .top .topDate span {
    display: inline-block;
    padding: 0 5px;
    font-size: 16px;
}
#schedule .inBox .scheduleList li .top .topDate span.city {
    font-size: 24px;
}
#schedule .inBox .scheduleList li .top .topDate span:last-child {
    padding: 0 0 0 5px;
}
#schedule .inBox .scheduleList li .place {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px;
}
#schedule .inBox .scheduleList li .time {}
#schedule .inBox .scheduleList li .eventer {
    font-size: 14px;
}
#schedule .inBox .scheduleList li .eventer .name {
    margin: 0 0 3px;
}
#schedule .inBox .scheduleList li .eventer .name i {
    padding: 0 5px 0 0;
} 
#schedule .inBox .scheduleList li .eventer .number {
    margin: 0 0 2px;
}
#schedule .inBox .scheduleList li .eventer .number a {
    text-decoration: underline;
}
#schedule .inBox .scheduleList li .eventer .limit {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #schedule {}
    #schedule h3 {}
    #schedule .inBox {}

    #schedule .inBox .scheduleList {}
    #schedule .inBox .scheduleList li {
        display: block;
    }
    #schedule .inBox .scheduleList li:last-child {}
    #schedule .inBox .scheduleList li .main {}
    #schedule .inBox .scheduleList li .sub {
        max-width: initial;
        width: 100%;
        padding: 0;
        background: none;

    }
    #schedule .inBox .scheduleList li .top {}
    #schedule .inBox .scheduleList li .top .topDate {
        font-size: 20px;
    }
    #schedule .inBox .scheduleList li .top .topDate span {
        font-size: 12px;
        padding: 0 4px;
    }
    #schedule .inBox .scheduleList li .top .topDate span:last-child {
        padding: 0 0 0 5px;
        font-size: 18px;
    }
    #schedule .inBox .scheduleList li .place {
        font-size: 24px;
    }
    #schedule .inBox .scheduleList li .place span {
        font-size: 14px;
        margin: 0 10px 0 0;
    }
    #schedule .inBox .scheduleList li .place span.pc {
        display: none;
    }
    #schedule .inBox .scheduleList li .time {
        font-size: 14px;
        margin: 0 0 5px;
    }
    #schedule .inBox .scheduleList li .eventer {
        font-size: 12px;
    }
    #schedule .inBox .scheduleList li .eventer .name {}
    #schedule .inBox .scheduleList li .eventer .name i {} 
    #schedule .inBox .scheduleList li .eventer .number {
        display: inline-block;
        margin: 0 5px 0 0;
    }
    #schedule .inBox .scheduleList li .eventer .number a {}
    #schedule .inBox .scheduleList li .eventer .limit {}

}


/*===================================================
    movie
====================================================*/
#movie {}
#movie h3 {}
#movie .inBox {}

#movie .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#movie .inBox .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #movie {}
    #movie h3 {}
    #movie .inBox {}

    #movie .inBox .mov {}
    #movie .inBox .mov iframe {}

}


/*===================================================
    news
====================================================*/
#news {}
#news h3 {}
#news .inBox {}

#news .inBox .newsList {}
#news .inBox .newsList li {
    position: relative;
    border-bottom: 1px dashed var(--white);
}
#news .inBox .newsList li:first-child {
    border-top: 1px dashed var(--white);
}
#news .inBox .newsList li:last-child {}
#news .inBox .newsList li:before {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
#news .inBox .newsList li a {
    display: block;
    padding: 25px 40px 25px 0;
}
#news .inBox .newsList li a .liDate {
    margin: 0 0 10px;
    font-size: 14px;
}
#news .inBox .newsList li a p:last-child {
    font-size: 18px;
}

@media screen and (min-width: 961px) {

    #news .inBox .newsList li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    #news {}
    #news h3 {}
    #news .inBox {}

    #news .inBox .newsList {}
    #news .inBox .newsList li {}
    #news .inBox .newsList li:before {
        right: 15px;
    }
    #news .inBox .newsList li:last-child {}
    #news .inBox .newsList li a {
        padding: 15px 30px 15px 0;
    }
    #news .inBox .newsList li a .liDate {
        margin: 0 0 5px;
        font-size: 14px;
    }
    #news .inBox .newsList li a p:last-child {
        font-size: 14px;
        line-height: 1.5;
    }

}


/*===================================================
    ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox {}

#ticket .inBox .priceBox {
    margin: 0 0 60px;
}
#ticket .inBox .priceBox .ticket {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    border: 1px solid;
    padding: 60px 40px;
}
#ticket .inBox .priceBox .ticket p {
    margin-bottom: 10px;
}
#ticket .inBox .priceBox .ticket p:last-child {
    margin-bottom: 0;
}
#ticket .inBox .priceBox .ticket p span {}
#ticket .inBox .priceBox .ticket p span.yen {
    font-size: 24px;
    padding: 0 5px 0 0;
}
#ticket .inBox .priceBox .ticket p span.tax {
    font-size: 16px;
    padding: 0 0 0 5px;
}

#ticket .inBox .ticketBox {
    margin-bottom: 60px;
}
#ticket .inBox .op_accord {
	margin: 0 0 1px;
}
#ticket .inBox .op_accord:last-child {
	margin: 0;
}
#ticket .inBox .op_accord .accordionTit {
    color: var(--main);
    background: var(--white);
    padding: 30px 40px;
    font-size: 24px;
}
#ticket .inBox .op_accord .accordionTit span {
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
    transform: rotate(180deg) translateY(50%);
}
#ticket .inBox .op_accord .accordionTit.open span {
    transform: translateY(-50%);
}
#ticket .inBox .op_accord .accordionTit.open span {}
#ticket .inBox .op_accord .accordionTit span:before {
    border-top: 2px solid;
    border-right: 2px solid;
}
#ticket .inBox .op_accord .accordionDetail {
    padding: 40px;
    color: var(--white);
    background: none;
    border: 1px solid;
    border-top: none;
}
#ticket .inBox .op_accord .accordionDetail .detailBox {
	display: flex;
    border-top: 1px solid;
    padding: 0 0 20px;
    margin: 0 0 20px;
    align-items: center;
}
#ticket .inBox .op_accord .accordionDetail .detailBox:last-of-type {
    margin: 0 0 40px;
    padding: 20px 0;
    border-bottom: 1px solid;
}
#ticket .inBox .op_accord .accordionDetail .detailBox .tit {
    width: 25%;
    text-align: center;
    font-weight: 600;
}
#ticket .inBox .op_accord .accordionDetail .detailBox .txt {
    width: 75%;
    padding: 0 30px;
    border-left: 1px solid;
}
#ticket .inBox .op_accord .accordionDetail .ticketBtn a {
    display: block;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    border-radius: 100px;
    padding: 20px;
    margin: 0px auto;
    color: var(--main);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--white)
}
#ticket .inBox .op_accord .accordionDetail .ticketBtn.grayBtn a {
    pointer-events: none;
    background-color: var(--gray);
    border: 1px solid var(--gray);
    color: var(--black);
}
#ticket .inBox .op_accord .accordionDetail .ticketBtn.grayBtn.fin a {
    pointer-events: auto;
}

#ticket .inBox .ticketAttBox {
    padding: 30px 40px 40px;
    border: 1px solid var(--white);
}
#ticket .inBox .ticketAttBox .attBoxTit {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid;
    margin: 0 0 40px;
    padding: 0 0 30px;
}
#ticket .inBox .ticketAttBox .attBoxTxt {
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px dashed var(--white);
}
#ticket .inBox .ticketAttBox .attBoxTxt:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
#ticket .inBox .ticketAttBox .attBoxTxt a {
    text-decoration: underline;
}
#ticket .inBox .ticketAttBox .attBox {
    margin: 0 0 40px;
    padding: 0 0 35px;
    border-bottom: 1px dashed;
}
#ticket .inBox .ticketAttBox .attBox:last-child {}
#ticket .inBox .ticketAttBox .attBox .attTit {
    display: inline-block;
    background: var(--white);
    color: var(--main);
    font-weight: bold;
    padding: 3px 10px;
    margin: 0 0 15px;
}
#ticket .inBox .ticketAttBox .attBox ul {}
#ticket .inBox .ticketAttBox .attBox ul li {
    margin-bottom: 5px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    font-size: 14px;
}
#ticket .inBox .ticketAttBox .attBox ul li:last-child {}

@media screen and (min-width: 961px) {

    #ticket .inBox .op_accord .accordionDetail .ticketBtn a:hover {
        background-color: var(--main);
        color: var(--white);
    }
    #ticket .inBox .op_accord .accordionDetail .ticketBtn.grayBtn.fin a:hover,
    #ticket .inBox .ticketAttBox .attBoxTxt a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px) {

    #ticket {}
    #ticket h3 {}
    #ticket .inBox {}

    #ticket .inBox .priceBox {
        margin: 0 0 30px;
    }
    #ticket .inBox .priceBox .ticket {
        padding: 30px 15px;
        font-size: 20px;
    }
    #ticket .inBox .priceBox .ticket p {
        padding: 0 0 20px;
        margin: 0 0 25px;
        border-bottom: 1px dashed;
    }
    #ticket .inBox .priceBox .ticket p:last-child {
        padding: 0;
        margin: 0;
        border-bottom: none;
    }
    #ticket .inBox .priceBox .ticket p span {}
    #ticket .inBox .priceBox .ticket p span.yen {
        font-size: 16px;
    }
    #ticket .inBox .priceBox .ticket p span.tax {
        font-size: 12px;
    }

    #ticket .inBox .ticketBox {
        margin-bottom: 30px;
    }
    #ticket .inBox .op_accord {}
    #ticket .inBox .op_accord .accordionTit {
        padding: 20px 45px 20px 20px;
        font-size: 16px;
    }
    #ticket .inBox .op_accord .accordionTit span {
        right: 20px;
        width: 12px;
        height: 12px; 
    }
    #ticket .inBox .op_accord .accordionDetail {
        padding: 20px;
        font-size: 14px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox {
        display: block;
        padding: 0 0 15px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox:first-child {
        padding: 20px 0 15px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox:last-of-type {
        margin: 0 0 20px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox .tit {
        width: 100%;
        text-align: left;
        padding: 0 0 0 5px;
        border-left: 2px solid;
        line-height: 1;
        margin: 0 0 10px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox .txt {
        width: 100%;
        border-left: none;
        padding: 0;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox .txt .attList {}
    #ticket .inBox .op_accord .accordionDetail .detailBox .txt .attList li {
        font-size: 12px;
    }
    #ticket .inBox .op_accord .accordionDetail .detailBox .txt .attList li:last-child {}

    #ticket .inBox .op_accord .accordionDetail .ticketBtn a {
        width: 90%;
        font-size: 14px;
    }
    #ticket .inBox .op_accord .accordionDetail .ticketBtn.grayBtn a {}
    #ticket .inBox .op_accord .accordionDetail .ticketBtn.grayBtn.fin a {}

    #ticket .inBox .ticketAttBox {
        padding: 20px;
    }
    #ticket .inBox .ticketAttBox .attBoxTit {
        font-size: 16px;
        padding: 0 0 20px;
        margin: 0 0 20px;
    }
    #ticket .inBox .ticketAttBox .attBoxTxt {
        padding: 0 0 20px;
        margin: 0 0 20px;
    }
    #ticket .inBox .ticketAttBox .attBoxTxt:last-child {}
    #ticket .inBox .ticketAttBox .attBoxTxt a {}
    #ticket .inBox .ticketAttBox .attBox {
        margin: 0 0 20px;
        padding: 0 0 15px;
    }
    #ticket .inBox .ticketAttBox .attBox:last-child {}
    #ticket .inBox .ticketAttBox .attBox .attTit {}
    #ticket .inBox .ticketAttBox .attBox ul {}
    #ticket .inBox .ticketAttBox .attBox ul li {
        font-size: 12px;
    }
    #ticket .inBox .ticketAttBox .attBox ul li:last-child {}

}


/*===================================================
    profile
====================================================*/
#profile {}
#profile h3 {}
#profile .inBox {}

#profile .inBox .boxTop {
    position: relative;
    top: 1px;
    width: 160px;
    height: 40px;
    background: var(--white);
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 80% 0%);
}
#profile .inBox .profileBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 40px;
    background: var(--white);
    color: var(--main);
    padding: 40px;
}
#profile .inBox .profileBox:last-child {
    margin: 0 auto;
}
#profile .inBox .profileBox .photo {
    width: 60%;
}
#profile .inBox .profileBox .detailBox {
    width: 40%;
    padding: 0 0 0 5%;
}
#profile .inBox .profileBox .detailBox .nameBox {}
#profile .inBox .profileBox .detailBox .nameBox .name {
    font-size: 32px;
    line-height: 1;
    margin: 0 0 10px;
    font-weight: bold;
}
#profile .inBox .profileBox .detailBox .nameBox .yomi {
    font-size: 14px;
    margin: 0 0 20px;
}
#profile .inBox .profileBox .detailBox .txtList {
    margin: 0 0 20px;
}
#profile .inBox .profileBox .detailBox .txtList li {
    display: flex;
    align-items: center;
    margin: 0 0 5px;
}
#profile .inBox .profileBox .detailBox .txtList li:last-child {
    margin: 0;
}
#profile .inBox .profileBox .detailBox .txtList li p {}
#profile .inBox .profileBox .detailBox .txtList li p:nth-child(1) {
    width: 90px;
    font-size: 12px;
}
#profile .inBox .profileBox .detailBox .txtList li p:nth-child(2) {}
#profile .inBox .profileBox .detailBox .snsList {}
#profile .inBox .profileBox .detailBox .snsList li {}
#profile .inBox .profileBox .detailBox .snsList li a {
    font-size: 18px;
    color: var(--main);
}

@media screen and (min-width: 961px) {

    #profile .inBox .profileBox .detailBox .snsList li a:hover {
        opacity: 0.7;
    }
    
}

@media screen and (max-width: 960px) {

    #profile {}
    #profile h3 {}
    #profile .inBox {}

    #profile .inBox .boxTop {
        width: 100px;
        height: 25px;
    }
    #profile .inBox .profileBox {
        display: block;
        padding: 20px;
        margin: 0 auto 30px;
    }
    #profile .inBox .profileBox .photo {
        width: 100%;
        margin: 0 auto 20px;
    }
    #profile .inBox .profileBox .detailBox {
        padding: 0;
        width: 100%;
    }
    #profile .inBox .profileBox .detailBox .nameBox {}
    #profile .inBox .profileBox .detailBox .nameBox .name {
        font-size: 28px;
        margin: 0 0 5px;
    }
    #profile .inBox .profileBox .detailBox .nameBox .yomi {
        font-size: 12px;
        margin: 0 0 10px;
    }
    #profile .inBox .profileBox .detailBox .txtList {
        margin: 0px 0 15px;
    }
    #profile .inBox .profileBox .detailBox .txtList li {}
    #profile .inBox .profileBox .detailBox .txtList li:last-child {}
    #profile .inBox .profileBox .detailBox .txtList li p {}
    #profile .inBox .profileBox .detailBox .txtList li p:nth-child(1) {
        width: 75px;
    }
    #profile .inBox .profileBox .detailBox .txtList li p:nth-child(2) {
        font-size: 14px;
    }
    #profile .inBox .profileBox .detailBox .snsList {}
    #profile .inBox .profileBox .detailBox .snsList li {}
    #profile .inBox .profileBox .detailBox .snsList li a {}

}


/*===================================================
    access
====================================================*/
#access {}
#access h3 {}
#access .inBox {}

#access .inBox .map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#access .inBox .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #access {}
    #access h3 {}
    #access .inBox {}

    #access .inBox .map {}
    #access .inBox .map iframe {}

}


/*===================================================
    fanclub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #fanclub {}
    #fanclub h3 {}
    #fanclub .inBox {}

}


/*===================================================
    goods
====================================================*/
#goods {}
#goods h3 {}
#goods .inBox {}

@media screen and (min-width: 961px) {}

@media screen and (max-width: 960px) {

    #goods {}
    #goods h3 {}
    #goods .inBox {}

}
