html {
    scroll-behavior: smooth;
}

a {
    color: #ae21ba;
    text-decoration: none;
}
a:hover {
    color: #c96ed2;
}
div.booking-button a {
    color: #ffffff;
}
div.event-content a {
    color: #ffff00;
    text-decoration: underline;
}
div.event-content a:hover {
    color: #c2da00;
}
.container {
    width: 100%;
    max-width: 3000px;
    font-size: 1rem;
    color: #000;
    font-family: "Noto Sans JP";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* menu */
.open {
    overflow: hidden;
}
.menu-btn {
    position: fixed;
    top: 15px;
    right: 10px;
    height: 76px;
    width: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #000;
    border-radius: 50%;
    z-index: 100;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
}
.menu-btn span::before {
    bottom: 10px;
    transition: transform 0.3s;
}
.menu-btn span::after {
    top: 10px;
    transition: transform 0.3s;
}
#menu-btn-check:checked + .menu-btn span {
    background-color: rgb(255, 255, 255, 0);
}
#menu-btn-check:checked + .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: transform 0.3s;
}
#menu-btn-check:checked + .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 550px;
    height: 85vh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 10;
    padding: 76px 32px 40px 32px;
    border-radius: 40px 0px 0px 40px;
    background: #fff;
    transition: left 0.5s;
    overflow-y: scroll;
}
.menu-content ul {
    padding-top: 50px;
}
.menu-content ul li {
    list-style: none;
    margin-bottom: 24px;
}
.menu-content ul li:nth-child(4),
.menu-content ul li:nth-child(5),
.menu-content ul li:nth-child(6) {
    margin-left: 32px;
}
.menu-content i {
    margin-right: 5px;
}
.menu-content ul li img {
    width: 25px;
    margin-right: 5px;
}
.menu-content ul li a {
    display: inline;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    padding: 9px 0 10px 20px;
}
.menu-content ul li a:hover {
    color: #c96ed2;
}
#menu-btn-check:checked ~ .menu-content {
    left: calc(100% - 550px);
}
.menu-info-container {
    width: 438px;
    height: auto;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.menu-background {
    display: none;
}
#menu-btn-check:checked ~ .menu-background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000aa;
    z-index: 9;
}

/* header */
.header {
    width: 100%;
    position: fixed;
    top: 15px;
    left: 0;
    z-index: 50;
}
.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    justify-content: space-between;
}
.logobacca-logo-icon {
    padding-left: 60px;
    width: 174px;
    height: 65px;
}
.header-menu-container {
    padding-right: 120px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.header-menu {
    display: flex;
    padding: 0px 2px;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.header-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
}
.header-menu a:hover {
    color: #c96ed2;
}

/* mainvisual */
.mainvisual-container {
    max-width: 1280px;
    height: 906px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.mainvisual-img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.mainvisual-background-img {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mainvisual {
    width: 100%;
    height: 906px;
    background-color: #c9e00b;
    background: url("../images/mainvisual/mainvisual-background-pc.webp") repeat-x;
    background-position: 0 0;
    -webkit-animation: bgroop 100s linear infinite;
    animation: bgroop 100s linear infinite;
}
@-webkit-keyframes bgroop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -3000px 0;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -3000px 0;
    }
}


/* mainvisual tablet
   769px〜1024pxではPC用メインビジュアル本体だけを画面幅に合わせて縮小表示 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .mainvisual {
        position: relative;
        overflow: hidden;
    }

    .mainvisual,
    .mainvisual-container {
        height: calc(100vw * 906 / 1280);
    }

    .mainvisual-container {
        width: 100%;
        max-width: 1280px;
    }

    .mainvisual-img img {
        width: 100%;
        max-width: 1280px;
        height: auto;
    }
}

/* mainvisual tablet portrait
   タブレット縦表示では、ヘッダーに潜らないようメインビジュアル本体を少し下げる */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .mainvisual,
    .mainvisual-container {
        height: calc(100vw * 906 / 1280 + 120px);
    }

    .mainvisual-img img {
        top: 48px;
    }
}


/* header tablet portrait
   タブレット縦表示ではヘッダーの横メニューを非表示にし、ハンバーガーメニューのみ表示 */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .header-menu-container {
        display: none;
    }

    .logobacca-logo-icon {
        padding-left: 32px;
    }

    .menu-btn {
        right: 32px;
    }
}




/* featured */
.featured {
    background-color: #c8e00b;
}
.featured-container {
    max-width: 1120px;
    margin: 0 auto;
    background-color: #c8e00b;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 6カード・2段表示に戻す場合は下記を有効化 */
    /* grid-template-rows: 1fr 1fr; */
    column-gap: 10px;
    row-gap: 35px;
}
.featured-event {
    position: relative;
    margin: 0 auto;
}
.featured-event-info {
    display: grid;
    grid-template-rows: 160px 1fr;
    border-radius: 16px;
    background-color: #84b501;
    row-gap: 10px;
    max-width: 352px;
    position: relative;
}


/*2026-05-29　文字の下に隙間*/
.event-bottom-space {
    height: 30px;
    line-height: 30px;
}


