@charset "utf-8";
/*===================================================
	anim
====================================================*/
.loader{
    position: fixed;
    height: 100%;
    width: 100%; 
    background: #111;
    z-index: 9996;
}
.loader .loaderLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 175px;
}
@media screen and (max-width: 960px) {

    .loader .loaderLogo {
        width: 125px;
    }

}

.action {
    opacity:0;
    transition:1s ease;
}
.loaded .action{
    opacity:1;
}

.paper img {
    position: absolute;
    width: 100%;
    transition: clip-path 1s ease;
}
.paper.top img {
    top: 0;
    left: 0;
    clip-path: inset(0 0 100% 0);
}
.paper.bottom img {
    bottom: 0;
    right: 0;
    clip-path: inset(100% 0 0 0);
}
.loaded .paper img {
    transition-delay: 5.5s;
    clip-path: inset(0 0 0 0);
}
.act02,
.act03 {
    transform: translateY(30px);
}
.loaded .act02 {
    transition-delay: 6s;
    transform: translateY(0px);
}
/*
.loaded .act03 {
    transition-delay: 2.25s;
    transform: translateY(0px);
}
*/

.act04 li {
	opacity:0;
	transform: translateX(45px);
	transition:1s ease;
}
.loaded .act04 li {
    transform: translateX(0);
    opacity:1;
}
.act04 li:nth-child(1) { transition-delay: 6.5s; }
.act04 li:nth-child(2) { transition-delay: 6.6s; }
.act04 li:nth-child(3) { transition-delay: 6.7s; }
.act04 li:nth-child(4) { transition-delay: 6.8s; }
.act04 li:nth-child(5) { transition-delay: 6.9s; }
.act04 li:nth-child(6) { transition-delay: 7s; }
.act04 li:nth-child(7) { transition-delay: 7.1s; }
.act04 li:nth-child(8) { transition-delay: 7.2s; }
.act04 li:nth-child(9) { transition-delay: 7.3s; }
.act04 li:nth-child(10) { transition-delay: 7.4s; }
.act04 li:nth-child(11) { transition-delay: 7.5s; }
.act04 li:nth-child(12) { transition-delay: 7.6s; }
/*
.act04 li:nth-child(1) { transition-delay: 2.5s; }
.act04 li:nth-child(2) { transition-delay: 2.6s; }
.act04 li:nth-child(3) { transition-delay: 2.7s; }
.act04 li:nth-child(4) { transition-delay: 2.8s; }
.act04 li:nth-child(5) { transition-delay: 2.9s; }
.act04 li:nth-child(6) { transition-delay: 3s; }
.act04 li:nth-child(7) { transition-delay: 3.1s; }
.act04 li:nth-child(8) { transition-delay: 3.2s; }
*/

.act05 { transition-delay: 6s; }

.anim {
    transition: all .5s ease-out;
}
.mainWrap .anim {
    opacity: 0;
    transform: translateY(30px);
}
.mainWrap .anim.on {
    opacity: 1;
    transform: translateY(0px);
}


