@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

/*===================================================
  全体
====================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
}

.mainWrap {
	position: relative;
	overflow: hidden;
}

.mainWrap:before {
    content: "";
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url(/static/yoshiikazuya/fansite/feature/tour2027/images/bg_main_m82qbtpj.jpg);
    background-size: cover;
}

.mainWrap a:hover {
    opacity: 0.5;
}

.contentsWrap {
    position: relative;
    color: #111111;
    padding: 0px 0 20px;
    background-position: top;
    background-size: cover;
}

.scheduleArea, .attentionArea, .ticketArea, .goodsArea, .specialArea {
    background: rgb(225 230 233);
    padding: 50px;
    border-radius: 50px;
    box-shadow: 0 8px 28px #00000052;
}

.leadArea,
.scheduleArea,
.attentionArea,
.ticketArea,
.goodsArea,
.specialArea,
.bottomArea {
	width: 980px;
}

.leadArea {
    margin: 0 auto 100px;
}

.leadArea .btn{
    display: block;
    text-align: center;
    color: #FFF;
    background: #111111;
    text-decoration: none;
    width: 400px;
    margin: 60px auto 0;
    transition: 0.3s;
    line-height: 1.2;
    padding: 15px;
    font-weight: 700;
}

.leadArea .btn:hover {
    opacity: 1;
    color: #111111;
    background: #ffeaba;
}

.scheduleArea,
.attentionArea,
.ticketArea,
.goodsArea,
.specialArea,
.bottomArea {
    margin: 0 auto 60px;
}

.scheduleArea .scheduleTit, .attentionArea .attentionTit, .ticketArea .ticketTit, .goodsArea .goodsTit, .specialArea .specialTit {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 50px;
    letter-spacing: 0.15em;
}

.scheduleArea .scheduleTit::after, .attentionArea .attentionTit::after, .ticketArea .ticketTit::after, .goodsArea .goodsTit::after, .specialArea .specialTit::after {
    content: '';
    display: block;
    width: 80px;
    border-bottom: 5px solid #dc0201;
    margin: 20px auto 0;
}

.sp { display: none;}

/*===================================================
  LOADER
====================================================*/
.loader{
  position:fixed;
  height:100%;
  width:100%;
  background:#F7F7F5;
  z-index:9999;
}

.heroView .action{
    opacity: 0;
	transition: 1.5s ease;
}

.loaded .heroView .action{
    opacity:1;
}

.loaded .heroView .act1{
    transition-delay: 1.5s;
}

/*===================================================
  SCROLLDOWN
====================================================*/

.scrollarrow {
    width: 1px;
    height: 80px;
    position: absolute;
    right: 3.5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: #ffffff;
    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);}
}

/*===================================================
  ACORD
====================================================*/

.op_accord .accordionList .accordionTit{
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
}

.op_accord .accordionList .accordionTit span {
    position: absolute;
    top: 50%;
    right: 34px;
    width: 15px;
    height: 15px;
    transform: rotate(180deg) translateY(50%);
    transition: 0.3s ease;
}

.op_accord .accordionList .accordionTit.open span {
    transform: translateY(-50%);
}

.op_accord .accordionList .accordionTit span:before {
    content: "";
    position: absolute;
    top: 25%;
    width: 100%;
    height: 100%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
}

.op_accord .accordionList .accordionDetail{
    display: none;
}



/*===================================================
	メニュー 
====================================================*/
.navigation .headerNav li:after{
	content: "／";
    position: absolute;
    right: -26px;
    font-size: 80%;
    opacity: 0.5;
}

.navigation .headerNav li:last-child:after{
  content:none;
}

.navigation .headerNav li a {
    font-weight: bold;
    position: relative;
    letter-spacing: 0.1em;
}

.navigation .headerNav li a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #111111;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s ease;
}

.hamBtn {
    display: block;
    position: fixed;
    right: 3%;
    top: 33px;
    width: 40px;
    height: 40px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9998;
    padding: 7px;
    background: #dc0201;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hamBtn .hamMenu {
    position: relative;
    width: 100%;
    height: 100%;
    top: auto !important;
}

.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transition: all .3s ease;
}

.hamBtn :nth-of-type(1) {
    top: 7px;
}

.hamBtn :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamBtn :nth-of-type(3) {
    bottom: 7px;
}

.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: 10;
    position: fixed;
	transition: all 0.5s ease-out;
}

.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}

