@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

html {
    font-size: clamp(13px, 1.1vw, 2.2vh);
}

body {
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.05em;
    color: #5c696c;
    position: relative;
    font-family: 'Roboto', 'Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.en {
    font-size: 0.85em;
    opacity: 0.7;
}

a {
    text-decoration: underline;
}

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

.bold {
    font-weight: 800;
}

.red {
    color: #f1581e;
}

.fadeup {
}

.loaded .fadeup.started {
}

.contents::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #acdbf6, #f5cade);
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 1s ease-in-out;
    pointer-events: none;
}

.loaded .contents::before {
    filter: blur(5vw);
    opacity: 0;
}

section {
    position: relative;
    padding: 8rem 0 1rem;
    z-index: 1;
}

.section_inner {
    background: #ffffff;
    border-radius: 40px;
    width: 95%;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 4.5vw;
    box-shadow: 10px 15px 20px #612e003b;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}


.innerWrap {
    margin: 0 auto;
    position: relative;
    width: 88%;
    max-width: 75rem;
    background: #ffffff;
    border-radius: 1.2rem;
    box-shadow: 0 0 1rem #ab87bbd9;
}

.innerWrap::before {
    content: '';
    display: block;
    border-radius: 1rem;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 1px solid #8889c2;
    position: absolute;
    left: 5px;
    top: 5px;
    pointer-events: none;
}
.innerWrap::after {
}

.innerWrap_body {
    padding: 5rem 4rem 4rem;
}

h2 {
    font-weight: 700;
    text-align: center;
    line-height: 1;
    position: relative;
    transition: 0.3s 0.2s;
    color: #8889c2;
    position: absolute;
    width: 100%;
    top: -2.3rem;
    -webkit-filter: drop-shadow(0 0 2rem #fff) drop-shadow(0 0 2rem #fff);
    filter: drop-shadow(0 0 2rem #fff) drop-shadow(0 0 2rem #fff);
}

h2 .tit_inner {
    display: block;
    font-size: 4.2rem;
    letter-spacing: -0.04em;
    font-family: vdl-logojrblack;
    font-weight: 400;
    background: linear-gradient(180deg, #b2e3ff, #f2c1dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.8px #b389bb;
}

h2 .tit_sub {
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-indent: 0.01em;
    padding-left: 1rem;
}

@media screen and (min-width: 960px) {
	
	.sp { display: none !important;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 960px) {
	
html {
    font-size: clamp(10px, 3.5vw, 2.5vh);
}

	.pc { display: none !important;}
	
section {
    padding: 5rem 0 1rem;
}
	
	.innerWrap {
    width: 90%;
    }

.innerWrap::before {
    left: 4px;
    top: 4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

h2 {
    top: -1.3rem;
}

h2 .tit_inner {
    font-size: 2.7rem;
}

.innerWrap_body {
    padding: 3rem 1.6rem;
}

}


header {
    background: #ffffffc4;
    width: calc(100% - 80px);
    height: 4.5rem;
    position: fixed;
    z-index: 100;
    left: 40px;
    top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 6rem;
    padding: 0 2.8rem;
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
    box-shadow: 0 0.3rem 0.6rem #5b5c732e;
}

.hamBtn {
    position: fixed;
    right: 0.5rem;
    top: 0;
    width: 55px;
    height: 4rem;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
}


.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 3px;
    background: #8889c2;
    transition: all .3s ease;
    border-radius: 10px;
}
.hamBtn :nth-of-type(1) {
    top: 20px;
}
.hamBtn :nth-of-type(2) {
	top: 25px;
}
.hamBtn :nth-of-type(3) {
    top: 30px;
}

.hamBtn.open::after {
    color: #fff;
}

.hamBtn.open span {
}

.hamBtn.open span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
}
.hamBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
}


.hamBox {
    display: none;
    min-height: 100%;
    box-sizing: border-box;
    position: fixed;
    height: calc(100vh - 9rem);
    width: 100%;
    top: 5rem;
    left: 0;
    z-index: 999;
    background: #ffffffe6;
    border-radius: 3rem;
    box-shadow: 0 0 1rem #540e695e;
}
.hamBox_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuList {
    margin: 0 auto;
    text-align: left;
}

.menuList li {
    position: relative;
}

.menuList li:last-child {
    margin-bottom: 0;
}

.menuList li .icon_new {
    position: absolute;
    top: -18px;
    font-size: 10px;
    left: 10px;
    display: flex;
    color: #ffffff;
    width: 38px;
    height: 15px;
    background: #f19999;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.menuList a {
    line-height: 1;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: vdl-logojrblack, sans-serif;
    color: #8889c2;
}
.menuList a:hover {
    opacity: 0.7;
}


.menutit {
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.01em;
    color: #fff;
    font-size: 3.6vw;
    text-align: center;
    line-height: 1;
    margin-bottom: 3.8vw;
}

.menuList li.official a {
    background: #5e5e5e;
    color: #fff;
    padding: 0.15em 0.95em;
    border-radius: 2em;
    font-size: 1.15em;
}



#mainVisual {
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto 0px;
    position: relative;
    z-index: 1;
}


.main_kv_logo {
    width: 68%;
    transition: 0.6s;
    position: fixed;
    z-index: 0;
    opacity: 0;
    max-width: 128vh;
}

.loaded.scrolled .main_kv_logo {
    opacity: 0;
    transform: scale(0.8);
}

.loaded .main_kv_logo {
    opacity: 1;
    transform: none;
}

.main_kv_logo a {
    display: block;
    opacity: 1 !important;
    line-height: 0;
}



.bgBox::before {
    content: '';
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/tour_2026summer/img/bg_main_q6YLrb3W.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
}

.bg_img {
    position: fixed;
    z-index: 1;
}

.bg_img::before {
    content: '';
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/tour_2026summer/img/bg_particle_q6YLrb3W.png);
    background-size: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    mask-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/tour_2026summer/img/twinkling.png);
    mask-size: 300px;
    mask-position: 0 0;
    animation: mask 2s linear 0s infinite;
}

@keyframes mask {
    0%   { mask-position: 0 0; }
    100% { mask-position: 300px 300px; }
}