/*===================================================
    bgBox
====================================================*/
.bgBox {
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    min-height: 750px;
    transform: translate3d(0, 0, -1px);
}
.bgBox .bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.bgBox .bg01 {
    background: url(/static/eikichiyazawa/official/feature/50th_ehibition/image/ph_bg_1a0y1x5P.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.bgBox .paper {
    position: absolute;
    z-index: 2;
    width: 35%;
    max-width: 700px;
}
.bgBox .paper.top {
    top: 0;
    left: 0;
}
.bgBox .paper.bottom {
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 960px){

	.bgBox {
	    min-height: 450px;
	    height: 100vh;
	}
	.bgBox .bg {
		height: 100vh;
	}
	.bgBox .bg01 {
        background: url(/static/eikichiyazawa/official/feature/50th_ehibition/image/ph_bg_sp_1a0y1x5P.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
	}
    .bgBox .paper {
        width: 60%;
    }
    .bgBox .paper.top {}
    .bgBox .paper.bottom {}

}


/*===================================================
    nav
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 25px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 0;
}
.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn :nth-of-type(3) {
    bottom: 0;
}
.hamBtn.open span {
    background: #fff;
}
.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: 9998;
    position: fixed;
	transition: all 0.5s ease-out;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNavBox {
    background: #111;
    color: #ffffff;
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100%;
    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 {
    position: absolute;
    top: 30px;
    left: 30px;
}

.navigation .heroNavLogo {
    width: 80px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 15px;
    line-height: 1;
    font-family: 'Libre Baskerville', serif;
}
.navigation .headerNav li:nth-last-child(2) {
    margin: 0 0 40px;
}
.navigation .headerNav li:last-child {
	margin: 0;
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a {
    font-size: 16px;
    text-decoration: none;
}
.navigation .headerNav li a span {
    display: block;
    font-size: 10px;
    padding: 7px 0 0;
}

.navigation .snsList .menuList {
	display: flex;
}
.navigation .snsList .menuList li {
    margin: 0px 20px 0 0;
}
.navigation .snsList .menuList li:last-child {
	margin-right: 0;
}
.navigation .snsList .menuList li a {}
.navigation .snsList .menuList li a i {
    font-size: 20px;
}


/*===================================================
	all
====================================================*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: #fff;
}

.soundBtn {
    position: fixed;
    width: 75px;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
    cursor: pointer;
}

.mainWrap {
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
	position: relative;
    z-index: 1;
	line-height: 1.5;
	font-size: 16px;
	letter-spacing: 0.03em;
	color: #fff;
}
.mainWrap img {
	display: block;
}

.container {
    position: relative;
}

section {
	margin: 0 auto 160px;
    text-align: center;
}

section h3 {
    font-family: 'Libre Baskerville', serif;
    position: relative;
    margin: 0 auto 60px;
    font-size: 72px;
    letter-spacing: 0.05em;
    font-weight: bold;
    display: inline-block;
}
section h3 span {
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    display: block;
    font-size: 24px;
    line-height: 1;
    padding: 20px 0 0;
}

section .inBox {
    padding: 40px;
    background: rgb(255 255 255 / 0.1);
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

section .inBox .btn {}
section .inBox .btn a {
    display: block;
    background: #CA1D20;
    color: #fff;
    width: 90%;
    max-width: 300px;
    border-radius: 100px;
    margin: 0 auto;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}
section .inBox .btn.finBtn a {}

section .inBox .soon {
    text-align: center;
}

section .underLine {
    text-decoration: underline;
}

@media screen and (min-width: 961px){

	.sp { 
		display: none;
	}

	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

    .soundBtn img {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    .soundBtn img:hover {
        opacity: 0.7;
    }

    section .inBox .btn a:hover {
        background: #fff;
        color: #CA1D20;
    }

}

@media screen and (max-width: 960px){

	.pc {
		display: none;
	}
	
	html {
	    scroll-padding-top: 60px;
	}

    .soundBtn {
        left: 20px;
        width: 55px;
        bottom: 20px;
    }

	section {
	    margin: 0 auto 90px;
	}

	section h3 {
        font-size: 42px;
        margin: 0 0px 30px;
	}
    section h3 span {
        font-size: 16px;
        padding: 10px 0 0;
    }

	section .inBox {
        padding: 20px;
        width: calc(90% - 10px);
	}

    section .inBox .btn {}
    section .inBox .btn a {}
    section .inBox .btn.finBtn a {}

    section .inBox .soon {}

}


/*===================================================
	heroView
====================================================*/
#heroView {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 750px;
    margin: 0 0 160px;
}
		
#heroView .heroInner {
    width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
#heroView .heroInner .kv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
}
#heroView .heroInner .kv.kv01 {
    z-index: 2;
}
#heroView .heroInner .kv.kv01 {}
#heroView .heroInner .kv.kv02 {
    z-index: 3;
}
#heroView .heroInner .kv.kv02 img {
    opacity: 0;
    transition: all 1s ease;
}
.osaka #heroView .heroInner .kv.kv02 img {
    opacity: 1;
}

/*
#heroView .mainLogo {
    position: absolute;
    width: 14%;
    top: 49%;
    left: 76%;
    translate: -50% -50%;
}
*/

#heroView .navList {
    position: fixed;
    right: 30px;
    top: 20px;
    text-align: right;
    color: #fff;
    z-index: 9;
}
#heroView .navList li {
    margin-bottom: 10px;
    font-size: 20px;
}
#heroView .navList li:last-child {
    margin: 0;
}
#heroView .navList li a {}
#heroView .navList li.look a {
    color: #bda655;
}
#heroView .navList li a span {
    display: block;
    font-size: 10px;
}

