@charset "UTF-8";
/*
Theme Name: Halloween rally
Version: 1.0
Description: Halloween rallyのページ
Author: Okumura
*/

/*----------------------------------------
	main-visual
----------------------------------------*/
.main-visual {
    width: 100%;
    height: calc(100vh - 60px);
    background-image: url('imgs/haikei_sp.png');
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
}

.main-visual .container {
    max-width: 400px;
    position: absolute;
    top: 45%;
    right: 50%;
    transform: translate(50%, -50%);
}

.main-visual__attention {
    margin-top: 32px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.main-visual__attention-heading {
    padding: 8px 0;
    display: flex;
    gap: 6px;
    background-color: #B60B0B;
    justify-content: center;
    font-weight: var(--fw_bold);
    text-align: center;
}

.main-visual__attention-body {
    color: var(--c_black);
    display: grid;
    text-align: center;
    place-content: center;
    padding: 13px 0;
    line-height: 24px;
    background: #F6B4B4;
}

@media (min-width: 960px) {
    .main-visual {
        margin-top: 60px;
        background-image: url('imgs/haikei.png');
        background-position: center;
    }

    .main-visual .container {
        padding: 0 186px;
    }
}

@media (min-width: 768px) {
    .main-visual {
        background-position: bottom;
    }

    .main-visual .container {
        top: 50%;
        max-width: 975px;
    }

    .main-visual__attention-body {
        padding: 1em 21px 2em;
    }
}

/*----------------------------------------
	slider
----------------------------------------*/
.slider {
    height: fit-content;
    min-height: 100px;
}

.slider__list {
    display: flex;
    width: max-content;
    height: fit-content;
    overflow-x: hidden;
    animation: scroll 30s linear infinite;
}

.slider__item {
    width: calc(100vw / 3);
    aspect-ratio: 16 / 13;
}

.slider__item img {
    height: 100%;
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .slider__item {
        max-width: 200px;
    }
}

@media (min-width: 1440px) {
    .slider__item {
        max-width: 280px;
    }
}


/*----------------------------------------
	call-name
----------------------------------------*/
.call-name {
    background: var(--c_main-2);
    position: relative;
}

.call-name__flg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 350px;
    width: 50vw;
    background: url('imgs/flags.png') center / contain no-repeat;
    aspect-ratio: 5/ 3;
    z-index: 10;
}

.call-name__heading {
    margin-top: 70px;
    transform: rotate(5deg);
    height: 110px;
    width: 100%;
    color: var(--c_black);
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.call-name__bg {
    position: absolute;
    background-color: var(--c_white);
    width: 120vw;
    right: 50%;
    transform: translateX(50%);
    height: 100%;
    z-index: 8;
}

.call-name__title {
    font-size: 20px;
    position: relative;
    z-index: 9;
    margin: 0 auto;
    white-space: nowrap;
}

.call-name__flex {
    width: 100%;
}

.call-name__img-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.call-name__text {
    text-align: center;
    font-weight: var(--fw_semibold);
    line-height: 26px;
}

.deadline-box {
    margin-top: 1em;
    display: flex;
    max-width: 400px;
    width: 100%;
    font-weight: var(--fw_semibold);
}

.deadline-box__label {
    width: 40%;
    background-color: var(--c_black);
    height: 2.5rem;
    display: grid;
    place-content: center;
}

.deadline-box__text {
    width: 60%;
    background-color: var(--c_white);
    color: var(--c_text);
    display: grid;
    place-content: center;
}

.call-name__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.call-name__right a {
    margin-top: 15px;
}

@media (min-width: 960px) {
    .call-name .container {
        position: relative;
    }

    .call-name__flg {
        width: 25vw;
    }


    .call-name__heading {
        position: absolute;
        margin-top: 70px;
        height: 160px;
    }

    .call-name__title {
        font-size: 32px;
        width: fit-content;
    }

    .call-name__heading::before {
        content: "";
        display: block;
        width: 30%;
        height: 1px;
    }

    .call-name__flex {
        position: relative;
        z-index: 2;
        margin-top: 100px;
        display: flex;
        align-items: end;
        width: 100%;
    }

    .call-name__img-box {
        max-width: 40%;
    }

    .call-name__right {
        align-items: start;
    }

    .deadline-box {
        max-width: 321px;
        margin-top: 21px;
    }

    .call-name__text {
        text-align: left;
    }

    .call-name__right a {
        margin-top: 21px;
    }
}

/*----------------------------------------
	concept
----------------------------------------*/
.concept {
    background: var(--c_main-3);

}

.concept__heading-lv2 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: var(--fw_bold);
    text-align: center;
}