.bg_img::after {
    content: '';
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/tour_2026summer/img/ph_ico_q6YLrb3W.png);
    background-size: 100%;
    width: 96%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 50%;
    transition: 0.6s;
    background-position: 50% 60%;
    animation: float 6s ease 0s infinite;
    max-width: 200vh;
    opacity: 0.7;
    transform: translateX(-50%);
}

@keyframes float {
    0%   { background-position: 50% 30%; }
    50%  { background-position: 50% 70%; }
    100% { background-position: 50% 30%; }
}

.loaded.scrolled .bg_img::after {
    filter: blur(0.2rem);
}


.lightbar_wrap .lightbar {
    position: fixed;
    width: 55rem;
    top: 0;
    right: -15%;
    z-index: 0;
    animation: lightbar 6s linear 0s infinite;
    opacity: 0;
    filter: blur(2px);
}
@keyframes lightbar {
    0%   { opacity: 0; }
    20%  { opacity: 1; }
    30%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
}

.lightbar_wrap .lightbar.bar02 {
    right: 18%;
    top: -29%;
    animation-delay: 2s;
}
.lightbar_wrap .lightbar.bar03 {
    right: 65%;
    top: 26%;
    animation-delay: 4s;
}


.scroll_wrap {
    position: absolute;
    bottom: 6%;
    left: 4%;
    display: block;
    transition: 0.5s 0.3s;
    z-index: 1;
    background: #fff;
    width: 4.4rem;
    height: 17rem;
    color: #b5599c;
    border-radius: 5rem;
    border: 1px solid;
    display: flex;
    justify-content: center;
    padding: 2.2rem;
    box-shadow: 0 0.2rem 0.8rem #703d5d73
}

.loaded .scroll_wrap {
}

.scroll {
    display: block;
    height: 7rem;
    width: 100%;
    position: relative;
}

.scroll:after {
    content: "";
    position: absolute;
    width: 1px;
    bottom: 5em;
    left: 0rem;
    margin: auto;
    display: block;
    background: #b5599c;
    -webkit-animation: scroll 2s linear 0s infinite;
    animation: scroll 2s linear 0s infinite;
}

@keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto;  }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto;}
    54% { height: 100%; bottom: 0; top: auto;}
    100% { height: 0; bottom: 0; top: auto; }
}


.loaded .scroll {
    opacity: 1;
}


.scroll:before {
    content: 'SCROLL';
    position: absolute;
    writing-mode: vertical-lr;
    font-size: 0.9em;
    letter-spacing: 0.03em;
    left: 0;
    bottom: -5.5rem;
    text-align: right;
    font-family: vdl-logojrblack, sans-serif;
    line-height: 0;
}


#mainVisual .main_logo {
    width: 73%;
    opacity: 0;
    transition: all 0.4s ease-out;
}

.loaded #mainVisual .main_logo {
    opacity: 1;
}

.main_kv_window {
    line-height: 0;
    margin: 0 auto 1.5rem;
    width: 82%;
    max-width: 122vh;
    min-width: 50vw;
    position: relative;
}

.main_kv_window img {
    -webkit-mask-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2024/img/ph_main_window_U8gRtWF4.png);
    -webkit-mask-size: cover;
    -webkit-mask-position: top;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2024/img/ph_main_window_U8gRtWF4.png);
    mask-size: cover;
    mask-position: top;
    mask-repeat: no-repeat;
}

.main_kv_window::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2024/img/ph_main_window_l_U8gRtWF4.png);
    position: absolute;
    top: -0.4rem;
    left: 0.4rem;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}


.logo_bg {
    position: absolute;
}


.sns-share {
    position: absolute;
    left: 2.8rem;
    top: 0;
    z-index: 10;
}

.loaded .share-list {
}

.share-list {
    display: flex;
}

.share-list > li {
}
.share-list > li:last-child {
    margin: 0;
}

.share-list li a {
    position: relative;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    width: 1.7em;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8889c2;
}

.share-list li a:hover {
    background: #8889c2;
    color: #ffffff;
    opacity: 1;
}

.share-list li:last-child a {
    margin-bottom: 0;
}



@media screen and (min-width: 960px) {


.hamBtn {
    display: none;
}

.hamBox {
    display: block;
    position: relative;
    left: auto;
    transition: all .5s ease-out;
    transition-delay: 0.3s;
    opacity: 1;
    width: auto;
    height: auto;
    min-height: auto;
    background: none;
    top: 0;
    right: 0;
    box-shadow: none;
}

.loaded .hamBox.started {
    transform: none;
    opacity: 1;
}

.hamBox_inner {
    width: auto;
    height: auto;
}

.menuList {
    width: auto;
    margin: 0;
    text-align: left;
    display: flex;
    position: relative;
}

.menuList li {
    margin: 0;
    line-height: 1;
}
.menuList li.sns_icon_list {
    border-left: 2px solid #f2921c;
    padding-left: 5px;
}

.menuList a {
    font-size: 1.1rem;
    padding: 0 0.8em;
    display: flex;
    text-align: center;
    color: #8889c2;
    font-family: vdl-logojrblack, sans-serif;
    font-weight: 900;
    font-style: normal;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
}

.menuList a:hover {
    background: #8889c2;
    color: #ffffff;
    opacity: 1;
}

.menuList li:last-child a {
    margin: 0;
}

.menuList li:last-child a::after {
    display: none;
}


}



	
@media screen and (max-width: 960px) {

.contents::before {
    background: linear-gradient(0deg, #acdbf6, #f5cade);
}

.bgBox {
}

.bg_img::after {
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/tour_2026summer/img/ph_ico_sp_q6YLrb3W.png);
}

@keyframes float {
    0%   { background-position: 50% 40%; }
    50%  { background-position: 50% 60%; }
    100% { background-position: 50% 40%; }
}

.lightbar_wrap .lightbar {
    width: 30rem;
    filter: blur(1px);
    right: -28%;
    top: 8%;
}
.lightbar_wrap .lightbar.bar03 {
    top: 30%;
}

header {
    width: calc(100% - 30px);
    left: 15px;
    top: 15px;
    height: 4rem;
}


.main_kv_ph {
    width: 100%;
}

.main_kv_logo {
    width: 92%;
    max-width: 60vh;
}


.menuList a {
    position: relative;
    font-size: 1.5rem;
}
.scroll {
    height: 2rem;
}
.scroll_wrap {
    width: 3rem;
    padding: 1.5rem;
    height: 8rem;
    bottom: 2%;
}

.scroll:before {
    bottom: -3rem;
    font-size: 0.6em;
}


.sns-share {
    left: 1.5rem;
}

.share-list li a {
    height: 4rem;
}

.share-list li:last-child a {
    margin: 0;
}


.menuList {
    margin: 0 auto;
    text-align: center;
}

.menuList li {
    margin-bottom: 1.5rem;
}

}




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

