@charset "utf-8";
/*===================================================
    color
====================================================*/
:root {
    --main: #1F2D5F;
    --sub: #D6D4A7;
    --yellow: #FCFBA5;
    --white: #fff;
    --gray: #bbbbbb;
} 



/*===================================================
  anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--main);
    z-index: 9999;
}

.action {
    opacity:0;
    transition: 1s ease-out;
}
.loaded .action {
    opacity:1;
}
.action.act01 {}
.loaded .action.act01 {
    transform: translateY(0);
    transition-delay: 1.5s;
}

.mainWrap .anim.rotate span {
    display: inline-block;
    opacity: 0;
    transition: all .5s ease-out;
    transform: rotateY(180deg);
}
.mainWrap .anim.rotate.on span {
    opacity: 1;
    transform: rotateY(0deg);
}
.mainWrap .anim.rotate.on span:nth-child(2) { transition-delay:0.1s; }
.mainWrap .anim.rotate.on span:nth-child(3) { transition-delay:0.15s; }
.mainWrap .anim.rotate.on span:nth-child(4) { transition-delay:0.2s; }
.mainWrap .anim.rotate.on span:nth-child(5) { transition-delay:0.25s; }
.mainWrap .anim.rotate.on span:nth-child(6) { transition-delay:0.3s; }
.mainWrap .anim.rotate.on span:nth-child(7) { transition-delay:0.35s; }
.mainWrap .anim.rotate.on span:nth-child(8) { transition-delay:0.4s; }
.mainWrap .anim.rotate.on span:nth-child(9) { transition-delay:0.45s; }

.mainWrap .anim.fadeX,
.mainWrap .anim.fadeY {
    opacity: 0;
    transition: all .5s 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){}



/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 650px;
    transform: translate3d(0, 0, -1px);
    overflow: hidden;
}
.bgBox .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    background: url(/static/yoani3rd/official/feature/tour2025/image/ph_bg_0e7j0B4w.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .bg {
		height: 100vh;
	}
    .bgBox .bg.bg01 {
        background: url(/static/yoani3rd/official/feature/tour2025/image/ph_bg_sp_0e7j0B4w.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }

}



/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    background: var(--main);
    border: 10px solid var(--main);
    border-radius: 100px;
}
.change .hamBtn {
    background: var(--sub);
    border: 10px solid var(--sub);
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--sub);
    transition: all .3s ease;
}
.change .hamBtn span {
    background: var(--main); 
}
.hamBtn :nth-of-type(1) {
    top: 3px;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 3px;
}
.hamBtn.open span {
    background: var(--sub);
}
.change .hamBtn.open span {
    background: var(--main);
}
.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(--white);
    color: var(--main);
    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: 80%;
    max-width: 400px;
    margin: 0 80px 0 0;
}

.navigation .headerNav li {
	padding: 0;
    position: relative;
    margin: 0 0 20px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
}
.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;
}

.navigation .snsList{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.navigation .snsList:last-child {
    margin-bottom: 0;
}
.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .navListTit{
    margin-right: 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.navigation .snsList .menuList li {
    margin: 0px 10px 0 0;
}
.navigation .snsList .menuList li:last-child {
	margin-right: 0;
}
.navigation .snsList .menuList li a{
	font-size: 24px;
}
.navigation .snsList .menuList .menu_icon a {
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: var(--main);
    color: var(--white);
}
.navigation .snsList .menuList .menu_icon a i,
.navigation .shareList .menu_icon a i {
    font-size: 14px;
}
.navigation .shareList .menu_icon a img {
	height: 16px;
}

@media screen and (min-width: 961px) {

	.navigation .headerNav a:hover {
		opacity: 0.7;
	}

}

@media screen and (max-width: 960px){

    .hamBtn {
        right: 15px;
        top: 20px;
        width: 40px;
        height: 40px;
        border: 10px solid var(--main);
    }
    .hamBtn span {}
    /*
    .hamBtn :nth-of-type(1) {
        top: 6px;
    }
    .hamBtn :nth-of-type(3) {
        bottom: 6px;
    }
        */

	.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: 20px;
    }
    .navigation .headerNav li:nth-last-child(2) {
        margin: 0 0 25px;
    }
    .navigation .headerNav .menuList li:nth-last-child(2) {
        margin: 0 10px 0 0;
    }

}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    background: var(--main);
}

body {}

.mainWrap {
    position: relative;
    z-index: 1;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
	font-size: 16px;
    color: var(--white);
    line-height: 1.5;
	letter-spacing: 0.03em;
    overflow: hidden;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
    z-index: 2;
    background-color: var(--main);
    padding: 160px 0;
    margin-bottom: 50vh;
}