.event-photo {
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.event-content {
    padding: 0px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-date {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -20px;
    left: 16px;
    z-index: 1;
    border-radius: 50%;
    background-color: #ffff00;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-venue {
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.notification-container {
    max-width: 1120px;
    margin: 0 auto 40px auto;
}
.notification-box {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    border: 3px solid var(--logo-red, #f00);
    background: #fff;
}


/* タブレット縦：注目カードエリアを2列にして読みやすくする */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .featured-container {
        margin: 0 32px;
    }

    .featured-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
        row-gap: 40px;
    }

    .featured-event {
        width: 100%;
    }

    .featured-event-info {
        max-width: none;
    }
}

/* news */
.news {
    background-color: #d1f1f6;
}
.news-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #d1f1f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}
.crown-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.news-content {
    text-align: left;
    width: 82%;
}
.news-frame {
    width: 82%;
}
.imagesbackgroundtree001-icon {
    width: 184px;
    position: absolute;
    bottom: 13.4%;
    left: 12.5%;
}
.imagesbackgroundtree002-icon {
    width: 115px;
    position: absolute;
    bottom: 25.4%;
    left: 69.8%;
}
/* venue */
.venue {
    background-color: #c8e00b;
}
.venue-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #c8e00b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 2%;
}
.title-container {
    width: fit-content;
    margin: 15px 0;
}
.venue-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.venue-caption {
    width: 90%;
    margin: 8px 0 24px 0;
}
.venue-caption div {
    margin-inline: auto;
    max-inline-size: max-content;
}

.venue-content {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
    overflow: visible;
    padding-bottom: 8px;
}


/* 2026版では3つのエリアボタン画像を同一サイズで書き出すため、個別縮小は不要 */
.venue-event {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.venue-event img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

/* 2026版では3つのエリアボタン画像を同一サイズで書き出すため、個別縮小は不要 */
/*
.venue-content .venue-event:nth-child(3) img {
    transform: scale(0.95);
    overflow: hidden;
}
*/


.venue-event .venue-name {
    position: absolute;
    top: 63%;
    right: 0;
    left: 0;
    text-align: center;
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}

/* Additional Workshop */
.img-workshop-artist01-02-icon {
    width: 100px;
    position: relative;
    height: 100px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.workshop-b {
    flex: 1;
    position: relative;
    letter-spacing: 0.04em;
    line-height: 150%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.workshop-artist01-02 {
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ae21ba;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    gap: 16px;
    cursor: pointer;
}
.img-workshop-artist01-02-icon1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.white-cover {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100px;
    height: 100px;
}

.img-hover-workshop-artist01-02 {
    width: 100px;
    position: relative;
    height: 100px;
    display: none;
}

.workshop-artist01-021 {
    align-self: stretch;
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    gap: 16px;
    display: none;
}

.workshop-artist01-02-parent {
    width: 100%;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 32px;
    text-align: left;
    color: #ae21ba;
}

.workshop-artist01-02:hover .img-workshop-artist01-02-icon {
    opacity: 0.7;
}

.workshop-artist01-02:hover .workshop-artist01-021 {
    display: flex;
}

.workshop-artist01-02:hover .img-hover-workshop-artist01-02 {
    display: block;
}

.workshop-artist01-02:hover .workshop-b {
    color: #c96ed2;
}

/* kibi-plaza */
.pattern-group {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.venue-info {
    background-color: #c8e00b;
    position: relative;
}
.venue-info-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #c8e00b;
    padding-bottom: 5%;
}
.venue-info-content {
    margin: 0 5%;
    padding: 5%;
    display: grid;
	grid-template-columns: minmax(0, 1fr); /* ←追加 */
    justify-content: center;
    justify-items: center;
    background-color: #fff;
    border-radius: 32px;
    position: relative;
    gap: 16px;
    z-index: 2;
}
.label-title-pc-icon {
    position: absolute;
    width: 14.8%;
    top: -1px;
    left: -1px;
}
.label-title-sp-icon {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    border-radius: 32px 32px 0px 0px;
    background: #84b501;
}
.imageslabelvenue-image-kibi-icon {
    position: absolute;
    width: 26.2%;
    top: 0px;
    right: 0px;
    object-fit: cover;
}
.event-title {
    padding-bottom: 16px;
}
.event-caption {
    padding-bottom: 24px;
}
div#n-square .event-caption {
    padding-bottom: 0;
}
.event-title div,
.event-caption div {
    margin-inline: auto;
    max-inline-size: max-content;
}

.beetle-list-title {
    margin-top: 36px;
    margin-bottom: 18px;
}

.beetle-list-container {
    width: 100%;
	max-width: 992px;/*2026/06/12追加*/
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 230px));
    align-items: start;
    place-content: center;
    gap: 24px;
}

.beetle-info,
.okaebi-event-after-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
.kibi-content-beetle {
    overflow: hidden;
}
.imageseventshorihori-icon {
    width: 100%;
    max-width: 1040px;
}
.kibi-event1-detail {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px 0 56px 0;
}
.kibi-event1-detail-fiqure {
    position: relative;
}
.imagesbackgroundpattern001-icon {
    width: 30%;
    position: absolute;
    z-index: 1;
}
.imageseventspillbug-icon {
    width: 80%;
    margin: auto;
    display: block;
}
.kibi-event1-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}
.kibi-event2-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: url(../images/events/background-ikeda.svg);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: left top;
    background-position-y: 40px;
}
.kibi-event2-detail-fiqure {
    position: relative;
}
.imageseventsp-ikeda-002-icon {
    width: 80%;
    margin: auto;
    display: block;
    position: relative;
    border-radius: 16px;
    object-fit: cover;
}
.kibi-event2-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    gap: 10px;
}
.kibi-event2-after-title {
    height: 50px;
}
.kibi-event2-after-photo,
.kibi-event2025-after-photo{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-self: stretch;
}
.kibi-event2-after-photo > img,
.kibi-event2025-after-photo > img{
    width: 100%;
    border-radius: 16px;
}

/* about-venue */
.about-venue-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 32px;
}
.about-venue-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}
.about-venue-title {
    display: flex;
    gap: 10px;
}
.about-venue-link a {
    display: block;
}
.about-venue-photo {
    width: 85%;
    margin: 0 auto;
    display: block;
    position: relative;
    border-radius: 16px;
    object-fit: cover;
}

/* n-square */
.artist-container {
    width: 95%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5%;
    padding: 40px 0 24px 0;
}
.artist-main-photo {
    width: 95%;
    border-radius: 16px;
}
.artist-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    gap: 10px;
}
.artist-info {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    align-content: center;
    align-items: center;
}
.n-square-subtitle {
    padding-top: 4%;
}
.n-square-subtitle div {
    margin-inline: auto;
    max-inline-size: max-content;
}

/* waterpark */
.waterpark-banner {
    width: 100%;
    max-width: 1040px;
    margin: 24px auto 8px auto;
}

.waterpark-banner-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}


.waterpark-note {
    color: #004DA0;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 8px auto;
    text-align: left;
}

.waterpark-note p {
    margin: 0 0 3px 0;
    font-size: 15px;
    line-height: 1.6;
}

.waterpark-note-sale {
    color: #e60012;
    font-weight: 700;
}

/* キッズウォーターパーク 注意事項下のお願いボックス */
.notice-link-box {
    width: 100%;
    max-width: 1040px;
    margin: 14px auto 0;
    padding: 18px 20px;
    box-sizing: border-box;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #c7ddf2;
    text-align: left;
}

.waterpark-rules-title {
    margin: 0 0 12px;
    color: #005cb8;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.waterpark-rules-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.waterpark-rules-list p {
    margin: 0;
    color: #004da0;
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
}
.waterpark-rules-more {
    margin: 12px 0 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}



/* エリア紹介文の行間を少し読みやすく調整 */
.event-caption .font-body-ll {
    line-height: 1.6;
}

.event-caption .font-body-l {
    line-height: 1.8;
}

/* ムシバッカ王国エリア内の中見出し上余白調整 */
.venue-info-content > .font-headline-l.bottom-line-green {
    margin-top: 16px;
}


/* 各エリア内のチケット情報への導線 */
.area-ticket-guide {
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    padding: 16px 20px;
    border-radius: 16px;
background: #fffdf0;
border: 1px solid #e5e1c8;
    text-align: left;
    box-sizing: border-box;
}

.area-ticket-guide p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
}

/* 1行目「チケットは〜」とリンクの間を少し詰める */
.area-ticket-guide > p:first-child {
    margin-bottom: 4px;
}

.area-ticket-guide p:last-child {
    margin-bottom: 0;
}

.area-ticket-guide-note {
    color: #005cb8;
    font-weight: 600;
}

.area-ticket-guide-note--mushi {
    color: #327617;
}

.area-ticket-guide p.area-ticket-guide-link {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
}

.area-ticket-guide-link a::before {
    content: "▶";
    display: inline-block;
    margin-right: 0.35em;
    font-size: 0.85em;
}

.area-ticket-guide-link + .area-ticket-button {
    margin-top: 4px;
}

.area-ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 9px 20px 10px;
    border-radius: 999px;
    background: #84b501;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-decoration: none;
}



.area-ticket-button:hover {
    color: #fff;
    opacity: 0.85;
}

.area-ticket-button--water {
    background: #005cb8;
}