#heroView .sns_wrap {
    position: absolute;
    bottom: 30px;
    right: 60px;
    z-index: 9;
}
#heroView .sns_wrap .menuList {
	display: flex;
}
#heroView .sns_wrap .menuList li {
	margin-right: 25px;
}
#heroView .sns_wrap .menuList li:last-child {
	margin-right: 0;
}
#heroView .sns_wrap .menuList li a {
    color: #fff;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}
#heroView .sns_wrap .menuList li:last-child a {
	margin-bottom: 0;
}
#heroView .sns_wrap .menuList li a {}

.scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    background: #fff;
    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);}
}

@media screen and (min-width: 961px){

    .navList li a:hover {
        color: #bda655;
	}
    #heroView .sns_wrap .menuList li a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

	#heroView {
		height: 100svh;
	    min-height: 450px;
	    margin: 0 0 90px;
	}
			
    #heroView .heroInner {
        max-width: 515px;
        min-width: initial;
        width: calc(100% - 40px);
        left: 50%;
        top: 50%;
    }
    #heroView .heroInner .kv {}
    #heroView .heroInner .kv.kv01 {}
    #heroView .heroInner .kv.kv01 {}
    #heroView .heroInner .kv.kv02 {}
    #heroView .heroInner .kv.kv02 img {}
    
    #heroView .mainLogo {
        display: none;
    }

    #heroView .sns_wrap {
    	bottom: 20px;
	    right: 20px;
	}
	#heroView .sns_wrap .menuList {
        display: none;
    }
	#heroView .sns_wrap .menuList li {
        margin-right: 20px;
    }
	#heroView .sns_wrap .menuList li:last-child {}
	#heroView .sns_wrap .menuList li a {
		display: flex;
	    justify-content: center;
	    align-items: center;
	    font-size: 18px;
	    margin-bottom: 0;
	}

}


/*===================================================
	information
====================================================*/
#information {}
#information h3 {}
#information h3 span {}
#information .inBox {}

#information .inBox .infoList {
    border-top: 1px solid #ffffff50;
}
#information .inBox .infoList li {
    border-bottom: 1px solid #ffffff50;
}
#information .inBox .infoList li:last-child {}
#information .inBox .infoList li a {
    display: flex;
    padding: 20px;
    align-items: center;
}
#information .inBox .infoList li a .date {
    width: 18%;
    font-weight: bold;
    font-size: 24px;
    color: #bda655;
}
#information .inBox .infoList li a .txt {
    width: 82%;
}

@media screen and (min-width: 961px){

    #information .inBox .infoList li a:hover {
        background-color: #00000050;
    }

}

@media screen and (max-width: 960px){

    #information {}
    #information h3 {}
    #information h3 span {}
    #information .inBox {}

    #information .inBox .infoList {}
    #information .inBox .infoList li {}
    #information .inBox .infoList li:last-child {}
    #information .inBox .infoList li a {
        padding: 15px 0;
        display: block;
    }
    #information .inBox .infoList li a .date {
        width: 100%;
        font-size: 16px;
        margin: 0 0 5px;
    }
    #information .inBox .infoList li a .txt {
        width: 100%;
        font-size: 14px;
    }

}


/*===================================================
	overview
====================================================*/
#overview {}
#overview h3 {}
#overview h3 span {}
#overview .inBox {
    text-align: center;
    padding: 35px 40px 40px;
}

#overview .inBox .lead {
    text-align: left;
}
#overview .inBox .lead p {
    margin-bottom: 30px;
}
#overview .inBox .lead p:last-child {
    margin-bottom: 0;
}
#overview .inBox .lead p.main {
    font-size: 24px;
    margin: 0px 0 35px;
    font-weight: bold;
    text-align: center;
}
#overview .inBox .lead p span {
    display: block;
    margin: 0 0 10px;
}
#overview .inBox .lead p span:last-child {
    margin: 0;
} 


@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #overview {}
    #overview h3 {}
    #overview h3 span {}
    #overview .inBox {
        padding: 15px 20px 20px;
    }
    
    #overview .inBox .lead {}
    #overview .inBox .lead p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    #overview .inBox .lead p:last-child {}
    #overview .inBox .lead p.main {
        font-size: 18px;
        margin: 0 0 20px;
        text-align: left;
    }
    #overview .inBox .lead p span {}
    #overview .inBox .lead p span:last-child {} 

}


