@charset "utf-8";

:root {
    --c-lightblue: #eff4f6;
    --c-black: #010101;
    --c-blue: #0162b3;
    --c-blue--join: #0078c1;
    --c-lightblue: #e6f0fa;
    --c-green--join: #459052;
    --c-purple--join: #b23d84;
    --c-red: #e00;
    --c-gray: #6d6d6d;
    --c-lightgray: #c5c5c5;
    --c-green: #049944;
    --c-lightgreen: #beeadb;
    --c-white: #fff;
    --font-base: "Arial", "Noto Sans JP", YuGothic, 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
    --fs08: 0.5rem;
    --fs11: 0.6875rem;
    --fs12: 0.75rem;
    --fs14: 0.875rem;
    --fs15: 0.9375rem;
    --fs16: 1rem;
    --fs17: 1.0625rem;
    --fs18: 1.125rem;
    --fs19: 1.1875rem;
    --fs21: 1.3125rem;
    --fs22: 1.375rem;
    --fs24: 1.5rem;
    --fs25: 1.5625rem;
    --fs28: 1.75rem;
    --fs30: 1.875rem;
    --fs35: 2.1875rem;
    --fs36: 2.25rem;
    --fs38: 2.375rem;
    --fs45: 2.8125rem;
    --fs50: 3.125rem;
    --fs64: 4rem;
    --sp-width: 93.75%;
    --transition-time: 0.4s all;
    --transition-opacity: 0.7;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}
html,body,h1,h2,h3,h4,h5,ul,ol,dl,p,dd{
	margin:0;
	padding:0;
	list-style:none;
}
html,body{
    font-family: var(--font-base);
	color:#000;
	font-weight:normal;
	text-align:left;
}
.cf:after {
	content:" ";
	display:block;
	clear:both;
}
body {
	font-size: 1.0rem;
    line-height: 1.2;
}
img {
	border: 0;
	vertical-align: bottom;
}
a {
    text-decoration: none;
    transition: var(--transition-time);
}
a:hover {
    opacity: var(--transition-opacity);
}
a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}
i { font-style: normal; }

/*----------------------------
共通部品
-----------------------------*/
.pc_only { display: block!important; }
.sp_only { display: none!important; }
/*----------------------------
ヘッダー
-----------------------------*/
header {
    background: var(--c-white);
    box-shadow: rgba(0, 0, 0, .25) 0 4px 4px;
    position: sticky;
    top: 0;
    padding: 12px 30px;
    width: 100%;
    z-index: 99;
}
header img {
    height: auto;
    width: 100%;
}
#l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
#l-header h1 {
    width: 169px;
}
#l-headerLeft {
    flex-shrink: 0;
    width: 169px;
}
#l-headerMenu {
    display: flex;
    align-items: center;
}
/*
#l-headerMenu ul {
    display: flex;
    align-items: center;
}
*/
#l-headerMenu a,
#l-headerMenu span {
    color: var(--c-blue);
    font-size: var(--fs15);
    font-weight: 600;
}
#l-headerMenu a:hover {
    color: var(--c-green);
}
#l-headerMenu .c-nav {
    display: flex;
    justify-content:first baseline;
}
#l-headerMenu .c-navLink {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.2rem 0.6rem 0.2rem 0;
    transition: color .15s;
}
#l-headerMenu .c-navLink:hover,
#l-headerMenu .c-navLink:focus-within
#l-headerMenu .c-navLink span:hover,
#l-headerMenu .c-navLink span:focus-within {
    color: var(--c-green);
}
#l-headerMenu .c-navLink::after {
    color: var(--c-blue);
    font-size: var(--fs15);
    content: "|";
    padding-left: 0.6rem;
}
#l-headerMenu .c-nav li:last-of-type .c-navLink::after {
    content: "";
    padding-left: 0;
}
#l-headerMenu .c-navLink--hover {
    z-index: 99;
}
#l-headerMenu .c-navLink--hover span::after {
    content: '▼';
    font-size: var(--fs11);
    vertical-align: middle;
    padding-left: 0.2rem;
}
#l-headerMenu .c-navSub {
    position: absolute;
    bottom: 0;
    display: none;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 3px 8px -2px var(--c-gray);
    color: initial;
    transform: translate(0, 100%);
}
#l-headerMenu .c-navLink:hover > .c-navSub,
#l-headerMenu .c-navLink:focus-within > .c-navSub {
    display: block;
}
#l-headerMenu .c-navSub {
    width: 150px;
}
#l-headerMenu .c-navSub--list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#l-headerMenu .c-navSub--item + .c-navSub--item {
    border-top: 1px solid var(--c-lightgray);
    padding-top: 12px;
}
#l-headerMenu .c-navSub--link {
    position: relative;
    display: block;
    transition: color .15s;
}
#l-headerMenu .c-navSub--link:hover,
#l-headerMenu .c-navSub--link:focus {
    color: var(--c-green);
}
#l-headerMenu .c-navSub--link::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: solid 1px var(--c-blue);
    border-right: solid 1px var(--c-blue);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 0;
}