.btn_wrap .detailBtn {
    width: 47%;
}

.btn_wrap .detailBtn a {
    font-size: 15px;
    padding: 15px;
    width: 100%;
    line-height: 1.6;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detailBtn.btn_min a {
    font-size: 16px;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
}

.detailBtn.ex_btn a {
    border: 2px solid;
    font-size: 18px;
    background: linear-gradient(0deg, #0661a7 50%, #0ab1cc);
}

.detailBtn.ex_btn {
    margin-top: 3em;
}

.detailBtn.ex_btn.hide a {
    background: #989898;
    color: #e9e9e9;
}


#news .newsList {
    list-style: none;
    border-radius: 0px;
    width: 100%;
}

#news .newsList li {
    margin-bottom: 1rem;
}
#news .newsList li:last-child {
	margin-bottom: 0;
}

#news .newsList li .newsWrap {
    padding: 12px 25px;
    display: block;
    border-radius: 10px;
    background: #ffffff3b;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
}

#news .newsList li .date {
    font-size: 1rem;
    width: 8em;
    letter-spacing: 0;
    line-height: 1.6;
    background: #fff;
    color: #8889c2;
    text-align: center;
    border-radius: 5rem;
}
#news .newsList li .title {
    width: calc(100% - 10em);
    line-height: 1.7;
}
#news .news_more {
    width: 100%;
    text-align: right;
}

#news .news_more a {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
}

#news .news_more a::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #1f1f1f;
    margin-right: 20px;
    transition: 0.3s;
}

#news .news_more a:hover::before {
    transform: translateX(-10px);
}

#news .news_more a:hover {
    opacity: 1;
}


.newsArchivesBtn {
    text-align: right;
    margin: 25px 0 0;
}
.newsArchivesBtn a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    background: #8889c2;
    padding: 0.75em 2.2em 0.75em 1.5em;
    border-radius: 30px;
    font-family: vdl-logojrblack, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.newsArchivesBtn a span {
    position: absolute;
    top: 50%;
    right: 0.8em;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: #ffffff solid 3px;
    border-bottom: #ffffff solid 3px;
    transform: translateY(-75%) rotate(45deg);
}
.newsArchivesBtn.more a::before {
	content: "VIEW MORE";
}
.newsArchivesBtn.close a::before {
	content: "CLOSE";
}
.newsArchivesBtn.close a span {
	transform: translateY(-30%) rotate(-135deg);
}


#news .detail {
    display: none;
}

#modal-content .detail a {
	color: #000;
	text-decoration: underline;
	word-break: break-all;
}



#news.page--detail .innerWrap {
    display: block;
    border: none;
}

#news.page--detail .newsList {
    width: 100%;
    margin-bottom: 30px;
}


#news.page--detail .news_detail {
    padding: 35px 35px;
    display: block;
    border-radius: 10px;
    background: #f0f0f0;
    margin-bottom: 30px;
}

#news.page--detail .date {
    font-weight: 600;
    font-size: 15px;
    color: #c03532;
    display: block;
}

#news.page--detail .tit {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.6;
}

#news.page--detail .txt {
    font-size: 15px;
    line-height: 1.7;
    word-break: break-all;
}

#news.page--detail .detailBtn a {
    margin-top: 50px;
    font-size: 16px;
}

.news_txt {
    font-size: 0.88em;
    margin-bottom: 1.5em;
}

.news_txt:last-child {
    margin-bottom: 0;
}

.newsbtn a {
    display: inline-block;
    border: 1px solid;
    font-weight: bold;
    padding: 0.2em 1.5em;
    border-radius: 2em;
    text-decoration: none;
}

@media screen and (min-width:960px) {
	#news .newsWrap {
		transition: all 0.3s ease-out;
	}
	#news .newsWrap:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 960px) {

.btn_wrap .detailBtn {
    width: 100%;
    margin-bottom: 15px;
}
.btn_wrap .detailBtn:last-child {
    margin-bottom: 0;
}

.detailBtn.btn_min a {
    font-size: 13px;
    padding: 12px;
}

.detailBtn.ex_btn {
    margin-top: 2em;
}
.detailBtn.ex_btn a {
    font-size: 14px;
}

#news h2 {
    writing-mode: initial;
    width: 100%;
}

	#news .newsListWrap {
    width: 100%;
	}
	#news .newsList {
	    width: 100%;
	}
	#news .newsList li {
	}
	#news .newsList li .newsWrap {
		flex-wrap: wrap;
		padding: 12px 15px;
	}
	#news .newsList li .date {
	    font-size: 1rem;
	    width: fit-content;
	    margin-bottom: 0.5rem;
	    padding: 0 1em;
	}
	#news .newsList li .title {
	    width: 100%;
	    font-size: 0.9em;
	    line-height: 1.5;
	}

	#news.page--detail .detailBtn a {
	    margin-top: 50px;
	    font-size: 14px;
	    padding: 15px;
	}

	#news.page--detail .news_detail {
	    padding: 22px 18px;
	    border-radius: 7px;
	    margin-bottom: 25px;
	}

	#news.page--detail .date {
	    font-size: 13px;
	    margin-bottom: 5px;
	}

	#news.page--detail .tit {
	    font-size: 17px;
	    font-weight: bold;
	    letter-spacing: 1px;
	    margin-bottom: 10px;
	    line-height: 1.5;
	}

	#news.page--detail .txt {
	    font-size: 14px;
	}



}




.sch_tit {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}
.list--schedule {
    margin-bottom: 2.5rem;
    border-top: 1px solid #8889c2;
}

.list--schedule:last-child {
    margin: 0;
}

.list--schedule li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #8889c2;
    position: relative;
}

