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

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

/* 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;
}
.venue-event {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.venue-event img {
    width: 95%;
    margin: auto;
    display: block;
}
.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;
    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-container {
    width: 100%;
    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 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-self: stretch;
}
.kibi-event2-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;
}

/* okaebi */
.okaebi-product {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 2%;
    padding-bottom: 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;
}

/* 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: 10%;
    left: 59.6%;
    z-index: 1;
}
.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;
}

/* 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;
}
/* 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;
}
/* 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;
}
/* 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: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    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: "Noto Sans JP";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 67.2px */
    letter-spacing: 1.92px;
}
.font-headline-l {
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 50.4px */
}
.font-headline-s {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 33.6px */
}
.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: 2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 2.8rem */
}
.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: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 1.7rem */
    letter-spacing: 0.02rem;
}
.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-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;
}
.pc {
    display: block;
}
.sp {
    display: none;
}

/* 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;
    }
    .menu-btn {
        height: 64px;
        width: 64px;
    }
    .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;
    }
    .menu-info-container {
        width: 326px;
    }
	/*スマホ版でメインビジュアルの高さが高くなった場合に見える下地の色*/
	.container{
		background-color: #c9e00b;
	}
    .mainvisual-container {
		height: 887px;
    }
    .mainvisual-img img {
        max-width: 390px;
    }
    .mainvisual {
		height: 887px;
        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;
    }
    .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: 2rem;
        letter-spacing: 0.04rem;
    }
    .about-venue-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 0;
    }
    .about-venue-title {
        flex-direction: column;
    }
    .artist-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .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: 10px;
    }
    .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: 1rem;
        border-radius: 1rem;
        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: 2rem;
        width: 100%;
        height: auto;
        padding: 32px;
    }
    .ticket-square {
        width: 100%;
    }
    .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;
    }
    .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;
    }
    .imageseventsokaebi-product-0-icon {
        min-width: 230px;
    }
    .kibi-event2-after-photo {
        overflow-x: scroll;
    }
    .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,
    .okaebi-event-after-photo > div {
        min-width: 230px;
    }

    /*fonts*/
    .font-headline-xl {
        font-weight: 700;
    }
    .font-headline-l {
        font-weight: 500;
		font-size: 24px;
        font-weight: 800;
    }
    .font-label-m {
        font-size: 1.5rem;
        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;
    }

    /* 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%));
    }
}