/* 各エリア内のチケット案内は、配置先のコンテンツ幅いっぱいに広げる */
.kibi-event1-text-container .area-ticket-guide,
.kibi-event2-text-container .area-ticket-guide,
.waterpark-note .area-ticket-guide,
.area-ticket-guide {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* 各エリア内のチケット案内を、白いコンテンツ内いっぱいに広げる */
.venue-info-content > .event-caption {
    width: 100%;
    box-sizing: border-box;
    justify-self: stretch;
}

.event-caption .area-ticket-guide,
.venue-info-content > .area-ticket-guide {
    width: 100%;
    max-width: none;
    max-inline-size: none;
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
}


.area-ticket-guide--mushi + .beetle-list-container {
    margin-top: 24px;
}

/* okaebi */
.okaebi-product {
    width: 100%;/* 親要素の幅いっぱいに広がる */
    display: grid;/* グリッドレイアウトにする */
    grid-template-columns: repeat(4, 1fr);/* 4列に分ける。各列は均等（1fr） */
    place-items: center;/* 各アイテムを中央に配置（上下左右） */
    /*gap: 2%;*/
	gap: 16px;;
    padding-bottom: 5%;/* 下に5%の余白 */
}
.imageseventsokaebi-product-0-icon {
    width: 100%;
}
.okaebi-event-after-title {
    height: 75px;
}
.okaebi-event-after-photo {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.okaebi-event-after-photo > div {
    position: relative;
}
.okaebi-event-after-photo > div > img:nth-of-type(1),
.okaebi-event-after-info img {
    border-radius: 16px;
}
.okaebi-event-after-photo > div > img:nth-of-type(2) {
    position: absolute;
    right: 10px;
    top: 10px;
}





/* stamp rally 2026 update */
.stamp-rally-card {
    display: flex;
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    box-sizing: border-box;
    border-radius: 28px;
    border: 1px solid #c9e00b;
    background: #fefff3;
}

.stamp-rally-card__inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    width: 100%;
}

.stamp-rally-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    min-width: 0;
}

.stamp-rally-card__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.stamp-rally-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.stamp-rally-card__seal {
    display: block;
    width: 70px;
    height: auto;
    flex: 0 0 auto;
}

.stamp-rally-card__title-text {
    flex: 1 0 0;
    min-width: 0;
    margin: 0;
    color: #84b501;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.stamp-rally-card__title-kicker,
.stamp-rally-card__title-main {
    display: block;
}

.stamp-rally-card__title-kicker {
    font-size: 20px;
}

.stamp-rally-card__title-main {
    font-size: 32px;
}

.stamp-rally-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.stamp-rally-card__free {
    flex: 0 0 auto;
}

.stamp-rally-card__date {
    flex: 1 0 0;
    margin: 0;
    color: #777;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.36px;
}

.stamp-rally-card__description {
    align-self: stretch;
    margin: 0;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.32px;
}

.stamp-rally-card__coming {
    display: flex;
    width: 100%;
    max-width: 407px;
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: center;
    box-sizing: border-box;
}

.stamp-rally-card__coming-label {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    color: #847169;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.stamp-rally-card__coming-label::before,
.stamp-rally-card__coming-label::after {
    content: "";
    display: block;
    width: 4px;
    height: 28px;
    border-radius: 999px;
    background: #ffb300;
}

.stamp-rally-card__coming-label::before {
    transform: rotate(-32deg);
}

.stamp-rally-card__coming-label::after {
    transform: rotate(32deg);
}

.stamp-rally-card__coming-button {
    display: inline-flex;
    box-sizing: border-box;
    padding: 9px 20px 10px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 999px;
    background: #ccc;
}

.stamp-rally-card__coming-button-text {
    width: auto;
    max-width: 100%;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
}

.stamp-rally-card__visual-wrap {
    display: flex;
    width: 400px;
    height: 400px;
    margin: 0;
    justify-content: flex-end;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    background: #036eb7;
    overflow: hidden;
    flex: 0 0 400px;
}

.stamp-rally-card__visual-img {
    display: block;
    width: 100%;
    height: auto;
}


/* タブレット縦：スタンプラリーカードを縦積みにして読みやすくする */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .stamp-rally-card__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .stamp-rally-card__visual-wrap {
        order: 1;
        width: 100%;
        max-width: 620px;
        height: auto;
        aspect-ratio: 1 / 1;
        flex: none;
        margin: 0 auto;
        justify-content: center;
    }

    .stamp-rally-card__body {
        order: 2;
        width: 100%;
        flex: none;
    }

    .stamp-rally-card__meta {
        align-items: flex-start;
    }

    .stamp-rally-card__description {
        max-width: 100%;
    }
}

/* ticket */
.ticket {
    background-color: #f2f1df;
}


.ticket-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f2f1df;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 32px 0 40px 0;
}
.imagesbackgroundbee-icon {
    position: absolute;
    bottom: 42%;
    left: 53%;
    z-index: 3;
}
.imagesbackgroundtree009-icon {
    position: absolute;
    bottom: 10%;
    left: 75.6%;
    z-index: 2;
}
.ticket-info-container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    /*grid-template-columns: 5fr 3fr;*/
    justify-content: center;
    justify-items: center;
    gap: 3%;
    padding-top: 32px;
}
.ticket-square {
    width: 90%;
    border-radius: 32px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    gap: 16px;
    font-size: 20px;
}
.ticket-square-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 16px;
}
.ticket-square-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.ticket-circle {
    width: 405px;
    height: 405px;
    border-radius: 100%;
    background-color: #fff;
    border: 7px solid #c9e00b;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 46px 40px;
    gap: 16px;
    font-size: 16px;
}
.ticket-price-container {
    width: 100%;
    display: flex;
    gap: 20px;
}
.ticket-price {
    border-radius: 8px;
    border: 1px solid #777;
    padding: 8px 16px 10px;
    width: fit-content;
}
.ticket-photo {
    width: 85%;
    margin: 0 auto;
}

/* event list */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
	/* ↓横幅いっぱいにする↓ */
    width: 100%;
    margin: 0 auto;
}
.event-list-grid {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 16px;
	padding: 16px 0;
}
.event-list-img {
    width: 160px;
    height: 160px; 
    margin: 0 auto;
}
.event-list-contents {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}
.event-list-contents a {
    display: block;
}
/* 全体リンク用 */
.event-list-link {
    display: block;
    color: inherit; /* 文字色は元のまま */
    text-decoration: none;
}