/*===================================================
	trailer
====================================================*/
#trailer {}
#trailer h3 {}
#trailer h3 span {}
#trailer .inBox {
    padding: 0;
    background: none;
}

#trailer .inBox .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#trailer .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){

    #trailer {}
    #trailer h3 {}
    #trailer h3 span {}
    #trailer .inBox {}
    
    #trailer .inBox .mov {}
    #trailer .inBox .mov iframe {}

}


/*===================================================
	detail
====================================================*/
#detail {}
#detail h3 {}
#detail h3 span {}
#detail .inBox {}

#detail .inBox .detailBox {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #ffffff25;
}
#detail .inBox .detailBox:last-child {
    border: none;
    padding: 0;
    margin: 0;
}
#detail .inBox .detailBox .tit {
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-weight: bold;
    color: #bda655;
}
#detail .inBox .detailBox .txt {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #detail {}
    #detail h3 {}
    #detail h3 span {}
    #detail .inBox {}
    
    #detail .inBox .detailBox {
        margin: 0 0 15px;
        padding: 0px 0 15px;
    }
    #detail .inBox .detailBox:last-child {}
    #detail .inBox .detailBox .tit {}
    #detail .inBox .detailBox .txt {
        font-size: 14px;
    }

}


/*===================================================
	form
====================================================*/
#form {}
#form h3 {}
#form h3 span {}
#form .inBox {}

#form .inBox .txt {
    margin: 0 0 40px;
    text-align: center;
}
#form .inBox .btn {}
#form .inBox .btn a {
    margin: 0 auto 15px;
}
#form .inBox .subTxt {
    text-align: center;
    font-size: 14px;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #form {}
    #form h3 {}
    #form h3 span {}
    #form .inBox {}
    
    #form .inBox .txt {
        margin-bottom: 20px;
        font-size: 14px;
        text-align: left;
    }
    #form .inBox .btn {}
    #form .inBox .btn a {
        margin: 0 auto 10px;
    }
    #form .inBox .subTxt {}

}


/*===================================================
	benefits
====================================================*/
#benefits {}
#benefits h3 {}
#benefits h3 span {}
#benefits .inBox {}

#benefits .inBox .benefitList {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin: 0px 0 30px;
    padding: 0 0 35px;
    border-bottom: 1px solid #ffffff50;
}
#benefits .inBox .benefitList li {
    width: calc(100% / 3 - 40px / 3);
}
#benefits .inBox .benefitList li:last-child {}
#benefits .inBox .benefitList li .benefitImg {
    margin: 0 0 15px;
}
#benefits .inBox .benefitList li .name {}
#benefits .inBox .benefitList li:first-child .name {
    line-height: 3;
}

#benefits .inBox .attList {}
#benefits .inBox .attList li {
    font-size: 14px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
}
#benefits .inBox .attList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #benefits {}
    #benefits h3 {}
    #benefits h3 span {}
    #benefits .inBox {}
    
    #benefits .inBox .benefitList {
        display: block;
        border-bottom: 0;
        padding: 0;
        margin: 0;
    }
    #benefits .inBox .benefitList li {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
        padding: 0 0 15px;
        border-bottom: 1px solid #ffffff50;
    }
    #benefits .inBox .benefitList li:last-child {
        margin: 0 auto 15px;
    }
    #benefits .inBox .benefitList li .benefitImg {}
    #benefits .inBox .benefitList li .name {}
    #benefits .inBox .benefitList li:first-child .name {
        line-height: 1.6;
        font-size: 14px;
    }

    #benefits .inBox .attList {}
    #benefits .inBox .attList li {
        font-size: 12px;
    }
    #benefits .inBox .attList li:last-child {}

}


/*===================================================
	ticket
====================================================*/
#ticket {}
#ticket h3 {}
#ticket h3 span {}
#ticket .inBox {
    margin: 0 auto 60px;
}