section {
	margin: 0 auto 160px;
    width: 90%;
    max-width: 1200px;
}

section h3 {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 96px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: var(--sub);
    margin: 0 0 60px;
}

section .inBox {
    position: relative;
    margin-bottom: 40px;
    padding: 45px;
    background: var(--white);
    color: var(--main);
    border: 5px solid var(--sub);
}
section .inBox:last-child {
    margin-bottom: 0;
}

section .inBox .btn a {
	display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
}
section .inBox .btn.fin a {
	background: var(--gray);
    pointer-events: none;
}

.note {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.soon {
    text-align: center;
    padding: 30px 0;
    font-size: 24px;
    font-weight: bold;
}

.frameBottom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 1200px;
    mask-image: url(/static/yoani3rd/official/feature/tour2025/image/ph_frame_bottom_0e7j0B4w.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/static/yoani3rd/official/feature/tour2025/image/ph_frame_bottom_0e7j0B4w.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--main);
    aspect-ratio: 128 / 19;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	section .inBox .btn a:hover {
		color: var(--main);
	    background: var(--white);
	}
	
}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 45px;
	}

    .mainWrap {
        font-size: 14px;
    }

    .container {
        padding: 90px 0;
        margin-bottom: 25vh;
    }

	section {
	    margin: 0 auto 90px;
	    width: calc(100% - 50px);
	}

	section h3 {
        font-size: 48px;
        margin: 0 0 30px;
	}

	section .inBox {
        border: 3px solid var(--sub);
        padding: 20px;
        margin-bottom: 20px;
	}

    section .inBox .btn a {
        width: 90%;
    }

    .note {
        font-size: 12px;
    }

    .soon {
        padding: 10px 0;
        font-size: 20px;
    }

    .frameBottom {
        min-width: 600px;
    }

}


/*===================================================
	hero
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 650px;
    overflow: hidden;
}

#heroView .heroInner {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 50%;
    max-width: 650px;
}
#heroView .heroInner .mainLogo {}

#heroView .border {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--main);
    top: 15px;
    left: 0;
}

#heroView .topItem {
    position: absolute;
    top: 30px;
}
#heroView .topItem.item01 {
    left: 40px;
}
#heroView .topItem.item02 {
    right: 90px;
}
#heroView .topItem img {
    width: auto;
    max-height: 150px;
    object-fit: contain;
}

#heroView .scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
#heroView .scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 1;
    background: var(--sub);
    animation: scrollArrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollArrow{
  0% {clip-path: inset(0 0 100% 0);}
  25% {clip-path: inset(0 0 0 0);}
  75% {clip-path: inset(0 0 0 0);}
  100% {clip-path: inset(100% 0 0 0);}
}

#heroView .frameTop {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 1200px;
    mask-image: url(/static/yoani3rd/official/feature/tour2025/image/ph_frame_top_0e7j0B4w.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/static/yoani3rd/official/feature/tour2025/image/ph_frame_top_0e7j0B4w.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--main);
    aspect-ratio: 128 / 19;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#heroView {
        height: 90svh;
	    min-height: 450px;
	}
			
	#heroView .heroInner {
        width: 75%;
        max-width: 450px;
    }

    #heroView .border {
        top: 10px;
        height: 1px;
    }

    #heroView .topItem {
        top: 20px;
    }
    #heroView .topItem.item01 {
        left: 15px;
    }
    #heroView .topItem.item02 {
        right: 60px;
    }
    #heroView .topItem img {
        max-height: 90px;
    }
			
    #heroView .scrollBox {
        height: 90svh;
    }
	#heroView .scrollBox .scrollArrow {
	    left: 20px;
	    bottom: 60px;
        background: var(--main);
	}

    #heroView .frameTop {
        min-width: 600px;
    }

}



/*===================================================
	schedule
====================================================*/
#schedule {}
#schedule .inBox {}