.concept__heading-lv2 span {
    position: relative;
}

.concept__heading-lv2 span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 1rem;
    background-color: rgb(255, 255, 255, 0.25);
}

.concept__text {
    text-align: center;
    font-weight: var(--fw_semibold);
    line-height: 2;
    margin-top: 25px;
    line-height: 26px;
}

.concept-wrapper {
    border-radius: 30px;
    background: #FFFD96;
    padding: 2em 1.5em;
    color: var(--c_black);
    max-width: 748px;
    margin-top: 30px;
}

.concept-wrapper__label {
    font-size: 16px;
    font-weight: var(--fw_semibold);
    text-align: center;
    white-space: nowrap;
}

.concept-wrapper__text {
    padding-top: 20px;
    line-height: 26px;
}

@media (min-width: 768px) {
    .concept__heading-lv2 {
        margin-top: 44px;
        font-size: 32px;
    }

    .concept__heading-lv2 br:nth-of-type(1) {
        display: none;
    }

    .concept-wrapper {
        max-width: 768px;
        padding: 32px 58px;
    }
}

/*----------------------------------------
	howto
----------------------------------------*/
.howto {
    background: var(--c_main-2);
}

.howto__video {
    margin-top: 30px;
    width: 100%;
    max-width: 726px;
    aspect-ratio: 16 / 9;
}

.howto__step {
    margin-top: 45px;
    text-align: center;
}

.howto__step-number {
    font-family: "Poetsen One", sans-serif;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    text-transform: uppercase;
}

.howto__step-number span {
    font-size: 40px;
}

.howto__step-title {
    font-size: 20px;
    margin-top: 1em;
    text-transform: uppercase;
}

.howto__step-title::after {
    content: "";
    display: block;
    margin-top: 17px;
    width: 100%;
    height: 20px;
    background-image: url('imgs/howto__step-line.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.howto__step-img {
    margin: 30px auto 0;
    aspect-ratio: 13 / 10;
    border-radius: 30px;
    max-width: 340px;
    width: 100%;
}

.howto__step-img img {
    height: 100%;
    width: auto;
}

.howto__step-description {
    margin-top: 30px;
    text-align: start;
    text-transform: uppercase;
    max-width: 340px;
    line-height: 26px;
}

.howto__step-description>*:not(:nth-child(1)) {
    margin-top: 30px;
}

.howto__step-description p {
    font-weight: var(--fw_semibold);
    text-transform: none;
}

.howto__step-description span {
    color: var(--c_text-purple);
    background-color: var(--c_white);
    line-height: 32px;
}

.howto__step-notes {
    list-style-type: disc;
    list-style-position: inside;
    text-align: start;
    font-size: 12px;
}

.howto__step-venue {
    background-color: var(--c_white);
    padding: 0.5em;
    color: var(--c_text-purple);
}

.venue-flex {
    display: flex;
    text-transform: capitalize;
}

.howto__step-venue p {
    white-space: nowrap;
}



@media (min-width: 768px) {
    .howto__video {
        margin-top: 56px;
    }

    .howto__step-title br {
        display: none;
    }

    .howto__step-content {
        display: flex;
        gap: 35px;
        margin-top: 20px;
    }

    .howto__step-img {
        min-width: 340px;
        aspect-ratio: 4/ 3;
        max-height: 240px;
        margin-top: 0;
        padding: 1em 2em;
    }

    .howto__step-description {
        margin-top: 0;
        max-width: 430px;
    }

    .venue-flex br:nth-of-type(1) {
        display: none;
    }
}

/*----------------------------------------
	entry-guide
----------------------------------------*/
.entry-guide {
    background: var(--c_main-3);
    position: relative;
}

.entry-guide__text-box {
    margin-top: 45px;
    font-weight: var(--fw_semibold);
}

.entry-guide__headding-lv3 {
    font-size: 20px;
    text-align: center;
}

.entry-guide__description {
    margin-top: 30px;
    text-align: center;
    line-height: 26px;
}

.entry-guide__digital {
    width: 100%;
}

.entry-guide__text {
    text-align: center;
    margin-top: 30px;
    line-height: 26px;
}

.entry-guide__steps {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 40% 17px 40%;
    width: 100%;
    row-gap: 30px;
    justify-content: space-between;

}


.entry-guide__arrow {
    margin-top: 120px;
}

.entry-guide__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: var(--fw_bold);
    gap: 15px;
}