/* PCのみホバー時に背景色 */
@media screen and (min-width: 1025px) {
    .event-list-link:hover .event-list-grid {
        background-color: rgba(0, 0, 0, 0.05); /* ほんのりグレー */
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
	
}
/* ホバー時もリンク文字色を変えない */
    .event-list-link:hover,
    .event-list-link:hover a,
    .event-list-link:hover span {
    color: inherit;
    }
.event-fee-button {
    display: flex;
    padding: 3px 16px 5px 16px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 8px;
    border-radius: 16px;
    background: var(--background-accent, #FF0);
}
.event-reserve-button {
    display: flex;
    padding: 4px 16px 5px 16px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 16px;
    background: var(--logo-orange, #FFB300);
    vertical-align: middle;
}
.event-free-button {
    display: flex;
    padding: 4px 16px 5px 16px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 16px;
    background: var(--text-description, #777);
    vertical-align: middle;
}

/* access */
.access {
    background-color: #c9e00b;
}
.access-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #c9e00b;
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 16px;
}
.access-info-container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    justify-items: flex-start;
    gap: 3%;
    padding-bottom: 16px;
    padding-top: 32px;
}
.access-map {
    width: 100%;
}
.access-map-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}
.around-banner {
    width: 40%;
    display: grid;
    gap: 3%;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    gap: 40px;
}
.banner-wrapper {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    cursor: pointer;
}
.banner-wrapper img {
    width: 100%;
}
.floate-image {
    position: relative;
    width: 100%;
    height: 1px;
}

.imagetree010 {
    position: absolute;
    transform-origin: top left;
    transform: scale(0.4);
    width: 60%;
    max-width: 80%;
    top: -10px;
    left: -25px;
    z-index: 1;
}
/* アクセス・駐車場内に置く木の位置調整　2026/06/07追加 */
.access-tree {
    position: relative;
    width: 230%;
    height: 120px;
    margin-top: 24px;
}
/* アクセス・駐車場内に置く木の位置調整　2026/06/07追加 */
.access-tree .imagetree010 {
    top: 20px;
    left: 360px;
    transform: scale(0.28);
}
/* foods */
.foods {
    background-color: #ffffff;
}
.foods-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 32px;
}
.foods-shops-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 230px));
    align-items: start;
    place-content: center;
    gap: 66px;
    padding-top: 40px;
}
.title-caption {
    width: 90%;
}
.title-caption div {
    margin-inline: auto;
    max-inline-size: max-content;
}
.foods-shops-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* caution */
.caution {
    background-color: #c9e00b;
}
.caution-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #c9e00b;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 32px;
}
.cautions {
    width: 75%;
    background-color: #fff;
    border-radius: 16px;
    padding: 2% 7%;
    margin-bottom: 30px;
    align-items: center;
}
.cautions p {
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0.3em;
    text-indent: -1em;
    padding-left: 1em;
}

.caution-important {
    color: #e60012;
    font-weight: 700;
}

/* 2026-06-19追加：お願いエリア内の小見出し余白調整 */
.cautions section {
    margin-top: 24px;
}

.cautions section:first-child {
    margin-top: 0;
}

.cautions h3 {
    text-align: left;
    margin: 0 0 12px;
}
/* 2026-06-19追加：お願いエリアのアコーディオン見出し下余白 */
.cautions details[open] summary {
    margin-bottom: 28px;
}

/* accordion */
details {
    width: 100%;
}
details summary {
    cursor: pointer;
    transition: margin 300ms ease-out;
    display: block;
    position: relative;
}
details[open] summary {
    margin-bottom: 15px;
}
details[open] summary::before {
    transform: translateY(-0.05em);
}
details summary:after {
    position: absolute;
    content: "";
    height: 3px;
    width: 30px;
    background-color: #84b501;
    right: 0.2em;
    top: 50%;
    transform: translateY(-50%);
}
details summary:before {
    position: absolute;
    content: "";
    height: 3px;
    width: 30px;
    background-color: #84b501;
    right: 0.2em;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.4s;
}

/* cosponsor */
.cosponsor {
    background-color: #f2f1df;
}
.cosponsor-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f2f1df;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}
.cosponsor-content {
    margin: 32px 0 40px 0;
    width: 90%;
}

.cosponsor-content a {
    color: #000000;
    text-decoration: underline;
}
.cosponsor-content a:hover {
    color: #888888;
}

/* contact */
.contact {
    background-color: #c9e00b;
}
.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #c9e00b;
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 16px;
    padding-top: 24px;
}
.mail {
    color: inherit;
    text-decoration: none;
}
.insta-icon {
    width: 70px;
    position: relative;
    height: 70px;
    object-fit: contain;
}

