
/* common */

.lp202409 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #303030;
    color: #fff;
    letter-spacing: 2px;
}

.lp202409 ul {
    margin: 0;
    padding: 0;
}

.lp202409 li {
    list-style: none;
    padding: 0;
}

.lp202409 a {
    color: inherit;
    text-decoration: none;
}

.lp202409_pc_only {
    display: block;
}

@media (max-width: 600px) {
    .lp202409_pc_only {
        display: none;
    }
}


/* コンテンツ幅調整 */
.lp202409_wrapper_600 {
    width: 600px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .lp202409_wrapper_600 {
        width: 90%;
        margin: 0 auto;
    }
}

.lp202409_wrapper_900 {
    width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .lp202409_wrapper_900 {
        width: 90%;
        margin: 0 auto;
    }
}


/* コンテンツ毎の見出し */
.lp202409_content_headline {
    margin: 10px 0 12px;
    font-size: 32px;
    text-align: center;
}

.lp202409_content_headline_caption {
    display: block;
    font-size: 14px;
    font-weight: 400;
}


/* リンクボタン */
.lp202409_main_image_copy_ticket_link {
    display: block;
    width: 320px;
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 32px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 600px) {
    .lp202409_main_image_copy_ticket_link {
        width: 80%;
    }
}

.lp202409_main_image_copy_ticket_link:hover {
    background: #fff;
    color: #030303;
    border: 1px solid #fff;
    transition: 0.4s;
}

.lp202409 .lp202409_ticket_link {
    display: block;
    width: 320px;
    margin: 25px auto;
    padding: 20px 0;
    text-align: center;
    background-color: #DED300;
    border: 1px solid #DED300;
    color: #303030;
    font-weight: bold;
    border-radius: 32px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 600px) {
    .lp202409 .lp202409_ticket_link {
        width: 80%;
    }
}

.lp202409 .lp202409_ticket_link:hover {
    background: none;
    color: #DED300;
    border: 1px solid #DED300;
    transition: 0.4s;
}



/* ファーストビュー */

.lp202409_main_image {
    position: relative;
}

.lp202409_main_image_copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 600px) {
    .lp202409_main_image_copy {
        width: 90%;
    }

    .lp202409_main_image_copy_img {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
}

.lp202409_main_image_video {
    position: relative;
    width: 100%;
    height: 100vh;
}

.lp202409_main_image_video .lp202409_main_image_video_pc {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
}

.lp202409_main_image_video .lp202409_main_image_video_sp {
    display: none;
}

@media (max-width: 600px) {
    .lp202409_main_image_video .lp202409_main_image_video_pc {
        display: none;
    }
    
    .lp202409_main_image_video .lp202409_main_image_video_sp {
        display: block;
        width: 100%;
        height: 90vh;
        object-fit: cover;
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .lp202409_main_image_video video {
        height: 90vh;
    }
}

.lp202409_main_image_video:after {
    content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}

@media (max-width: 600px) {
    .lp202409_main_image_video:after {
        height: 90vh;
    }
}

/* スクロールダウン */
.scrolldown1{
	position: absolute;
    left: 50%;
    bottom: 20px;
    height: 65px;
    display: flex;
    justify-content: center;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    position: absolute;
    bottom: 70px;
    width: 55px;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
	width: 1px;
	background: #fff;
	animation: pathmove 2.2s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height: 0;
		top: 0;
		opacity: 0;
	}
	30%{
		height: 50px;
		opacity: 1;
	}
	100%{
		height: 0;
		top: 80px;
		opacity: 0;
	}
}



/* サブコピーエリア */

.lp202409_about_event {
    margin: 100px 0;
}

@media (max-width: 600px) {
    .lp202409_about_event {
        margin: 40px 0;
    }
}

.lp202409_about_event_headline {
    text-align: center;
    padding-bottom: 20px;
}

.lp202409_about_event_headline span {
    display: block;
    font-size: 45px;
}

@media (max-width: 600px) {
    .lp202409_about_event_headline span {
        font-size: 7.4vw;
    }
}


.lp202409_about_event_copy {
    font-size: 22px;
    text-align: center;
    line-height: 2.2;
}

@media (max-width: 600px) {
    .lp202409_about_event_copy {
        font-size: 18px;
        text-align: justify;
        line-height: 2.1;
    }
}

.lp202409_about_event_copy_strong {
    font-size: 32px;
    font-weight: bold;
    color: #DED300;
    line-height: 1.6;
}


/* スライダーと動画エリア */
.lp202409_swiper_area {
    margin-bottom: 20px;
}

.lp202409_image_area .swiper-slide img {
    width: 300px;
}

.lp202409_image_area_video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
  
.lp202409_image_area_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* イベント情報エリア */

/* 日程 */
.lp202409_event_info {
    margin: 100px 0;
    text-align: center;
}

.lp202409_event_info_inner {
    padding: 30px 15px 15px;
    border: 1px solid #fff;
}

.lp202409_event_info_date_detail {
    font-size: 16px;
}

.lp202409__event_info_date_detail_strong {
    font-size: 32px;
}

.lp202409__event_info_date_detail_time {
    display: block;
}


/* チケット */
.lp202409_event_info_ticket {
    margin-top: 100px;
}

.lp202409_event_info_ticket_detail_ticket {
    margin-bottom: 20px;
}

.lp202409_event_info_ticket_detail_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 400px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .lp202409_event_info_ticket_detail_inner {
        flex-direction: column;
        width: 90%;
    }
}