.navigation .headerNav {
    margin: 0 auto;
    position: fixed;
    top: 0;
    padding: 0px 0px 60px;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background: rgb(0 0 0 / 84%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.navigation .headerNav li {
    padding: 0;
    position: relative;
    margin: 0 0 25px;
}

.navigation .headerNav li:last-child {
	margin: 0;
}


.navigation .headerNav li:after {
    content: none;
}

.navigation .headerNav li a{
    font-size: 150%;
}

.navigation .headerNav li a:hover {
    color: #E5C372;
    opacity: 1;
}

.heroNavLogo {
    width: 250px;
    margin: 0px 0 50px!important;
    display: none;
}


/*===================================================
	ファーストビュー 
====================================================*/
.heroView {
    position: relative;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4% 3%;
    min-height: 45vw;
}

.heroView .heroInner {
    display: flex;
    align-items: flex-end;
}
.heroView .heroInner .kv {
    width: 48%;
}
.heroView .heroInner .logo {
    width: 55%;
    margin-left: -3%;
}

.heroView .heroInner h2 {}

.heroView .heroInner h2 .mainTit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* width: 25%; */
	width: 450px;
}

.heroView .heroInner h2 span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* width: 50%; */
	width: 800px;
    opacity: 0.1;
}

.heroView .heroLogo {}

.heroView .heroLogo img {
	position: absolute;
    /* width: 15%; */
	width: 200px;
    top: 30px;
    left: 30px;
}
.heroView .sns {
    position: absolute;
    top: 30px;
    right: 8vw;
}

.heroView .sns .kv__sns {
	font-size: 1.8vw;
	/* font-size: 32px; */
    text-align: center;
    line-height: 50px;
}

.heroView .sns .kv__sns li {
    display: inline-block;
}

.heroView .sns .kv__sns li a {
    padding: 0 0.3em;
    color: #ffffff;
    font-size: 22px;
}

/*===================================================
	リード
====================================================*/