.entry-guide__download {
    text-align: center;
    margin-top: 70px;
    line-height: normal;
}

.entry-guide__download-headding-lv3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: var(--fw_semibold);
}

.entry-guide__download-store {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
    justify-content: space-between;
}

.entry-guide__wrapper-image {
    max-width: 280px;
    margin: 20px auto 0;
}

.entry-guide__small-text {
    margin-top: 20px;
    font-size: 12px;
    text-align: start;
    line-height: 26px;
}

.entry-guide .section__wave {
    position: absolute;
    bottom: 0;
}

@media(min-width: 768px) {
    .entry-guide__text-box {
        margin-top: 2rem;
    }

    .entry-guide__digital {
        margin-top: 42px;
    }

    .entry-guide__digital br {
        display: none;
    }

    .entry-guide__headding-lv3 {
        font-size: 28px;
    }

    .entry-guide__steps {
        margin-top: 70px;
        row-gap: 50px;
        grid-template-columns: 25% 17px 25% 17px 25%;
    }

    .entry-guide__image {
        padding: 0 30px;
    }

    .entry-guide__image img {
        min-width: 150px;
    }

    .entry-guide__wrapper {
        margin-top: 140px;
        display: flex;
        flex-direction: row-reverse;
        gap: 3rem;
    }

    .entry-guide__download {
        max-width: calc(40%);
        margin-top: 0;
        text-align: start;
    }

    .entry-guide__download-text {
        font-size: 16px;
    }

    .entry-guide__download-headding-lv3 {
        margin-top: 10px;
        font-size: 32px;
    }

    .entry-guide__download-store {
        margin-top: 3em;
    }

    .entry-guide__download-store img {
        transition: all 0.3s ease-out;
    }

    .entry-guide__download-store img:hover {
        opacity: 0.6;
    }

    .entry-guide__wrapper-image {
        max-width: fit-content;
        margin-top: 0;
    }

}

/*----------------------------------------
	entry-info
----------------------------------------*/
.entry-info {
    background: var(--c_main-2);
    font-weight: var(--fw_semibold);
}

.entry-info__text {
    margin: 3.5em 1em 0;
    text-align: center;
    font-weight: var(--fw_semibold);
    line-height: 26px;
}

.entry-info__text a {
    text-decoration: underline;
}

.entry-info__image-box {
    margin-top: 30px;
}

.entry-info__image-box img {
    aspect-ratio: 3 /2;
}

.entry-info__image-box a {
    margin-top: 30px;
}

.entry-info__area {
    margin-top: 50px;
}

.entry-info__area-heading {
    text-align: center;
    font-size: 20px;
}

.entry-info__card {
    margin-top: 30px;
}

.entry-info__card>*:not(:nth-child(1)) {
    margin-top: 20px;
}