#schedule .tourDateBox {}
#schedule .tourDateBox .tourDateList {
    position: relative;
}
#schedule .tourDateBox .tourDateList:before {
    display: block;
    position: absolute;
    top: -15px;
    left: -25px;
    width: 100px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
    transform: rotate(-15deg);
    font-size: 14px;
}
#schedule .tourDateBox .tourDateList.fin:before  {
    content: "公演終了";
    background: var(--main);
    color: var(--white);
}
#schedule .tourDateBox .tourDateList.sold:before  {
    content: "両部完売!";
    background: var(--main);
    color: var(--sub);
}
#schedule .tourDateBox .tourDateList.day:before  {
    content: "昼の部完売!";
    background: var(--main);
    color: var(--sub);
}
#schedule .tourDateBox .tourDateList.night:before  {
    content: "夜の部完売!";
    background: var(--main);
    color: var(--sub);
}
#schedule .tourDateBox .tourDateList.listHead {
    padding: 0 0 10px;
}
#schedule .tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
#schedule .tourDateBox .tourDateList.listHead li:after {
    display: none;
}

#schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--main);
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
#schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
#schedule .tourDateBox .tourDateList li {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
#schedule .tourDateBox .tourDateList li:after {
    content: "";
    position: absolute;
    background: var(--main);
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
#schedule .tourDateBox .tourDateList li.scheduleTime:after {
    display: none;
}
#schedule .tourDateBox .tourDateList .scheduleDate {
    width: 26%;
    font-size: 18px;
    font-weight: bold;
}
#schedule .tourDateBox .tourDateList .scheduleDate .day {
    font-size: 14px;
    padding: 0 3px;
}
#schedule .tourDateBox .tourDateList .scheduleDate .day.week {
    padding: 0 0 0 3px;
}
#schedule .tourDateBox .tourDateList .scheduleArea {
    width: 9%;
}
#schedule .tourDateBox .tourDateList .scheduleVenue {
    width: 31%;
    text-align: center;
}
#schedule .tourDateBox .tourDateList .scheduleTime {
    width: 34%;
}
#schedule .tourDateBox .tourDateList .scheduleTime span {
    display: inline-block;
    font-size: 12px;
    background: var(--sub);
    font-weight: bold;
    padding: 0 10px;
    margin: 0 10px 0 0;
}

#schedule .more {
    text-align: center;
    padding: 20px 0 0;
    line-height: 1;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #schedule .tourDateBox .tourDateList {
        padding: 0px 0 15px;
        margin: 0 0 15px;
    }
    #schedule .tourDateBox .tourDateList:before {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        margin-bottom: 5px;
    }
    #schedule .tourDateBox .tourDateList.fin:before {}
    #schedule .tourDateBox .tourDateList.sold:before {}
    
    #schedule .tourDateBox .tourDateList.listHead {
        padding: 0;
    }
	#schedule .tourDateBox .tourDateList.listHead li {
	    display: none;
	}

	#schedule  .tourDateBox .tourDateList {
        display: block;
        padding: 0 0 20px;
        margin: 0 0 15px;
        border-bottom: 1px dashed var(--main);
	}
	#schedule  .tourDateBox .tourDateList li {
	    padding: 0;
	    display: block;
	    font-size: 100%;
	}
	#schedule  .tourDateBox .tourDateList li:after{
		display: none;
	} 
	#schedule  .tourDateBox .tourDateList .scheduleDate {
	    width: 100%;
        font-size: 16px;
        margin: 0 0 5px;
        font-weight: 400;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-size: 12px;
    }
    #schedule  .tourDateBox .tourDateList .scheduleDate .area {}
	#schedule  .tourDateBox .tourDateList .scheduleDate .sp {
		padding: 0 0 0 10px;
	}
	#schedule  .tourDateBox .tourDateList .scheduleArea {
		display: none;
	}
	#schedule  .tourDateBox .tourDateList .scheduleVenue {
        width: 100%;
        text-align: left;
        font-size: 18px;
        margin: 0 0 10px;
        font-weight: bold;
	}
	#schedule  .tourDateBox .tourDateList .scheduleTime {
        width: 100%;
        font-size: 12px;
	}
    #schedule  .tourDateBox .tourDateList .scheduleTime span {
        margin: 0 5px 5px 0;
    }
    #schedule  .tourDateBox .tourDateList .scheduleTime p span:last-child {
        margin: 0 5px 0 0;
    }

    #schedule .more {}

}
    

/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket .inBox {}

#ticket .inBox .ticketBoxTit {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 20px;
}
#ticket .inBox .ticketBoxTit:after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid;
    margin-left: 20px;
}

#ticket .inBox .areaBox {
    margin-bottom: 30px;
}
#ticket .inBox .areaBox:last-child {
    margin-bottom: 0;
}

#ticket .inBox .areaBox .area {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 15px;
    font-weight: bold;
}