#l-headerSns {
    flex-shrink: 0;
    margin-left: 0.5rem;
    height: 32px;
    width: 72px;
}
#l-headerMenu #l-headerSns ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}
#l-headerMenu #l-headerSns ul li {
    flex-shrink: 0;
    padding: 0;
    width: 32px;
}
#l-headerMenu #l-headerSns ul li::after {
    content: "";
}
#l-headerSp	{
    display: none;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    height: 40px;
    width: 44px;
}
#l-headerSp .line {
    position:absolute;
    top: 50%;
    margin-top: -3px;
    transition: .3s;
    background: var(--c-green);
    border-radius: 3px;
    height: 6px;
    width: 100%;
}
#l-headerSp .line--1 { transform:translateY(-16px); }
#l-headerSp .line--3 { transform:translateY(16px); }
body.js-menuOpen #l-headerSp .line--1 { transform:rotate(45deg); }
body.js-menuOpen #l-headerSp .line--2 { opacity:0; }
body.js-menuOpen #l-headerSp .line--3 { transform:rotate(-45deg); }
main img {
    height: auto;
    width: 100%;
}
main a {
    color: var(--c-blue);
}
main a:hover {
    color: var(--c-green);
}
#p-index__vs {
    background: var(--c-blue);
}
#p-index__vs picture {
    display: block;
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
}
#p-index__vsExp {
    display: block;
    margin: 0 auto;
    max-width: 885px;
    padding-bottom: 43px;
    width: 80%;
}
#p-index__vsExp a {
    display: block;
    background: var(--c-white);
    border-radius: 100px;
    text-align: center;
    padding: 25px;
}
#p-index__vsExp a span {
    display: block;
    color: var(--c-blue);
    font-weight: bold;
}

#p-index__vsExp a .ticket-label {
    font-size: var(--fs25);
    line-height: 1.4;
}

#p-index__vsExp a .ticket-apply {
    font-size: var(--fs38);
    line-height: 1.3;
}
#p-index__vsExp i {
    display: block;
    background: var(--c-white);
    border-radius: 100px;
    text-align: center;
	padding: 25px;
	opacity: 0.7;
}
#p-index__vsExp i span {
    color: var(--c-blue);
    font-size: var(--fs25);
    font-weight: bold;
}
#p-index__vsExp ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
}
#p-index__vsExp ul li {
    display: flex;
    color: var(--c-white);
    font-size: var(--fs16);
    line-height: 1.7;
}
#p-index__vsExp ul li::before {
    content: "※";
}
#p-index__news {
    background: var(--c-lightblue);
    padding: 50px 0 65px;
}
#p-index__newsSlide {
    position: relative;
    margin: 40px auto 0;
    max-width: 1150px;
    width: 100%;
}
#p-index__map {
    background: var(--c-white);
    padding: 50px 0 65px;
}
#p-index__mapInner {
    display: block;
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    #p-index__mapInner {
        direction: rtl;
        overflow: auto;
    }
    #p-index__mapInner span {
        min-width: 720px;
    }
}
.c-title {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    text-align: center;
}
.c-title h2 {
    position: relative;
    color: var(--c-blue);
    font-size: var(--fs50);
    display: inline-block;
    padding-bottom: 16px;
}
.c-title h2::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
    content: "";
    background: var(--c-blue);
    border-radius: 3.5px;
    height: 7px;
    width: 55px;
}
.c-title span {
    display: block;
    color: var(--c-blue);
    font-size: var(--fs18);
    font-weight: 600;
}
.splide__track {
    padding: 5px!important;
}
.splide__slide {
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    border-radius: 10px;
    background: var(--c-white);
    overflow: hidden;
}
.c-info__box {
}
.c-info__detail {
    background: var(--c-white);
    padding: 15px 10px;
}
.c-info__date {
    color: var(--c-gray);
    font-size: var(--fs11);
}
.c-info__title {
    color: var(--c-blue);
    font-size: var(--fs16);
    padding: 10px 0;
}
.c-info__text {
    color: var(--c-black);
    font-size: var(--fs14);
    line-height: 1.4;
}
#p-index__pickup {
    background: var(--c-blue);
    padding: 40px 0 50px;
}
#p-index__pickup .c-title h2 {
    color: var(--c-white);
}
#p-index__pickup .c-title h2::after {
    background: var(--c-white);
}
#p-index__pickup .c-title span {
    color: var(--c-white);
}
.news-arrows button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    height: 30px;
    width: 30px;
}
.news-arrows svg {
    display: none;
}
.news-prev {
    background-image: url(../img/icon_arrow_left.svg);
    left: -60px;
}
.news-next {
    background-image: url(../img/icon_arrow_right.svg);
    right: -60px;
}

.p-index__cs {
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    border-radius: 10px;
    overflow: hidden;
    margin: 35px auto 0;
    max-width: 1050px;
    width: var(--sp-width);
}
.p-index__mz {
    margin: 35px auto 0;
    max-width: 1050px;
    width: var(--sp-width);
}
.p-index__mz ul li {
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    border-radius: 10px;
    overflow: hidden;
}
.p-index__mz ul li + li {
    margin-top: 16px;
}