.entry-info__card-image {
    border-radius: 30px;
    overflow: hidden;
}

.entry-info__card-title {
    text-align: center;
    font-size: 20px;
}

.entry-info__card-text {
    font-weight: var(--fw_semibold);
    line-height: 26px;
}

.entry-info__card-link>span {
    border-bottom: 1px solid var(--c_white);
}

@media (min-width: 768px) {
    .entry-info__text {
        margin: 0.5em 0 0;
    }

    .entry-info__image-box {
        margin-top: 55px;
        width: 100%;
    }

    .entry-info__image-box a {
        margin: 30px auto 0;
    }

    .entry-info__area {
        margin-top: 100px;
    }

    .entry-info__area-heading {
        font-size: 28px;
    }

    .entry-info__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 100px;
        margin-top: 20px;
    }

    .entry-info__card {
        display: grid;
        column-gap: 20px;
        row-gap: 20px;
        grid-row: span 4;
        grid-template-rows: subgrid;
        max-width: 400px;
        width: calc(100%);
        margin-bottom: 76px;
    }

    .entry-info__card>*:not(:nth-child(1)) {
        margin-top: 0;
    }
}

/*----------------------------------------
	digital-map
----------------------------------------*/
.digital-map {
    background: var(--c_main-3);
}

.digital-map__wrapper {
    margin-top: 50px;
    background-color: var(--c_white);
    padding: 30px 34px;
    color: var(--c_black);
    border-radius: 30px;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.digital-map__intro {
    line-height: 26px;
    font-weight: var(--fw_semibold);
}

.digital-map__intro-small {
    font-size: 12px;
}

.digital-map__intro-red {
    color: var(--c_red);
    font-size: 12px;
}

.digital-map__wrapper a {
    color: var(--c_white);
}

.digital-map__slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.map-slider {
    margin: 0 auto;
    overflow: visible;
    max-width: 375px;
    display: flex;
    transition: all 0.4s ease;
    width: 100%;
}

.map-slider__item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 0 2em;
}

.map-slider__item-image {
    width: 60%;
    max-width: 240px;
}

.map-slider__item-title {
    text-align: center;
    font-size: 20px;
    font-weight: var(--fw_bold);
}

.map-slider__item-wrapper {
    margin-top: 30px;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    gap: 1ch;
    font-weight: var(--fw_semibold);
}

.map-slider__item-wrapper span {
    display: inline-block;
    width: 21px;
    height: 21px;
}