/*============ accordion ===========*/
#ticket .inBox .op_ticket {
    margin: 0 0 2px;
}
#ticket .inBox .op_ticket:last-child {
    margin: 0;
}
#ticket .op_ticket .ticketTit {
    background: var(--main);
    color: var(--white);
    padding: 30px 65px 30px 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}
#ticket .op_ticket .ticketTit span {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 20px;
    height: 20px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}
#ticket .op_ticket .ticketTit span:before,
#ticket .op_ticket .ticketTit span:after {
    content: "";
    display: block;
    width: 20px;
    height: 0;
    border-bottom: solid 2px;
    position: absolute;
    top: 40%;
    right: 0px;
    transition: all 0.3s ease-out;
    z-index: 1;
}
#ticket .op_ticket .ticketTit span:before {
    transform: rotate(90deg);
}
#ticket .op_ticket .ticketTit.open span:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

#ticket .inBox .indent {
    display: inline-block;
    text-indent: -0.25em;
}

#ticket .op_ticket .ticketDetail {
    display: none;
    padding: 30px 0;
}

#ticket .op_ticket .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 30px;
    align-items: stretch;
}
#ticket .op_ticket .detailList:first-child {
    border-top: 1px solid;
    padding: 15px 0 15px;
}
#ticket .op_ticket .detailList:last-child {
    margin: 0;
}
#ticket .op_ticket .detailList dt {
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
#ticket .op_ticket .detailList dd {
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
#ticket .op_ticket .detailList dd:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--main);
}
#ticket .op_ticket .detailList dd > * {
    margin-bottom:20px;
}
#ticket .op_ticket .detailList dd > *:last-child {
    margin-bottom:0;
}
#ticket .op_ticket .detailList dd .detailInner {
    width:100%;
}
#ticket .op_ticket .detailList dd .detailInner > *{
    margin-bottom:10px;
}
#ticket .op_ticket .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}

@media screen and (min-width: 961px){

    #ticket .op_ticket .ticketTit:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #ticket {}
    #ticket h3 {}
    #ticket .inBox {}

	#ticket .inBox .ticketBoxTit {
        font-size: 16px;
        margin: 0 0 15px;
    }
    #ticket .inBox .ticketBoxTit:after {
        margin-left: 10px;
    }

    #ticket .inBox .areaBox {}
    #ticket .inBox .areaBox:last-child {}

    #ticket .inBox .areaBox .area {
        font-size: 14px;
        margin: 0 0 10px;
    }

    #ticket .inBox .op_ticket {}
	#ticket .op_ticket .ticketTit {
        padding: 15px 35px 15px 15px;
        font-size: 14px;
	}
    #ticket .op_ticket .ticketTit span {
        right: 15px;
        width: 15px;
        height: 15px;
    }
    #ticket .op_ticket .ticketTit span:before,
    #ticket .op_ticket .ticketTit span:after {
        width: 15px;
    }
	#ticket .op_ticket .ticketDetail {
        padding: 20px 0;
        font-size: 14px;
	}
	#ticket .op_ticket .detailList {
	    display: block;
	    margin: 0 0 15px;
	    border-bottom: none;
	}
	#ticket .op_ticket .detailList:first-child {
	    border-top: none;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dt {
        width: 100%;
        margin: 0 0 10px;
        line-height: 1;
        font-weight: bold;
	}
	#ticket .op_ticket .detailList dd {
	    width: 100%;
	    position: relative;
	    padding: 0;
	}
	#ticket .op_ticket .detailList dd:before {
	    content: none
	}
	
}


/*===================================================
	streaming
====================================================*/
#streaming {}
#streaming h3 {}
#streaming .inBox {}

#streaming .inBox .streamingTit {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 30px;
}

#streaming .inBox .txtBox {
    padding: 30px;
    background: var(--sub);
    margin: 0 0 20px;
}
#streaming .inBox .txtBox:last-of-type {
    margin-bottom: 40px;
}
#streaming .inBox .txtBox .boxTit {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
}
#streaming .inBox .txtBox .boxTxt {}
#streaming .inBox .txtBox .boxTxt p {
    margin-bottom: 5px;
}
#streaming .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #streaming {}
    #streaming h3 {}
    #streaming .inBox {}

    #streaming .inBox .streamingTit {
        font-size: 16px;
        margin: 0 0 20px;
    }

    #streaming .inBox .txtBox {
        padding: 20px;
        margin: 0 0 10px;
    }
    #streaming .inBox .txtBox:last-of-type {
        margin-bottom: 20px;
    }
    #streaming .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #streaming .inBox .txtBox .boxTxt {}
    #streaming .inBox .txtBox .boxTxt p {}

}