#p-index__play {
    background: var(--c-lightblue);
    padding: 50px 0 55px;
}
#p-index__enjoy {
    background: var(--c-white);
    padding: 50px 0 55px;
}
.p-index__partBox {
    margin: 50px auto 0;
    max-width: 1050px;
    width: var(--sp-width);
}
.p-index__partBox h2 {
    background: var(--c-blue);
    border-radius: 100px;
    color: var(--c-white);
    font-size: var(--fs30);
    padding: 8px 0;
    text-align: center;
    margin-bottom: 28px;
}
.p-index__partBox ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 22px;
    row-gap: 40px;
}
.p-index__partBox ul li {
    background: var(--c-white);
    border-radius: 10px;
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    overflow: hidden;
    width: calc(calc(100% - 44px) / 3);
}
.p-index__partBox .c-info__title {
    font-size: var(--fs17);
    margin-top: -10px;
}
.c-info__join {
    display: flex;
    column-gap: 8px;
    margin-bottom: 16px;
}
.c-info__join li {
    border-radius: 100px;
    color: var(--c-white);
    font-size: var(--fs12);
    text-align: center;
    padding: 4px 0;
    width: 80px!important;
}
.c-info__join li.join01 {
    background: var(--c-blue--join);
}
.c-info__join li.join02 {
    background: var(--c-green--join);
}
.c-info__join li.join03 {
    background: var(--c-purple--join);
}
.p-index__partBox .c-info__link {
    display: block;
    border: 1px solid var(--c-blue--join);
    border-radius: 100px;
    text-align: center;
    margin-top: 10px;
    padding: 12px;
}
.p-index__partBox .c-info__link span {
    position: relative;
    display: block;
    color: var(--c-blue--join);
    font-size: var(--fs14);
}
.p-index__partBox .c-info__link span::after {
    position: absolute;
    top: 4px;
    right: 15px;
    content: "▶";
    font-size: var(--fs08);
}
.p-index__partBox .c-info__link:hover {
    background: var(--c-blue--join);
}
.p-index__partBox .c-info__link:hover span {
    color: var(--c-white);
}

#p-second__title {
    background: var(--c-blue);
}
#p-second__title {
    background: var(--c-blue);
}
#p-second__title span {
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 611px;
    width: var(--sp-width);
}
#p-second__contain {
    background: var(--c-lightblue);
    border-radius: 10px;
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    padding: 60px 0 50px;
}
#p-second__main {
    background: var(--c-white);
    border-radius: 10px;
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    padding: 40px 30px 50px;
    margin: 36px auto 0;
    max-width: 1050px;
    width: var(--sp-width);
}
#p-second__detail dt {
    display: flex;
    column-gap: 15px;
    color: var(--c-blue);
    font-size: var(--fs25);
    font-weight: bold;
}
#p-second__detail dt::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    background-image: url(../img/ico_ball.jpg);
    background-repeat: no-repeat;
    background-size: 29px 27px;
    height: 27px;
    width: 29px;
}
.p-second__faq #p-second__detail dt::before {
    background-image: url(../img/ico_q.png);
    background-size: 27px 27px;
}
#p-second__detail dd {
    font-size: var(--fs15);
    line-height: 1.8;
    padding: 20px 0 35px 45px;
}
#p-second__detail dd:last-of-type {
    padding-bottom: 0;
}
#p-second__map {
    position: relative;
    width: 100%;
    padding-top: 75.3047%;
    height: 0;
}
#p-second__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.p-second__listTitle {
    font-size: var(--fs15);
    font-weight: bold;
    padding: 35px 0 4px;
}
.p-second__listTitle:first-of-type {
    padding: 0 0 4px;
}
#p-second__detail dd ul li {
    font-size: var(--fs15);
    line-height: 1.8;
    margin-left: 1em;
    text-indent: -1em;
}
#p-second__detail dd ul li::before {
    content: "・";
}
#p-second__faqFoot {
    margin-top: 100px;
}
#p-second__faqFoot p {
    font-size: var(--fs16);
    line-height: 1.6;
}
#p-second__faqFoot p:first-of-type {
    font-size: var(--fs18);
    line-height: 2;
    margin-bottom: 32px;
}
#p-second__event {
    background: var(--c-white);
    border-radius: 10px;
    box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, .14);
    margin: -8px auto 0;
    max-width: 1050px;
    overflow: hidden;
    width: var(--sp-width);
}
#p-second__eventTitle {
    background: var(--c-blue);
    padding: 25px 30px 20px;
}
#p-second__eventTitle span {
    color: var(--c-white);
    font-size: var(--fs36);
    font-weight: bold;
    line-height: 1.25;
}
#p-second__eventDetail {
    padding: 30px 30px 0;
}
#p-second__eventDetail .c-info__join li {
    font-size: var(--fs19);
    font-weight: bold;
    letter-spacing: -0.02em;
    padding: 8px 0 6px;
    width: 128px!important;
}
.p-second__eventLead {
    font-size: var(--fs18);
    font-weight: bold;
    line-height: 1.6;
    margin-top: 28px;
}
.p-second__eventImg {
    border-radius: 10px;
    overflow: hidden;
    margin: 32px 0 40px;
}
#p-second__eventDetail dt {
    display: flex;
    column-gap: 15px;
    color: var(--c-blue);
    font-size: var(--fs25);
    font-weight: bold;
}
#p-second__eventDetail dt::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    background-image: url(../img/ico_ball.jpg);
    background-repeat: no-repeat;
    background-size: 29px 27px;
    height: 27px;
    width: 29px;
}
#p-second__eventDetail dd {
    font-size: var(--fs15);
    line-height: 1.8;
    padding: 16px 0 30px 45px;
}
#p-second__eventDetail dd ol {
	counter-reset: listnum;
}
#p-second__eventDetail dd ul li,
#p-second__eventDetail dd ol li {
    text-indent: -1em;
    margin-left: 1em;
    line-height: 1.8;
}
#p-second__eventDetail dd ul li::before {
    content: "・";
}
#p-second__eventDetail dd ol li::before {
	counter-increment: listnum;
	content: counter(listnum) ".";
}
#p-second__eventBtn {
    margin: 20px auto 50px;
    max-width: 458px;
    width: 76.8%;
}
#p-second__eventBtn a {
    position: relative;
    background: var(--c-blue);
    border-radius: 100px;
    display: block;
    text-align: center;
    padding: 16px 20px;
    width: 100%;
}
#p-second__eventBtn a::after {
    position: absolute;
    top: calc(50% - 6px);
    right: 30px;
    content: "";
    background: #ffffff;
    height: calc(tan(60deg) * 12px / 2);
    width: 10px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#p-second__eventBtn a span {
    color: var(--c-white);
    font-size: var(--fs21);
    font-weight: bold;
}
#p-second__eventBtn i {
    background: var(--c-gray);
    border-radius: 100px;
    color: var(--c-white);
    display: block;
    font-size: var(--fs21);
    font-style: normal;
    font-weight: bold;
    text-align: center;
    padding: 16px 20px;
    width: 100%;
}

