@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: #665c6c;
    position: relative;
    background: #bca9e4;
    font-family: 'Roboto', 'Noto Sans JP', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 400;
    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: 200vw;
    height: 200vw;
    background: linear-gradient(90deg, #ef72a4, #b5599c);
    border-radius: 50%;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 1s ease-in-out;
}

.loaded .contents::before {
    transform: translate(-50%, -50%) scale(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: 80%;
    max-width: 80rem;
    background: #ffffff;
    border-radius: 1.2rem;
    border: 1px solid #c464a8;
}

.innerWrap::before, .innerWrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #c464a8;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 1.2rem;
    z-index: -1;
    background: #fae5fa;
}
.innerWrap::after {
    left: 8px;
    top: 8px;
    z-index: -2;
    background: #ebbfeb;
}

.innerWrap_body {
    padding: 3em 3rem;
}

h2 {
    font-weight: 700;
    text-align: left;
    line-height: 1;
    position: relative;
    transition: 0.3s 0.2s;
    color: #fff;
    background: linear-gradient(90deg, #ef72a4, #b5599c);
    padding: 1.5rem 3rem;
    border-radius: 1.2rem 1.2rem 0 0;
}

h2 .tit_inner {
    display: block;
    font-size: 2.5rem;
    letter-spacing: 0;
    font-family: "margot";
    font-weight: 400;
    background: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2025/img/ico_heart_w.png);
    background-size: 3.5rem;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

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%;
    }

h2 {
    padding: 1.2rem 1.5rem;
}

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

h2 .tit_inner {
    font-size: 2.2rem;
    background-size: 3rem;
}

.innerWrap_body {
    padding: 1.5rem;
}

}


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

.hamBtn::after {
    content: 'menu';
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: 0.3s;
    font-family: "margot", sans-serif;
    letter-spacing: 0;
    color: #b5599c;
}

.hamBtn span {
    display: block;
    position: absolute;
    right: 25%;
    width: 50%;
    height: 3px;
    background: #b5599c;
    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 {
    background: #fff;
}

.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: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(90deg, #ef72a4, #b5599c);
}

.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: "margot", sans-serif;
    color: #fff;
}
.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;
    min-height: 45vw;
}

#mainVisual::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #bca9e4, #f1c7f5);
    position: absolute;
    z-index: -1;
}


.mv_wrap {
    position: absolute;
    width: 80%;
    height: 83%;
    border-radius: 3rem;
    z-index: 0;
    top: 12%;
    right: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0.2rem 1.2rem #703d5d73;
}
.loaded .mv_wrap {
}


.mv_wrap img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: 66% 50%;
}


.main_kv_logo {
    width: 20%;
    transition: 0.5s;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 4%;
    z-index: 12;
    filter: drop-shadow(0 0.2rem 0.8rem #703d5d73);
}

.scrolled .main_kv_logo {
    width: 15%;
}

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

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


.bg_img::before {
    content: '';
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2025/img/bg_cross.png);
    background-size: 17px;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.2;
}

.bg_img::after {
    content: '';
    background-image: url(/static/fcopen/fanplakit/artist/ogura_yui_xd2g4TXZ/feature/autumn_tour_2025/img/bg_main_hX2mcSAF_v2.png);
    background-size: 80rem;
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: -3% 0;
}

.loaded .bg_img {
}

.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: "margot", sans-serif;
    line-height: 0;
}


@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scale2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

#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: 4%;
    top: 3vw;
    z-index: 10;
    color: #b5599c;
    background: #fff;
    border: 1px solid;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 0.2rem 0.8rem #703d5d73;
}
.share_tit {
    font-size: 0.85em;
    margin: 0 0 1em;
    line-height: 1;
    font-family: "margot", sans-serif;
    text-align: left;
    border-bottom: 1px solid;
    padding-bottom: 0.5em;
    position: relative;
}

.share_tit span {
    display: block;
    width: 1.7rem;
    position: absolute;
    right: 0;
    top: 0.2rem;
    line-height: 0;
}

.loaded .share-list {
}

.share-list {
    display: flex;
}

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

.share-list li a {
    border-radius: 0.6rem;
    position: relative;
    font-size: 1.7em;
    line-height: 1;
    display: flex;
    width: 1.7em;
    height: 1.7em;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #b5599c;
    color: #fff;
}

.share-list li a:hover {
    background: #f33396;
    opacity: 1;
}

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



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


.hamBtn {
    display: none;
}

.hamBox {
    display: block;
    position: fixed;
    top: 3.5%;
    right: 4%;
    left: auto;
    transition: all .5s ease-out;
    transition-delay: 0.3s;
    opacity: 1;
    width: auto;
    height: auto;
    min-height: auto;
    background: 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;
    gap: 0.8rem;
}

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

.menuList a {
    font-size: 1rem;
    padding: 0.5em;
    background: linear-gradient(360deg, #bc5c9d, #f282b6);
    border-radius: 5rem;
    display: inline-block;
    width: 7.5rem;
    text-align: center;
    box-shadow: 0 0.1em 0.4em #703d5d4d;
    border-bottom: 1px solid #cd6fb9;
}

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

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


}



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