.lp202409_event_info_ticket_detail_live {
    width: 50%;
    border-right: 1px solid #fff;
    font-size: 32px;
}

@media (max-width: 600px) {
    .lp202409_event_info_ticket_detail_live {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 45px;
        border-right: none;
        font-size: 45px;
    }
}

.lp202409_event_info_ticket_detail_live span {
    display: block;
    font-size: 14px;
}

.lp202409_event_info_ticket_detail_stream {
    width: 50%;
    font-size: 32px;
}

@media (max-width: 600px) {
    .lp202409_event_info_ticket_detail_stream {
        width: 100%;
        padding-bottom: 20px;
        font-size: 45px;
    }
}


.lp202409_event_info_ticket_detail_stream span {
    display: block;
    font-size: 14px;
}


/* 会場 */
.lp202409_event_info_place {
    margin-top: 100px;
}

.lp202409_event_info_place_detail {
    font-size: 32px;
}

.lp202409_event_info_place_detail span {
    display: block;
    padding-top: 5px;
    font-size: 14px;
}

.lp202409_event_info_place_detail_map {
    position: relative;
    margin-top: 30px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
  
.lp202409_event_info_place_detail_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* チャレンジャーエリア */
/* 刺客エリア */

.lp202409_challenger {
    margin-top: 80px;
}


.lp202409_challenger_copy {
    text-align: center;
    padding: 30px 0 5px;
}

@media (max-width: 600px) {
    .lp202409_challenger_copy {
        text-align: justify;
    }
}

.lp202409_performer_detail_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 8px;
}

.lp202409_performer_detail {
    width: 48%;
    text-align: center;
}

@media (max-width: 600px) {
    .lp202409_performer_detail {
        width: 100%;
    }   
}

.lp202409_performer_detail_img {
    width: 100%;
}

.lp202409_performer_detail_info {
    padding: 10px 0 25px;
    font-size: 22px;
}

.lp202409_performer_detail_info span {
    display: block;
    font-size: 14px;
}

.lp202409_assassin {
    margin-top: 80px;
}

.lp202409_assassin_copy {
    text-align: center;
    padding: 30px 0 5px;
}

@media (max-width: 600px) {
    .lp202409_assassin_copy {
        text-align: justify;
    }
}


/* Songlistエリア */
.lp202409_songlist {
    margin-top: 80px;
}

.lp202409_songlist_copy {
    text-align: center;
    padding: 30px 0 5px;
}

@media (max-width: 600px) {
    .lp202409_songlist_copy {
        text-align: justify;
    }
}

.lp202409 .lp202409_songlist_wrap {
    margin: 20px 0 55px;
}

.lp202409 .lp202409_songlist_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 7px;
    border-bottom: 1px solid #fff;
}