.list--schedule li:last-child {
    margin-bottom: 0;
}

.list--schedule li .schedule_left {
    width: 20%;
    padding-right: 2%;
}

.list--schedule li .schedule_left .end {
  background: #665c6c;
  padding: 1px 0;
  color: #fff;
  margin: 0 auto 0;
  display: block;
  text-align: center;
  border-radius: 50px;
  width: 100%;
  font-size: 11px;
}


.list--schedule li .schedule_mid {
    width: 48%;
    padding: 0 2.5%;
    border-right: 1px solid #8889c2;
    border-left: 1px solid #8889c2;
}


.list--schedule li .contact {
    padding: 0 0 0 2%;
    width: 32%;
    line-height: 1.65;
    font-size: 0.8em;
}

.list--schedule li .contact a {
    text-decoration: underline;
}

.list--schedule li .contact a .fa {
}

.list--schedule li .contact_tit {
font-size: 0.9em;
    margin-bottom: 0.15em;
    color: #8889c2;
}

.list--schedule li .date {
    text-align: center;
    font-size: 1.35em;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.6;
}

.list--schedule li .date .sml {
    font-size: 0.8em;
}

.list--schedule li .area {
    background: #8889c2;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.9;
    letter-spacing: 0.18em;
    margin: 0 auto;
    width: 8rem;
    border-radius: 2em;
    font-size: 0.9em;
    padding: 0 1rem;
}

.list--schedule li .time {
    font-weight: 700;
    color: #8889c2;
    line-height: 1.6;
}
.list--schedule li .time:last-child {
    margin-bottom: 0;
}

.list--schedule li .time .type {
    background: #8889c2;
    display: inline-block;
    color: #fff;
    font-size: 0.75em;
    width: fit-content;
    text-align: center;
    border-radius: 3em;
    padding: 0.1em 1em;
}

.list--schedule li .place {
    font-weight: 700;
    font-size: 1.3em;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin-bottom: 0.1em;
}


.list--schedule li .kind {
    display: inline-block;
    border: 1px solid;
    padding: 3px 5px;
    font-size: 0.9em;
    line-height: 1;
    margin-top: 8px;
}

.list--schedule li .list_price {
    display: inline-block;
    margin-left: 3px;
}

.list--schedule li .sch_attention {
    font-size: 11px;
    margin-top: 2px;
}




@media screen and (max-width: 960px) {

.list--schedule {
    margin-bottom: 1.8rem;
}

.list--schedule li {
    padding: 1.4rem 0;
}

.list--schedule li .schedule_left {
    width: 100%;
    text-align: left;
    margin-bottom: 0.8rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.list--schedule li .schedule_mid {
    width: 100%;
    border: none;
    padding: 0rem 0 1rem;
    border-bottom: 1px dashed #8889c2ad;
}

.list--schedule li .place {
    font-size: 1.2em;
}

.list--schedule li .time {
    line-height: 1.5;
    padding-top: 0.1em;
    font-size: 0.92em;
}

.list--schedule li .date {
    font-size: 1.3em;
    line-height: 1.5;
    margin: 0;
    width: 50%;
    text-align: left;
}

.list--schedule li .area {
    width: 8rem;
    margin: 0 0 0 auto;
}

.list--schedule li .contact {
    padding: 1rem 0 0;
    width: 100%;
}

.list--schedule li .contact_tit {
    font-size: 1em;
}


.list--schedule li .schedule_left .end {
    position: absolute;
    top: -4px;
    left: 0;
    width: 160px;
}


}





.sml {
    font-size: 0.8em;
}


#ticket .price_box {
    margin: 0 auto 3rem;
    //border-bottom: 2px dotted #8889c2;
    //padding-bottom: 3rem;
}

#ticket .price_box:last-child {
    margin-bottom: 0;
}

#ticket .ticketBox .price {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}
#ticket .ticketBox .price:last-child {
    margin-bottom: 0;
}

#ticket .ticketBox .price > li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    align-items: center;
    flex-wrap: wrap;
    background: #f6f6f6;
    border-radius: 1em;
    border: 1px solid #8889c2;
    border-left: 1em solid #8889c2;
    width: 49%;
}

#ticket .ticketBox .price li:last-child {
    margin-bottom: 0;
}

#ticket .ticketBox .price > li h5 {
    font-size: 1em;
    font-weight: bold;
    width: 60%;
    line-height: 1.4;
    padding: 0.5rem 0.5rem 0.5rem 0;
}
#ticket .ticketBox .price > li h5 .ticet_type {
    font-size: 1.3rem;
    font-weight: 800;
}

#ticket .ticketBox .price > li h5 .ticet_benefit {
    display: inline-block;
    border: 1px solid;
    font-size: 0.85rem;
    padding: 0.1em 0.8em;
    border-radius: 5rem;
    margin-top: 0.3rem;
}

#ticket .ticketBox .price > li h5 .ticet_benefit.bene_w {
    color: #d985c2;
}

#ticket .ticketBox .price > li .price_num {
    font-size: 1.3rem;
    font-weight: bold;
    width: 40%;
    text-align: center;
    background: #fff;
    padding: 1rem 0.5rem;
    border-radius: 0.8rem;
    border: 1px solid #8889c2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ticket .ticketBox .note {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2921c;
    padding-bottom: 3px;
}

#ticket .ticketBox .price_desc {
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

#ticket .ticketBox .price_desc > li {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 0.82em;
}

#ticket .ticketBox .price_desc .tit {
  font-size: 1em;
  font-weight: bold;
}
#ticket .ticketBox .goodsArea {
  margin-top: 40px;
}
#ticket .ticketBox .phGoods {
    background: #fff4fb;
    border-radius: 1em;
    border: 1px solid #8889c2;
    box-shadow: 2px 2px 0 #b280b6;
    overflow: hidden;
    margin-top: 15px;
}
#ticket .ticketBox .tit {
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 1.3rem;
    line-height: 1.3;
}

.ticketBox .ticketBox_inner {
    margin-bottom: 1.5rem;
}
.ticketBox .ticketBox_inner:last-child {
    margin-bottom: 0;
}

.seat_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.seat_list > li {
    background: #ffffff;
    border-radius: 1em;
    border: 1px solid #8889c2;
    overflow: hidden;
    width: calc(100% / 3 - 0.8rem);
    line-height: 0;
}