footer {
    background: var(--c-green);
    padding: 22px 0;
}
#c-footer {
    text-align: center;
}
#c-footer span {
    color: var(--c-white);
    font-size: var(--fs16);
}

@media screen and (max-width: 1350px) {
    #p-index__newsSlide {
        width: 90%;
    }
    .news-prev { left: -30px; }
    .news-next { right: -30px; }
}
@media screen and (max-width: 1300px) {
    #l-headerMenu a,
    #l-headerMenu span {
        font-size: clamp(0.75rem, 0.479rem + 0.56vw, 0.938rem);
    }
    #l-headerMenu ul li::before {
        font-size: clamp(0.75rem, 0.479rem + 0.56vw, 0.938rem);
    }
    #l-headerMenu ul {
        flex-wrap: wrap;
    }
    #l-headerRight {
        width: calc(100% - 200px);
    }
}
@media screen and (max-width: 768px) {

.pc_only { display: none!important; }
.sp_only { display: block!important; }
a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
}
header {
    padding: 6px 20px;
    height: 74px;
}
body.js-menuOpen {
    overflow: hidden;
}
#l-headerMenu {
    justify-content: flex-end;
}
#l-headerSp	{
    display: block;
}
#l-header h1 {
    width: 150px;
}
#l-headerSns {
    margin-left: 0;
    margin-right: 8px;
    height: 45px;
    width: 98px;
}
#l-headerMenu #l-headerSns ul {
    flex-direction: row;
}
#l-headerMenu #l-headerSns ul li {
    width: 45px;
}
#l-headerList {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 10;
    width: 100%;
    height: calc(100dvh - 74px);
    overflow: auto;
}
body.js-menuOpen #l-headerList {
    opacity: 1;
    background: #fff;
    pointer-events: initial;
}
#l-headerListInner {
    height: 100%;
    padding: 40px;
    display: grid;
    place-items: center;
    overflow: auto;
    overscroll-behavior-y: contain;
}
#l-headerMenu .c-nav {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--c-gray);
}
#l-headerMenu .c-nav li {
    border-bottom: 1px solid var(--c-gray);
}
#l-headerMenu .c-nav a,
#l-headerMenu .c-nav span {
    font-size: var(--fs18);
    padding: 1rem;
}
#l-headerMenu a.c-navLink::after {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-top: solid 2px var(--c-blue);
    border-right: solid 2px var(--c-blue);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1rem;
    padding-left: 0;
}
#l-headerMenu .c-navAcc {
    background: var(--c-lightblue);
}
#l-headerMenu .c-navAcc .c-navLink {
    display: block;
    padding: 0;
}
#l-headerMenu .c-navLink--hover::after {
    content: "";
    padding-left: 0;
}
#l-headerMenu .c-navLink--hover span {
    display: block;
    position: relative;
}
#l-headerMenu .c-navLink--hover span::before,
#l-headerMenu .c-navLink--hover span::after  {
    content: '';
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 3px;
    height: 20px;
    background-color: var(--c-blue);
}
#l-headerMenu .c-navLink--hover span::after {
    transform: rotate(90deg);
    padding-left: 0;
}
#l-headerMenu .c-navLink--hover span.js-accActive::before {
    width: 0;
    height: 0;
}
#l-headerMenu .c-navLink:hover > .c-navSub,
#l-headerMenu .c-navLink:focus-within > .c-navSub {
    display: none;
}
#l-headerMenu .c-navLink--hover .c-navSub {
    position: static;
    display: none;
    border-top: 1px solid var(--c-gray);
    border-bottom: none;
    box-shadow: none;
    transform: none;
    padding: 0;
    width: 100%;
}
#l-headerMenu .c-navLink--hover .js-accActive + .c-navSub {
    display: block;
}
#l-headerMenu .c-navSub--link::after {
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-top: solid 2px var(--c-blue);
    border-right: solid 2px var(--c-blue);
    right: 1rem;
}
#l-headerMenu .c-navSub--list {
    gap: 0;
}
#l-headerMenu .c-nav li.c-navSub--item {
    border: none;
}
#l-headerMenu .c-nav li.c-navSub--item + li.c-navSub--item {
    border-top: 1px solid var(--c-gray);
    padding-top: 0;
}
#l-headerMenu .c-nav li.c-navSub--item a {
    padding-left: 2.5rem;
}
#l-headerSp {
    z-index: 99;
}
.p-index__partBox ul {
    flex-direction: column;
    margin: 0 auto;
    width: 86%;
}
.p-index__partBox ul li {
    width: 100%;
}
#p-index__vsExp a {
    padding: 16px;
}
#p-index__vsExp a .ticket-label {
    font-size: clamp(0.875rem, 0.6544rem + 0.9804vw, 1.125rem);
}