.leadArea {
	font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.leadArea .leadTxt {
    margin: 0 0 15px;
}

.leadArea .leadTxt:last-child {
    margin: 0;
}

/*===================================================
	スケジュール 
====================================================*/

.scheduleArea .scheduleList {}

.scheduleArea .scheduleList .scheduleBoxTit {
    display: flex;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 0px 0 14px;
    border-bottom: solid 1px #111111;
    margin: 0 0 24px;
}

.scheduleArea .scheduleList .scheduleBoxTit .scheduleNoTit {
    width: 10%;
}

.scheduleArea .scheduleList .scheduleBoxTit .scheduleDayTit {
    width: 20%;
}

.scheduleArea .scheduleList .scheduleBoxTit .scheduleVenueTit {
    width: 30%;
}

.scheduleArea .scheduleList .scheduleBoxTit .scheduleOpenTit {
    width: 8%;
}

.scheduleArea .scheduleList .scheduleBoxTit .scheduleStarttit {
    width: 8%;
}
.scheduleArea .scheduleList .scheduleBoxTit .scheduleInfo {
    width: 24%;
}

.scheduleArea .scheduleList .scheduleBox {
    display: flex;
    font-weight: 500;
    text-align: center;
    padding: 0px 0 22px;
    border-bottom: solid 1px #111111;
    line-height: 1.5;
    margin: 0 0 24px;
}

.scheduleArea .scheduleList .scheduleBox:last-child {
    margin-bottom: 0;
}

.scheduleArea .scheduleList .scheduleBox .scheduleNo {
    width: 10%;
    border-right: 1px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduleArea .scheduleList .scheduleBox .scheduleDay {
    width: 20%;
    border-right: 1px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduleArea .scheduleList .scheduleBox .scheduleVenue {
    width: 30%;
    border-right: 1px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleOpen {
    width: 8%;
    border-right: 1px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleStart {
    width: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #111111;
    font-size: 15px;
}

.scheduleArea .scheduleAttention {
    margin: 0 0 10px;
    font-size: 15px;
}

.scheduleArea .scheduleAttention:last-child {
	margin: 0;
}

.scheduleArea .scheduleList .scheduleBox .scheduleInfo {
    width: 24%;
    font-size: 13px;
    padding-left: 15px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleInfo a {
    word-break: break-all;
    text-decoration: underline;
    line-height: 1.35;
}


/*===================================================
	注意事項
====================================================*/

.attentionArea {
	padding: 40px;
    border: 2px solid #111111;
}

.attentionArea .accordionList .accordionTit {
    position: relative;
}

.attentionArea .attentionBox {}

.attentionArea .attentionBox .attentionTit {}

.attentionArea .attentionBox .attentionTit .txt {
    font-weight: bold;
    font-size: 42px;
    margin: 0 0 10px;
}

.attentionArea .attentionBox .attentionTit .subTxt {
    font-size: 15px;
    font-weight: 600;
}

.attentionArea .attentionBox .attentionDetail {
	padding: 40px 0 0;
}

.attentionArea .attentionBox .attentionDetail .aattentionList {}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTit {
	font-size: 18px;
    margin: 0 0 10px;
    font-weight: bold;
    padding: 0 0 0 10px;
    border-left: 2px solid #111111;
    line-height: 1.2;
}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTxt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px;
}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTxt:last-child {
    margin: 0;
}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTxt .attentionBtn {
    line-height: 1.5;
    display: block;
    padding: 8px 0;
    color: #A13CFB;
    text-decoration: underline;
    font-weight: 500;
}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTxt .attentionIndent {
    text-indent: -0.5em;
    display: block;
}

/*===================================================
	チケット
====================================================*/

.ticketArea .ticketLeadArea {}

.ticketArea .ticketLeadArea .ticketLeadTxt {
	font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    margin: 0 0 20px;
}

.ticketArea .ticketLeadArea .ticketLeadTxtAttention {
    line-height: 1.5;
    font-size: 15px;
    margin: 0 0 40px;
    font-weight: 400;
}

.ticketArea .ticketDayBox .ticketLeadTxtAttention span {
	text-indent: -0.6em;
    display: inline-block;
    padding: 0 0 0 0.6em;
}

.ticketArea .ticketDayBox {
    margin: 0 0 50px;
}
.ticketArea .ticketDayBox:last-child {
    margin: 0;
}
.ticketArea .ticketDayBox .ticketDayTit {
    font-size: 28px;
    font-weight: bold;
    padding-right: 50px;
}

.ticketArea .ticketDayBox .ticketDayTxt {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.5;
}

.ticketArea .ticketDayBox .ticketLeadTxtAttention {
    line-height: 1.5;
    font-size: 15px;
    margin: 0 0 20px;
    font-weight: 400;
}
.ticketArea .ticketDayBox .ticketLeadTxtAttention:last-child {
    margin-bottom: 0;
}

.ticketArea .ticketDayBox .tickeMenberBox {}

.ticketArea .ticketDayBox .tickeMenberBox .accordionList {
    color: #111111;
    margin: 0 0 20px;
    background: #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
}

.ticketArea .ticketDayBox .tickeMenberBox .accordionList .accordionTit {
    padding: 30px 50px 30px 30px;
    background: #000000;
    color: #fff;
}

.ticketArea .ticketDayBox .tickeMenberBox .accordionList .accordionDetail {
    padding: 30px;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-weight: 600;
    font-size: 20px;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit .badge{
    display: inline-block;
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
    margin: 0 0 0 20px;
    background: #DDD;
    font-size: 14px;
    padding: 3px 15px 2px;
    border-radius: 3px;
    color: #111111;
    font-weight: 800;
    vertical-align: 2px;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit .badge:before{
    content:none;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit .badgeStart{
    background: #ED3A3A;
    color: #fff;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit .badgeEnd{
    background: #555555;
    color: #f0f0f0;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList {
    padding: 0 25px;
    border: 1px solid;
    margin: 0px 0 25px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li {
    display: flex;
    border-bottom: 1px solid;
    padding: 20px 0;
    line-height: 1.5;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li:last-child {
    border-bottom: none;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .tickeMenberTit {
	width: 25%;
    border-right: 1px solid;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .tickeMenberTxt {
    width: 75%;
    padding: 0 0 0 25px;
}

.ticketArea .ticketDayBox .tickeMenberBox .btn {
	margin: 0px 0 20px;    
}

.ticketArea .ticketDayBox .tickeMenberBox .btn:last-child {
    margin: 0;
}

.ticketArea .ticketDayBox .tickeMenberBox .btn .mainBtn {
    display: block;
    text-align: center;
    color: #FFF;
    background: #dc0201;
    text-decoration: none;
    width: 300px;
    margin: 0 auto;
    transition: 0.3s;
    line-height: 1.2;
    padding: 25px;
    font-weight: 700;
    border-radius: 20px;
}

.ticketArea .ticketDayBox .tickeMenberBox .btn .mainBtn:hover {
    opacity: 1;
    color: #111111;
    background: #ffeaba;
}

@media screen and (min-width: 980px) {
.ticketArea .ticketDayBox .tickeMenberBox .accordionList .accordionTit:hover {
    opacity: 0.7;
}
}

.ticketArea .ticketDayBox .tickeMenberBox .grayBtn {
}

.ticketArea .ticketDayBox .tickeMenberBox .grayBtn .mainBtn {
	background: #888888;
	color: #fff;
}

.ticketArea .ticketDayBox .tickeMenberBox .grayBtn .mainBtn:hover {
    opacity: 1;
}

.ticketArea .ticketDayBox .priority {
    margin: 50px 0 0 0;
    padding: 30px;
    background: #f1f1f1;
    border-radius: 18px;
}

.ticketArea .ticketDayBox .priority .ticketDayTit {
	font-size: 21px;
	line-height:1.4;
}

.ticketArea .ticketDayBox .priority .accordionDetail {
    padding-top: 25px;
    border-top: 1px solid;
    margin-top: 20px;
}

.ticketArea .ticketDayBox .priority .ticketDayTxt {
    font-size: 16px;
    line-height: 1.5;
}

.ticketArea .ticketDayBox .priority .btn {
}

.ticketArea .ticketDayBox .priority .btn .mainBtn {
    display: block;
    text-align: center;
    color: #FFF;
    background: #dc0201;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    transition: 0.3s;
    line-height: 1.2;
    padding: 15px;
    font-weight: 700;
    border-radius: 50px;
}

.ticketArea .ticketDayBox .priority .btn .mainBtn:hover {
    opacity: 1;
    background: #111111;
}

.ticketArea .ticketDayBox .priority .accordionList .accordionTit span {
    right: 5px;
}


.ticketArea .introduction {
	font-size: 15px;
    text-decoration: underline;
    text-align:center;
    margin-top:-2em;
    margin-bottom:2em;
}

.detailList {
    border-top: 1px solid;
    margin: 0 auto;
}

.detailList > li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
    padding: 25px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.detailList > li .detailListTit {
    width: 46%;
    font-weight: bold;
}

.detailList > li .detailListTxt {
    text-align: right;
    width: 50%;
    font-size: 21px;
    font-weight: 500;
    border-left: 1px dashed;
    padding: 6px;
}

.detailList > li .detailListTxt .sml {
    font-size: 0.7em;
}

.detailList > li .detailListTit .price_ico {
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 4px 15px;
    font-size: 0.85em;
    border-radius: 20px;
    margin-right: 3px;
}

.detailList > li > .attentionList {
    width: 100%;
    margin-top: 15px;
    background: #ffffff78;
    padding: 13px;
    border-radius: 10px;
}

.detailList > li > .attentionList > li {
    font-size: 12px;
}



/*===================================================
	配信チケット
====================================================*/

.ticket_box {
    margin-bottom: 50px;
}

.ticket_box:last-child {
    margin-bottom: 0;
}

.ac {
    color: #ffffff;
    text-align: left;
    margin-bottom: 30px;
}

.ac:last-child {
    margin-bottom: 0;
}

.ac > dt {
    position: relative;
    cursor: pointer;
    padding: 20px 50px 20px 40px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 600;
    font-size: 21px;
    background: #E5C372;
    letter-spacing: 0.08em;
    color:#ffffff;
}
.ac > dt::after {
  content: "";
  display: block;
  width: 15px;
  height: 0;
  border-bottom: solid 1px;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ac > dt::before {
  content: "";
  display: block;
  width: 15px;
  height: 0;
  border-bottom: solid 1px;
  position: absolute;
  top: 50%;
  right: 35px;
  -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);
}
.ac.on > dt::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.ac > dd {
    display: none;
    font-size: 14px;
    position: relative;
    padding: 40px;
    background: #fffffff2;
    color:#111111;
}

.ac.on > dd {
    display: block;
}


#pf {
}
#pf table {
    font-size: 13px;
    border: 1px solid;
    border-right: none;
    border-bottom: none;
    border-collapse:collapse;
    width: 100%;
    table-layout: fixed;
    word-break: break-word;
    margin-bottom: 5px;
    color:#111111;
}
#pf table thead tr th{
    padding: 20px 5px;
}

#pf table span.th_sml {
    color: #111111;
}

#pf > table tr th, #pf > table tr td{
    width: 20%;
    padding: 10px 5px;
}
#pf table tr th img{
    width: 130px;
    margin-bottom: 10px; }

#pf table tr th img:last-child {
    margin: 0;
}

#pf table tr th, #pf table tr td {
    padding: 10px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
}
#pf table tr.pay td, #pf table tr.info td {
    text-align: left;
    vertical-align: top;
}
#pf table tbody tr:nth-child(2n) {
    background: rgb(0 0 0 / 9%);
}
#pf table thead {
    background: rgba(50, 150, 200, 0.1);
}

#pf table .indent {
    display: inherit;
    text-indent: -1em;
    padding: 0 0 0 1em;
    line-height: 1.3;
}
#pf table .sml{
    font-size: 10px;
}
#pf table a{
    color: #1e90ff ;
    text-decoration: underline;
}
#pf table .buy a {
    display: block;
    background: #111111;
    line-height: 1;
    padding: 8px 0 9px 8px;
    text-align: center;
    letter-spacing: 2px;
    width: 90%;
    font-size: 11px;
    margin: 5px auto;
    text-decoration: none;
    font-weight: normal;
    border: transparent;
    color: #ffffff;
}