#ticket .inBox ul.head {
    border: none;
}
#ticket .inBox ul.head li {
    background: #CA1D20;
    padding: 5px;
}
#ticket .inBox ul.head li:last-child {}
#ticket .inBox ul {
    display: flex;
    text-align: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff50;
    align-items: stretch;
}
#ticket .inBox ul li {
    padding: 20px 15px;
    position: relative;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#ticket .inBox ul li:last-child {}
#ticket .inBox ul li.type {
    width: 27%;
}
#ticket .inBox ul li.price {
    width: calc(25% - 2px);
}
#ticket .inBox ul li.price span {
    font-size: 12px;
    padding: 0 0px 0 3px;
}
#ticket .inBox ul li.sale {
    width: calc(24% - 1px);
}
#ticket .inBox ul li.sale span {
    text-align: left;
    display: inline-block;
}
#ticket .inBox ul li.sale span.sp {
    display: none;
}
#ticket .inBox ul li.benefit {
    width: 24%;
}
#ticket .inBox ul li.benefit span.item {
    display: block;
}
#ticket .inBox ul li.benefit .ticketItemName {}
#ticket .inBox ul li.benefit .ticketItem {
    width: 60%;
    margin: 5px auto 5px;
}
#ticket .inBox ul li.benefit .plus {
    width: 100%;
    display: block;
}
#ticket .inBox ul li.type:after,
#ticket .inBox ul li.price:after,
#ticket .inBox ul li.sale:after {
    content: "";
    display: block;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    width: 1px;
    height: calc(100% - 30px);
    background-color: #ffffff50;
}
#ticket .inBox ul.head li.type:after,
#ticket .inBox ul.head li.price:after,
#ticket .inBox ul.head li.sale:after {
    display: none;
}

#ticket .btnBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 60px;
    width: 90%;
    max-width: 1100px;
}
#ticket .btnBox.generalBox {
    margin: 60px auto 25px;
}
#ticket .btnBox .ticketBtn {
    width: 90%;
    max-width: 325px;
    margin-right: 20px;
}
#ticket .btnBox .ticketBtn a {
    display: block;
    background: #CA1D20;
    color: #fff;
    border-radius: 100px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 14px;
}
#ticket .btnBox .ticketBtn:last-child {
    margin-right: 0;
}
#ticket .btnBox .ticketBtn.general a {
    background: #bda655;
    color: #000000;
}

#ticket .attBox {
    padding: 40px;
    background: rgb(255 255 255 / 0.1);
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
#ticket .attBox .attTit {
    font-weight: bold;
    margin: 0 0 15px;
}
#ticket .attBox .attTit span {
    font-size: 14px;
    padding: 0 0 0 10px;
}
#ticket .attBox .attList {}
#ticket .attBox .attList li {
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin-bottom: 5px;
    font-size: 14px;
}
#ticket .attBox .attList li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 961px){

    #ticket .btnBox .ticketBtn a:hover {
        background: #fff;
        color: #CA1D20;
    }

    #ticket .btnBox .ticketBtn.general a:hover {
        background: #000000;
        color: #bda655;
    }

}