/*===================================================
	goods
====================================================*/
#goods {}
#goods h3 {}
#goods .inBox {}

#goods .inBox .goodsList {
    margin-bottom: 40px;
}
#goods .inBox .goodsList li {
    margin-bottom: 10px;
}
#goods .inBox .goodsList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    #goods h3 {}
    #goods .inBox {}
    
    #goods .inBox .goodsList {
        margin-bottom: 20px;
    }
    #goods .inBox .goodsList li {}
    #goods .inBox .goodsList li:last-child {}

}


/*===================================================
	fanclub
====================================================*/
#fanclub {}
#fanclub h3 {}
#fanclub .inBox {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

	#fanclub {}
	#fanclub h3 {}
	#fanclub .inBox {}
	
}


/*===================================================
	contact
====================================================*/
#contact {
    margin: 0 auto;
}
#contact h3 {}
#contact .inBox {}

#contact .inBox .txtBox {
    background: var(--sub);
    padding: 30px;
    margin: 0 0 20px;
}
#contact .inBox .txtBox:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox .boxTit {
    font-size: 16px;
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
}
#contact .inBox .txtBox .boxTxt {
    margin: 0 0 15px;
}
#contact .inBox .txtBox .boxTxt:last-child {
    margin: 0;
}
#contact .inBox .txtBox .boxTxt p {
    font-size: 14px;
    margin-bottom: 5px;
}
#contact .inBox .txtBox .boxTxt p a {
    text-decoration: underline;
}
#contact .inBox .txtBox .boxTxt p i {
    padding: 0 5px 0 0;
}
#contact .inBox .txtBox .boxTxt p.note {
    font-size: 12px;
}
#contact .inBox .txtBox .boxTxt p:first-child {
    font-weight: bold;
}
#contact .inBox .txtBox .boxTxt p:last-child {
    margin-bottom: 0;
}
#contact .inBox .txtBox:last-child .boxTxt p {
    font-size: 12px;
    margin: 0
}
#contact .inBox .txtBox:last-child .boxTxt p:first-child {
    font-size: 14px;
    margin: 0 0 5px;
}

@media screen and (min-width: 961px){

    #contact .inBox .txtBox .boxTxt p a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    #contact {}
    #contact h3 {}
    #contact .inBox {}

    #contact .inBox .txtBox {
        padding: 20px;
        margin: 0 0 10px;
    }
    #contact .inBox .txtBox:last-child {}
    #contact .inBox .txtBox .boxTit {
        font-size: 14px;
    }
    #contact .inBox .txtBox .boxTxt {
        font-size: 12px;
    }
    #contact .inBox .txtBox .boxTxt:last-child {}
    #contact .inBox .txtBox .boxTxt p {}
    #contact .inBox .txtBox .boxTxt p.note {
        font-size: 10px;
    }
    #contact .inBox .txtBox .boxTxt p span {}
    #contact .inBox .txtBox .boxTxt p a {}
    #contact .inBox .txtBox .boxTxt p i {}
    #contact .inBox .txtBox .boxTxt p:last-child {}
    #contact .inBox .txtBox:last-child .boxTxt p {
        font-size: 10px;
    }
    #contact .inBox .txtBox:last-child .boxTxt p:first-child {
        font-size: 12px;
    }

}


/*===================================================
	footer
====================================================*/
footer {
    position: relative;
}

footer .inner {
    padding: 0 3%;
    position: relative;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo_official {}
footer .logo_official svg {
    fill: var(--black);
    width: 150px;
    display: block;
}

footer .logo_yoani {
    width: 250px;
}
footer .logo_yoani a {
    display: block;
    margin: 0 0 10px;
}

footer .copyright {
    display: block;
    font-size: 10px;
    text-align: right;
    color: var(--black);
}

@media screen and (min-width: 961px){

    footer {
        height: auto !important;
        position: relative;
        color: var(--black);
    }

    footer .logo_official a, footer .logo_yoani a {
        cursor: pointer;
    }

    footer .logo_official a:hover, footer .logo_yoani a:hover {
        opacity: 0.4;
    }
	
}

@media screen and (max-width: 960px){

    footer {
	    padding: 0 5%;
    }
    
    footer .inner {
    	padding: 0;
    }

    footer .inner .logo_official {
        margin: 0;
    }
    footer .logo_official svg {
        max-width: 125px;
    }

    footer .inner .logo_yoani {
        width: 45vw;
        max-width: 250px;
    }

    footer .copyright {
        font-size: 10px;
        zoom: 0.8;
    }

}