#pf table .buy .hide {
    pointer-events: none;
    background: #7f7f7f;
    color: #bebebe;
    border: none;
}

#pf table tr.info td a {
    color: #fff;
}

#pf > .notice li{
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-indent: -2.5em;
    padding: 5px 0 0 2.5em;
}

.info_list {
    margin-bottom: 50px;
}

.info_list:last-child {
    margin-bottom: 0px;
}

.info_list > li {
    display: flex;
    border-bottom: 1px solid #111111;
    padding: 20px 0;
    font-size: 15px;
    position: relative;
}

.info_list > li::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    background: #111111;
    left: 140px;
    bottom: -10px;
}

.info_list > li:first-child {
    padding-top: 0;
}

.info_txt {
    min-width: 140px;
    margin-right: 35px;
    padding-right: 35px;
    text-align: left;
}

.info_detail {
    text-align: left;
}

.ticket_txt{
font-size: 17px;
text-indent: -1em;
padding-left: 1em;
margin-bottom: 1em;
margin-top: -1em;
}

.attentionList > li {
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 4px;
    line-height: 1.5;
}
.attentionList > li:last-child {
    margin-bottom: 0;
}

.coming {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    letter-spacing: 0.05em;
}


/*===================================================
	グッズ
====================================================*/


.goodsArea .subTxt {
    text-align:center;
    font-size: 18px;
}