#p-index__vsExp a .ticket-apply {
    font-size: clamp(1.5rem, 0.9485rem + 2.451vw, 2.125rem);
}

}
@media screen and (max-width: 640px) {
    #p-index__newsSlide {
        width: 85%;
    }
    .news-arrows button {
        height: 25px;
        width: 25px;
    }
    .news-prev {
        left: -25px;
    }
    .news-next {
        right: -25px;
    }
    .c-title h2 {
        font-size: var(--fs45);
        margin: 0 auto;
        width: var(--sp-width);
    }
    .p-index__partBox h2 {
        font-size: var(--fs24);
    }
    #p-second__main {
        padding: 32px 20px;
    }
    #p-second__detail dt {
        align-items: flex-start;
    }
    #p-second__detail dt::before {
        background-size: 22px 20px;
        margin-top: 4px;
        height: 20px;
        width: 22px;
    }
    .p-second__faq #p-second__detail dt::before {
        background-size: 20px 20px;
    }
    #p-second__detail dd {
        padding: 20px 0 35px 35px;
    }
    #p-second__eventTitle {
        padding: 16px;
    }
    #p-second__eventTitle span {
        font-size: var(--fs24);
    }
    #p-second__eventDetail {
        padding: 16px 16px 0;
    }
    #p-second__eventDetail .c-info__join li {
        font-size: var(--fs16);
    }
    #p-second__eventDetail dt {
        font-size: var(--fs24);
    }
    #p-second__eventDetail dt::before {
        background-size: 22px 20px;
        margin-top: 4px;
        height: 20px;
        width: 22px;
    }
    #p-second__eventDetail dd {
        padding: 16px 0 30px 40px;
    }
    #p-second__eventBtn a span,
    #p-second__eventBtn i {
        font-size: var(--fs19);
    }
}

/* FORMS CSS */
.form-section {
    padding-bottom: 70px
}

@media screen and (min-width: 769px) {
    .form-section {
        padding-bottom:140px
    }
}

.form-section__title {
    text-align: center;
    margin-top: 1em
}

.form-section__lead {
    font-size: var(--fs18);
    color: var(--c-blue);
    text-align: center;
    line-height: 1.4
}

@media screen and (min-width: 769px) {
    .form-section__lead {
        font-size:max(min(1.6666666667vw,24px),18px)
    }
}
.form-section__leadFin {
    color: var(--c-blue);
    font-size: var(--fs28);
    font-weight: bold;
    margin-bottom: 24px;
}

.form-section__errorLead {
    color: var(--c-red);
    font-weight: bold;
}