.ticketBox .ticketInfo {
	margin-bottom: 25px;
}
.ticketBox .ticketInfo li {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ticketBox .ticketInfo_tit {
width: 16%;
    background: #f2921c;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.07em;
    border-radius: 30px;
    line-height: 1.36;
    padding: 7px 0;
}
.ticketBox .ticketInfo_desc {
    width: 100%;
}

.ticketBox .accordion {
    background: #ffffff;
    border-radius: 1em;
    position: relative;
    border: 1px solid #8889c2;
    overflow: hidden;
}

.ticketBox .ticketInfo_desc {
    width: 100%;
    border: 1px solid #8889c2;
    border-radius: 1rem;
    background: #ffffff;
}


#ticket .ticketBox h4 {
    font-size: 1.3em;
    margin-bottom: 0;
    position: relative;
    line-height: 1.5;
    padding: 1.5em 3.5em 1.5em 2em;
    color: #ffffff;
    background: linear-gradient(90deg, #8cc7e8, #f6b3d7);
}
#ticket .ticketBox h4 .end {
    font-size: 0.7em;
    border: 1px solid;
    display: inline-block;
    padding: 0.2em 1em 0.1em 1em;
    margin-right: 1em;
    border-radius: 2rem;
}

.ticketBox .accordion dt h4::before {
    content: '';
    height: calc(100% - 1.6rem);
    width: 1px;
    position: absolute;
    top: 0.8rem;
    border-left: 1px solid #ffffff;
    right: 5rem;
    display: block;
    z-index: 1;
}

.ticketBox .accordion dt::after, .ticketBox .accordion dt::before {
    border-color: #fff;
    right: 2rem;
}

.ticket_txt {
    font-weight: 700;
    margin-bottom: 1.3em;
}
.ticket_txt:last-child {
    margin-bottom: 0;
}

.ticketInfo_desc .target_wrap {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dotted #8889c2;
    padding: 1.5em 0;
}

.ticketInfo_desc .target_wrap:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.ticketInfo_target {
    width: 10rem;
    padding: 0 2rem;
    font-weight: bold;
    color: #8889c2;
}

.ticketInfo_target_desc {
    width: calc(100% - 10rem);
    padding: 0 2rem;
    border-left: 1px solid#8889c2;
}

.ticketBox .ticketAttention {
    margin-bottom: 30px;
    border-radius: 15px;
}

.attention_wrap {
}

.attention_list {
    margin-bottom: 1.5rem;
    font-size: 0.8em;
}

.attention_list:last-child {
    margin-bottom: 0;
}

.attention_list > li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6;
    margin-bottom: 0.3em;
    letter-spacing: 0.05em;
}


.ticketBox dl.accordion dd {
    padding: 2em 3.5em 3.2em 2.5em;
}

.detailBtn {
max-width: 400px;
    margin: 0px auto;
}

.btn_desc {
    text-align: center;
    padding: 7px 0 0;
    font-size: 13px;
    font-weight: 500;
}

.detailBtn a {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #8cc7e8, #f6b3d7);
    color: #fff;
    text-decoration: none;
    border-radius: 3em;
    font-size: 1.3em;
    font-weight: bold;
    padding: 1.5em;
    letter-spacing: 0.02em;
    line-height: 1.5;
    position: relative;
    transition: 0.15s;
    top: 0px;
    left: 0px;
    border: 1px solid #8889c2;
}

.detailBtn a:hover {
    opacity: 1;
    filter: hue-rotate(25deg);
}


.detailBtn.hide a::before {
    display: none;
}

.detailBtn.hide a {
    pointer-events: none;
    background: #bdbdbd;
    color: #f5f5f5;
}

#ticket .guideline3.detailBtn {
    margin: 0px auto 30px;
}
#ticket .join {
	text-align: center;
	color: #fff;
	padding: 40px 60px 0px;
}
#ticket .join p {
	margin-bottom: 25px;
	font-size: 20px;
}

#ticket .fanclubBtn {
	display: flex;
	justify-content: space-between;
	list-style: none;
    max-width: 1060px;
    margin: 0 auto;
}
#ticket .fanclubBtn li {
	width: 45%;
}
#ticket .fanclubBtn li a {
	display: block;
	border-radius: 6px;
    padding: 25px 0 20px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2);
	color: #000;
	text-decoration: none;
}
#ticket .fanclubBtn li:nth-child(1) a {
	background: #f9f9f9;
	background-size: cover;
}
#ticket .fanclubBtn li:nth-child(2) a {
	background: #f9f9f9;
	background-size: cover;
}
#ticket .fanclubBtn li a div {
    width: 100%;
    margin: 0 auto 5px;
    line-height: 1.2;
    font-size: 23px;
    font-weight: 600;
}
#ticket .fanclubBtn li:nth-child(2) a div {
    width: 59.4%;
}
#ticket .fanclubBtn li a p {
	margin-bottom: 0;
	font-size: 14px;
}

.detail_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 15px;
    font-size: 14px;
    border: 1px solid #ededed;
}

.orange_box .detail_list {
    color: #3b3b3b;
}

.detail_list:last-child {
    margin-bottom: 0;
}

.detail_list_tit {
    width: 200px;
    padding: 15px 25px;
    font-weight: bold;
}

.detail_list_txt {
    width: calc(100% - 200px);
    padding: 15px 30px;
    border-left: 1px solid #ededed;
    font-weight: 500;
}

.detail_txt_main {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

.detail_txt_main:last-child {
    margin-bottom: 0;
}

.detail_list_attention {
    font-size: 0.9em;
    background: #f3f3f3;
    padding: 15px 20px;
    border-radius: 10px;
}

.pickup {
    display: inline-block;
    text-indent: 0;
    background: #f2921c;
    color: #fff;
    padding: 0 5px;
    border-radius: 3px;
    margin: 5px 0 2px;
}

.pickup.pickup_l {
margin: 4px 8px 2px 0;
    font-size: 0.9em;
    padding: 0 10px;
}

.desc_txt {
    font-size: 15px;
    text-align: center;
    padding: 15px 0 0;
    font-weight: 500;
}

.detail_inner_box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
}

.detail_inner_box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