@media screen and (max-width: 960px){

    #ticket {}
    #ticket h3 {}
    #ticket h3 span {}
    #ticket .inBox {
        margin: 0 auto 30px;
    }
    
    #ticket .inBox ul.head {
        display: none;
    }
    #ticket .inBox ul.head li {}
    #ticket .inBox ul.head li:last-child {}
    #ticket .inBox ul {
        display: block;
        text-align: left;
        font-size: 14px;
        padding: 20px 0 15px;
    }
    #ticket .inBox ul:nth-child(2) {
        border-top: 1px solid #ffffff50;
    }
    #ticket .inBox ul li {
        padding: 0;
        display: block;
    }
    #ticket .inBox ul li:last-child {}
    #ticket .inBox ul li.type {
        width: initial;
        display: inline-block;
        background: #CA1D20;
        font-weight: bold;
        padding: 3px 10px;
        margin: 0 0 10px;
    }
    #ticket .inBox ul li.price {
        width: 100%;
        margin: 0 0 10px;
        font-size: 18px;
    }
    #ticket .inBox ul li.price span {
        font-size: 10px;
    }
    #ticket .inBox ul li.sale {
        width: 100%;
        margin: 0 0 15px;
    }
    #ticket .inBox ul li.sale span.sp {
        display: block;
        font-weight: bold;
        border-left: 2px solid;
        padding: 0 0 0 10px;
        margin: 0 0 5px;
        line-height: 1.3;
    }
    #ticket .inBox ul li.benefit {
        width: 100%;
    }
    #ticket .inBox ul li.benefit span.sp {
        display: block;
        font-weight: bold;
        border-left: 2px solid;
        padding: 0 0 0 10px;
        margin: 0 0 5px;
        line-height: 1.3;
    }
    #ticket .inBox ul li.benefit span.item {
        display: inline;
        padding: 0;
    }
    #ticket .inBox ul li.benefit .ticketItemName {}
    #ticket .inBox ul li.benefit .ticketItem {
        width: 100%;
        max-width: 350px;
        margin: 5px auto 15px;
    }
    #ticket .inBox ul li.benefit .plus {
        display: inline-block;
        width: initial;
    }

    #ticket .inBox ul li.type:after,
    #ticket .inBox ul li.price:after,
    #ticket .inBox ul li.sale:after {
        display: none;
    }
    
    #ticket .btnBox {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin: 0 auto 30px;
    }
    #ticket .btnBox.generalBox {
        margin: 30px auto 20px;
    }
    #ticket .btnBox .ticketBtn {
        margin: 0 auto 20px;
    }
    #ticket .btnBox .ticketBtn a {
        font-size: 14px;
        max-width: 300px;
    }
    #ticket .btnBox .ticketBtn:last-child {
        margin: 0 auto;
    }

    #ticket .attBox {
        padding: 20px;
    }
    #ticket .attBox .attTit {
        margin: 0 0 10px;
    }
    #ticket .attBox .attTit span {}
    #ticket .attBox .attList {}
    #ticket .attBox .attList li {}
    #ticket .attBox .attList li:last-child {}

}


/*===================================================
	Floor Guide
====================================================*/
#guide {}
#guide h3 {}
#guide h3 span {}
#guide .inBox {}

#guide .inBox .mapList {
    display: flex;
    justify-content: space-between;
}
#guide .inBox .mapList li {
    width: calc(50% - 10px);
}
#guide .inBox .mapList li:nth-child(2) {}
#guide .inBox .mapList li:last-child {}
#guide .inBox .mapList li p.floor {
    border-left: 3px solid;
    padding: 0 0 0 10px;
    margin: 0 0 15px;
    font-weight: bold;
    color: #bda655;
}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #guide {}
    #guide h3 {}
    #guide h3 span {}
    #guide .inBox {}
    
    #guide .inBox .mapList {
        display: flex;
        flex-wrap: wrap;
    }
    #guide .inBox .mapList li {
        width: 100%;
        margin: 0 auto 20px;
    }
    #guide .inBox .mapList li:nth-child(2) {}
    #guide .inBox .mapList li:last-child {
        margin: 0 auto;
    }
    #guide .inBox .mapList li p.floor {
        margin: 0 0 10px;
    }
    
}


/*===================================================
	map
====================================================*/
#map {}
#map h3 {}
#map h3 span {}
#map .inBox {
    padding: 0;
    background: none;
}

#map .inBox .mapBox {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#map .inBox .mapBox 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){

    #map {}
    #map h3 {}
    #map h3 span {}
    #map .inBox {
        padding: 0;
    }
    
    #map .inBox .mapBox {}
    #map .inBox .mapBox iframe {}
    
}


/*===================================================
	goods
====================================================*/
#goods {}
#goods h3 {}
#goods h3 span {}
#goods .inBox {}

#mgoods .inBox .mapImg {}

@media screen and (min-width: 961px){}

@media screen and (max-width: 960px){

    #goods {}
    #goods h3 {}
    #goods h3 span {}
    #goods .inBox {}
    
    #mgoods .inBox .mapImg {}

}


/*===================================================
	footer
====================================================*/
.footer {
    padding: 0 0 40px;
}
.footer .logo {
    width: 150px;
    margin: 0 auto 20px;
}
.footer .copy {
    text-align: center;
    font-size: 10px;
}

@media screen and (min-width: 961px){

    .footer .logo a:hover {
        opacity: 0.7;
    }

}

@media screen and (max-width: 960px){

    .footer {
        padding: 0 0 20px;
    }
    .footer .logo {
        width: 125px;
        margin: 0 auto 15px;
    }
    .footer .copy {}

}