.loaded .contents::before {
}
.contents::before {
    width: 260vh;
    height: 260vh;
}

.bgBox {
}

.bg_img::before {
    background-size: 12px;
    opacity: 0.3;
}
.bg_img::after {
    background-size: 60rem;
    background-position: 10% -12rem;
}

.main_kv_ph {
    width: 100%;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scale2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.main_kv_logo {
    width: 60%;
    max-width: 60vh;
}
.scrolled .main_kv_logo {
    width: 40%;
}
	
.menuList a {
    position: relative;
    font-size: 2.2rem;
}
.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: auto;
    right: 4%;
    top: auto;
    bottom: 2%;
    padding: 10px;
}

.share-list li a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.7rem;
}


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


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

.menuList li {
    margin-bottom: 1rem;
    text-align: left;
}

}




.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: 1.1em;
    width: 10em;
    letter-spacing: 0;
    font-family: "margot", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}
#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: linear-gradient(90deg, #ef72a4, #b5599c);
    padding: 0.75em 2.2em 0.75em 1.5em;
    border-radius: 30px;
    font-family: "margot", 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: 100%;
	    margin-bottom: 0.2rem;
	}
	#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;
}

.list--schedule:last-of-type {
    margin: 0;
}

.list--schedule li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.6em 2.2em;
    background: #fff4fb;
    margin-bottom: 0.75em;
    border-radius: 1em;
    border: 1px solid #d69ddb;
    box-shadow: 2px 2px 0 #b280b6;
}

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

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

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

.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: #d69ddb;
}

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

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

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

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

.list--schedule li .time .type {
    background: #d69ddb;
    display: inline-block;
    color: #fff;
    font-size: 0.75em;
    width: 11em;
    text-align: center;
    border-radius: 3em;
    padding: 0.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.5em 1.3em;
}

.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: 1rem 0;
    border-top: 2px dotted #d69ddb;
    border-bottom: 2px dotted #d69ddb;
}

.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;
}




}





.sml {
    font-size: 0.8em;
}


#ticket .price_box {
    margin: 0 auto 3rem;
    //border-bottom: 2px dotted #d69ddb;
    //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: 1rem;
}
#ticket .ticketBox .price:last-child {
    margin-bottom: 0;
}

#ticket .ticketBox .price > li {
    display: flex;
    justify-content: space-between;
    padding: 1.5em 1.5em;
    align-items: center;
    flex-wrap: wrap;
    background: #fff4fb;
    border-radius: 1em;
    border: 1px solid #d69ddb;
    box-shadow: 2px 2px 0 #b280b6;
    border-left: 1em solid #d69ddb;
    width: 49%;
}

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

#ticket .ticketBox .price > li h5 {
    font-size: 1em;
    font-weight: bold;
    border-right: dotted 2px;
    width: 54%;
    padding-right: 2%;
    line-height: 1.5;
}

#ticket .ticketBox .price > li p {
    font-size: 1.4em;
    font-weight: bold;
    width: 46%;
    text-align: right;
}

#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;
}

.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;
}
.seat_list > li {
    background: #fff4fb;
    border-radius: 1em;
    border: 1px solid #d69ddb;
    box-shadow: 2px 2px 0 #b280b6;
    overflow: hidden;
    width: 24%;
    line-height: 0;
}


.ticketBox .ticketInfo {
	margin-bottom: 25px;
}
.ticketBox .ticketInfo li {
    font-size: 0.85rem;
    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 #d69ddb;
    overflow: hidden;
    box-shadow: 2px 2px 0 #b280b6;
}

.ticketBox .ticketInfo_desc {
    width: 100%;
    border: 1px solid #d69ddb;
    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: #d69ddb;
}
#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 #d69ddb;
    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: #d69ddb;
}

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

.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, #ef72a4, #b5599c);
    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;
    box-shadow: 2px 2px 0 #a14287;
    transition: 0.15s;
    top: 0px;
    left: 0px;
}

.detailBtn a:hover {
    box-shadow: 0px 0px 0 #a14287;
    top: 2px;
    left: 2px;
    opacity: 1;
}


.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;
}


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

.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;
}
#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: dotted 2px;
    padding: 0 0 0.8rem;
    margin-bottom: 0.8rem;
}
#ticket .ticketBox .price li p {
    width: 100%;
    text-align: left;
    font-size: 1.4em;
}

	#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;
}
.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;
}
	
}




#goods h2 {
}

#goods .comingSoon {
    padding: 4rem;
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    font-family: "margot", 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_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;
}


}


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;
}

@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;
	}
}


#attention h2 {
    text-align: left;
}


@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: #fff4fb;
    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;
    border: 1px solid #d69ddb;
    overflow: hidden;
    box-shadow: 2px 2px 0 #b280b6;
}
.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: #d69ddb;
    color: #fff;
}
.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 #f782bc;
    margin-top: 1.5rem;
}

.accordion_presentArea {
    background: #fff;
    padding: 2.3em 2em 2.3em;
    border-radius: 1em;
    box-shadow: 3px 3px 0 #f782bc;
    margin-top: 1em;
}

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

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

.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: #f782bc;
    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: #f782bc;
    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.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;
}
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;
}

}