.table_tit {
    font-size: 2.8rem;
    letter-spacing: -0.04em;
    font-family: vdl-logojrblack;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    color: #8889c2;
}

.table_wrap {
    border: 1px solid #8889c2;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.ticket_table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    letter-spacing: 0.02em;
    font-size: 0.95em;
}

.ticket_table td {
    border-top: 1px solid #8889c270;
    vertical-align: middle;
    padding: 1rem 0.8rem;
    line-height: 1.6;
    border-right: 1px dotted #8889c254;
}

.ticket_table th {
    padding: 0.8rem;
    background: #8889c2;
    color: #fff;
    font-size: 0.85rem;
}

.ticket_table .t_venue {
    max-width: 15rem;
}

.ticket_table .day-one {
    background: #f8f8ff;
}

.ticket_table .ico_on {
    display: block;
    width: 2rem;
    margin: 0 auto;
    line-height: 0;
}



@media screen and (max-width: 960px) {
	
#ticket {
    border-radius: 3rem  0 0 3rem;
}

.seat_list {
    gap: 0;
}

.seat_list > li {
    width: 100%;
    margin: 0 auto 1.2rem;
}
.seat_list > li:last-child {
    margin-bottom: 0;
}


.ticketBox dl.accordion dd {
    padding: 1.3em 1.2em 1.4em;
}

.sch_tit {
    line-height: 1.6;
    font-size: 1.1rem;
}

#ticket .price_box {
    width: 100%;
    margin-bottom: 2rem;
    //padding-bottom: 2rem;
}

#ticket .ticketBox .price {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2rem;
}
#ticket .ticketBox .price > li {
    padding: 1.2rem;
    display: block;
    width: 100%;
    margin-bottom: 1.2rem;
    border-radius: 0.8rem;
}
	
	#ticket .ticketBox {
	}

	
	#ticket .ticketBox .price > li {
    padding: 1.5rem;
    display: block;
	}
	
#ticket .ticketBox .price li h5 {
    width: 100%;
    line-height: 1.5;
    border: none;
    border-bottom: dashed 1px;
    padding: 0 0 0.8rem;
    margin-bottom: 1.1rem;
}
#ticket .ticketBox .price > li .price_num {
    width: 100%;
    text-align: left;
    font-size: 1.4em;
    height: auto;
}

	#ticket .ticketBox .price_desc {
    text-align: left;
	}
	
#ticket .ticketBox h4 {
    font-size: 1.02rem;
    margin-bottom: 0;
    padding: 1.1em 4.5em 1.1em 1.3em;
}
#ticket .ticketBox .phGoods {
    margin-top: 5px;
}
#ticket .ticketBox .tit {
    font-weight: bold;
    font-size: 14px;
    margin-top: 1rem;
}
.ticketBox .accordion dt h4::before {
    right: 3.8rem;
}
.ticketBox .accordion dt::after, .ticketBox .accordion dt::before {
    right: 1.45rem;
}

.ticket_txt {
    font-size: 0.95em;
    line-height: 1.6;
}
	
	.ticketBox .ticketInfo {
		margin-bottom: 0;
	}
	.ticketBox .ticketInfo li {
		margin-bottom: 15px;
		display: block;
	}

	.ticketBox .ticketInfo_tit {
    width: 100%;
    margin-bottom: 15px;
    background: none;
    border-bottom: 1px solid #f2921c;
    font-size: 14px;
    border-radius: 0;
	}
	.ticketBox .ticketInfo_desc {
	    width: 100%;
	    padding-left: 0;
	}
.ticketBox .price_desc li {
    margin-bottom: 0.2em;
}

    .ticketBox .price li .ticket_desc {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 6px;
    }

	.ticketBox .ticketBox_inner .ticketAttention {
	    margin-bottom: 20px;
	    padding: 10px;
	}

	.ticketInfo_target {
    width: 100%;
    padding: 10px 13px 0;
    font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 3px;
	}
	.ticketInfo_target_desc {
    width: 100%;
    padding: 0px 13px 10px;
    border: none;
    font-size: 0.95rem;
    line-height: 1.6;
	}
	
	#ticket .detailBtn {
		margin: 0vw auto;
	}

.detailBtn a {
    font-size: 1.15rem;
    padding: 1.2em;
    margin-bottom: 2px;
}

	#ticket .join {
		padding: 0;
	}
	#ticket .join p {
		margin-bottom: 5vw;
		font-size: 3.6vw;
	}
	#ticket .fanclubBtn {
		display: block;
	}
	#ticket .fanclubBtn li {
		width: 100%;
		margin-bottom: 4vw;
	}
	

	#ticket .fanclubBtn li a {
	    padding: 15px 0;
	    line-height: 1.4;	
	}

	#ticket .fanclubBtn li a div {
	    font-size: 22px;
	}

.ticketInfo_desc .target_wrap {
    padding: 0;
}

.table_tit {
    font-size: 1.8rem;
}

.table_wrap {
    overflow: scroll;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
}
.ticket_table {
    text-align: left;
}

.ticket_table .t_venue {
    max-width: 100%;
}

.ticket_table td {
    display: block;
    line-height: 1.5;
    padding: 0rem;
    width: 100%;
    border: none;
}

.ticket_table tr:first-child {
    display: none;
}

.ticket_table tr {
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #8889c270;
}

.ticket_table tr:last-child {
    border: none;
}

.ticket_table td.t_area {
    width: fit-content;
    background: #8889c2;
    color: #fff;
    padding: 0.1em 1em;
    border-radius: 3rem;
    margin-bottom: 0.4rem;
}

.ticket_table  td.t_venue {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.ticket_table td.t_part {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.ticket_table td.t_price {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #8889c270;
    padding-bottom: 0.5rem;
}

.ticket_table td.t_bene01, .ticket_table td.t_bene02, .ticket_table td.t_seat {
    width: 32%;
    display: inline-block;
    text-align: center;
    border-right: 1px solid #8889c270;
}


.ticket_table td.t_bene01::before {
    content: 'ブロマイド';
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}
.ticket_table td.t_bene02::before {
    content: 'お見送り';
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}
.ticket_table td.t_seat::before {
    content: '女性専用エリア';
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0;
}

.ticket_table td.t_seat {
    border: none;
}
	
}




#goods h2 {
}