.goodsArea .goodsBox {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    margin-top: -30px;
}

.goodsArea .goodsBox .goodsList {
    width: 30%;
    margin: 30px 0 0;
}

.goodsArea .goodsBox .goodsList a {
    position: relative;
    margin: 0px 0 15px;
    display: inline-block;
}

.goodsArea .goodsBox .goodsList a .newIcon {
	position: absolute;
    width: 30%;
}

.goodsArea .goodsBox .goodsList a .newIcon img {

}

.goodsArea .goodsBox .goodsList a .goodsImg {

}

.goodsArea .goodsBox .goodsList .itemName {
    margin: 0 0 5px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.goodsArea .goodsBox .goodsList:nth-child(6) .itemName,
.goodsArea .goodsBox .goodsList:nth-child(13) .itemName {
	text-indent: -0.5em;
}

.goodsArea .goodsBox .goodsList .itemPrice {
    text-align: left;
    font-size: 15px;
}

.goodsArea .shopBnrBox {

}

.goodsArea .shopBnrBox p {
	text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px;
}

.goodsArea .shopBnrBox img {
	width: 50%;
    display: block;
    margin: 0 auto;
}

/*===================================================
	スペシャル
====================================================*/

.specialArea .specialBox {
    display: block;
    margin: 50px 0 0 0;
    padding: 30px;
    background: rgba(234,234,234,0.9);
}

.specialArea .specialBox .specialSubBlock{
    margin-bottom: 30px;
}

/* メインタイトル（下線あり） */
.specialArea .specialBox .specialSubTit {
    font-size: 21px;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #111;
}

.specialArea .specialBox .BlockTitle {
    display: inline-block;       /* 横幅を文字に合わせる */
    background-color: rgba(240, 78, 53,1);
    color: #FFF;
    font-size: 18px;             /* 文字サイズ */
    font-weight: 600;            /* 太さ */
    padding: 6px 10px;           /* 上下・左右の余白 */
    margin-bottom: 10px;         /* 下に余白を追加 */
}

/* 本文 */
.specialArea .specialBox .specialSubTxt {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    text-indent: 0;
}

/* 注意事項 */
.specialArea .specialBox .specialAtt {
    background: rgba(85, 85, 85, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 20px;
    line-height: 1.6;
}

.specialArea .specialBox .specialAtt .specialSubTxt {
    margin: 0;
    text-indent: 0;
    padding-left: 0;
}

.specialArea .specialContent {
    margin-bottom: 30px;
}

.specialArea .specialBox .accordionDetail {
    padding-top: 25px;
    border-top: 1px solid;
    margin-top: 20px;
}

.specialArea .specialBox .btn {
    margin: 0 0 20px;    
}

.specialArea .specialBox .btn .mainBtn {
    display: block;
    text-align: center;
    color: #FFF;
    background: #111111;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    transition: 0.3s;
    line-height: 1.2;
    padding: 15px;
    font-weight: 700;
}

.specialArea .specialBox .btn .mainBtn:hover {
    opacity: 1;
    color: #111111;
    background: #ffeaba;
}

.specialArea .specialBlock {
    margin-bottom: 30px;
}

.specialArea .specialBlockTitle {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.specialArea .specialBlockTxt {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/*===================================================
	ボタン 
====================================================*/

.bottomArea {
	width: 980px;
    text-align: center;
    position: relative;
}

.bottomArea .logo_sub {
    margin: 0 auto 30px;
    width: 250px;
}

.bottomArea .logo_sub a {}

.bottomArea .logo_sub a img {}

.bottomArea p {
	font-size: 15px;
    text-decoration: underline;
    font-weight: bold;
    margin: 0 0 30px;
}

.bottomArea .sns {}

.bottomArea .sns .kv__sns {
    font-size: 24px;
    text-align: center;
    line-height: 50px;
}

.bottomArea .sns .kv__sns li {
	display: inline-block;
}

.bottomArea .sns .kv__sns li a {
    display: block;
    padding: 0 0.4em;
    color: #111111;
}

/*===================================================
	フッター
====================================================*/

#footer {
	text-align: center;
    color: #656565;
    font-size: 11px;
    padding: 0 0 10px;
    position: relative;
}

/*===============================================
	SP 
=================================================*/
@media screen and (max-width: 980px) {
html {
  scroll-padding-top: 20px;
}

body {
	width: 100%;
}

.pc { display: none;}
.sp { display: inherit;}

.mainWrap {
    width: 100%;
}

.mainWrap:before {
    background-image: url(/static/yoshiikazuya/fansite/feature/tour2027/images/bg_main_sp_m82qbtpj.jpg);
}

.contentsWrap {
    padding: 40px 0 20px;
}

.leadArea,
.scheduleArea,
.attentionArea,
.ticketArea,
.goodsArea,
.specialArea,
.bottomArea {
	width: inherit;
    margin: 0 20px 40px;
}

.leadArea .btn {
    width: 100%;
    margin: 40px auto 60px;
}

.scheduleArea, .attentionArea, .ticketArea, .goodsArea, .specialArea {
    padding: 30px 20px;
    margin: 0 20px 30px;
    border-radius: 32px;
}


.hamBtn {
	right: 20px;
    top: 20px;
}

.heroNavLogo {
    width: 200px;
    margin: 0px 0 40px!important;
}

.heroView {
    height: 100svh;
    align-items: flex-end;
    padding: 25px 6%;
    min-height: 150vw;
}

.navigation .headerNav {
	width: 100%;
    height: 100%;
    padding: 0px 0px 30px;
}

.heroView .heroInner h2 .mainTit {
	width: 60%;
    max-width: 400px;
}

.heroView .heroInner h2 span {
	width: 90%;
    max-width: 750px;
}

.heroView .sns {
    right: auto;
    left: 20px;
    top: 14px;
}

.heroView .sns .kv__sns li a {
    font-size: 18px;
    padding: 0 0.2em;
}

.heroView .heroInner {
    display: block;
}

.heroView .heroInner .kv {
    width: 94%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.heroView .heroInner .logo {
    margin: 0 0 0 auto;
    width: 95%;
}

.scrollarrow {
    left: 6%;
    right: auto;
    bottom: 30px;
    top: auto;
    transform: none;
}

.leadArea .leadTxt {
	margin: 0 0 10px;
    font-size: 15px;
}


.scheduleArea .scheduleTit, .attentionArea .attentionTit, .ticketArea .ticketTit, .goodsArea .goodsTit, .specialArea .specialTit {
    font-size: 27px;
    margin: 0 0 30px;
}

.scheduleArea .scheduleTit::after, .attentionArea .attentionTit::after, .ticketArea .ticketTit::after, .goodsArea .goodsTit::after, .specialArea .specialTit::after {
    width: 55px;
    border-width: 3px;
}

.attentionArea .attentionBox .attentionTit .txt {
    margin: 0 0 5px;
}

.scheduleArea .scheduleList .scheduleBoxOnly {
	margin: 0 auto 20px;
    font-size: 21px;
    padding: 10px 0 0 10px;
}

.scheduleArea .scheduleList .scheduleBoxOnly span {
    display: block;
    font-size: 15px;
    padding-top: 5px;
}

.scheduleArea .scheduleList .scheduleBoxTit {
    display: none;
}

.scheduleArea .scheduleList {
    border-top: 1px solid;
}
.scheduleArea .scheduleList .scheduleBox {
    padding: 15px 0;
    display: block;
    text-align: left;
    margin: 0;
}

.scheduleArea .scheduleList .scheduleBox .scheduleNo,
.scheduleArea .scheduleList .scheduleBox .scheduleDay,
.scheduleArea .scheduleList .scheduleBox .scheduleVenue,
.scheduleArea .scheduleList .scheduleBox .scheduleOpen,
.scheduleArea .scheduleList .scheduleBox .scheduleStart,
.scheduleArea .scheduleList .scheduleBox .scheduleClose {
    width: 100%;
    border-right: none;
    display: block;
}

.scheduleArea .scheduleList .scheduleBox .scheduleDay {
    margin-bottom: 6px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleNo {
    font-size: 14px;
    font-weight: bold;
    background: #000;
    color: #fff;
    width: fit-content;
    padding: 1px 10px;
    margin-bottom: 2px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleDay {
    font-size: 18px;
    font-weight: bold;
}

.scheduleArea .scheduleList .scheduleBox .scheduleVenue {
    font-size: 16px;
    padding: 0;
    margin-bottom: 0px;
    line-height: 1.4;
}

.scheduleArea .scheduleList .scheduleBox .scheduleOpen {
    display: inline-block;
    width: auto;
    margin-right: 5px;
}
.scheduleArea .scheduleList .scheduleBox .scheduleOpen::after {
    content: '/';
    margin-left: 8px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleStart {
    display: inline-block;
    width: auto;
}

.scheduleArea .scheduleList .scheduleBox .scheduleOpen,
.scheduleArea .scheduleList .scheduleBox .scheduleStart,
.scheduleArea .scheduleList .scheduleBox .scheduleClose {
	font-size: 12px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleVenue,
.scheduleArea .scheduleList .scheduleBox .scheduleOpen,
.scheduleArea .scheduleList .scheduleBox .scheduleStart {
    display: inline-block;
}

.scheduleArea .scheduleList .scheduleBox .scheduleOpen span,
.scheduleArea .scheduleList .scheduleBox .scheduleStart span {
	margin: 0 5px 0 0;
}

.scheduleArea .scheduleAttention {
	font-size: 12px;
    text-indent: -0.6em;
    line-height: 1.5;
    padding: 0 0 0 0.6em;
    margin: 0 0 5px;
}

.scheduleArea .scheduleList .scheduleBox .scheduleInfo {
    background: #ffffff78;
    padding: 10px;
    width: 100%;
    font-size: 12px;
    border-radius: 6px;
    margin-top: 6px;
}

.op_accord .accordionList .accordionTit span {
    right: 0px;
    width: 12px;
    height: 12px;
}

.attentionArea .attentionBox .attentionDetail {
    padding: 25px 0 0;
}

.attentionArea .attentionBox .attentionDetail .aattentionList .attentionListTxt {
	margin: 0 0 25px;
}

.attentionIndentSp {
text-indent: -0.5em;
}

.ticketArea .ticketLeadArea .ticketLeadTxt {
	font-size: 15px;
	margin: 0 0 15px;
}

.ticketArea .ticketLeadArea .ticketLeadTxtAttention {
    margin: 0 0 25px;
    font-size: 12px;
    line-height: 1.8;
}

.ticketArea .ticketLeadArea .ticketLeadTxtAttention span {
	text-indent: -0.6em;
    display: inline-block;
    padding: 0 0 0 0.6em;
}
.ticketArea .ticketDayBox {
    margin: 0 0 30px;
}
.ticketArea .ticketDayBox:last-child{
    margin: 0;
}
.ticketArea .ticketDayBox .priority .ticketDayTit {
    font-size: 15px;
    padding-right: 25px;
}

.ticketArea .ticketDayBox .ticketDayTit span {
	display: block;
    font-size: 15px;
    padding-top: 5px;
}

.ticketArea .ticketDayBox .ticketDayTxt {
    font-size: 15px;
    margin: 0 0 10px;
}

.ticketArea .ticketDayBox .ticketLeadTxtAttention {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.8;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList {
    padding: 12px;
    margin: 0 0 20px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li {
    display: block;
    padding: 0;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .tickeMenberTit {
    width: 100%;
    border-right: none;
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 3px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .tickeMenberTxt {
    padding: 0 0 10px;
    width: 100%;
    font-size: 15px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .txtUnder span {
	text-indent: -0.6em;
    display: inline-block;
}

.ticketArea .ticketDayBox .priority .ticketDayTxt {
    font-size: 14px;
}


.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li:nth-child(2) .tickeMenberTit,
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li:nth-child(3) .tickeMenberTit,
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li:nth-child(4) .tickeMenberTit,
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li:nth-child(5) .tickeMenberTit{
    padding: 15px 0 0 0;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberList > li .txtUnder {
	padding-bottom: 0;
}
.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit {
    font-size: 16px;
}
.ticketArea .ticketDayBox .tickeMenberBox .accordionList .accordionDetail {
    padding: 20px 16px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit + span {
    right: 18px;
}

.ticketArea .ticketDayBox .tickeMenberBox .tickeMenberMainTit .badge{
    margin: 5px 0 0;
}
.ticketArea .ticketDayBox .tickeMenberBox .btn .mainBtn {
	width: 100%;
    max-width: 300px;
}

.ticketArea .ticketDayBox .tickeMenberBox .btn {
	margin: 0 auto 20px;
}

.ticketArea .ticketDayBox .tickeMenberBox .accordionList {
    margin-bottom: 10px;
    border-radius: 12px;
}

.ticketArea .ticketDayBox .priority {
    margin: 30px 0 0 0;
    padding: 18px;
}

.ticketArea .ticketDayBox .priority .accordionDetail {
    padding-top: 15px;
    margin-top: 15px;
}

.ticketArea .ticketDayBox:nth-child(4) .ticketDayTxt {
	margin: 0 0 5px;
}

.ticketDayTxtAttention {
	font-size: 12px;
    text-indent: -0.6em;
    padding: 0 0 0 0.6em;
    line-height: 1.3;
}


.ticketArea .ticketDayBox .tickeMenberBox .accordionList .accordionTit {
    padding: 18px 40px 18px 18px;
}

.attentionList > li {
    font-size: 13px;
    margin-bottom: 2px;
}

.detailList {
    width: 100%;
}
.detailList > li .detailListTit .price_ico {
    display: block;
    width: fit-content;
    margin-bottom: 7px;
}

.detailList > li {
    padding: 18px 0;
}

.detailList > li .detailListTxt {
    padding: 5px 0;
    font-size: 17px;
}

.detailList > li .detailListTit {
    width: 46%;
    font-weight: bold;
    font-size: 14px;
}






.goodsArea {

}

.goodsArea .goodsTit {
    margin: 0 0 25px;
}

.goodsArea .goodsBox {

}

.goodsArea .goodsBox .goodsList {
	width: 47.5%;
    margin: 0 5% 7.5% 0;
}

.goodsArea .goodsBox .goodsList:nth-child(2n) {
    margin: 0 0% 7.5% 0!important;
}

.goodsArea .goodsBox .goodsList:nth-child(3n) {
    margin: 0 5% 7.5% 0;
}

.goodsArea .goodsBox .goodsList a {
    margin: 0px 0 10px;
}

.goodsArea .goodsBox .goodsList a .newIcon {

}

.goodsArea .goodsBox .goodsList a .newIcon img {

}

.goodsArea .goodsBox .goodsList a .goodsImg {

}

.goodsArea .goodsBox .goodsList .itemName {
	font-size: 13px;
}

.goodsArea .goodsBox .goodsList .itemPrice {
	font-size: 13px;
}

.goodsArea .shopBnrBox {

}

.goodsArea .shopBnrBox p {

}

.goodsArea .shopBnrBox img {
	width: 75%;
}

.specialArea {

}

.specialArea .specialTit {
    margin: 0 0 25px;
}

.specialArea .specialBox {

}

.specialArea .specialBox .BlockTitle{
    font-size: 16px;
}

.specialArea .specialBox .specialSubTxt {
    font-size: 14px;
}

.bottomArea .logo_sub {
	width: 200px;
}

.bottomArea p {
    margin: 0 0 20px;
}

.bottomArea .sns .kv__sns li a {
    padding: 0 0.3em;
}

.specialArea .specialBox {
    margin: 30px 0 0 0;
    padding: 18px;
}

.specialArea .specialBox .specialSubBlock{
    margin-bottom: 20px;
}

}

@media screen and (max-width: 600px) {

.mainWrap:before {
}

.contentsWrap {
}

.heroView .sns .kv__sns {
	font-size: 6.5vw;
}

.goodsArea .shopBnrBox img {
	width: 100%;
}


/*===================================================
	配信チケット
====================================================*/
.info_list > li::before {
    display: none;
}

.info_list > li {
    padding: 15px 0;
    font-size: 13px;
    flex-wrap: wrap;
    border-bottom: 1px dotted #111111;
}

.info_txt {
    min-width: auto;
    width: 100%;
    margin: 0 0 2px;
    padding: 0;
    opacity: 0.8;
    line-height:1.5;
}

.info_detail{
    line-height:1.5;
}

.ac > dt {
    padding: 15px 30px 15px 15px;
    font-size: 16px;
}

.ac > dt::before, .ac > dt::after {
    right: 15px;
}

.ac > dd {
    padding: 15px;
}

.ac {
    margin-bottom: 20px;
}

.btn a {
    width: 100%;
    padding: 18px;
    font-size: 15px;
    outline-offset: -3px;
}

.ticket_box {
    margin-bottom: 25px;
}

.info_list {
    margin-bottom: 25px;
}

  #pf {
      color: #111111;
  }
  #pf .sp > dl:not(:last-of-type) {
    margin: 0 0 3vw;
  }
  #pf .sp > dl {
    background: #eee;
  }
  #pf .sp > dl dt {
    position: relative;
    padding: 5% 15%;
    border: none !important;
    text-align: center;
  }
  #pf .sp > dl dd {
    display: none;
    padding: 0 3vw;
  }

  span.th_sml {
      font-size: 12px;
      font-weight: 500;
  }

  dt .switch {
    right: 3vw;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-45%);
    position: absolute;
  }
  .switch::before {
    width: 1px;
    height: 12px;
  }
  .switch::after {
    width: 12px;
    height: 1px;
  }
  .switch::before, .switch::after {
    content: '';
    display: block;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    transform: translate(-50%,-50%);
  }
  dt.open .switch {
    transform: translateY(-45%) rotate(45deg);
  }
  dt.open .switch::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  dt.open .switch::after {
    opacity: 0;
  }

  #pf .sp > dl dd table {
    border: none;
    display:block;
  }
  #pf table thead, #pf table tbody tr:nth-child(2n) {
    background: transparent;
  }
  #pf .sp > dl dd table tr th, #pf .sp > dl dd table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }
  #pf .sp > dl dd table tr th {
    background: #ddd;
    padding: 6px;
    width:100%!important;
  }
  #pf .sp > dl dd table tr td {
    padding: 8px 0 15px;
    line-height: 1.6;
  }

  #pf .sp > dl dd table tr td a {
    color: #1e90ff;
  }
  #pf table .buy a {
    width: 100%;
    background: transparent;
    color: #1e90ff; !important;
    padding: 11px;
    font-size: 12px;
    
  }
  
  #pf .sp + .notice{
    padding: 5px 0 0;
  }
  #pf .sp + .notice li {
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-indent: -2.5em;
    padding: 5px 0 0 2.5em;
    color: #111111;
  }
  
.ticket_txt{
font-size: 13px;
margin: 1em 0 2em;
line-height: 1.4;
}

.sp_stream{
text-align:center;
line-height:1.5;
}

.sp_stream .sml{
font-size:10px;
}

.sp_stream_dt{
background:#ddd;
font-weight:bold;
color:#111111;
padding:1em;

}

.sp_stream_dd{
color:#111111;
padding:1em;
max-width:100%;
overflow-wrap: break-word

}

.txtLeft{
text-align:left;
}


}/*=== SPここまで ===*/