.form-section__notice {
    font-size: var(--fs22);
    color: var(--c-blue);
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (min-width: 769px) {
    .form-section__notice {
        font-size:max(min(2.0833333333vw,30px),22px)
    }
}
.form-section__att {
    font-size: var(--fs16);
    text-align: center;
    margin-top: 24px;
}
.form-section__att span {
    color: #e00;
}
.form-section__table {
    max-width: 840px;
    font-size: 16px;
    font-size: 1rem;
    margin: 40px auto 20px
}

@media screen and (min-width: 769px) {
    .form-section__table {
        font-size:18px;
        font-size: 1.125rem;
        margin: 60px auto 40px
    }
}

@media screen and (min-width: 992px) {
    .form-section__table {
        font-size:24px;
        font-size: 1.5rem
    }
}

.form-section__table>div+div {
    margin-top: 30px
}

@media screen and (min-width: 769px) {
    .form-section__table>div+div {
        margin-top:40px
    }
}

.form-section__table dt {
    color: var(--c-blue);
    font-weight: 900;
    padding-left: .4em;
    margin-bottom: 8px;
}
.form-section__table dt i {
    font-style: normal;
    font-weight: bold;
}
.form-section__table dt i::after {
    color: var(--c-red);
    content: "※";
    margin: 0 8px;
}
.form-section__input {
    width: 100%;
    padding: .65em .8em;
    font-size: var(--fs16);
    font: inherit;
    border-radius: 10px;
    border: none;
    background: var(--c-lightgreen);
    color: inherit
}

@media screen and (min-width: 769px) {
    .form-section__input {
        font-size:18px;
        font-size: 1.125rem
    }
}

@media screen and (min-width: 992px) {
    .form-section__input {
        font-size:24px;
        font-size: 1.5rem
    }
}

.form-section__select {
    position: relative
}

.form-section__select::before {
    width: 1.75em;
    height: 1.75em;
    background: var(--c-lightgray);
    border-radius: .42em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    pointer-events: none
}

.form-section__select::after {
    width: .875em;
    height: .625em;
    background: var(--c-gray);
    content: "";
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    right: 1.45em;
    top: 50%;
    transform: translateY(-40%);
    pointer-events: none
}

.form-section__select select {
    width: 100%;
    appearance: none;
    padding: .65em 2em .65em .8em;
    cursor: pointer;
    font-size: 16px;
    font-size: 1rem;
    font: inherit;
    border-radius: 10px;
    border: none;
    background: var(--c-lightgreen);
    color: inherit
}

@media screen and (min-width: 769px) {
    .form-section__select select {
        font-size:18px;
        font-size: 1.125rem
    }
}

@media screen and (min-width: 992px) {
    .form-section__select select {
        font-size:24px;
        font-size: 1.5rem
    }
}

@media screen and (min-width: 992px) {
    .form-section__events {
        margin:0 -45px
    }
}

.form-section__check {
    margin-top: 16px;
}
.form-section__check ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.form-section__check ul li {
    white-space: nowrap;
}
.form-section__check input {
    display: none;
}
.cb_label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.cb_label::before {
    background: var(--c-lightgreen);
    border-radius: 10px;
    content: '';
    display: block;
    height: 26px;
    left: 0;
    margin-top: -13px;
    position: absolute;
    top: 50%;
    width: 26px;
}
.cb_label::after {
    border-right: 5px solid var(--c-black);
    border-bottom: 5px solid var(--c-black);
    content: '';
    display: block;
    height: 9px;
    left: 8px;
    margin-top: -8px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
.form-section__check input:checked + .cb_label::after {
    opacity: 1;
}

.form-section__events dt {
    margin-bottom: .6em
}

.form-section__eventsInner {
    padding: 1.5em;
    border: 5px solid var(--c-lightgreen);
    border-radius: 10px
}

@media screen and (min-width: 992px) {
    .form-section__eventsInner {
        padding:1.5em 3em
    }
}
.form-section__errorList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-section__errorList li {
    display: flex;
    align-items: flex-start;
    color: var(--c-red);
    font-size: var(--fs18);
    font-weight: bold;
    line-height: 1.5;
}
.form-section__errorList li::before {
    flex-shrink: 0;
    content: "●";
    font-size: var(--fs22);
    margin-top: -4px;
    margin-right: 6px;
}

.form-section__events .wpcf7-form-control-wrap {
    display: block
}

.form-section__events .wpcf7-form-control {
    display: grid;
    gap: .5em 1em
}

@media screen and (min-width: 769px) {
    .form-section__events .wpcf7-form-control {
        grid-template-columns:1fr 1fr
    }
}

.form-section__events .wpcf7-list-item {
    margin-left: 0
}

.form-section__events .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    position: relative;
    color: var(--c-blue);
}

.form-section__events .wpcf7-list-item label::before {
    width: 1.5em;
    height: 1.5em;
    border-radius: .42em;
    border: 1px solid #9f9d9d;
    background: #d9d9d9;
    content: ""
}

.form-section__events .wpcf7-list-item label::after {
    width: .9em;
    height: .7em;
    border-left: var(--c-green) .21em solid;
    border-bottom: var(--c-green) .21em solid;
    position: absolute;
    left: .3em;
    transform: translateY(-20%) rotate(-45deg);
    content: "";
    opacity: 0;
    transition: .2s opacity
}

.form-section__events .wpcf7-list-item label:has(input:checked)::after {
    opacity: 1
}

.form-section__events .wpcf7-list-item label input {
    display: none
}

.form-section__events .notice {
    text-align: center;
    line-height: 1.6;
    color: var(--c-blue);
    margin-top: 1em
}

.form-section__age {
    padding: 1.5em;
    background: #effaf6;
    border-radius: 10px
}

.form-section__age .wpcf7-form-control {
    display: grid;
    gap: .5em
}

.form-section__age .wpcf7-list-item {
    margin-left: 0
}

.form-section__age .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: .5em;
    position: relative;
    color: var(--c-blue);
}