@media (max-width: 600px) {
    .lp202409 .lp202409_songlist_row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lp202409_songlist_song {
    font-size: 23px;
}


/* 主催者エリア */
.lp202409_organizer {
    margin-top: 80px;
    padding: 80px 0;
    background-color: #181818;
}

.lp202409_organizer_yushin {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .lp202409_organizer_yushin {
        flex-direction: column;
    }
}

.lp202409_organizer_yushin_img {
    width: 40%;
}

@media (max-width: 600px) {
    .lp202409_organizer_yushin_img {
        width: 100%;
    }
}

.lp202409_organizer_yushin_info {
    width: 58%;
}

@media (max-width: 600px) {
    .lp202409_organizer_yushin_info {
        width: 100%;
        padding-top: 15px;
    }
}

.lp202409_organizer_yushin_info_title {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
}

.lp202409_organizer_yushin_info_title span {
    font-size: 15px;
}

.lp202409_organizer_bands {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 60px;
}

.lp202409_organizer_bands_member {
    width: 32%;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .lp202409_organizer_bands_member {
        width: 48%;
    }
}

.lp202409_organizer_bands_member img {
    width: 100%;
}

.lp202409_organizer_bands_member_info {
    padding-top: 7px;
    font-size: 20px;
    text-align: center;
}

.lp202409_organizer_bands_member_info span {
    display: block;
    font-size: 13px;
}


/* バナーエリア */

.lp202409_bunner_area {
    margin: 80px 0;
    text-align: center;
}

.lp202409_bunner_area a:hover {
    opacity: 0.8;
    transition: .4s;
}

.lp202409_bunner_area a img {
    width: 600px;
}

@media (max-width: 600px) {
    .lp202409_bunner_area a img {
        width: 90%;
    }
}




/* ページボトムエリア */

.lp202409_bottom_ticket_link {
    background-image: url(/wp-content/themes/swell_child/images/lp202409/page_bottom_area_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 500px 0;
}

@media (max-width: 600px) {
    .lp202409_bottom_ticket_link {
        background-image: url(/wp-content/themes/swell_child/images/lp202409/page_bottom_area_bg_sp.jpg);
        padding: 250px 0;
    }
}

.lp202409_bottom_ticket_link_inner {
    margin-top: 15px;
}

.lp202409_bottom_ticket_link_headline {
    margin: 0 0 15px 0;
    font-size: 27px;
    text-align: center;
    font-family: "Zen Antique", serif;
    font-weight: 400;
    font-style: normal;
    color: #e1e1e1;
}


/* footer */

.lp202409_footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px 0;
}

.lp202409_footer_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 150px 0;
}

@media (max-width: 600px) {
    .lp202409_footer_detail {
        margin: 50px 0;
    }
}

.lp202409_footer_detail_logo {
    width: 200px;
}

.lp202409_footer_detail_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    width: 150px;
}

.lp202409_footer_detail_links_sns:hover {
    opacity: 0.8;
    transition: .4s;
}

.lp202409_footer_detail_links_sns img {
    width: 30px;
}


/* チケット購入リンクのポップアップ */
.lp202409_ticket_popup_area {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: rgb(0 0 0 / 0.9);
}

.lp202409_ticket_popup_area_links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .lp202409_ticket_popup_area_links {
        flex-direction: column;
    }
}

.lp202409_ticket_popup_area_links a {
    width: 250px;
    padding: 15px 0;
    text-align: center;
    background-color: #DED300;
    border: 1px solid #DED300;
    color: #030303;
    font-weight: bold;
    border-radius: 20px;
}

.lp202409_ticket_popup_area_links a:hover {
    background: none;
    color: #DED300;
    border: 1px solid #DED300;
    transition: 0.4s;
}

.lp202409_ticket_popup_area_links a span {
    font-size: 24px;
}

.lp202409_ticket_popup_area_live_link {
    margin-right: 50px;
}

@media (max-width: 600px) {
    .lp202409_ticket_popup_area_live_link {
        margin-right: 0px;
        margin-bottom: 50px;
    }
}

.lp202409_ticket_popup_area_back_to_page {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.lp202409_ticket_popup_area_back_to_page::before, .lp202409_ticket_popup_area_back_to_page::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 2px; /* 棒の幅（太さ） */
    height: 30px; /* 棒の高さ */
    background: #fff;
  }
   
  .lp202409_ticket_popup_area_back_to_page::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
   
  .lp202409_ticket_popup_area_back_to_page::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }


/* WordPressリセット用css */

.id_822 .l-header {
    display: none;
}

.id_822 .l-content {
    margin: 0;
    padding: 0;
    max-width: none;
}