#goods .comingSoon {
    padding: 4rem;
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    font-family: vdl-logojrblack, sans-serif;
    font-weight: 400;
}

#goods.comingSoon p span {
	font-size: 14px;
	font-weight: normal;
}

.goods_txt:last-child {
    margin-bottom: 0;
}


#goods p {
}

#goods .pop_list {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#goods .pop_list > li {
  width: 49%;
  line-height: 0;
  border-radius: 15px;
  overflow: hidden;
}
#goods .pop_list > li:nth-child(3) {
  width: 100%;
  margin-top: 15px;
}
#goods .pop_list > li:nth-child(4) {
  width: 50%;
  margin: 10px auto 0;
}
#goods .goods_box {
    border: 1px solid #8889c2;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    background: #f9f9f9;
}
#goods .goods_box .goods_tit {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 0.5em;
  border-left: 3px solid;
  padding-left: 0.5em;
  line-height: 1.5;
}
#goods .goods_box .attention_list {
  margin-bottom: 20px;
}
#goods .goods_box .attention_list:last-child {
  margin-bottom: 0;
}
#goods .goods_box .attention_list > li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.7;
  margin-bottom: 3px;
  font-weight: 500;
}
#goods .goods_list {
}
#goods .goods_list > li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #8889c2;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}
#goods .goods_list > li .item_img {
  width: 35%;
  line-height: 0;
}
#goods .goods_list > li .item_desc {
  width: 65%;
  padding: 25px 30px;
  border-left: 1px solid #8889c2;
}
#goods .goods_list > li .item_tit {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.6;
}
#goods .goods_list > li .item_price {
  margin-bottom: 1em;
  font-size: 1.1em;
}
#goods .goods_list > li .item_info {
  margin-bottom: 0.5em;
}
#goods .goods_list > li .info_tit {
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.5;
    padding: 0.1em 1em;
    background: #8889c2;
    border-radius: 3rem;
    font-size: 0.9em;
}

.goods_img {
    line-height: 0;
    margin-bottom: 40px;
    border: 1px solid #ebe2dd;
    border-radius: 30px;
    overflow: hidden;
}

.goods_txt {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.goods_txt:last-child {
    margin-bottom: 0;
}

.popup .goods_img {
    margin-bottom: 10px;
}

@media screen and (max-width: 960px) {

#goods .comingSoon {
padding: 10px 0 20px;
    font-size: 16px;
}

.goods_img {
    border-radius: 12px;
    margin-bottom: 20px;
}

.goods_txt {
    text-align: left;
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 15px;
}
#goods .pop_list > li {
    width: 100%;
    margin-bottom: 15px;
}
#goods .pop_list > li:nth-child(3),
#goods .pop_list > li:nth-child(4) {
    margin-top: 0;
    width: 100%;
}

#goods .pop_list > li:last-child {
    margin-bottom: 0;
}

#goods .goods_list > li .item_img {
    width: 100%;
}
#goods .goods_list > li .item_desc {
    width: 100%;
    padding: 1rem;
    border-left: none;
    border-top: 1px solid #8889c2;
    background: #f9f9f9;
}

#goods .goods_box {
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.2rem;
}

#goods .goods_list > li .item_tit {
    font-size: 1.2rem;
    line-height: 1.4;
}

#goods .goods_list > li .item_info {
    margin-bottom: 0.5em;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

#goods .goods_list > li .info_tit {
    font-size: 1em;
    margin-bottom: 5px;
}

#goods .goods_list > li .item_price {
    margin-bottom: 0.5rem;
}

#goods .goods_list > li {
    margin-bottom: 1rem;
}
}


ul.list--support li {
    margin-right: 10px;
}
ul.list--support {
    display: flex;
}

footer {
    padding: 6rem 0 2rem;
    text-align: center;
    z-index: 1;
    position: relative;
    color: #fff;
}
footer .innerWrap {
    padding: 0;
}


footer .copyright {
text-align: center;
    font-size: 12px;
}

.sp_box .sp_list {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sp_box .sp_list > li {
  width: 100%;
  line-height: 0;
  border-radius: 15px;
  overflow: hidden;
}
.sp_box .attention_list {
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 20px;
}
.sp_box .attention_list:last-child {
  margin-bottom: 0;
}
.sp_box .attention_list > li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.7;
  margin-bottom: 3px;
  font-weight: 500;
}

.spcard_box {
  border: 1px solid #8889c2;
  padding: 40px 35px;
  border-radius: 1rem;
  margin: 3rem 3rem 0;
  position: relative;
}
.spcard_box .titArea {
    text-align: center;
    margin-bottom: 15px;

}
.spcard_box .sp_tit {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(transparent 60%, #ff6 60%);
  display: inline;
}
.spcard_box .sp_tit:first-child {
  /*margin-bottom: 0;*/
}
.spcard_box .sp_box_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.spcard_box .sp_box_flex_info {
  width: 75%;
  display: flex;
  align-items: center;
}

.spcard_box .sp_box_flex_info .spbox_txt.sml {
  font-size: 15px;
}
.spcard_box .sp_box_flex_info .spbox_txt.sml .bold {
  font-weight: bold;
}
.spcard_box .sp_box_flex .sp_box_flex_img {
  width: 21%;
}
.spcard_box .entryArea {
  margin: 40px auto 0;
}
.spcard_box .entryArea .cs {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.3;
}


@media (max-width:960px) {
	footer {
		padding: 30px 0;
	}

	footer .texts {
	}
	footer .texts li {
		font-size: calc(32 / 1125 * 100vw);
		line-height: 2;
	}

	footer .banners {
		margin-top: 10vw;
		display: block;
	}
	footer .banners li {
		width: 60vw;
		margin: 0 auto;
    	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
	footer .banners li + li {
		margin: calc(40 / 1125 * 100vw) auto 0;
	}

	footer .sns {
		margin-top: calc(150 / 1125 * 100vw);
	}
	footer .sns li + li {
		margin-left: calc(100 / 1125 * 100vw);
	}
	footer .sns li img.l { width: calc(95 / 1125 * 100vw); }
	footer .sns li img.t { width: calc(92 / 1125 * 100vw); }
	footer .sns li img.i { width: calc(84 / 1125 * 100vw); }
	footer .sns li img.f { width: calc(36 / 1125 * 100vw); }
	footer .sns li img.y { width: calc(106 / 1125 * 100vw); }
	footer .sns li .fab {
	    font-size: calc(100vw / 13);
	}

ul.list--support {
    display: block;
    text-align: left;
}

ul.list--support li {
    margin: 0 0 3px 0;
}

	footer .copyright {
	    font-size: 11px;
	}
.spcard_box {
    padding: 10px 15px;
    margin: 1.5rem 1.5rem 0;
}
.spcard_box .sp_tit {
        padding: 5px 0;
        margin-bottom: 0;
        font-size: 19px;
}
.spcard_box .sp_box_flex_info {
        width: 100%;
        order: 2;
}
.spcard_box .sp_box_flex .sp_box_flex_img {
    width: 70%;
    margin: 0 auto 10px;
}
.spcard_box .entryArea {
    margin: 25px auto 20px;
}
.spcard_box .entryArea .cs {
    font-size: 11px;
    letter-spacing: 0;
}
}



@media screen and (max-width: 960px) {


#attention_ticket {
}

.attention_tit {
    font-size: 17px;
    margin-bottom: 25px;
}


footer .fanclubBtn {
    display: block;
    margin-bottom: 30px;
}

footer .fanclubBtn li {
    width: 100%;
    margin-bottom: 20px;
}

footer .fanclubBtn li a {
    padding: 15px 0 10px;
}

footer .fanclubBtn li a div {
    font-size: 22px;
}

footer .innerWrap {
    padding-bottom: 20px;
}

#mainVisual {
    width: 100%;
    padding: 2rem 0;
    overflow: hidden ;
    position: relative;
}

#mainVisual .main_logo {
    margin-bottom: 0px;
    width: 88%;
}