/* footer */
.footer {
    padding-top: 40px;
    height: 164px;
    position: relative;
    background-color: #c9e00b;
}
.footerimage1 {
    position: absolute;
    bottom: 23.4%;
    left: 17.5%;
}
.footerimage2 {
    position: absolute;
    bottom: 35.4%;
    left: 69.8%;
}
.footerimage3 {
    height: 164px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.footer-privacy {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* separator */
.separator-news {
    padding-bottom: 6%;
    position: relative;
    background-color: #c8e00b;
}
.separator-news-icon {
    position: absolute;
    width: 100%;
    bottom: -1px;
}
.separator-venue {
    padding-top: 8px;
    height: 198px;
    position: relative;
    background-color: #d1f1f6;
}
.separator-venue-icon {
    height: 198px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.separator-ticket {
    padding-bottom: 12%;
    position: relative;
    background-color: #c8e00b;
}
.separator-ticket-icon {
    position: absolute;
    width: 100%;
    bottom: -1px;
}
.separator-access {
    padding-top: 6%;
    position: relative;
    background-color: #c8e00b;
}
.separator-access-icon {
    position: absolute;
    width: 100%;
    top: -1px;
}
.separator-foods {
    padding-top: 72px;
    position: relative;
    background-color: #c8e00b;
}
.separator-foods-icon {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.separator-caution {
    padding-top: 100px;
    position: relative;
    background-color: #fff;
    height: 76px;
}
.imagesbackgroundgrasshopper-icon {
    position: absolute;
    bottom: -50px;
    left: 23.4%;
    z-index: 1;
}
.imagesbackgroundtree009-icon1 {
    position: absolute;
    bottom: 0;
    left: 78%;
    z-index: 2;
}
.separator-caution-icon {
    position: absolute;
    background-color: #c8e00b;
    width: 100%;
    bottom: 0;
}
.separator-cosponsor {
    padding-top: 5%;
    position: relative;
    background-color: #c8e00b;
}
.separator-cosponsor-icon {
    position: absolute;
    width: 100%;
    bottom: -1px;
}
.separator-contact {
    padding-bottom: 5%;
    position: relative;
    background-color: #f2f1df;
}
.separator-contact-icon {
    position: absolute;
    background-color: #c8e00b;
    width: 100%;
    bottom: 0;
}

/* common */
/* button */
.venue-button {
    border-radius: 20px;
    background: var(--background-white, #fff);
    display: flex;
    padding: 2px 12px 3px 12px;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.venue-button a,
.venue-button a:hover {
	color: #84b501;
}
.price-button {
    border-radius: 16px;
    background-color: #ffff00;
    display: flex;
    padding: 3px 16px 5px 16px;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.booking-button {
    border-radius: 8px;
    background: var(--button-purple, linear-gradient(135deg, #bb4eaf 17.61%, #8036a0 81.82%));
    display: flex;
    padding: 10px 16px 13px 20px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}
.profile-button {
    border-radius: 8px;
    border: 1px solid var(--text-link, #ae21ba);
    background: var(--background-white, #fff);
    display: flex;
    padding: 8px 16px 9px 18px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}
.shop-button {
    border-radius: 16px;
    background: var(--background-secondary, #84b501);
    display: flex;
    padding: 3px 16px 4px 16px;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.button-barrierfree {
    border-radius: 20px;
    background: var(--background-placeholder, #ccc);
    display: flex;
    padding: 2px 12px 4px 12px;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.button-menu {
    border-radius: 40px;
    background: #fff;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 16px 32px 16px 48px;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: fit-content;
}

/* segmentation */
.segmentation-line {
    margin: 10px 0;
    height: 5px;
    width: 100%;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-position-x: 10%;
}
.segmentation-gray {
    background-image: linear-gradient(to right, #ccc 2px, transparent 1px);
    background-size: 5px 1px;
}
.segmentation-gray-solid {
    background-image: linear-gradient(to right, #ccc 1px, transparent 1px);
    background-size: 1px 1px;
}
.segmentation-green {
    background-image: linear-gradient(to right, #c9e00b 5px, transparent 6px);
    background-size: 10px 2px;
}
.segmentation-white {
    background-image: linear-gradient(to right, #c9e00b 5px, transparent 6px);
    background-size: 10px 2px;
}
.bottom-line-green {
    width: fit-content;
    background-image: linear-gradient(to right, #c9e00b 3px, transparent 3px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-position-x: 10%;
    padding-bottom: 10px;
}
.bottom-line-white {
    width: fit-content;
    background-image: linear-gradient(to right, #fff 3px, transparent 3px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-position-x: 10%;
    padding-bottom: 8px;
}

/* position */
.center {
    margin: 0 auto;
}
.left {
    margin-right: auto;
}
.right {
    margin-left: auto;
}
.center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sponsor-center-text {
    text-align: center;
}
/* readmore */
.readmore {
    position: relative;
    box-sizing: border-box;
    padding-bottom: 10px;
}
.readmore-content {
    position: relative;
    overflow: hidden;
    height: 150px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 70px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}
.profile-button:before {
    font-family: Noto Sans JP, FontAwesome;
    content: "\f078  プロフィールをもっと見る";
}
.readmore-check {
    display: none;
}
.readmore-check:checked ~ .profile-button {
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}
.readmore-check:checked ~ .profile-button:before {
    font-family: Noto Sans JP, FontAwesome;
    content: "\f077  閉じる";
}
.readmore-check:checked ~ .readmore-content {
    height: auto;
}
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/* fonts */
.font-body-ll {
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 30.8px */
    letter-spacing: 0.4px;
}
.font-body-l {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.32px;
}
.font-body-m {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.28px;
}
.font-label-s {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.28px;
}
.font-label-ss {
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
}
.font-label-m {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
}
.font-label-r {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}
.font-label-l {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
}
.font-label-ll {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.font-label-xl {
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 44.8px */
}
.font-label-ml {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 33.6px */
}
.font-button-m {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
}
.font-button-s {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.font-headline-xl {
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    /*font-weight: 700;*/
    line-height: 140%; /* 67.2px */
    letter-spacing: 0.01em;
}
.font-headline-l {
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.01em;
}
.font-headline-s {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
}
.font-headline-xs {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 28px */
}
.font-headline-m {
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: var(--text-highlight, #fff);
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 44.8px */
}
.font-caption-l {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.28px;
}
.font-list-m {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.32px;
}
.font-emphasis-1 {
    font-family: "RocknRoll One";
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 40.6px */
}
.font-gray {
    color: #777;
    font-feature-settings: "pwid" on;
}
.font-silver {
    color: #ccc;
    font-feature-settings: "pwid" on;
}
.font-green {
    color: #84b501;
    font-feature-settings: "pwid" on;
}
.font-blue {
    color: #005cb8;
    font-feature-settings: "pwid" on;
}
.font-purple {
    color: #ae21ba;
    font-feature-settings: "pwid" on;
}
.font-white {
    color: #fff;
    font-feature-settings: "pwid" on;
}
.font-underline {
    text-decoration-line: underline;
}
.dot-text {
    position: relative;
}
.dot-text::before {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    padding-top: 10px;
    background: -webkit-radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
    background: radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
    background: -moz-radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
}
.dot-text2 {
    position: relative;
}
.dot-text2::before {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    padding-top: 10px;
    background: -webkit-radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
    background: radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
    background: -moz-radial-gradient(circle 7px, #ffb300 50%, transparent 50%);
}
.indentation {
    text-align: left;
    margin-block-start: 0;
    margin-block-end: 0.3em;
    text-indent: -1em;
    padding-left: 1em;
}
.div-inline {
    display: inline;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.font-round-bold{
	font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.lead-kirakira {
    position: relative;
    display: inline-block;
}

.lead-kirakira::before,
.lead-kirakira::after {
    content: "";
    position: absolute;
    top: 0.16em;
    width: 38px;
    height: 34px;
    background-repeat: no-repeat;
    background-image:
        linear-gradient(#c9e00b, #c9e00b),
        linear-gradient(#c9e00b, #c9e00b);
    background-size:
        4px 27px,
        4px 18px;
}

/* 左の2本 */
.lead-kirakira::before {
    left: -44px;
    background-position:
        8px 0,
        25px 8px;
    transform: rotate(-18deg);
}

/* 右の2本 */
.lead-kirakira::after {
    right: -44px;
    background-position:
        26px 0,
        9px 8px;
    transform: rotate(18deg);
}

/* ムシバッカ王国 開催情報 */
.mushi-schedule {
    width: 100%;
    max-width: 760px;
    margin: 8px auto 30px;
    padding: 14px 22px;
    box-sizing: border-box;
    border: none;
    border-radius: 16px;
    background: #f7f8ef;
    color: #777;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-align: left;
}

.mushi-schedule p {
    margin: 0;
}

.mushi-schedule p + p {
    margin-top: 4px;
}

.mushi-schedule span {
    display: inline-block;
    min-width: 4.8em;
    margin-right: 0.6em;
    color: #84b501;
}

/* キッズウォーターパーク 開催情報 */
.water-schedule {
    width: 100%;
    max-width: 760px;
    margin: 8px auto 30px;
    padding: 14px 22px;
    box-sizing: border-box;
    border: none;
    border-radius: 16px;
    background: #eef7ff;
    color: #777;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-align: left;
}

.water-schedule p {
    margin: 0;
}

.water-schedule p + p {
    margin-top: 4px;
}

.water-schedule span {
    display: inline-block;
    min-width: 4.8em;
    margin-right: 0.6em;
    color: #005cb8;
}

/* ふれあいエリア 写真ブロック */
.beetles-images {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    margin: 8px auto 0;
}

.event-caption--fureai {
    padding-bottom: 8px;
}

.event-caption--fureai + .beetles-images {
    margin-top: 0;
}

.mushi-photo-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.mushi-photo-unit {
    position: relative;
    height: 300px;
    flex: 1 0 0;
    min-width: 0;
    overflow: visible;
}

.mushi-photo-card {
    width: calc(100% - 30px);
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f1df;
}

.mushi-photo-unit--left .mushi-photo-card {
    margin-left: auto;
}

.mushi-photo-unit--right .mushi-photo-card {
    margin-right: auto;
}

.mushi-photo-card picture,
.mushi-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
}

.mushi-photo-card img {
    object-fit: cover;
}

.mushi-photo-accent {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.mushi-photo-accent--surprised {
    width: 132.681px;
    height: auto;
    left: -8px;
    bottom: 4px;
    transform: rotate(15.772deg);
}

.mushi-photo-accent--callout {
    width: 187px;
    height: auto;
    top: -18px;
    right: -22px;
}

/* cookie banner */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 143px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    place-content: center;
}
#cookie-banner .cookie-banner-container {
    display: flex;
    padding: 24px 80px;
    justify-content: center;
    gap: 40px;
}
#cookie-banner button {
    color: #fff;
    padding: 10px 18px 12px 20px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #000;
    white-space: nowrap;
    cursor: pointer;
    margin: auto;
}
#cookie-banner button:hover {
    background-color: #777;
}
#cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}
#cookie-banner a:hover {
    text-decoration: none;
}

/* ////////////////////////////////////for smart phone //////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .beetles-images {
        width: 100%;
        max-width: 326px;
        margin: 8px auto 0;
    }

    .mushi-photo-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .mushi-photo-unit {
        width: 100%;
        height: 300px;
        flex: none;
        align-self: stretch;
    }

    .mushi-photo-accent--surprised {
        width: 132.681px;
        height: auto;
        left: -8px;
        bottom: 4px;
        transform: rotate(15.772deg);
    }

    .mushi-photo-accent--callout {
        width: 163px;
        height: auto;
        top: -14px;
        right: -18px;
    }

    .menu-btn {
        height: 64px;
        width: 64px;
    }
	/* 2026-06-08追加 */
    .menu-content {
        width: 100%;
        height: 94vh;
        padding: 24px 32px 120px 32px;
        border-radius: 40px 0px 0px 0px;
        font-size: 20px;
        box-sizing: border-box;
        overflow-y: auto;
    }
	/*以前のをいったん消す*/
	/*.menu-content {
        width: 100%;
        height: 94vh;
        padding: 24px 32px 32px 32px;
        border-radius: 40px 0px 0px 0px;
        font-size: 20px;
    }*/
	
    #menu-btn-check:checked ~ .menu-content {
        left: 0;
    }
	
		
	/* 2026-06-08追加 */
    .menu-info-container {
        width: 100%;
        box-sizing: border-box;
    }
	/*以前のをいったん消す*/
	/*.menu-info-container {
    width: 326px;
    }*/
	
	
	/*スマホ版でメインビジュアルの高さが高くなった場合に見える下地の色*/
	.container{
		background-color: #c9e00b;
	}
	/*スマホ版メインビジュアルの高さ(その年のビジュアルの高さにあわせる)	*/
    .mainvisual-container {
		height: 700px;
    }
    .mainvisual-img img {
    width: 100%;/*2026/05/28追加*/
    max-width: 390px;
    height: auto;/*2026/05/28追加*/
    }
	
    .mainvisual {
		height: 700px;/*スマホ版メインビジュアルの高さ（その年のビジュアルの高さにあわせる）*/
        background: url("../images/mainvisual/mainvisual-background-sp.webp") repeat-x;
    }
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-container {
        margin: 0 16px;
    }
    .venue-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .venue-info-content {
        padding-top: 100px;
    }
	#waterpark .venue-info-content {
    padding-top: 86px;
}
	#mushibacca-kingdom .venue-info-content,
#stamp-rally .venue-info-content {
    padding-top: 86px;
}
    .kibi-event0-detail {
        width: 100%;
        overflow-x: scroll;
    }
    .imageseventshorihori-icon {
        width: 784px;
    }
    .kibi-event1-detail,
    .kibi-event2-detail {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .event-title div:nth-child(1) {
        font-size: 32px;
        letter-spacing: 0.64px;
    }
    .about-venue-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 0;
    }

    /* スマホ版：道の駅笠岡ベイファーム紹介の上余白調整 */
    #stamp-rally .about-venue-container {
        margin-top: 28px;
    }

    .about-venue-title {
        flex-direction: column;
    }
    .artist-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
.waterpark-banner {
    margin: 16px auto 8px auto;
}

.waterpark-banner-img {
    border-radius: 16px;
}

/* スマホ版：チケット案内リンクとウォーターパーク注意文の読みやすさ調整 */
.area-ticket-guide p.area-ticket-guide-link {
    font-size: 16px;
}

.waterpark-note p {
    font-size: 16px;
    line-height: 1.65;
}

    /* スマホ版：ムシバッカ王国のサブコピー */
    .mushi-sp-lead {
        padding-bottom: 10px;
    }

    .mushi-sp-lead .font-body-ll {
        font-size: 22px;
        line-height: 1.6;
        text-align: left;
    }

/* スマホ版：ウォーターパークのサブコピーを表示 */
    #waterpark .event-title.pc {
        display: block;
        order: 1;
        padding-bottom: 4px;
    }

    #waterpark .event-title .font-headline-xl {
        display: none;
    }

    #waterpark .event-title .font-body-ll {
        display: block;
    }

    /* スマホ版：ウォーターパークはサブコピー、開催情報、紹介文の順に表示 */
    #waterpark .event-title {
        order: 1;
    }

#waterpark .water-schedule {
    order: 2;
    margin: 0 auto 12px;
}

#waterpark .event-caption {
    order: 3;
    margin-top: 0;
    padding-bottom: 10px;
}

    #waterpark .waterpark-banner {
        order: 4;
    }

    #waterpark .waterpark-note {
        order: 5;
    }

    #waterpark .area-ticket-guide--water {
        order: 6;
    }

    #waterpark .waterpark-rules-box {
        order: 7;
    }


/* スマホ版：ウォーターパーク注意事項下のお願いボックス */
.notice-link-box {
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
}

.waterpark-rules-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.waterpark-rules-list {
    gap: 8px;
}

.waterpark-rules-list p {
    font-size: 14px;
    line-height: 1.65;
}
	
	.waterpark-rules-more {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
}
	
    .ticket-info-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 8px;
    }
    .ticket-square-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .access-info-container {
        grid-template-columns: 1fr;
        gap: 28px;
    padding-top: 8px;/*2026/06/15追加*/
    }
    .around-banner {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 80%;
    }
    .foods-shops-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        gap: 25px;
        padding: 10px 0 5px;
        margin-bottom: 30px;
        overflow-x: scroll;
        place-content: start;
        width: 95%;
    }
    .beetle-list-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding-bottom: 20px;
        margin-bottom: 30px;
        place-content: start;
        overflow-x: scroll;
    }
    .modal > .beetle-info,
    .modal > .okaebi-event-after-info,
    .foods-shops-box {
        padding: 16px;
        border-radius: 16px;
        border: 4px solid var(--bacca-color-silver, #ccc);
        background: var(--background-white, #fff);
        align-self: stretch;
        gap: 8px;
    }
    .beetle-list-container > .beetle-info,
    .okaebi-event-after-container > .okaebi-event-after-info {
        position: relative;
    }
    .hand-pointer {
        position: absolute;
        right: 10px;
        bottom: 10px;
        font-size: 40px;
    }
    .beetle-info,
    .okaebi-event-after-info {
        width: 230px;
    }
    .foods-shops-box {
        width: 150px;
    }
    .ticket-price-container {
        flex-direction: column;
    }
    .ticket-circle {
        border-radius: 32px;
        width: 100%;
        height: auto;
        padding: 32px;
    }
    .ticket-square {
        width: 100%;
    }
	
	/*2026-06-08追加チケット情報エリア*/
	.ticket-lead-sp {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-align: left;
	}
	
	/*2026-06-08追加チケット情報エリアここまで*/
	

    .area-ticket-guide {
        padding: 14px 16px;
        margin-top: 12px;
    }

    .area-ticket-guide p {
        font-size: 16px;
    }

    .area-ticket-button {
        width: 100%;
        box-sizing: border-box;
    }

    .event-list-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .bottom-line-white,
    .bottom-line-green {
        /* width: 90%; */
        padding-bottom: 14px;
    }
    .crown-title {
        justify-content: space-between;
        padding: 0 16px;
    }

    .venue-button {
        padding: 3px 16px 5px 16px;
    }
    .profile-button {
        font-size: 18px;
        padding: 15px 16px 16px 14px;
    }
    .booking-button {
        padding: 15px 18px 16px 18px;
        font-size: 18px;
    }

    .separator-news {
        padding-bottom: 12%;
    }
    .venue-event img {
        width: 100%;
    }
	/*
    .venue-event:nth-child(1) {
        padding: 0 5px 23px;
    }
	*/

    .venue-caption {
        margin: 8px 0 0 0;
    }

    .mushi-schedule {
        max-width: 326px;
        margin: 0 auto 24px;
        padding: 12px 14px;
        font-size: 17px;
        line-height: 1.55;
    }

    .mushi-schedule span {
        display: block;
        min-width: 0;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .water-schedule {
        max-width: 326px;
        margin: 0 auto 24px;
        padding: 12px 14px;
        font-size: 17px;
        line-height: 1.55;
    }

    .water-schedule span {
        display: block;
        min-width: 0;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .imageseventspillbug-icon {
        width: 100%;
    }

    .kibi-event1-detail {
        padding: 24px 0 32px 0;
    }
    .imageseventsp-ikeda-002-icon,
    .about-venue-photo,
    .artist-main-photo {
        width: 100%;
    }
    .artist-container {
        padding: 0;
    }
    .artist-info {
        margin-top: 24px;
    }
    .cosponsor-container {
        padding: 16px 16px 0 16px;
    }
    .cautions {
        padding: 16px;
    }
    .foods-shops-box div p {
        padding-bottom: 8px;
    }
    .about-venue-link a {
        padding-bottom: 8px;
    }
    .okaebi-product {
        /*overflow-x: scroll;*/
		display: flex; /* 2025/07/23追記 */
    	overflow-x: auto;/* 2025/07/23追記 */
    	gap: 16px;/* 2025/07/23追記 */
    	scroll-snap-type: x mandatory;/* 2025/07/23追記 */
    	-webkit-overflow-scrolling: touch;/* 2025/07/23追記 */
    }
    .imageseventsokaebi-product-0-icon {
        /*min-width: 230px;*/
		flex-shrink: 0;/* 2025/07/23追記 */
    	min-width: 230px;/* 2025/07/23追記 */
    	width: auto;/* 2025/07/23追記 */
    	height: auto;/* 2025/07/23追記 */
    	scroll-snap-align: start;/* 2025/07/23追記 */
    }
	.kibi-event2-after-photo {
        overflow-x: scroll;
    }
    .kibi-event2025-after-photo {
		display: grid;
    	grid-auto-flow: column;         /* 子要素を横方向に流す */
    	grid-auto-columns: 80%;         /* 1枚あたりの幅（見切れを作りたいなら 85%→70% に調整） */
    	overflow-x: auto;               /* 横スクロール */
    	gap: 16px;
    	padding-bottom: 8px;
    	scroll-snap-type: x mandatory;  /* スナップ（任意） */
    	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
    	touch-action: pan-x;
    }
    .okaebi-event-after-photo {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
        align-self: stretch;
        overflow-x: scroll;
    }
    .kibi-event2-after-photo > img,
	.kibi-event2025-after-photo > img,
    .okaebi-event-after-photo > div {
        min-width: 230px;
    }
	/* スクロールバー非表示（必要なら） */
  	.kibi-event2025-after-photo::-webkit-scrollbar
	{ display: none;
	}
  	.kibi-event2025-after-photo {
		scrollbar-width: none;
	}
    .kibi-event2025-after-photo > img {
    	width: 100%;                    /* 各“列”にフィット */
    	height: auto;
    	scroll-snap-align: start;       /* スナップ位置（任意） */
    	flex: 0 0 auto;                 /* 念のため */
    }
	
	
	/* 2026-06-08追加 */
	.footer {
        height: 190px;
    }

    .footer-privacy {
        width: 90%;
        white-space: normal;
        text-align: center;
        line-height: 1.8;
        bottom: 24px;
        font-size: 14px;
    }
	
	
	
	
    /*fonts*/
	
    .font-headline-xl {
	    font-size: 36px;
        font-weight: 700;
    }
    .font-headline-l {
    font-size: 28px;
    font-weight: 700;
    }
    .font-label-m {
        font-size: 24px;
        font-weight: 800;
    }
    .font-headline-s {
        font-size: 22px;
    }

    #cookie-banner {
        height: fit-content;
        place-content: center;
    }
    #cookie-banner .cookie-banner-container {
        display: flex;
        flex-direction: column;
        padding: 24px 16px 32px 16px;
        align-items: end;
        gap: 24px;
    }
    .separator-foods {
        padding-top: 56px;
    }
    .news-content {
        padding: 0px 16px;
    }




    /* stamp rally 2026 update */
    .stamp-rally-card {
        padding: 18px;
        border-radius: 28px;
    }

    .stamp-rally-card__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .stamp-rally-card__visual-wrap {
        order: 1;
        width: 100%;
        max-width: 290px;
        height: auto;
        aspect-ratio: 1 / 1;
        justify-content: center;
        align-items: center;
        flex: none;
        margin: 0 auto;
    }

    .stamp-rally-card__body {
        order: 2;
        width: 100%;
        flex: none;
        gap: 0;
        align-self: stretch;
    }

    .stamp-rally-card__title {
        align-items: flex-start;
    }

    .stamp-rally-card__seal {
        width: 60px;
    }

    .stamp-rally-card__title-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
    }

    .stamp-rally-card__title-kicker {
        width: auto;
        font-size: 18px;
        line-height: 1.1;
    }

    .stamp-rally-card__title-main {
        width: auto;
        font-size: 22px;
        line-height: 1.1;
    }

    .stamp-rally-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

    .stamp-rally-card__date {
        flex: none;
        align-self: stretch;
    }

    .stamp-rally-card__coming {
        max-width: none;
        align-self: stretch;
    }

    .stamp-rally-card__coming-button {
        align-self: stretch;
        padding: 9px 20px 10px;
    }

    .stamp-rally-card__coming-button-text {
        width: auto;
        font-size: 16px;
    }
    /* popup */
    .beetle-details-container,
    .okaebi-event-after-container {
        position: relative;
    }

    .overlay {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #000000aa;
        opacity: 0.6;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }
    .modal {
        display: none;
        z-index: 1000;
        width: 270px;
        height: fit-content;
        position: absolute;
        top: -340px;
        left: 50%;
        transform: translateX(-50%);
    }
    .modal-close__wrap {
        position: absolute;
        right: 5px;
        top: 5px;
    }
    .modal-close {
        background: transparent;
        border-color: transparent;
        padding: 0;
        margin: 0;
        cursor: pointer;
        width: 28px;
        display: block;
        height: 28px;
    }
    .modal-close span {
        position: relative;
        width: 100%;
        height: 1px;
        background: black;
        display: block;
    }
    .modal-close span:nth-child(1) {
        transform: rotate(45deg);
    }
    .modal-close span:nth-child(2) {
        transform: rotate(-45deg);
    }
    .overlay.open {
        display: block;
    }
    .modal.open {
        display: block;
        animation: appear 0.3s ease;
    }
    @keyframes appear {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
	
}
/* for pc */
@media screen and (min-width: 768px) {
    .menu-btn {
        right: 32px;
    }
    .featured-event-info {
        height: 100%;
    }
    .venue-event img:hover {
        transform: scale(1.1, 1.1);
        transition-duration: 0.3s;
    }
/*
.venue-content .venue-event:nth-child(3) img:hover {
    transform: scale(1.05, 1.05);
    transition-duration: 0.3s;
}
*/
    .booking-button:hover {
        background: var(--button-hover, linear-gradient(135deg, #d695cf 17.61%, #b386c6 81.82%));
    }
	/* PC版：ニュース本文が横に広がりすぎないように調整　2026/05/29 */
.news-frame,
.news-content {
    width: 760px;
    max-width: 82%;
}
	/* PC版：周辺情報エリアだけ下余白を少し詰める */
	#stamp-rally {
        padding-bottom: 0;
    }
}


/* ticket 2026 update: image-asset version
   2026-06-18 料金セクション差し替え用。Font Awesomeは使わず、images/ticket配下の書き出し素材を使用。 */
.ticket-info-container {
    width: 90%;
    display: block;
    padding-top: 32px;
}

.ticket-square {
    width: 100%;
    padding: 40px 32px 32px;
    gap: 0;
    align-items: stretch;
    box-sizing: border-box;
}

/* 料金セクション：白い料金ボックスだけを前面に出して装飾かぶりを防ぐ */
.ticket-square {
    position: relative;
    z-index: 2;
}


.ticket-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 64px;
}

.ticket-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    border: 1px solid #f8c73b;
    border-radius: 16px;
    background: #fdf3c1;
    box-sizing: border-box;
}

.ticket-notice-icon {
    width: 53px;
    height: auto;
    flex: 0 0 auto;
}

.ticket-notice p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.ticket-notice-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-notice p.ticket-notice-weather {
    color: #e60012;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.ticket-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 326px;
    column-gap: 56px;
    align-items: start;
}

.ticket-area--water {
    grid-template-columns: minmax(0, 1fr) 307px;
}

.ticket-area-main {
    min-width: 0;
}

.ticket-area-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #c9e00b;
    color: #327617;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.ticket-area--water .ticket-area-title {
    border-bottom-color: #0074d9;
    color: #005cb8;
}

.ticket-area-title-icon {
    width: 32px;
    height: auto;
    flex: 0 0 auto;
}

.ticket-area-lead {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.ticket-price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 12px;
}

.ticket-fee-card {
    display: flex;
    width: 198px;
    min-height: 150px;
    padding: 12px 32px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    border-radius: 8px;
    border: 1px solid #777;
    background: #fff;
    box-sizing: border-box;
}

.ticket-fee-card-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #000;
    text-align: center;
    font-feature-settings: "pwid" on;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.4;
}

.ticket-person-icon,
.ticket-free-icon {
    display: block;
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    flex: 0 0 32px;
}


.ticket-fee-card-price {
    margin: 0;
    color: #327617;
    text-align: center;
    font-feature-settings: "pwid" on;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.4;
}

.ticket-fee-card-note {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    margin: 0;
    padding: 4px;
    border-radius: 20px;
    background: #f2f1df;
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ticket-free {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 6px;
    color: #327617;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
}



.ticket-note-text {
    margin: 0 0 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.ticket-payment {
    margin: 0 0 16px;
}

.ticket-payment h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.ticket-payment p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.ticket-area-visual {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* PC/SP切り替え用：.ticket-area-visual の display 指定が .pc/.sp を上書きしないようにする */
.ticket-area-visual.sp {
    display: none;
}

.ticket-area-visual-img {
    display: block;
    width: 100%;
    height: auto;
}

.ticket-area-visual-img--mushi {
    max-width: 326px;
}

.ticket-area-visual-img--water {
    max-width: 307px;
}

.ticket-area--water .ticket-fee-card-price,
.ticket-area--water .ticket-free,
.ticket-area--water .ticket-fee-card-label {
    color: #005cb8;
}


@media screen and (max-width: 768px) {
    .ticket-container {
        padding-top: 24px;
    }

    .ticket-info-container {
        width: 90%;
        padding-top: 16px;
    }

    .ticket-square {
        width: 100%;
        padding: 32px 16px 32px;
        border-radius: 24px;
    }

    .ticket-content {
        gap: 40px;
    }

    .ticket-notice {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 16px;
    }

    .ticket-notice-icon {
        /*width: 53px;
        margin: 0 auto;*/
		display: none;
    }

    .ticket-notice p {
        font-size: 16px;
        line-height: 1.55;
    }

    .ticket-notice p.ticket-notice-weather {
        font-size: 14px;
        line-height: 1.65;
    }

    .ticket-area {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

.ticket-area + .ticket-area {
    padding-top: 28px;
    border-top: none;
}

.ticket-area-title {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 26px;
    text-align: left;
    letter-spacing: 0;
}

    .ticket-area-title-icon {
        width: 30px;
        margin-top: 0.28em;
    }

    .ticket-area-visual.pc {
        display: none;
    }

    .ticket-area-visual.sp {
        display: flex;
    }

    .ticket-area-visual--sp {
        margin: 0 auto 20px;
    }

    .ticket-area-visual-img--mushi {
        width: min(100%, 326px);
    }

    .ticket-area-visual-img--water {
        width: min(100%, 307px);
    }

    .ticket-area-lead {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .ticket-price-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .ticket-fee-card {
        width: 100%;
        min-height: 124px;
        padding: 12px 32px;
        align-items: center;
        text-align: center;
    }

.ticket-fee-card-label {
        width: 100%;
        justify-content: center;
    }

    .ticket-fee-card-price {
        width: 100%;
        text-align: center;
        font-size: 34px;
        line-height: 1.35;
    }

    .ticket-free {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .ticket-note-text {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    .ticket-payment h4 {
        font-size: 16px;
    }

    .ticket-payment p {
        font-size: 14px;
    }
}


/* タブレット縦：料金エリアの2カラムを読みやすく調整 */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .ticket-content {
        gap: 56px;
    }

    .ticket-area {
        grid-template-columns: minmax(0, 1fr) 280px;
        column-gap: 32px;
        align-items: start;
    }

    .ticket-area--water {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .ticket-area-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .ticket-price-list {
        gap: 12px;
    }

    .ticket-fee-card {
        width: 180px;
        padding: 12px 24px;
    }

    .ticket-area-visual-img--mushi,
    .ticket-area-visual-img--water {
        max-width: 280px;
    }
}


/* タブレット縦：右上イラストとの重なり回避のため、見出しの文字サイズと文字間だけ調整 */
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    #waterpark .event-title .font-headline-xl,
    #stamp-rally .event-title .font-headline-xl {
        font-size: 48px;
        letter-spacing: -0.03em;
        line-height: 1.25;
    }
}
/* 2026-06-24修正：スマホ版の昆虫ポップアップを後続セクションより前面に出す */
@media screen and (max-width: 768px) {
    #mushibacca-kingdom .venue-info-content {
        z-index: 20;
    }

    #beetle-details-container .overlay {
        z-index: 30;
    }

    #beetle-details-container .modal {
        z-index: 40;
    }
}