.form-section__age .wpcf7-list-item label::before {
    width: 1.4em;
    height: 1.4em;
    border-radius: 100%;
    border: 1px solid #9f9d9d;
    background: #d9d9d9;
    content: ""
}

.form-section__age .wpcf7-list-item label::after {
    width: .8em;
    height: .8em;
    background: #094;
    border-radius: 100%;
    position: absolute;
    left: .3em;
    content: "";
    opacity: 0;
    transition: .2s opacity
}

.form-section__age .wpcf7-list-item label:has(input:checked)::after {
    opacity: 1
}

.form-section__age .wpcf7-list-item label input {
    display: none
}

.form-section__terms {
    height: 185px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    padding: 1em;
    overflow: auto;
    border: 1px solid var(--c-black);
    border-radius: 10px
}

@media screen and (min-width: 769px) {
    .form-section__terms {
        font-size:max(min(1.3888888889vw,20px),16px)
    }
}

.form-section__privacy {
    color: var(--c-blue);
    font-weight: bold;
    text-align: center;
}

.form-section__privacy .text {
    margin: 1.5em 0 1em
}

.form-section__privacy .text span {
    display: inline-block;
    color: var(--c-white);
    line-height: 1.6;
    padding: 0 .6em;
    margin-right: .4em;
    border-radius: .41em;
    background: var(--c-red);
}

.form-section__privacy .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    position: relative;
    color: var(--c-blue);
}

.form-section__privacy .wpcf7-list-item label::before {
    width: 1.5em;
    height: 1.5em;
    border-radius: .42em;
    border: 1px solid #9f9d9d;
    background: #d9d9d9;
    content: ""
}

.form-section__privacy .wpcf7-list-item label::after {
    width: .9em;
    height: .7em;
    border-left: #094 .21em solid;
    border-bottom: #094 .21em solid;
    position: absolute;
    left: .3em;
    transform: translateY(-20%) rotate(-45deg);
    content: "";
    opacity: 0;
    transition: .2s opacity;
}

.form-section__privacy .wpcf7-list-item label:has(input:checked)::after {
    opacity: 1
}

.form-section__privacy .wpcf7-list-item label input {
    display: none
}

.form-section__ticket {
    color: var(--c-blue);
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
}
@media screen and (min-width: 769px) {
    .form-section__ticket {
        font-size:18px;
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 992px) {
    .form-section__ticket {
        font-size:24px;
        font-size: 1.5rem;
    }
}
.form-section__ticket .text {
    margin: 1.5em 0 1em
}
.form-section__ticket .text i {
    display: inline-block;
}
.form-section__ticket .text span {
    display: inline-block;
    color: var(--c-white);
    line-height: 1.6;
    padding: 0 .6em;
    margin-right: .4em;
    border-radius: .41em;
    background: var(--c-red);
}

.form-section__ticket .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    position: relative;
    color: var(--c-blue);
}

.form-section__ticket .wpcf7-list-item label::before {
    width: 1.5em;
    height: 1.5em;
    border-radius: .42em;
    border: 1px solid #9f9d9d;
    background: #d9d9d9;
    content: ""
}

.form-section__ticket .wpcf7-list-item label::after {
    width: .9em;
    height: .7em;
    border-left: #094 .21em solid;
    border-bottom: #094 .21em solid;
    position: absolute;
    left: .3em;
    transform: translateY(-20%) rotate(-45deg);
    content: "";
    opacity: 0;
    transition: .2s opacity;
}

.form-section__ticket .wpcf7-list-item label:has(input:checked)::after {
    opacity: 1
}

.form-section__ticket .wpcf7-list-item label input {
    display: none
}

.form-section__btn {
    background: var(--c-green);
    border-radius: .57em;
    border: none;
    color: var(--c-white);
    cursor: pointer;
    display: block;
    font-size: var(--fs22);
    padding: .3em 0;
    margin: auto;
    transition: .3s opacity;
    width: fit-content;
    min-width: 13em;
    transition: 0.3s all;
}

@media screen and (min-width: 769px) {
    .form-section__btn {
        font-size: var(--fs28);
    }
}

@media screen and (min-width: 992px) {
    .form-section__btn {
        font-size: var(--fs35);
    }
}
.form-section__btn:hover {
    opacity: .8;
}