.main_kv_window {
    width: 85%;
    margin-bottom: 2rem;
}
.mv_wrap {
    width: 90%;
    border-radius: 0 2rem 2rem 0;
    left: 0;
    top: 8%;
    height: 87%;
    /*box-shadow: none;*/
}
.mv_wrap img {
    /*object-position: 52% 100%;*/
    object-position: center;
}

}



@media screen and (max-width: 960px) {


}



dl.accordion dt {
    cursor: pointer;
    position: relative;
}

dl.accordion dd {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 0 0 1em 1em;
    display: none;
}

.accordion dt::before {
    content: "";
    display: block;
    width: 1em;
    height: 0;
    border-bottom: 3px solid;
    position: absolute;
    top: 50%;
    right: 1.5em;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 1;
}

.accordion dt::after {
    content: "";
    display: block;
    width: 1em;
    height: 0;
    position: absolute;
    top: 50%;
    right: 1.5em;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
    border-bottom: 3px solid;
}

.accordion dt.on::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

.accordion.news_ac {
    background: #ffffff;
    border-radius: 1em;
    margin-bottom: 1em;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 0 #9596b9;
}
.accordion.news_ac:last-child {
    margin-bottom: 0;
}

.accordion.news_ac dt {
    padding: 1.5em 3.5em 1.5em 2em;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    background: linear-gradient(90deg, #8cc7e8, #f6b3d7);
    color: #ffffff;
    align-items: flex-start;
}
.accordion.open dd {
    display: block;
}


dl.accordion_presentArea dt {
    cursor: pointer;
    position: relative;
}
dl.accordion_presentArea dd {
    padding: 1.5em 0 0;
    border-top: 1px solid #8889c2;
    margin-top: 1.5rem;
}
.accordion_presentArea {
    background: #f9f9f9;
    padding: 2.3em 2em 2.3em;
    border-radius: 1em;
    margin-top: 1em;
    border: 1px solid #8889c2;
}

.accordion_presentArea h4 {
  font-size: 19px;
}

.accordion_presentArea .tit {
  font-weight: bold;
}
.accordion_presentArea .textArea {
  margin: 20px auto 0;
}
.accordion_presentArea .textArea .address {
  background: #8889c2;
  padding: 1.5em;
  margin: 1em 0 0;
  border-radius: 1em;
  color: #fff;
}

.accordion_presentArea .textArea .address .date {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
.accordion_presentArea .textArea .address .time {
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
}

.accordion_presentArea .textArea .red {
  color: #f00
}

.accordion_presentArea .attentionList li {
  margin-bottom: 6px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4;
}
.accordion_presentArea dt::before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background: #8889c2;
    position: absolute;
    top: 50%;
    right: 0em;
    -webkit-transition: all 0.3s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 1;
}

.accordion_presentArea dt::after {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    position: absolute;
    background: #8889c2;
    top: 50%;
    right: 0em;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.accordion_presentArea dt.on::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

@media screen and (max-width: 960px) {

.accordion_presentArea {
    padding: 1rem 2rem 1rem 1rem;
    line-height: 1.5;
}

.accordion.news_ac::before {
    top: -4px;
    left: -4px;
    border: 1px solid #f782bc;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.accordion dt::before,.accordion dt::after {
    top: calc(50% - 1px);
    right: 1em;
    width: 1em;
    border-width: 2px;
}

dl.accordion dd {
    padding: 1.3em 1.4em 1.6em 1.4em;
}

.accordion.news_ac {
    border-radius: 0.8rem;
}

.accordion.news_ac dt {
    padding: 1em 2.5em 1em 1.2em;
    line-height: 1.7;
    flex-wrap: wrap;
}

.news_txt {
    font-size: 0.85rem;
    line-height: 1.7;
}
.newsbtn a {
    font-size: 0.9em;
}

.attention_list {
    margin-bottom: 15px;
}

.attention_list > li {
    font-size: 0.85rem;
}
.accordion_presentArea h4 {
    font-size: 13px;
}
dl.accordion_presentArea dd {
    padding: 1em 0;
}
.accordion_presentArea .textArea .address {
    padding: 1em;
}
.accordion_presentArea .textArea .address .date {
    font-size: 14px;
}
.accordion_presentArea .textArea .address .time {
    font-size: 11px;
    margin-bottom: 14px;
}

.accordion_presentArea dt::before {
     right: -1em;
}
.accordion_presentArea dt::after {
    right: -1em;
}

}