.slider-arrow {
    position: absolute;
    top: 161px;
    width: 30px;
    height: 30px;
    border-radius: 99px;
    background: none;
    border: none;
    background-color: var(--c_white);
    pointer-events: auto;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider__arrow img {
    pointer-events: auto;
    cursor: pointer;
}

.slider-arrow--prev {
    left: 50%;
    transform: translateX(calc(50% - 170px));
}

.slider-arrow--next {
    right: 50%;
    transform: translateX(calc(-50% + 170px)) rotate(180deg);
}

.slider-arrow img {
    max-width: 10px;
}


@media (min-width: 768px) {
    .digital-map__wrapper {
        margin-top: 25px;
        padding: 46px 90px 32px;
        text-align: center;
    }

    .digital-map__wrapper a {
        margin: 0 auto;
    }

    .digital-map__slider {
        max-width: 975px;
        margin: 76px auto 0;
        overflow: visible;
    }

    .map-slider {
        max-width: none;
    }

    .map-slider__item {
        width: 100%;
        flex-direction: row;
        padding: 0 9em;
        align-items: center;
        gap: 3em;
    }

    .map-slider__item-image {
        max-width: 200px;
    }

    .slider-arrow {
        top: 50%;
        transform: translateY(-50%);
        align-items: center;
    }

    .slider-arrow--prev {
        left: 2em;
    }

    .slider-arrow--next {
        right: 2em;
        transform: translateY(-50%) rotate(180deg);
    }

    .map-slider__item-title {
        text-align: left;
        font-size: 32px;
    }
}

/*----------------------------------------
	station
----------------------------------------*/
.station {
    background: var(--c_main-2);
}

.station__item {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.station__item .speech-bubble {
    max-width: 600px;
}

.station__place {
    text-align: center;
    font-size: 20px;
    font-weight: var(--fw_semibold);
}

.station__description {
    line-height: 26px;
    font-weight: var(--fw_semibold);
}

.station__buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .station__item {
        gap: 20px;
    }

    .station__item:last-of-type {
        margin-top: 50px;
    }

    .station__buttons {
        flex-direction: row;
    }
}

/*----------------------------------------
	partner-store
----------------------------------------*/
.partner-store {
    background: var(--c_main-3);
    font-weight: var(--fw_semibold);
}

.partner-store__description,
.partner-store__notice,
.partner-store__description-sub {
    line-height: 26px;
    margin-top: 30px;
    font-weight: var(--fw_semibold);
}

.partner-store__description,
.partner-store__description-sub {
    text-align: center;
}

.partner-store__notice {
    background-color: var(--c_white);
    color: var(--c_red);
    padding: 12px 50px;
}

.partner-store .container>a {
    margin-top: 30px;
}

.partner-store__buttons {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 768px) {

    .partner-store__description,
    .partner-store__description-sub {
        margin-top: 26px;
    }

    .partner-store__notice {
        margin-top: 18px;
    }

    .partner-store__buttons {
        margin-top: 80px;
        justify-content: space-between;
        row-gap: 2em;
    }

    .partner-store__buttons a {
        max-width: calc(50% - 17px);
    }
}

.partner-store__area {
    margin-top: 30px;
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
}

.partner-store__area-heading {
    background-color: #fff;
    padding: 18px 0;
}

.partner-store__area-title {
    color: var(--c_black);
    text-align: center;
    font-size: 20px;
}

.partner-store__area-shops {
    padding: 10px 15px;
}

.partner-store__area-shop {
    margin-top: 15px;
    padding-bottom: 15px;
}

.partner-store__area-shops>.partner-store__area-shop:not(:last-of-type) {
    border-bottom: 1px solid var(--c_white);
}

.area-shop__image {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 6 / 5;
}

.area-shop__image img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.area-shop__right>* {
    margin-top: 15px;
    font-weight: var(--fw_semibold);
}

.area-shop__name,
.area-shop__time,
.area-shop__description {
    line-height: 26px;
}

.area-shop__name {
    font-size: 20px;
    text-align: center;
}

.area-shop__time {
    text-align: center;
}

.area-shop__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.area-shop__buttons .button--normal::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(./imgs/button-icon-link.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/* 色 */
.partner-store__area--shuuyu {
    background-color: var(--c_pink);
}

.partner-store__area--endouji {
    background-color: var(--c_blue);
}

.partner-store__area--blossa {
    background-color: var(--c_mustard);
}

.partner-store__area--hisaya {
    background-color: var(--c_green);
}

@media (min-width: 768px) {
    .partner-store__area {
        margin-top: 48px;
    }

    .partner-store__area-shops {
        padding: 15px 40px;
    }

    .partner-store__area-shop {
        margin-top: 30px;
        padding-bottom: 30px;
        display: flex;
        gap: 30px;
    }

    .area-shop__right>* {
        margin-top: 0;
    }

    .area-shop__right>*:not(:nth-child(1)) {
        margin-top: 20px;
    }

    .area-shop__left {
        height: fit-content;
        max-width: 308px;
        width: 100%;
    }

    .area-shop__right,
    .area-shop__name,
    .area-shop__time {
        text-align: left;
    }

    .area-shop__right {
        width: 100%;
    }

    .area-shop__buttons {
        padding-top: 8px;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
}

/*----------------------------------------
	trasnport-info
----------------------------------------*/
.transport-info {
    background: var(--c_main-2);
}

.transport-info__item {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.transport-info__item>*:not(:nth-child(1)) {
    margin-top: 30px;
}

.transport-info__image {
    aspect-ratio: 3 / 2;
    width: 100%;
}

.transport-info__description {
    line-height: 26px;
    font-weight: var(--fw_semibold);
}

.transport-info__buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.transport-info__logo {
    max-width: 165px;
    display: block;
    margin: 0 auto;
}

.transport-info__wrapper-right>* {
    margin-top: 30px;
    text-align: start;
}

.transport-wrapper__description {
    line-height: 26px;
}

.trasnport-info__download-store {
    display: flex;
    gap: 24px;
}

.transport-info__small-text {
    font-size: 12px;
    font-weight: var(--fw_semibold);
}

@media (min-width: 768px) {
    .transport-info__item:last-of-type {
        margin-top: 180px;
    }

    .transport-info__item .speech-bubble {
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: 44px;
    }

    .transport-info__buttons {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }

    .mt {
        margin-top: 100px;
    }

    .transport-info__logo {
        max-width: 270px;
        transition: all 0.3s ease-out;
    }

    .transport-info__logo:hover {
        opacity: 0.6;
    }

    .transport-info__wrapper {
        display: flex;
        gap: 40px;
    }

    .transport-info__wrapper-right {
        display: grid;
        place-content: center;
    }

    .transport-info__wrapper-image {
        aspect-ratio: 4 / 3;
        width: 100%;
        max-width: 400px;
    }

    .transport-info__wrapper-right>*:nth-child(1) {
        margin-top: 0;
    }

    .transport-info__item a {
        margin: 0 auto;
    }

    .trasnport-info__download-store img {
        max-height: 60px;
        transition: all 0.3s ease-out;
    }

    .trasnport-info__download-store img:hover {
        opacity: 0.6;
    }
}

/*----------------------------------------
	program
----------------------------------------*/
.program {
    background: var(--c_main-3);
}

.program .container>*:not(:nth-child(1)) {
    margin-top: 30px;
}

.program__text {
    text-align: center;
    font-weight: var(--fw_semibold);
    line-height: 26px;
}

.program__images {
    width: 100%;
}

.program__images>*:not(:nth-child(1)) {
    margin-top: 0.5em;
}

.program__image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3 / 1;
}

.program__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .program__images>*:not(:nth-child(1)) {
        margin-top: 20px;
    }

    .program__image {
        transition: 0.3s all ease;
    }

    .program__image:hover {
        opacity: 0.6;
    }
}

/*----------------------------------------
	lottery
----------------------------------------*/
.lottery {
    background: var(--c_main-2);
}

.lottery__description {
    font-weight: var(--fw_semibold);
    line-height: 26px;
    text-align: center;
    margin-top: 30px;
}

.lottery__description a {
    border-bottom: 1px solid var(--c_white);
}

.lottery__subheading {
    margin-top: 50px;
    font-size: 20px;
    font-weight: var(--fw_semibold);
}

.lottery__prizes {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.lottery .button--normal::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(./imgs/button-icon-link.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.prize {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.prize__image {
    aspect-ratio: 5 / 4;
    width: 100%;
    overflow: hidden;
}

.prize__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .lottery__prizes {
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 50px;
        column-gap: 40px;
    }

    .prize {
        width: calc(50% - 20px);
    }
}

/*----------------------------------------
	sponsor
----------------------------------------*/
.sponsor {
    background: var(--c_main-3);
}

.sponsor__banner {
    margin-top: 30px;
    aspect-ratio: 25 / 8;
}

.sponsor__banner img {
    object-fit: cover;
    height: 100%;
}

.sponsor__grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 30px;
}

.sponsor__grid-item {
    text-align: center;
    display: grid;
    grid-template-columns: subgrid;
    grid-row: span 3;
    gap: 20px;
}

.sponsor__grid-title {
    font-size: 20px;
}

.sponsor__grid-image {
    aspect-ratio: 15 / 6;
    width: 100%;
    overflow: hidden;
}

.sponsor__grid-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sponsor__inquiry {
    margin-top: 30px;
    background-color: var(--c_white);
    padding: 30px 23px;
    border-radius: 30px;
}

.sponsor__inquiry-lead {
    color: var(--c_black);
    text-align: center;
    font-size: 16px;
    font-weight: var(--fw_semibold);
    line-height: 26px;
}

.sponsor__inquiry-detail {
    margin-top: 20px;
    line-height: 26px;
    color: var(--c_black);
    font-weight: var(--fw_semibold);
}

.sponsor__inquiry-list {
    list-style-type: disc;
    list-style-position: inside;
}

.sponsor__inquiry a {
    margin: 30px auto 0;
}

@media (min-width: 768px) {
    .sponsor__banner {
        margin-top: 38px;
        max-width: 600px;
    }

    .sponsor__grid {
        margin-top: 48px;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 35px;
        row-gap: 30px;
    }


    .sponsor__inquiry {
        padding: 40px 80px;
        margin-top: 70px;
    }

    .sponsor__inquiry-lead {
        font-size: 20px;
    }
}

/*----------------------------------------
	linked-event
----------------------------------------*/
.linked-event {
    background: var(--c_main-2);
}

.linked-event__text {
    text-align: center;
    margin-top: 30px;
}

.linked-event__flex {
    display: flex;
    flex-direction: column;
    gap: 33px;
    margin: 47px 20px 0;
}

.linked-event__flex-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.linked-event__flex-img {
    width: 100%;
    aspect-ratio: 27 / 8;
}

.linked-event__flex-title {
    font-size: 20px;
}

@media (min-width: 768px) {
    .linked-event__flex {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/
.contact {
    background: var(--c_main-3);
    padding-bottom: 120px;
}

.contact__text {
    text-align: center;
    margin-top: 20px;
    line-height: 28px;
    font-weight: var(--fw_semibold);
}

.contact__text span {
    background-color: var(--c_white);
    color: #FF8A00;
    display: inline-block;
    padding: 0 2px;
}

.contact__text a {
    border-bottom: 1px solid var(--c_white);
}

.wpcf7 {
    margin-top: 30px;
    max-width: 100%;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-list__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7 h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: var(--fw_semibold);
    display: flex;
    gap: 10px;
    align-items: center;
}

.wpcf7 h3::after {
    content: "必須";
    display: grid;
    place-content: center;
    width: 30px;
    height: 18px;
    border-radius: 3px;
    background-color: #cf0000;
    font-size: 10px;
    font-weight: var(--fw_semibold);
    line-height: 18px;
}

.contact__select-arrow>.wpcf7-form-control-wrap {
    position: relative;
}

.contact__select-arrow>.wpcf7-form-control-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 58%;
    right: 10px;
    width: 14px;
    height: 7px;
    background-image: url('imgs/contact_select.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    z-index: 10;
}

.wpcf7 select {
    appearance: none;
    border: none;
    border-radius: 10px;
    padding: 20px;
    font-size: 15px;
    width: 300px;
}

.wpcf7 .text-input {
    border: none;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    width: 100%;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7 .check-input {
    display: flex;
    gap: 30px;
}

.wpcf7 input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 0px;
    border: #666666;
    background-color: #fff;
}

/* 
// ===============================================================
// チェックボックス
// ===============================================================

// デフォルトのスタイルを消す */

.checkbox-cl01 {
    display: flex;
    gap: 30px;
    font-size: 20px;
    align-items: center;
}

.checkbox-cl01 input {
    display: none;
}

.checkbox-cl01 input+span {
    padding-left: 30px;
    display: inline-block;
    position: relative;
}

.checkbox-cl01 input+span::after,
.checkbox-cl01 input+span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
}


.checkbox-cl01 input+span::before {
    border: 1px solid #666666;
    background-color: var(--c_white);
    height: 20px;
    width: 20px;
    left: 0;
    top: 5px;
}


.checkbox-cl01 input+span::after {
    border: none;
    background-image: url('imgs/form-check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 20px;
    width: 14px;
    left: 3px;
    top: 5px;
    display: none;
}

.mail-register input {
    display: block;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
}

.mailr-register__label {
    position: relative;
    display: block;
    padding-left: 30px;
    font-size: 16px;
    color: var(--c_white);
    font-weight: var(--fw_semibold);
    margin-bottom: 15px;
}

.mailr-register__label::before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #666666;
    background-color: var(--c_white);
    height: 20px;
    width: 20px;
    left: 0;
    top: 1.5px;
    pointer-events: none;
}

.mailr-register__label::after {
    content: "";
    position: absolute;
    border: none;
    background-image: url('imgs/form-check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 20px;
    width: 14px;
    left: 3px;
    top: 2px;
    display: none;
    pointer-events: none;
}

.mailr-register__label.is-active::after {
    display: block;
}

.mail-register .wpcf7-list-item-label {
    display: none;
}

.mail-or-tell>span>label>span {
    font-size: 20px;
    font-weight: var(--fw_semibold);
    color: var(--c_white);
}

.checkbox-cl01 input:checked+span::after {
    display: block;
}

.wpcf7-checkbox>span {
    display: flex;
    gap: 6px;
    align-items: center;
}

.wpcf7-checkbox>span>span {
    max-width: 193px;
    font-size: 16px;
}

.wpcf7 textarea {
    border: none;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    width: 100%;
}

.wpcf7 .button {
    width: 100%;
    color: var(--c_white);
    border: none;
    height: 60px;
    margin-top: 30px;
}

.contact__privacy {
    margin-top: 30px;
    line-height: 28px;
    font-weight: var(--fw_semibold);
    text-align: center;
}

.contact__privacy a {
    border-bottom: 1px solid var(--c_white);
}

.contact__privacy a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(imgs/button-icon-link.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 6px;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    font-weight: var(--fw_semibold);
}

@media (min-width: 768px) {
    .contact {
        padding-bottom: 90px;
    }

    .contact__text {
        margin-top: 45px;
        text-align: center;
    }

    .contact-list {
        gap: 50px;
    }

    .mailr-register__label {
        margin-bottom: 35px;
    }

    .wpcf7 {
        width: 600px;
        margin-top: 40px;
    }

    .mail-register>span>label>span {
        max-width: none;
    }

    .wpcf7 h3:not(:first-of-type) {
        margin-top: 50px;
    }

    .wpcf7 .button {
        margin-top: 50px;
    }

    .contact__privacy {
        margin-top: 50px;
    }
}

/*----------------------------------------
	tab-btn
----------------------------------------*/
body {
    position: relative;
}

.tab-btn {
    position: fixed;
    z-index: 11;
    top: 20vh;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2em;
    font-size: 15px;
    font-weight: var(--fw_semibold);
}

.tab-btn__inquery {
    border-radius: 20px 0 0 20px;
    background-color: #A20003;
    box-shadow: var(--btn_shadow);
    padding: 34px 0;
    width: 39px;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
}

.tab-btn__inquery::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('imgs/tab-btn__inquery.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    margin-left: 6px;
}

.tab-btn__degital-map {
    display: flex;
    align-items: center;
    width: 39px;
    padding: 24px 0;
    border-radius: 20px 0 0 20px;
    background-color: #9F7700;
    writing-mode: vertical-rl
}

.tab-btn__hover {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.tab-btn__hover:hover {
    opacity: 0.7;
}

@media (min-width:768px) {
    .tab-btn {
        top: 50vh;
        transform: translateY(-50%);
    }

    .tab-btn__inquery {
        width: 50px;
    }

    .tab-btn__inquery::before {
        width: 20px;
        height: 20px;
    }

    .tab-btn__degital-map {
        width: 50px;
    }
}