.form-section__att {
	font-size: 1rem;
	text-align: center;
	margin-top: 24px;
}
.form-section__att span {
	color: var(--c-red);
}
.form-section__table dt i {
	font-style: normal;
	font-weight: 900;
}
.form-section__table dt span {
    font-size: var(--fs14);
	font-weight: 500;
}
.form-section__table dt span.span_br {
    display: block;
    margin-top: 8px;
}
.form-section__table dt i::after {
	color: var(--c-red);
	content: "※";
	margin: 0 8px;
}
.form-section__input[readonly] {
    background: #eee;
}
.form-section__birth {
	display: flex;
	gap: 16px;
	align-items: center;
}
.form-section__birth .form-section__select {
	width: 120px;
}
.form-section__birth .form-section__select:nth-child(1) {
	width: 180px;
}
.form-section__birth span {
	margin: 0 8px;
}
.form-section__table .--nodisp {
	display: none;
}
.form-section__table .form-section__terms {
	text-align: left;
}
.form-section__events .wpcf7-form-control {
	display: block!important;
}
@media screen and (max-width: 900px) {
	.form-section__birth .form-section__select {
		width: 20%;
	}
	.form-section__birth .form-section__select:nth-child(1) {
		width: 30%;
	}
	.form-section__table dt span {
		font-size: 0.75rem;
	}
}
@media screen and (max-width: 700px) {
	.form-section__notice {
		text-align: left;
	}
	.form-section__table dt span {
		display: block;
	}
}
@media screen and (max-width: 500px) {
	.form-section__birth {
		flex-wrap: wrap;
	}
	.form-section__birth .form-section__select,
	.form-section__birth .form-section__select:nth-child(1) {
		width: 70%;
	}

}

/* 260710 お問い合わせフォーム・確認画面
------------------------------------------ */

/* hidden属性を確実に反映 */
#inquiry-input[hidden],
#inquiry-confirm[hidden],
#inquiry-complete[hidden],
#email-confirm-error[hidden] {
    display: none !important;
}

/* 入力エラー */
.inquiry-error {
    display: block;
    margin-top: 8px;
    color: var(--c-red);
    font-size: var(--fs14);
    font-weight: 700;
}

.form-section__input.is-error {
    outline: 2px solid var(--c-red);
    outline-offset: 2px;
    background-color: #fff5f5;
}

/* 入力画面の確認ボタン */
.inquiry-action {
    margin-top: 32px;
    text-align: center;
}

#inquiry-confirm-button {
    margin: 0 auto;
}

/* 確認画面 */
.inquiry-confirm-table dd,
#confirm-message {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.inquiry-confirm-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.inquiry-confirm-actions .form-section__btn {
    margin: 0;
}

.inquiry-back-button {
    background: var(--c-gray);
}

/* 電話でのお問い合わせ */
.inquiry-tel {
    margin-top: 40px;
    text-align: center;
    line-height: 1.6;
}

.inquiry-tel p {
    margin: 0;
}

.inquiry-tel__title {
    font-weight: 700;
}

.inquiry-tel__number {
    margin-top: 4px !important;
    font-size: var(--fs18);
    font-weight: 700;
}

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

.inquiry-tel__hours {
    margin-top: 4px !important;
}

@media screen and (max-width: 767px) {
    .inquiry-action {
        margin-top: 24px;
    }

    .inquiry-confirm-actions {
        flex-direction: column-reverse;
        gap: 14px;
        margin-top: 30px;
    }

    .inquiry-confirm-actions .form-section__btn {
        width: 100%;
        min-width: 0;
    }

    .inquiry-tel {
        margin-top: 32px;
    }
}

.wpcf7-not-valid-tip {
    display: block;
    margin-top: 8px;

}

/* 確認内容：dtとddの左端を揃える */
.inquiry-confirm-table > div {
    display: block;
}

.inquiry-confirm-table dt,
.inquiry-confirm-table dd {
    margin: 0;
    padding-left: 0;
}

.inquiry-confirm-table dd {
    margin-top: 8px;
}


/* 確認画面下部：2つのボタンの上端を揃える */
.inquiry-confirm-actions {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.inquiry-confirm-actions > * {
    margin-top: 0 !important;
}

.inquiry-confirm-actions .form-section__btn {
    margin-top: 0 !important;
}
.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

#inquiry-complete .form-section__notice {
    margin-bottom: 35px;
}

#inquiry-complete p {
    text-align: center;
}

/* 0813道安追加 */
#p-index__vsExp .ticket-help a {
    display: inline;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: underline;
}
#p-index__vsExp .ticket-help::before {
    content: "■";
}

#p-index__vsExp .ticket-help a:hover {
    opacity: .7;
}

@media screen and (max-width: 768px) {
    #p-index__vsExp .ticket-help {
        display: block !important;
    }

    #p-index__vsExp .ticket-help a {
        display: inline !important;
        width: auto !important;
        white-space: normal !important;
    }
}

/* Main Zoneの詳細ページリンクを一時停止 */
#p-index__pickup .p-index__mz a {
    pointer-events: none;
    cursor: default;
}

#p-index__pickup .p-index__mz a:hover {
    opacity: 1;
}

/* スケジュール追加 */
#p-schedule__image {
    display: block;
    margin: 0 auto;
    overflow: auto;
    width: 100%;
}
#p-schedule__image > span {
    display: block;
    min-width: 1980px;
}
.scroll-hint-icon {
    top: 0px!important;
}
@media screen and (max-width: 768px) {
    #p-schedule__image > span {
        min-width: auto;
        width: 275%;
    }
}