@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');

html {
    /*font-size: 62.5%;*/
    font-size: 10px;
}

* {
    line-height: 1.8em;
}

body {
    color: #1A1A1A;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 1.5rem;
}

:root {
    --main-color: #042F4D;
    --b-color: #37A0DA;
    --p-color: #DE6C65;
    /* var(--main-color) */
}

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

img,
iframe {
    max-width: 100%;
    vertical-align: middle;
}

img {
    height: auto;
}

table {
    table-layout: fixed;
    border-collapse: collapse;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.contentIn {
    width: 1040px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.dp_ib {
    display: inline-block;
}

.flexBox {
    display: flex;
}

.i_flex {
    display: inline-flex;
}

.ai_c {
    align-items: center;
}

.ai_fs {
    align-items: flex-start;
}

.ai_fe {
    align-items: flex-end;
}

.ai_s {
    align-items: stretch;
}

.jc_sb {
    justify-content: space-between;
}

.jc_sa {
    justify-content: space-around;
}

.jc_c {
    justify-content: center;
}

.jc_fe {
    justify-content: flex-end;
}

.fw_wp {
    flex-wrap: wrap;
}

.flexL {
    order: 1;
}

.flexC {
    order: 2;
}

.flexR {
    order: 3;
}

.txa_c {
    text-align: center;
}

.txa_r {
    text-align: right;
}

.txa_l {
    text-align: left;
}

.txc_red {
    color: #ED1C24;
}

.fwB {
    font-weight: bold;
}

.fwN {
    font-weight: normal;
}

.w100 {
    width: 100%;
}


.ma-0 {
    margin: 0em;
}

@media screen and (max-width: 768px) {
    .ma-0 {
        margin: calc(0 * 0.6);
    }
}

.mb-0 {
    margin-bottom: 0em;
}

@media screen and (max-width: 768px) {
    .mb-0 {
        margin-bottom: calc(0em * 0.6);
    }
}

.mt-0 {
    margin-top: 0em;
}

@media screen and (max-width: 768px) {
    .mt-0 {
        margin-top: calc(0em * 0.6);
    }
}

.ml-0 {
    margin-left: 0em;
}

@media screen and (max-width: 768px) {
    .ml-0 {
        margin-left: calc(0em * 0.6);
    }
}

.mr-0 {
    margin-right: 0em;
}

@media screen and (max-width: 768px) {
    .mr-0 {
        margin-right: calc(0em * 0.6);
    }
}

.pa-0 {
    padding: 0em;
}

@media screen and (max-width: 768px) {
    .pa-0 {
        padding: calc(0em * 0.6);
    }
}

.pb-0 {
    padding-bottom: 0em;
}

@media screen and (max-width: 768px) {
    .pb-0 {
        padding-bottom: calc(0em * 0.6);
    }
}

.pt-0 {
    padding-top: 0em;
}

@media screen and (max-width: 768px) {
    .pt-0 {
        padding-top: calc(0em * 0.6);
    }
}

.pl-0 {
    padding-left: 0em;
}

@media screen and (max-width: 768px) {
    .pl-0 {
        padding-left: calc(0em * 0.6);
    }
}

.pr-0 {
    padding-right: 0em;
}

@media screen and (max-width: 768px) {
    .pr-0 {
        padding-right: calc(0em * 0.6);
    }
}

.gap-0 {
    gap: 0em;
}

@media screen and (max-width: 768px) {
    .gap-0 {
        gap: calc(0em * 0.6);
    }
}

.ma-1 {
    margin: 1em;
}

@media screen and (max-width: 768px) {
    .ma-1 {
        margin: calc(1 * 0.6);
    }
}

.mb-1 {
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .mb-1 {
        margin-bottom: calc(1em * 0.6);
    }
}

.mt-1 {
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    .mt-1 {
        margin-top: calc(1em * 0.6);
    }
}

.ml-1 {
    margin-left: 1em;
}

@media screen and (max-width: 768px) {
    .ml-1 {
        margin-left: calc(1em * 0.6);
    }
}

.mr-1 {
    margin-right: 1em;
}

@media screen and (max-width: 768px) {
    .mr-1 {
        margin-right: calc(1em * 0.6);
    }
}

.pa-1 {
    padding: 1em;
}

@media screen and (max-width: 768px) {
    .pa-1 {
        padding: calc(1em * 0.6);
    }
}

.pb-1 {
    padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .pb-1 {
        padding-bottom: calc(1em * 0.6);
    }
}

.pt-1 {
    padding-top: 1em;
}

@media screen and (max-width: 768px) {
    .pt-1 {
        padding-top: calc(1em * 0.6);
    }
}

.pl-1 {
    padding-left: 1em;
}

@media screen and (max-width: 768px) {
    .pl-1 {
        padding-left: calc(1em * 0.6);
    }
}

.pr-1 {
    padding-right: 1em;
}

@media screen and (max-width: 768px) {
    .pr-1 {
        padding-right: calc(1em * 0.6);
    }
}

.gap-1 {
    gap: 1em;
}

@media screen and (max-width: 768px) {
    .gap-1 {
        gap: calc(1em * 0.6);
    }
}

.ma-2 {
    margin: 2em;
}

@media screen and (max-width: 768px) {
    .ma-2 {
        margin: calc(2 * 0.6);
    }
}

.mb-2 {
    margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
    .mb-2 {
        margin-bottom: calc(2em * 0.6);
    }
}

.mt-2 {
    margin-top: 2em;
}

@media screen and (max-width: 768px) {
    .mt-2 {
        margin-top: calc(2em * 0.6);
    }
}

.ml-2 {
    margin-left: 2em;
}

@media screen and (max-width: 768px) {
    .ml-2 {
        margin-left: calc(2em * 0.6);
    }
}

.mr-2 {
    margin-right: 2em;
}

@media screen and (max-width: 768px) {
    .mr-2 {
        margin-right: calc(2em * 0.6);
    }
}

.pa-2 {
    padding: 2em;
}

@media screen and (max-width: 768px) {
    .pa-2 {
        padding: calc(2em * 0.6);
    }
}

.pb-2 {
    padding-bottom: 2em;
}

@media screen and (max-width: 768px) {
    .pb-2 {
        padding-bottom: calc(2em * 0.6);
    }
}

.pt-2 {
    padding-top: 2em;
}

@media screen and (max-width: 768px) {
    .pt-2 {
        padding-top: calc(2em * 0.6);
    }
}

.pl-2 {
    padding-left: 2em;
}

@media screen and (max-width: 768px) {
    .pl-2 {
        padding-left: calc(2em * 0.6);
    }
}

.pr-2 {
    padding-right: 2em;
}

@media screen and (max-width: 768px) {
    .pr-2 {
        padding-right: calc(2em * 0.6);
    }
}

.gap-2 {
    gap: 2em;
}

@media screen and (max-width: 768px) {
    .gap-2 {
        gap: calc(2em * 0.6);
    }
}

.ma-3 {
    margin: 3em;
}

@media screen and (max-width: 768px) {
    .ma-3 {
        margin: calc(3 * 0.6);
    }
}

.mb-3 {
    margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
    .mb-3 {
        margin-bottom: calc(3em * 0.6);
    }
}

.mt-3 {
    margin-top: 3em;
}

@media screen and (max-width: 768px) {
    .mt-3 {
        margin-top: calc(3em * 0.6);
    }
}

.ml-3 {
    margin-left: 3em;
}

@media screen and (max-width: 768px) {
    .ml-3 {
        margin-left: calc(3em * 0.6);
    }
}

.mr-3 {
    margin-right: 3em;
}

@media screen and (max-width: 768px) {
    .mr-3 {
        margin-right: calc(3em * 0.6);
    }
}

.pa-3 {
    padding: 3em;
}

@media screen and (max-width: 768px) {
    .pa-3 {
        padding: calc(3em * 0.6);
    }
}

.pb-3 {
    padding-bottom: 3em;
}

@media screen and (max-width: 768px) {
    .pb-3 {
        padding-bottom: calc(3em * 0.6);
    }
}

.pt-3 {
    padding-top: 3em;
}

@media screen and (max-width: 768px) {
    .pt-3 {
        padding-top: calc(3em * 0.6);
    }
}

.pl-3 {
    padding-left: 3em;
}

@media screen and (max-width: 768px) {
    .pl-3 {
        padding-left: calc(3em * 0.6);
    }
}

.pr-3 {
    padding-right: 3em;
}

@media screen and (max-width: 768px) {
    .pr-3 {
        padding-right: calc(3em * 0.6);
    }
}

.gap-3 {
    gap: 3em;
}

@media screen and (max-width: 768px) {
    .gap-3 {
        gap: calc(3em * 0.6);
    }
}

.ma-4 {
    margin: 4em;
}

@media screen and (max-width: 768px) {
    .ma-4 {
        margin: calc(4 * 0.6);
    }
}

.mb-4 {
    margin-bottom: 4em;
}

@media screen and (max-width: 768px) {
    .mb-4 {
        margin-bottom: calc(4em * 0.6);
    }
}

.mt-4 {
    margin-top: 4em;
}

@media screen and (max-width: 768px) {
    .mt-4 {
        margin-top: calc(4em * 0.6);
    }
}

.ml-4 {
    margin-left: 4em;
}

@media screen and (max-width: 768px) {
    .ml-4 {
        margin-left: calc(4em * 0.6);
    }
}

.mr-4 {
    margin-right: 4em;
}

@media screen and (max-width: 768px) {
    .mr-4 {
        margin-right: calc(4em * 0.6);
    }
}

.pa-4 {
    padding: 4em;
}

@media screen and (max-width: 768px) {
    .pa-4 {
        padding: calc(4em * 0.6);
    }
}

.pb-4 {
    padding-bottom: 4em;
}

@media screen and (max-width: 768px) {
    .pb-4 {
        padding-bottom: calc(4em * 0.6);
    }
}

.pt-4 {
    padding-top: 4em;
}

@media screen and (max-width: 768px) {
    .pt-4 {
        padding-top: calc(4em * 0.6);
    }
}

.pl-4 {
    padding-left: 4em;
}

@media screen and (max-width: 768px) {
    .pl-4 {
        padding-left: calc(4em * 0.6);
    }
}

.pr-4 {
    padding-right: 4em;
}

@media screen and (max-width: 768px) {
    .pr-4 {
        padding-right: calc(4em * 0.6);
    }
}

.gap-4 {
    gap: 4em;
}

@media screen and (max-width: 768px) {
    .gap-4 {
        gap: calc(4em * 0.6);
    }
}

.ma-5 {
    margin: 5em;
}

@media screen and (max-width: 768px) {
    .ma-5 {
        margin: calc(5 * 0.6);
    }
}

.mb-5 {
    margin-bottom: 5em;
}

@media screen and (max-width: 768px) {
    .mb-5 {
        margin-bottom: calc(5em * 0.6);
    }
}

.mt-5 {
    margin-top: 5em;
}

@media screen and (max-width: 768px) {
    .mt-5 {
        margin-top: calc(5em * 0.6);
    }
}

.ml-5 {
    margin-left: 5em;
}

@media screen and (max-width: 768px) {
    .ml-5 {
        margin-left: calc(5em * 0.6);
    }
}

.mr-5 {
    margin-right: 5em;
}

@media screen and (max-width: 768px) {
    .mr-5 {
        margin-right: calc(5em * 0.6);
    }
}

.pa-5 {
    padding: 5em;
}

@media screen and (max-width: 768px) {
    .pa-5 {
        padding: calc(5em * 0.6);
    }
}

.pb-5 {
    padding-bottom: 5em;
}

@media screen and (max-width: 768px) {
    .pb-5 {
        padding-bottom: calc(5em * 0.6);
    }
}

.pt-5 {
    padding-top: 5em;
}

@media screen and (max-width: 768px) {
    .pt-5 {
        padding-top: calc(5em * 0.6);
    }
}

.pl-5 {
    padding-left: 5em;
}

@media screen and (max-width: 768px) {
    .pl-5 {
        padding-left: calc(5em * 0.6);
    }
}

.pr-5 {
    padding-right: 5em;
}

@media screen and (max-width: 768px) {
    .pr-5 {
        padding-right: calc(5em * 0.6);
    }
}

.gap-5 {
    gap: 5em;
}

@media screen and (max-width: 768px) {
    .gap-5 {
        gap: calc(5em * 0.6);
    }
}

.ma-6 {
    margin: 6em;
}

@media screen and (max-width: 768px) {
    .ma-6 {
        margin: calc(6 * 0.6);
    }
}

.mb-6 {
    margin-bottom: 6em;
}

@media screen and (max-width: 768px) {
    .mb-6 {
        margin-bottom: calc(6em * 0.6);
    }
}

.mt-6 {
    margin-top: 6em;
}

@media screen and (max-width: 768px) {
    .mt-6 {
        margin-top: calc(6em * 0.6);
    }
}

.ml-6 {
    margin-left: 6em;
}

@media screen and (max-width: 768px) {
    .ml-6 {
        margin-left: calc(6em * 0.6);
    }
}

.mr-6 {
    margin-right: 6em;
}

@media screen and (max-width: 768px) {
    .mr-6 {
        margin-right: calc(6em * 0.6);
    }
}

.pa-6 {
    padding: 6em;
}

@media screen and (max-width: 768px) {
    .pa-6 {
        padding: calc(6em * 0.6);
    }
}

.pb-6 {
    padding-bottom: 6em;
}

@media screen and (max-width: 768px) {
    .pb-6 {
        padding-bottom: calc(6em * 0.6);
    }
}

.pt-6 {
    padding-top: 6em;
}

@media screen and (max-width: 768px) {
    .pt-6 {
        padding-top: calc(6em * 0.6);
    }
}

.pl-6 {
    padding-left: 6em;
}

@media screen and (max-width: 768px) {
    .pl-6 {
        padding-left: calc(6em * 0.6);
    }
}

.pr-6 {
    padding-right: 6em;
}

@media screen and (max-width: 768px) {
    .pr-6 {
        padding-right: calc(6em * 0.6);
    }
}

.gap-6 {
    gap: 6em;
}

@media screen and (max-width: 768px) {
    .gap-6 {
        gap: calc(6em * 0.6);
    }
}

.ma-7 {
    margin: 7em;
}

@media screen and (max-width: 768px) {
    .ma-7 {
        margin: calc(7 * 0.6);
    }
}

.mb-7 {
    margin-bottom: 7em;
}

@media screen and (max-width: 768px) {
    .mb-7 {
        margin-bottom: calc(7em * 0.6);
    }
}

.mt-7 {
    margin-top: 7em;
}

@media screen and (max-width: 768px) {
    .mt-7 {
        margin-top: calc(7em * 0.6);
    }
}

.ml-7 {
    margin-left: 7em;
}

@media screen and (max-width: 768px) {
    .ml-7 {
        margin-left: calc(7em * 0.6);
    }
}

.mr-7 {
    margin-right: 7em;
}

@media screen and (max-width: 768px) {
    .mr-7 {
        margin-right: calc(7em * 0.6);
    }
}

.pa-7 {
    padding: 7em;
}

@media screen and (max-width: 768px) {
    .pa-7 {
        padding: calc(7em * 0.6);
    }
}

.pb-7 {
    padding-bottom: 7em;
}

@media screen and (max-width: 768px) {
    .pb-7 {
        padding-bottom: calc(7em * 0.6);
    }
}

.pt-7 {
    padding-top: 7em;
}

@media screen and (max-width: 768px) {
    .pt-7 {
        padding-top: calc(7em * 0.6);
    }
}

.pl-7 {
    padding-left: 7em;
}

@media screen and (max-width: 768px) {
    .pl-7 {
        padding-left: calc(7em * 0.6);
    }
}

.pr-7 {
    padding-right: 7em;
}

@media screen and (max-width: 768px) {
    .pr-7 {
        padding-right: calc(7em * 0.6);
    }
}

.gap-7 {
    gap: 7em;
}

@media screen and (max-width: 768px) {
    .gap-7 {
        gap: calc(7em * 0.6);
    }
}

.ma-8 {
    margin: 8em;
}

@media screen and (max-width: 768px) {
    .ma-8 {
        margin: calc(8 * 0.6);
    }
}

.mb-8 {
    margin-bottom: 8em;
}

@media screen and (max-width: 768px) {
    .mb-8 {
        margin-bottom: calc(8em * 0.6);
    }
}

.mt-8 {
    margin-top: 8em;
}

@media screen and (max-width: 768px) {
    .mt-8 {
        margin-top: calc(8em * 0.6);
    }
}

.ml-8 {
    margin-left: 8em;
}

@media screen and (max-width: 768px) {
    .ml-8 {
        margin-left: calc(8em * 0.6);
    }
}

.mr-8 {
    margin-right: 8em;
}

@media screen and (max-width: 768px) {
    .mr-8 {
        margin-right: calc(8em * 0.6);
    }
}

.pa-8 {
    padding: 8em;
}

@media screen and (max-width: 768px) {
    .pa-8 {
        padding: calc(8em * 0.6);
    }
}

.pb-8 {
    padding-bottom: 8em;
}

@media screen and (max-width: 768px) {
    .pb-8 {
        padding-bottom: calc(8em * 0.6);
    }
}

.pt-8 {
    padding-top: 8em;
}

@media screen and (max-width: 768px) {
    .pt-8 {
        padding-top: calc(8em * 0.6);
    }
}

.pl-8 {
    padding-left: 8em;
}

@media screen and (max-width: 768px) {
    .pl-8 {
        padding-left: calc(8em * 0.6);
    }
}

.pr-8 {
    padding-right: 8em;
}

@media screen and (max-width: 768px) {
    .pr-8 {
        padding-right: calc(8em * 0.6);
    }
}

.gap-8 {
    gap: 8em;
}

@media screen and (max-width: 768px) {
    .gap-8 {
        gap: calc(8em * 0.6);
    }
}

.ma-9 {
    margin: 9em;
}

@media screen and (max-width: 768px) {
    .ma-9 {
        margin: calc(9 * 0.6);
    }
}

.mb-9 {
    margin-bottom: 9em;
}

@media screen and (max-width: 768px) {
    .mb-9 {
        margin-bottom: calc(9em * 0.6);
    }
}

.mt-9 {
    margin-top: 9em;
}

@media screen and (max-width: 768px) {
    .mt-9 {
        margin-top: calc(9em * 0.6);
    }
}

.ml-9 {
    margin-left: 9em;
}

@media screen and (max-width: 768px) {
    .ml-9 {
        margin-left: calc(9em * 0.6);
    }
}

.mr-9 {
    margin-right: 9em;
}

@media screen and (max-width: 768px) {
    .mr-9 {
        margin-right: calc(9em * 0.6);
    }
}

.pa-9 {
    padding: 9em;
}

@media screen and (max-width: 768px) {
    .pa-9 {
        padding: calc(9em * 0.6);
    }
}

.pb-9 {
    padding-bottom: 9em;
}

@media screen and (max-width: 768px) {
    .pb-9 {
        padding-bottom: calc(9em * 0.6);
    }
}

.pt-9 {
    padding-top: 9em;
}

@media screen and (max-width: 768px) {
    .pt-9 {
        padding-top: calc(9em * 0.6);
    }
}

.pl-9 {
    padding-left: 9em;
}

@media screen and (max-width: 768px) {
    .pl-9 {
        padding-left: calc(9em * 0.6);
    }
}

.pr-9 {
    padding-right: 9em;
}

@media screen and (max-width: 768px) {
    .pr-9 {
        padding-right: calc(9em * 0.6);
    }
}

.gap-9 {
    gap: 9em;
}

@media screen and (max-width: 768px) {
    .gap-9 {
        gap: calc(9em * 0.6);
    }
}

.ma-10 {
    margin: 10em;
}

@media screen and (max-width: 768px) {
    .ma-10 {
        margin: calc(10 * 0.6);
    }
}

.mb-10 {
    margin-bottom: 10em;
}

@media screen and (max-width: 768px) {
    .mb-10 {
        margin-bottom: calc(10em * 0.6);
    }
}

.mt-10 {
    margin-top: 10em;
}

@media screen and (max-width: 768px) {
    .mt-10 {
        margin-top: calc(10em * 0.6);
    }
}

.ml-10 {
    margin-left: 10em;
}

@media screen and (max-width: 768px) {
    .ml-10 {
        margin-left: calc(10em * 0.6);
    }
}

.mr-10 {
    margin-right: 10em;
}

@media screen and (max-width: 768px) {
    .mr-10 {
        margin-right: calc(10em * 0.6);
    }
}

.pa-10 {
    padding: 10em;
}

@media screen and (max-width: 768px) {
    .pa-10 {
        padding: calc(10em * 0.6);
    }
}

.pb-10 {
    padding-bottom: 10em;
}

@media screen and (max-width: 768px) {
    .pb-10 {
        padding-bottom: calc(10em * 0.6);
    }
}

.pt-10 {
    padding-top: 10em;
}

@media screen and (max-width: 768px) {
    .pt-10 {
        padding-top: calc(10em * 0.6);
    }
}

.pl-10 {
    padding-left: 10em;
}

@media screen and (max-width: 768px) {
    .pl-10 {
        padding-left: calc(10em * 0.6);
    }
}

.pr-10 {
    padding-right: 10em;
}

@media screen and (max-width: 768px) {
    .pr-10 {
        padding-right: calc(10em * 0.6);
    }
}

.gap-10 {
    gap: 10em;
}

@media screen and (max-width: 768px) {
    .gap-10 {
        gap: calc(10em * 0.6);
    }
}

.gap-05 {
    gap: 0.5em;
}

@media screen and (max-width: 768px) {
    .gap-05 {
        gap: 0.3em;
    }
}

.hoverOpa {
    transition: opacity .3s;
}

.hoverOpa:hover {
    opacity: .8;
}

.ofCover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit:cover;';
}

.ofCotain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit:contain;';
}

.youtubeWrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtubeWrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.selectStl01 {
    position: relative;
    background: #f2f2f2;
}

.selectStl01:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #909090;
    border-bottom: 0;
    transform: translateY(-25%);
    pointer-events: none;
}

.selectStl01 select {
    width: 100%;
    padding: .5em .75em;
}

.mw_wp_form_preview .selectStl01 {
    background: transparent;
}

.mw_wp_form_preview .selectStl01:after {
    display: none;
}

.selectStl01 select.select {
    color: #909090;
}

/*==================================

全ページ共通CSS

==================================*/

.ttlStl01 {
    margin-bottom: 2.75em;
    text-align: center;
}

.ttlStl01 .ico {
    display: block;
    margin-bottom: 1.5em;
}

.ttlStl01 h2 {
    margin: .5em 0 .25em;
    color: #042f4d;
    font-size: 2em;
    font-weight: bold;
}

.ttlStl01 .en {
    display: block;
    margin-top: .75em;
    color: #37A0DA;
    font-family: "azo-sans-web";
    font-size: 1.8rem;
}

.ttlStl02 {
    margin-bottom: .75em;
}

.ttlStl02>span {
    display: inline-block;
    padding: 0 .25em;
    color: #042f4d;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4em;
    background: linear-gradient(transparent 60%, #ff8596 60%,
            #ff8596 95%, transparent 95%);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.ttlStl02>span .fzS {
    font-size: .875em;
}

.ttlStl03 {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: .5em 0;
    margin-bottom: 2em;
    padding-bottom: .75em;
    color: #042f4d;
    border-bottom: 1px solid #042f4d;
}

.ttlStl03.blue {
    border-bottom-color: #036eb8;
}

.ttlStl03.light-blue {
    border-bottom-color: #5BC1D8;
}

.ttlStl03.pink {
    border-bottom-color: #ED85A0;
}

.ttlStl03.orange {
    border-bottom-color: #f08800;
}

.ttlStl03.green {
    border-bottom-color: #6fb92c;
}


.ttlStl03 h2 {
    margin-right: .5em;
    font-size: 2em;
    font-weight: bold;
}

.ttlStl03 .en {
    color: #37A0DA;
    font-family: azo-sans-web, sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1em;
}

.ttlStl03.blue h2,
.ttlStl03.blue .en {
    color: #036eb8;
}

.ttlStl03.light-blue h2,
.ttlStl03.light-blue .en {
    color: #5BC1D8;
}

.ttlStl03.pink h2,
.ttlStl03.pink .en {
    color: #ED85A0;
}

.ttlStl03.orange h2,
.ttlStl03.orange .en {
    color: #f08800;
}

.ttlStl03.green h2,
.ttlStl03.green .en {
    color: #6fb92c;
}

.ttlStl03 .ttl__date {
    margin-left: auto;
    color: #1a1a1a;
    font-size: 1.333em;
    font-weight: bold;
    line-height: 1em;
}

.ttlStl03 span img {
    display: block;
}

.ttlStl03 .ttl__date .fzL {
    font-size: 1.5em;
    line-height: 1em;
}

.ttlStl03 .ttl__date .week {
    display: inline-block;
    margin: 0 -.4em;
    line-height: 1em;
}

.ttlStl04 {
    margin-bottom: 1.5em;
    padding: 0 1.5em;
    color: #c1272d;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    background: #c1272d;
}

.ttlStl04 span {
    padding: 0 1em;
    line-height: 1.2em;
    background: #fff;
    border-radius: 200px;
}

.ttlStl05>span {
    padding: 0 0.2em;
    color: #042f4d;
    font-size: 1.333em;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(247, 181, 44, 0) 70%, rgba(247, 181, 44, 1) 70%);
}

.ttlStl05>span .fzS {
    font-size: .875em;
}

.ttlStl05.blue span {
    background: linear-gradient(to bottom, rgba(3, 110, 184, 0) 70%, rgba(3, 110, 184, .65) 70%);
}

.ttlStl05.light-blue span {
    background: linear-gradient(to bottom, rgba(91, 193, 216, 0) 70%, rgba(91, 193, 216, .65) 70%);
}

.ttlStl05.pink span {
    background: linear-gradient(to bottom, rgba(237, 133, 160, 0) 70%, rgba(237, 133, 160, .65) 70%);
}

.ttlStl05.orange span {
    background: linear-gradient(to bottom, rgba(240, 136, 0, 0) 70%, rgba(240, 136, 0, 1) 70%);
}

.ttlStl05.green span {
    background: linear-gradient(to bottom, rgba(111, 185, 44, 0) 70%, rgba(111, 185, 44, 1) 70%);
}

.ttlStl06 {
    color: #042F4D;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.txtStl01 {
    color: #c1272d;
    font-size: 1.133em;
    font-weight: bold;
}

.linkStl01 {
    color: #c1272d;
}

.linkStl01:not(:hover),
.linkStl02:not(:hover) {
    text-decoration: underline;
}

.linkStl02 {
    color: #00478b;
    font-weight: bold;
}

.linkStl03:not(:hover) {
    text-decoration: underline;
}

.indent01 {
    padding-left: 1em;
    text-indent: -1em;
}

.indent01>* {
    text-indent: 0;
}

.ul01>* {
    padding-left: 1em;
    text-indent: -1em;
}

.ul01>*:before {
    content: '※';
}

.ul02>* {
    padding-left: 1em;
    font-size: .9em;
    text-align: left;
    text-indent: -1em;
}

.ul02>*:before {
    content: '・';
}

.greenBox {
    margin-top: 1em;
    padding: .6em 1em;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: #8FC31F;
    border-radius: 4px;
}

.fc_blue01 {
    color: #00478b;
}

.fc_blue02 {
    color: #036eb8;
    font-size: 1em;
}

.fc_light-blue01 {
    color: #5BC1D8;
}

.fc_orange01 {
    color: #f08800;
}

.fc_red01 {
    color: #c1272d;
}

.fc_pink01 {
    color: #ED85A0;
}

.fc_nvy {
    color: #042f4d;
}

.fc_yellow01 {
    color: #f7b52c;
}

.underline {
    line-height: 1.5em;
    text-decoration: underline;
    text-decoration-color: #c1272d;
    text-underline-offset: .25em;
}

.notesBox01 {
    margin: 0 auto;
    padding: .75em;
    color: #c1272d;
    font-size: 1.142857em;
    font-weight: bold;
    background: #fff;
    border: 1px solid #c1272d;
}

.notes {
    margin-top: .2em;
    font-size: 92%;
}

.tableStl01 {
    width: 100%;
}

.tableStl01>thead>tr>th {
    padding: 1em;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.25em;
    vertical-align: middle;
    background: #036eb8
}

.tableStl01>thead>tr>th+th {
    border-left: 1px solid #fff;
}

.tableStl01>tbody>tr>* {
    padding: 1.2em .5em;
    vertical-align: middle;
}

.tableStl01>tbody>tr>th {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.25em;
    background: #036eb8;
}

.tableStl01>tbody>tr>th .fzM {
    font-size: .8888em;
    line-height: 1.2em;
}

.tableStl01>tbody>tr>th+th {
    border-left: 1px solid #fff;
}

.tableStl01>tbody>tr>td {
    text-align: center;
    line-height: 1.25em;
    background: #fff;
    border: 1px solid #036eb8;
}

.tableStl01.green>tbody>tr>th {
    background-color: #6fb92c;
}

.tableStl01.green>tbody>tr>td {
    border-color: #6fb92c;
}

.tableStl01.light-blue>tbody>tr>th {
    background-color: #5BC1D8;
}

.tableStl01.light-blue>tbody>tr>td {
    border-color: #5BC1D8;
}

.tableStl02 {
    border-collapse: separate;
    border-spacing: 0 1em;
}

.tableStl02>tbody>tr>* {
    vertical-align: middle;
}

.tableStl02>tbody>tr>th {
    padding: .5em 3em .5em 0;
    font-size: 1.125em;
}

.tableStl02>tbody>tr>th {
    position: relative;
    padding: .5em .2em .5em .4em;
    color: #fff;
    line-height: 1.2em;
    text-align: center;
    background: #042f4d;
}

.tableStl02>tbody>tr>th>* {
    line-height: 1.2em;
}

.tableStl02>tbody>tr>th:before,
.tableStl02>tbody>tr>th:after {
    content: '';
    position: absolute;
    display: block;
    width: 1.2em;
    height: 50%;
    right: 1px;
    transform: translateX(100%);
}

.tableStl02>tbody>tr>th:before {
    top: 0;
    background: linear-gradient(to bottom left, rgba(4, 47, 77, 0) 48%, rgba(4, 47, 77, 1) 50%);
}

.tableStl02>tbody>tr>th:after {
    bottom: 0;
    background: linear-gradient(to top left, rgba(4, 47, 77, 0) 48%, rgba(4, 47, 77, 1) 50%);
}

.tableStl02>tbody>tr>td {
    padding: .5em 0 .5em 1.5em;
}

.tableStl02>tbody>tr>td * {
    line-height: 1.4em;
}

.tableStl03>tbody>tr>* {
    vertical-align: middle;
    border: 1px solid #e7e4d8;
}

.tableStl03>tbody>tr>th {
    padding: .8em 1em;
    color: #042f4d;
    font-size: 1.125em;
    background: #e7e4d8;
}

.tableStl03>tbody>tr>th p {
    margin-top: .5em;
    line-height: 1.2em;
}


.tableStl03>tbody>tr>td {
    padding: 1em;
    background: #fff;
}

.tableStl03>tbody>tr>td ol {
    font-size: 1em !important;
}

.tableStl04>tbody>tr {
    border-top: 1px dashed #b3b3b3;
}

.tableStl04>tbody>tr:last-of-type {
    border-bottom: 1px dashed #b3b3b3;
}

.tableStl04>tbody>tr>* {
    padding: 1.5em 1.2em;
    vertical-align: middle;
}

.tableStl04>tbody>tr>th {
    padding-right: 1em;
    color: #042f4d;
    text-align: center;
    line-height: 1.2em;
    background: linear-gradient(to right, transparent .3em, #f4f2ec .3em);
}

.tableStl04>tbody>tr>th>p {
    line-height: 1.2em;
}

.tableStl05 {
    width: 100%;
}

.tableStl05 tr {
    background: #f4f2ec;
}

.tableStl05 tr:nth-of-type(even) {
    background: #f9f8f5;
}

.tableStl05 tr>* {
    padding: .65em 1em;
}

.tableStl05 tr td {
    color: #00478b;
    font-weight: bold;
}

.btn01 {
    display: inline-block;
    padding: .15em 2.5em;
    color: #fff;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    text-align: center;
    line-height: 1.2em;
    background: #37A0DA;
}

.btnStl01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    max-width: 100%;
    min-height: 52px;
    padding: .6em 1.5em .6em .5em;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
    background: #036eb8 url(../images/arrowR01_wh.svg) no-repeat center right .8em;
    border-radius: 200px !important;
    transition: opacity .3s;
}

.btnStl_dl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    max-width: 100%;
    min-height: 52px;
    padding: .12em 1.8em .2em .75em;
    color: #fff;
    font-size: 1.125em;
    font-weight: bold;
    line-height: 1.1em !important;
    text-align: center;
    background-color: #000;
    background-image: url(../images/ico_download_wh.svg);
    background-position: center right 1em;
    background-repeat: no-repeat;
    border-radius: 26px;
    transition: opacity .3s;
}

.btn_l {
    width: 400px;
    min-height: 70px;
    font-size: 2.4rem;
    border-radius: 5000px;
}

.btn_grd {
    background: linear-gradient(-30deg, #ff3450, #0066d4);
}

.btn_grd.btnStl_dl {
    background: url(../images/ico_download_wh.svg) no-repeat center right 1em, linear-gradient(-30deg, #ff3450, #0066d4);
}

.btn_grd.btnStl01 {
    background: url(../images/arrowR01_wh.svg) no-repeat center right 1em, linear-gradient(-30deg, #ff3450, #0066d4)
}

.btnStl01:hover,
.btnStl_dl:hover {
    opacity: .8;
}

.btn_navy {
    background-color: #00478b;
}

.btn_blue {
    background-color: #036eb8;
}

.btn_green {
    background-color: #8fc31f;
}

.btn_orange {
    background-color: #f08800;
}

.btn_red {
    background-color: #c82748;
}

.btn_pink {
    background-color: #ED85A0;
}

.btn_light-blue {
    background-color: #5BC1D8;
}

.tabBtn {
    display: flex;
    justify-content: space-between;
}

.tabBtn>li {
    width: 49.5%;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.tabBox>*:not(.active) {
    display: none;
}

.eventBox {
    margin-top: 1.5em;
}

.eventBox .tabBtn>li {
    padding: .6em 1em;
    font-size: 1.33em;
    background: #fff;
}

.eventBox .tabBtn>li:first-of-type {
    color: #37A0DA;
    border-top: 1px solid #37A0DA;
    border-right: 1px solid #37A0DA;
    border-left: 1px solid #37A0DA;
}

.eventBox .tabBtn>li:nth-of-type(2) {
    color: #DE6C65;
    border-top: 1px solid #DE6C65;
    border-right: 1px solid #DE6C65;
    border-left: 1px solid #DE6C65;
}

.eventBox .tabBtn>li.active {
    color: #fff;
}

.eventBox .tabBtn>li.active:first-of-type {
    background: #37A0DA;
}

.eventBox .tabBtn>li.active:nth-of-type(2) {
    background: #DE6C65;
}

.eventBox .tabBox>div.active:first-of-type {
    border: 1px solid #37A0DA;
}

.eventBox .tabBox>div.active:nth-of-type(2) {
    border: 1px solid #DE6C65;
}

.eventBox>dd {
    padding: 1.5em 1.2em;
    background: #F4F2EC;
}

.eventBox .tabBox>* {
    padding: 2.4em;
    background: #fff;
}

.time-schedule table {
    width: 100%;
}

.time-schedule table tr th {
    width: 4em;
    font-weight: 500;
    text-align: center;
}

.time-schedule table tr th span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: .1em .4em .2em;
    color: #fff;
    vertical-align: text-top;
    background: #37A0DA;
    line-height: 1em;
}

.tabBox>*:nth-of-type(2) .time-schedule table tr th span {
    background: #DE6C65;
}

.time-schedule table tr:not(:last-of-type) th:not(.last) {
    position: relative;
    padding-bottom: 1.2em;
    /* background: url(../images/2025/arrowB02_yallow.svg) no-repeat bottom center; */
}

.time-schedule table tr:not(:last-of-type) th:not(.last):before {
    content: '';
    position: absolute;
    top: .5em;
    bottom: 5px;
    right: 0;
    left: 0;
    height: 100%;
    /* background: url(../images/2025/arrow_border-vertical_yellow.svg) repeat-y center top; */
}

.time-schedule table tr td {
    padding-left: 10px;
    padding-bottom: .3em;
}

body .time-schedule table tr>td:nth-last-of-type(2) {
    width: 3em;
    text-align: center;
}

.time-schedule table tr td.txt_l {
    font-size: 1.33em;
}

.accordionBox>dt {
    cursor: pointer;
}

.accordionBox.eventBox>dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8em 1.4em;
}

.accordionBox.eventBox>dt .icon {
    display: block;
    flex-shrink: 0;
    margin-left: 1em;
    width: 1.4em;
    height: 1.4em;
    /* background: url(../images/2025/plus.svg) no-repeat center center /contain; */
}

.accordionBox.eventBox>dt.active .icon {
    /* background: url(../images/2025/minus.svg) no-repeat center center /contain; */
}

.boxStl01 {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
    padding: 3px;
    background: linear-gradient(90deg, #0066d4, #ff3450);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

.boxStl01__inner {
    position: relative;
    z-index: 1;
    padding: 4em 8% 3em;
    background: #fff;
}

.boxStl01__inner>dl+dl {
    margin-top: 2em;
}

.boxStl01__inner>dl>dd {
    font-size: 1.6rem;
    line-height: 1.75em;
}

.greenBox {
    margin-top: 1em;
    padding: .6em 1em;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: #8FC31F;
    border-radius: 4px;
}

.fc_blue01 {
    color: #00478b;
}

.bk_white {
    background: #fff;
}

.bk_ecru {
    background: #f4f2ec;
}

/*==================================

ヘッダー

==================================*/

.floatH {
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}

header {
    z-index: 99;
    padding: 1em 0;
    background: #fff;
}

header:after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 1px;
    height: 30px;
    background: url(../images/header_bk.png) repeat-x top left;
    transform: translateY(100%);
}


header>.flexBox {
    max-width: 95%;
    margin: 0 auto;
}

header nav {
    flex-grow: 1;
}

header nav .snsBtn_wrap {
    gap: .5em;
    padding: .8em 25px;
}

header nav a {
    display: block;
    text-align: center;
    transition: .3s;
}

header nav a:hover {
    opacity: .7;
}

header nav a p {
    margin-top: .2em;
    color: #042f4d;
    font-weight: bold;
}

header nav a>img {
    width: 34px;
}

header nav a>span {
    display: block;
    margin: 0 auto;
}

header nav a .en {
    display: block;
    margin: .25em auto 0;
    color: #37A0DA;
    font-family: "azo-sans-web";
    font-size: 1rem;
    line-height: 1.2em;
}

header nav .entryBtn {
    margin: 0;
}

header nav .entryBtn a {
    display: flex;
    align-items: center;
    padding: .5em 1.5em;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    text-align: left;
    background: #C1272D;
    border-radius: 1000px;
}

header nav .entryBtn a:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: .6em;
    height: .8em;
    margin-left: 1em;
    background: url(../images/arrowR01_wh.svg) no-repeat center center / contain;
}

header nav:has(.btn2) .entryBtn a:after {
    width: .4em;
    height: .6em;
}

header nav:has(.btn2) .entryBtn a:not(.btn2) {
    padding-right: .75em;
}


header nav .entryBtn a.btn2 {
    background-color: #036eb8;
}

@media screen and (min-width:768.1px) {
    header nav:has(.btn2) .entryBtn a {
        min-width: 160px;
        min-height: 51px;
    }

    header nav:has(.btn2) .entryBtn a:not(.btn2):after {
        margin-left: 2.5em;
    }

    header nav .entryBtn a.btn2 {
        padding: .5em .75em .5em .5em;
        font-size: .95em;
        text-align: center;
        letter-spacing: -0.05em;
    }

    header nav .entryBtn a.btn2::after {
        margin-left: .25em;
    }

}

.main_info_date {
    z-index: 9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5em 2em;
    justify-content: flex-end;
    padding: .2em 1.5% .45em;
    color: #fff;
    background-color: #042F4D;
}

.main_info_date dl {
    display: flex;
    align-items: center;
    gap: .25em;
}

.main_info_date dl dt {
    padding: .1em .2em .2em;
    color: #014789;
    font-size: 1.2rem;
    font-weight: bold;
    background: #fff;
    line-height: 1em;
    white-space: nowrap;
}

.main_info_date dl dd .fzS {
    font-size: .8em;
}

.main_info_date dl dd .week {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    margin-left: .5em;
    padding: 0 .1em .1em 0;
    font-size: 1.1rem;
    line-height: 1em;
    background: #c82748;
    border-radius: 50%;
    transform: translateY(-.1em);
    aspect-ratio: 1/1;
}


.main_info_date .snslink {
    gap: .35em;
}

/*==================================

フッター

==================================*/

.pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
}

footer {
    padding: 2.25em 0 0;
    background: #F4F2EC;
}

footer * {
    letter-spacing: 0;
}

footer>.flexBox {
    width: 1050px;
    max-width: 98%;
    margin: 0 auto;
}

footer .adobeReader {
    margin-bottom: 2.6em;
    padding: 1em 1.2em;
    font-size: 1.1rem;
    line-height: 1.4em;
    background: #E2D7A1;
}

footer .adobeReader a {
    color: #C1272D;
}

footer .adobeReader .img {
    flex-shrink: 0;
    max-width: 40%;
    margin-right: 1em;
}

footer .adobeReader a:hover {
    text-decoration: underline;
}

footer .adobeReader p,
footer .adobeReader p * {
    letter-spacing: -0.02em;
    line-height: 1.4em;
}

footer .logo {
    margin-bottom: 1.6em;
}

footer address * {
    line-height: 1.4em;
}

footer address dl dt {
    margin-bottom: .3em;
    font-feature-settings: "palt";
}

footer address table th {
    font-weight: 500;
}

footer .snslink {
    gap: .5em;
    margin: 0 auto 1.5em;
}

footer .sponsor {
    line-height: 1.2em;
}

footer .sponsor span {
    display: inline-block;
    font-size: .866em;
    letter-spacing: 0;
    line-height: 1.2em;
}

footer .copyright {
    margin-top: 5em;
    padding: .5em;
    color: #fff;
    font-size: 1.1rem;
    background: #dc3b62;
}

/*==================================

トップページ

==================================*/
.eventStatus {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: .5em 1em .65em;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    background: #036eb8;
}

.eventStatus * {
    line-height: 1.3em;
}

.eventStatus__title {
    margin-bottom: .2em;
    font-size: 3.2rem;
}

.eventStatus a {
    margin-right: 0.05em;
    color: #f7b52c;
    text-underline-offset: 5px;
}

.eventStatus a:not(:hover) {
    text-decoration: underline;
}

.comingsoon_notice {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 1.5em auto .5em;
    font-size: 3.5rem;
    font-weight: bold;
}

.comingsoon_notice * {
    line-height: 1.3714em;
}

.comingsoon_notice>span {
    display: inline-block;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #ed2f0a, #ef7700);
    background: -webkit-linear-gradient(0deg, #ed2f0a, #ef7700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

#notes {
    padding: 10em 0;
    background: #F4F2EC;
}

.notes__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .25em;
    color: #00478b;
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: .03em;
    line-height: 1.4em;
    background-size: 16px 2px;
    background-repeat: repeat-x;
    background-position: center bottom;
}

.notes__title .gradation {
    display: inline-block;
    margin: 0 -.25em;
    background: linear-gradient(90deg, #0066d4,
            #ff3450);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notes__title:before,
.notes__title:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 4px;
    height: 1em;
    background: linear-gradient(#00478b 50%, transparent 50%) repeat-y top center / 4px 13px;
}

.notes__title:before {
    margin-right: .25em;
    transform: rotate(-25deg);
}

.notes__title:after {
    margin-left: .25em;
    transform: rotate(25deg);
}

.notes__title * {
    line-height: 1.4em;
}

.notes__title .fzS {
    font-size: 0.888888em;
}

.notes__title .fc_pink {
    color: #c1272d;
}

.notes__text {
    /* max-width: 640px; */
    color: #042f4d;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

#notes .txtStl01 {
    margin-top: 1.25em;
}

#lead {
    padding: 6em 0 5em;
}

#lead .lead__text {
    max-width: 500px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

#lead .lead__copy {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.introduction__cooperation {
    margin-top: 5em;
    padding: 2em 5% 3em;
    background: #fff;
    border-top: 1px solid #042f4d;
    border-bottom: 1px solid #042f4d;
}

.introduction__cooperation dt {
    margin-bottom: 1em;
    color: #042f4d;
    font-size: 2.4rem;
    font-weight: bold;
}

.introduction__cooperation dd {
    color: #d61518;
}

.introduction__media {
    gap: 4.5em 5%;
    margin: 5.5em 0 3em;
}

.introduction__media dt {
    color: #042f4d;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.625em;
}

.introduction__media dt * {
    line-height: 1.625em;
}

.introduction__media__movie dt {
    margin-bottom: 1.75em;
}

.introduction__media__sns dt {
    margin-bottom: 1.5em;
}

.introduction__media__sns ul.flexBox {
    gap: 1em;
}

.introduction__media__sns dd p {
    margin-top: 1em;
    font-size: 1.4rem;
}

.introduction__media__tv {
    margin-top: 3em;
}

.introduction__media__tv dd p {
    font-size: 1.4rem;
}

.introduction__media__tv table {
    margin: 0 auto 1em;
    font-size: 1.6rem;
}

.introduction__media__tv table tr * {
    vertical-align: middle;
}

.introduction__media__tv table th span {
    display: inline-block;
    padding: .3em .5em .4em;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1em;
    white-space: nowrap;
    background: linear-gradient(90deg, #ed2f0a, #ef7700);
}

.introduction__media__tv table td {
    padding-left: .5em;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.1em;
    text-align: left;
}

.introduction__media__tv table td * {
    line-height: 1.1em;
    vertical-align: middle;
}

.introduction__media__tv table td .fzS {
    font-size: .75em;
    letter-spacing: 0.05em;
    line-height: 1.1em;
}

.introduction__media__tv .linkStl01 {
    color: #de6c65;
}


#sponsors {
    padding: 3em 0 2em;
}

#sponsors .sponsors__list {
    display: grid;
    gap: .8em;
    justify-items: center;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(100px, 190px));
    margin-bottom: 3.5em;
}

ul.sponsors__list>li {
    background: #fff;
}

ul.sponsors__list>li a {
    transition: opacity .3s;
}

ul.sponsors__list>li a:hover {
    opacity: .8;
}

ul.sponsors__list>li img {
    width: 100%;
    border: 1px solid #666666;
}

@media screen and (max-width:768px) {
    #notes {
        padding: 6em 0;
    }

    .notes__title:before,
    .notes__title:after {
        height: 1.5em;
        margin: 0;
        background-size: 2px 8px;
    }

    .notes__text {
        font-size: 1.8rem;
    }

    .introduction__cooperation dt {
        font-size: 2rem;
    }

    .introduction__media {
        flex-direction: column;
    }

    .introduction__media__tv {
        margin-top: 4em;
    }

    .eventStatus {
        padding: 1em;
        font-size: 1.5rem;
    }

    .eventStatus__title {
        margin-bottom: .5em;
        font-size: 2.4rem;
    }

    .eventStatus__title .fzS {
        display: inline-block;
        margin-right: .05em;
        font-size: .75em;
        transform: translateY(-.1em);
    }

    .comingsoon_notice {
        font-size: 3rem;
    }

    ul.sponsors__list {
        gap: 1em 2%;
    }

    ul.sponsors__list>li {
        flex-basis: 49%;
    }
}

/* NEWS
==================================*/

.newsPickup {
    display: grid;
    align-items: center;
    gap: .5em 1em;
    grid-template-columns: 1fr auto auto;
    min-height: 55px;
    margin-bottom: 2em;
    font-weight: bold;
    background: #fff;
    border: 1px solid #c1272d;
    transition: opacity .3s;
}

.newsPickup:hover {
    opacity: .85;
}

.newsPickup_accordion {
    margin-bottom: 2.5em;
}

.newsPickup__title {
    padding: .25em .5em;
    color: #c1272d;
    font-size: 1.2857em;
    text-align: center;
    letter-spacing: .075em;
    line-height: 1.4em;
}

.newsPickup__title span {
    display: inline-block;
    line-height: 1.4em;
}

.newsPickup__date {
    padding: .5em .25em;
    color: #042f4d;
    font-size: 1.07142em;
    letter-spacing: .075em;
    line-height: 1.5em;
}

.newsPickup__date:empty {
    padding: .3em 0;
}

.newsPickup__date span {
    display: inline-block;
    line-height: 1.5em;
}

.newsPickup__link {
    display: flex;
    align-items: center;
    gap: 0 .75em;
    justify-content: center;
    height: 100%;
    padding: .5em .75em .5em 1.25em;
    color: #fff;
    font-size: 1.1em;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    background: #c1272d;
    cursor: pointer;
}

.accordionBtn {
    cursor: pointer;
    position: relative;
}

.newsPickup_accordion .panel {
    display: none;
}

.newsPickup__link.accordion_close:after {
    transform: translateY(2px) rotate(90deg);
}

.newsPickup_accordion .active .newsPickup__link::after {
    content: '';
    display: block;
    width: 0.4em;
    height: 0.8em;
    transform: rotate(-90deg);
}

.newsPickup_accordion .newsDetail_content {
    margin-bottom: 2em;
    background: #fff;
    border: 1px solid #c1272d;
}

.newsDetail_content .ttlStl05 span {
    display: inline-block;
    line-height: 1.6em;
    background: linear-gradient(to bottom, rgba(247, 181, 44, 0) 63%, rgba(247, 181, 44, 1) 63%, rgba(247, 181, 44, 1) 92%, rgba(247, 181, 44, 0) 92%);
}

.newsPickup_accordion .newsDetail_content .entry__content__details {
    font-size: 1.6rem;
}

.newsPickup_accordion .newsDetail_content>.newsDetail_wrap {
    padding: 3em 7%;
}

.newsPickup_accordion .newsDetail_content .entry__content__details>.entry__content__details {
    padding-right: 0;
    padding-left: 0;
}

.newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>th {
    background-color: #036eb8;
    color: #fff;
    text-align: center;
    padding: 0 0.5em;
    font-size: 1.8rem;
}

.newsPickup_accordion .newsDetail_content .entry__content__details .tableStl02>tbody>tr>th {
    width: 8em;
}

.newsPickup_accordion .newsDetail_content .entry__content__details .tableStl02>tbody>tr>td {
    font-size: 2rem;
}

.newsPickup_accordion .newsDetail_content .entry__content__details .tableStl02>tbody>tr>td table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.newsPickup_green .newsDetail_content {
    border-color: #004e2b;
}

.newsPickup_green .newsPickup__title {
    color: #004e2b;
}

@media screen and (min-width: 769px) {
    .newsPickup {
        padding-left: 2.5em;
    }

    .newsPickup .newsPickup__title {
        text-align: left;
    }

    .newsPickup_accordion .newsDetail_content {
        border-top: none;
    }

    .newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>th {
        padding-left: 8px;
    }
}

@media screen and (max-width: 768px) {
    .newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>td {
        font-size: 1em;
    }

    .newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>td a {
        text-decoration: underline;
    }

    .newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>* {
        display: block;
        width: 100% !important;
    }

    .newsPickup_accordion .newsDetail_content>.newsDetail_wrap {
        padding: 2em 5%;
    }

    .newsPickup_accordion .newsDetail_content>.newsDetail_wrap table {
        width: 100%;
    }

    .newsPickup_accordion .newsDetail_content>.newsDetail_wrap table td {
        padding-right: 0;
        padding-left: 0;
    }

    .newsPickup_accordion .newsDetail_content>.newsDetail_wrap .tableStl02 table {
        margin-top: .75em;
    }

    .newsPickup_accordion .newsDetail_content>.newsDetail_wrap .tableStl02 table td {
        padding-top: .5em;
        padding-bottom: .5em;
    }

    .newsPickup_accordion .newsDetail_content .entry__content__details {
        font-size: 1.4rem;
    }

    .newsDetail_content .ttlStl05 span {
        font-size: 1.6rem;
    }

    .newsPickup_accordion .newsDetail_content .entry__content__details .tableStl02>tbody>tr>td {
        font-size: 1.6rem;
    }

    .newsPickup_accordion .newsDetail_content .tableStl02>tbody>tr>td>table>tbody>tr>th {
        font-size: 1.5rem;
    }

}

.newsPickup_green .newsPickup,
.newsPickup_green .newsDetail_content {
    border-color: #004e2b;
}

.newsPickup_green .newsPickup__title {
    color: #004e2b;
}

.newsPickup_green .newsPickup__link {
    background: #004e2b;
}

.newsPickup__link:after {
    content: '';
    display: block;
    width: .4em;
    height: .8em;
    background: url(../images/arrowR01_wh.svg) no-repeat center center / contain;
}

@media screen and (max-width:768px) {
    .newsPickup {
        display: block;
    }

    .newsPickup__title {
        padding-top: .75em;
    }

    .newsPickup__date {
        padding: .4em .5em .9em;
        text-align: center;
    }
}

#news {
    padding: 6em 0;
    font-size: 1.4rem;
    background: #f4f2ec;
}

#news .newsWrap {
    padding: .8em 1.2em;
    border-top: 1px solid #042F4D;
    border-bottom: 1px solid #042F4D;
}

#news .newsBox {
    padding: 15px;
    background: #fff;
}

#news .scrollBox {
    padding: 1em 2em;
    max-height: 212px;
    overflow-y: scroll;
}

.scrollBox::-webkit-scrollbar {
    width: 18px;
}

.scrollBox::-webkit-scrollbar-track {
    background: #E6E6E6;
    border-right: 4px solid #fff;
    border-left: 4px solid #fff;
}

.scrollBox::-webkit-scrollbar-thumb {
    background: #042F4D;
    border-radius: 2px;
}

.newsTable {
    width: 100%;
}

.newsTable tr {
    border-bottom: 1px dashed #B3B3B3;
}

.newsTable tr>* {
    padding: 1em .5em;
}

.newsTable th {
    width: 7.5em;
}

.newsTable th span {
    display: inline-block;
    padding: .2em .5em;
    color: #fff;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro";
    font-weight: normal;
    line-height: 1em;
    background: #F7B52C;
}

.newsTable td {
    color: #042F4D;
    font-weight: 500;
}

.newsTable td .accordionBox dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsTable td .accordionBox dt .icon {
    flex-shrink: 0;
    margin-left: .5em;
}

.newsTable td .accordionBox dt.active .icon img {
    transform: rotate(180deg);
}

.newsTable td .accordionBox dd {
    padding: .2em 0;
}


.newsTable td a,
.link01 {
    color: #DE6C65;
}

.newsTable td a:not(:hover),
.link01:not(:hover) {
    text-decoration: underline;
}

.newsTable tr>td .txt {
    color: #231815;
}

#news .news_toggle>dt {
    position: relative;
    padding-right: 2em;
    color: #de6c65;
    cursor: pointer;
}

#news .news_toggle>dt:not(:hover) {
    text-decoration: underline;
}

#news .news_toggle>dt:after {
    content: '';
    position: absolute;
    top: 50%;
    right: .2em;
    display: block;
    width: .5em;
    height: .5em;
    border-right: 1px solid #042f4d;
    border-bottom: 1px solid #042f4d;
    transform: translateY(-75%) rotate(45deg);
}

#news .news_toggle>dt.active:after {
    transform: translateY(-50%) rotate(-135deg);
}

#news .news_toggle dd {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 1px solid #b3b3b3;
}

/* MAP
==================================*/

#map {
    padding: 5.5em 0 3em;
}

.areaMap {
    margin-top: 1.4em;
}

.areaMap img {
    width: 100%;
}


/* OUTLINE
==================================*/

#outline {
    padding: 8em 0 3em;
}


.outline__box {
    padding: 7%;
    background: #fff;
    border: 3px solid #036eb8;
    box-shadow: 5px 5px 10px #c2c3c4;
}

.outline__box>* {
    max-width: 670px;
    font-feature-settings: "palt";
}

.outline__box p {
    margin-bottom: 2em;
    font-size: 1.0666em;
}

#outline dl dd {
    padding: 0 1em;
}

#outline .comingsoon {
    margin: 2.75em 0 0;
    padding: 1em 0 0;
    font-size: 2.5rem;
    background: linear-gradient(to right, #37a0da 50%, transparent 50%) repeat-x top left / 16px 2px;
}

.outline__box dl+dl {
    margin-top: 2em;
}

.outline__box dl dd {
    padding: .75em 1em;
    font-size: 1.066em;
    font-weight: bold;
    line-height: 1.8em;
}

.eventBox.green-stage>dt {
    background: #3FB587;
}

.eventBox.blue-stage>dt {
    background: #036EB8;
}

#outline .info_youtube {
    margin: 3em 0 2em;
    border-top: 2px solid #036EB8;
    border-bottom: 2px solid #036EB8;
}

#outline .info_youtube dt {
    display: inline-block;
    padding: .3em 1em .4em;
    color: #fff;
    font-size: 110%;
    background: #036EB8;
    border-radius: 0 0 6px 6px;
    transform: translateY(-1px);
}

#outline .info_youtube dd {
    padding: 1.2em 1em 1.5em;
}

.flexBox>.eventBox.areaMenu {
    flex-basis: 49.5%;
}

.eventBox.areaMenu>dt {
    background: #8FC31F;
}

.eventBox.areaMenu>dd {
    padding-bottom: 2em;
}

.eventBox.areaMenu dd ul+p {
    margin-top: 1em;
}

.eventBox .txt_yellow {
    margin-bottom: 1.4em;
}

#outline .exhibitList .txt_s {
    margin-left: .5em;
    font-size: 80%;
}

#outline .exhibitList .blue {
    color: #37A0DA;
}

#outline .exhibitList .pink {
    color: #DE6C65;
}

#outline .sportsCon {
    flex-basis: 49%;
}

#outline .sportsCon:nth-of-type(n+3) {
    margin-top: 1.5em;
}

#outline .sportsCon dl {
    display: flex;
    align-items: center;
    font-size: .86em;
}

#outline .sportsCon dl dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    min-height: 100%;
    margin-right: .4em;
    margin-bottom: -.6em;
    padding: .3em .2em 1em;
    color: #fff;
    text-align: center;
}

#outline .sportsCon[data-week="sat"] dl dt,
#outline .sportsCon .both-days dt:first-of-type {
    background: #37A0DA;
}

#outline .sportsCon[data-week="sun"] dl dt,
#outline .sportsCon .both-days dt:nth-of-type(2) {
    background: #DE6C65;
}

#outline .sportsCon .both-days {
    margin-top: 1.5em;
}



#outline .sportsCon .both-days dd {
    margin-left: .5em;
}

#outline .sportsCon .both-days+div .img+.img {
    margin-left: 2%;
}

#outline .sportsCon .both-days+div .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

#outline .sportsCon dl dt p {
    padding: 0 3px;
    border-bottom: 1px solid #fff;
}

#outline .sportsCon dl dt .day {
    padding-bottom: .1em;
    font-size: 2em;
    letter-spacing: -.05em;
}

#outline .sportsCon dl dt .week {
    font-size: 1rem;
    line-height: 1.2em;
}

#outline .sportsCon .img {
    border: 3px solid #37A0DA;
    border-radius: 6px;
    overflow: hidden;
}

#outline .sportsCon[data-week="sun"] .img {
    border-color: #DE6C65;
}

#outline .sportsCon .img img {
    width: 100%;
}

#outline .sportsCon dl dd .txt_s {
    font-size: 1rem;
    line-height: 1.4em;
}

#outline .sportsCon dl dd p:not(.txt_s) {
    text-indent: -.5em;
    letter-spacing: -.05em;
    line-height: 1.2em;
}

#outline #sports-area .notes {
    margin-top: .5em;
    padding-left: 2.3em;
    font-size: 75%;
    line-height: 1.4em;
    text-indent: -2.3em;
}

#outline .others {
    padding: 4em 0;
}

#outline .others .eventBox>dt {
    padding: .3em .5em .5em;
    background: #DE6C65;
}

#outline .others .eventBox dd {
    padding: .7em 1.2em;
}

#outline .others .eventBox dd .info {
    margin-bottom: .5em;
    padding-bottom: .5em;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro";
    font-size: 1.066em;
    font-weight: bold;
    border-bottom: 1px dashed #DE6C65;
}

#outline .others .eventBox dd .info>* {
    padding-left: 1.7em;
    text-indent: -1.7em;
}

#outline .others .eventBox dd .info>* * {
    text-indent: 0;
}

#outline .others .eventBox dd .info>*:before {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
    vertical-align: text-top;
}

#outline .others .eventBox dd .info>.time:before {
    background: url(../images/2025/icon_time_yellow.svg) no-repeat center center / contain;
}

#outline .others .eventBox dd .info>.area:before {
    background: url(../images/2025/icon_area_yellow.svg) no-repeat center center / contain;
}

#outline .others .eventBox dd .info>.performance:before {
    content: '■';
    color: #F7B52C;
    text-align: center;
    text-indent: 0;
}

#outline .others .eventBox dd .info>.performance ul li {
    margin-right: .6em;
}

#outline .others .eventBox dd .info .btn01 {
    margin: 0 .7em;
    text-indent: 0;
}

#outline .others .eventBox dd .flexR {
    flex-shrink: 0;
}

@media screen and (max-width:768px) {
    #outline .comingsoon {
        font-size: 2rem;
    }
}

/* ACCESS
==================================*/

#access {
    padding: 5em 0 0;
}

#access .accessTbl {
    margin: 3em auto;
    font-size: 1.333em;
}

#access .accessTbl tr>* {
    padding: .3em 0;
}

#access .accessTbl tr th {
    padding-right: 6em;
    padding-left: 1em;
    font-weight: 500;
    text-indent: -1em;
}

#access .accessTbl tr th:before {
    content: '■';
    color: #F7B52C;
}

/* FAQ
==================================*/

#faq {
    padding: 6em 0 5em;
    background: #f4f2ec;
}

.faq__category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2em 3%;
    justify-content: center;
    margin-bottom: 3.5em;
}

.faq__category>li {
    flex-basis: 25%;
}

.faq__category>li>a {
    display: flex;
    align-items: center;
    gap: 0 1.5em;
    justify-content: center;
    min-height: 52px;
    padding: .5em 1em .5em 2em;
    color: #fff;
    font-weight: bold;
    line-height: 1.05em;
    text-align: center;
    background: #036EB8;
    border-radius: 500px;
    transition: opacity .3s;
}

.faq__category>li>a:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: .75em;
    height: .75em;
    background: url(../images/arrowR01_wh.svg) no-repeat center center / contain;
}

.faq__category>li>a:hover {
    opacity: .8;
}

.faq__list__category {
    margin-top: 2.25em;
    padding: 1em 1.25em;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    background: #042F4D;
}

.faq__box {
    padding: .4em 1em;
    background: #fff;
    border-bottom: 1px solid #042f4d;
}


.faq__question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.1em .5em 1.2em 4em;
    background: url(../images/ico_q.svg) no-repeat top .7em left .5em / 40px;
    cursor: pointer;
}


.faq__question p {
    font-size: 1.0666em;
    font-weight: bold;
    line-height: 1.5em;
}

.faq__question__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: .5em;
    margin-top: .2em;
}

.faq__question__icon:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background: #042f4d;
    border-radius: 20px;
    transform: translateY(-50%);
}

.faq__question:not(.active) .faq__question__icon:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 2px;
    height: 100%;
    margin: 0 auto;
    background: #042f4d;
    border-radius: 20px;
}

.faq__answer {
    padding: 1.2em .5em 1.5em 4em;
    background: url(../images/ico_a.svg) no-repeat top .7em left .5em / 40px;
    border-top: 1px dashed #b3b3b3;
}

.faq__answer p {
    font-size: .9333em;
    letter-spacing: .05em;
    line-height: 1.5em;
}

@media screen and (max-width:768px) {
    .faq__question__icon {
        width: 16px;
        height: 16px;
    }

    .faq__question,
    .faq__answer {
        padding-left: 3.25em;
        background-size: 32px;
        background-position: top .7em left .25em;
    }
}

/* CONTACT
==================================*/

#contact {
    padding: 6em 0;
}

#contact .ttlStl01 {
    margin-bottom: 1.5em;
}

#contact .ttlStl02>span {
    font-size: 2.8rem;
}

#contact .ttlStl01+p {
    margin-bottom: 1em;
    font-size: 2rem;
}

#contact h2+p .txt_s {
    font-size: 90%;
}

#contact .flexBox>* {
    margin: .7em 3% 1em;
}

#contact .telWrap .txt {
    margin-bottom: 19px;
}

#contact dl dt,
#contact dl dt span {
    line-height: 1.2em;
}

#contact dl dd {
    color: #c82748;
    font-size: 4.2rem;
    font-weight: bold;
}

#contact dl dd .btnStl01 {
    margin: 1.5em auto 0;
    font-size: 1.8rem;
}

#contact .telWrap p:not([class]) {
    margin: 1em auto;
    color: #042F4D;
    font-size: 1.466em;
    font-weight: bold;
}

#contact .notes {
    margin-top: 2.5em;
    font-size: 110%;
}

#contact .contact__text {
    margin-bottom: 2em;
    font-size: 1.333em;
}

.contact__introduction {
    margin: 1em auto 2.5em;
    font-size: 1.6rem;
}

.contact__introduction ul {
    font-size: .875em;
}

#privacypolicy {
    padding-bottom: 8em;
}


/* ここから追加 */
.formWrap .form,
.faxWrap .fax {
    display: grid;
    place-items: center;
}

.formWrap .form>span,
.faxWrap .fax>span {
    padding: 0 0.2em;
    width: fit-content;
    height: 42px;
    color: #042f4d;
    font-size: 2.8rem;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(247, 181, 44, 0) 78%, rgba(247, 181, 44, 1) 78%);
}

#contact .formWrap button a {
    display: flex;
    align-items: center;
    padding: 0.5em 1.25em;
    color: #fff;
    font-weight: bold;
    line-height: 1.2em;
    text-align: left;
    background: #c1272d;
    border-radius: 1000px;
    transition: .3s;
    margin-top: 0.7em;
    font-size: 1.5em;
}

#contact .formWrap button a::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 0.6em;
    height: 0.8em;
    margin-left: 1em;
    background: url(../images/arrowR01_wh.svg) no-repeat center center / contain;
}

#contact .formWrap button a:hover {
    opacity: .7;
}

#contact .faxWrap p.fax {
    font-size: 42px;
    font-weight: 800;
    color: #c1272d;
}

/* LINK
==================================*/

#link {
    padding: 3em 0 6em;
}

#link .ttlStl01 {
    margin-bottom: 1.5em;
}

#link .linkBn_wrap {
    color: #37A0DA;
    font-size: .8em;
}

#link .linkBn_wrap>li {
    margin: .5em;
}

/*==================================

下層ページ共通CSS

==================================*/

.nav__page {
    padding: .5em 0;
    color: #fff;
    background: #042f4d;
}

.nav__page li {
    position: relative;
    flex: 1;
    margin-left: -1px;
}

.nav__page li:before,
.nav__page li:after {
    content: '';
    position: absolute;
    top: .2em;
    bottom: .2em;
    display: block;
    width: 1px;
    background: #fff;
}

.nav__page li:before {
    left: 0;
}

.nav__page li:after {
    right: 0;
}

.nav__page li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: .6em .75em;
    line-height: 1.2em;
    text-align: center;
    transition: .3s;
}

.nav__page li a:hover {
    opacity: .8;
}

/*==================================

下層ページ:エントリーページ

==================================*/


#entry-page #notes {
    padding-top: 5em;
}

#entry-page .ul01>* {
    font-size: .933333em;
    line-height: 1.4em;
}

#entry-page ol li {
    line-height: 1.5em;
}

#entry-page .entry__content__details>ol>li+li {
    margin-top: .25em;
}

#entry-page #stage {
    padding: 5em 0;
}

#entry-page #stage table {
    margin-bottom: .5em;
}

#entry-page #stage .entry__content {
    margin-top: 3em;
}

#entry-page #stage .entry__content .indent01list {
    width: 98%;
    margin: 0.4em auto 0;
}

#entry-page #stage .stage__catch {
    margin-top: 1.4em;
    color: #5BC1D8;
    font-size: 1.733em;
    font-weight: bold;
}

#entry-page #stage .stage__catch p {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0 1em;
    justify-content: center;
    padding: 0 1.7em;
    line-height: 1.2em;
    background-image: url(../images/deco_flower01_bl.png), url(../images/deco_flower02_bl.png);
    background-position: center left, center right;
    background-repeat: no-repeat, no-repeat;
}

#entry-page #stage .stage__catch p:before,
#entry-page #stage .stage__catch p:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 2px;
    height: 1.6em;
    background: #5BC1D8;
}

#entry-page #stage .stage__catch p:before {
    transform: rotate(-30deg);
}

#entry-page #stage .stage__catch p:after {
    transform: rotate(30deg);
}

#entry-page #parade {
    padding: 8em 0 2em;
}

#entry-page #parade .parade__area {
    display: flex;
    gap: 2em 1.5em;
}

.entry__content__details {
    padding: .5em .75em 0;
    font-size: 1.066666666666667em;
}

.entry__content__details .fzS {
    font-size: .875em;
}

#entry-page #parade .entry__content__details.flexBox {
    gap: 3em 2em;
}

@media screen and (min-width:769px) {
    #entry-page #parade .parade__areaWrap {
        padding-bottom: 0;
    }

    #entry-page #parade .entry__content__details.flexBox .entry__content__map {
        flex-shrink: 0;
        max-width: 33%;
    }
}

@media screen and (max-width:768px) {
    #entry-page #parade .entry__content__details.flexBox .entry__content__map {
        margin: 2.5em 0;
    }

    #entry-page #parade .parade__area {
        flex-direction: column;
    }
}

#entry-page #parade .entry__content__details.flexBox .entry__content__map p {
    margin-bottom: .5em;
    font-size: .8em;
}

#entry-page #parade .entry__content__details .ul01 {
    margin-top: .4em;
}

#entry-page #parade .entry__content__details ol li .bk {
    display: inline-block;
    width: 3em;
    margin: 0 .5em 0 .25em;
    padding-bottom: .2em;
    color: #fff;
    font-size: .875em;
    line-height: 1.2em;
    text-align: center;
    text-indent: 0;
    background: #1a1a1a;
}

#entry-page #eventmap {
    padding: 8em 0 5em;
}

/*==================================

下層ページ:フォーム

==================================*/

#attention {
    padding: 2em 0;
}

#attention .entry__content__details {
    padding: .5em .75em 0;
}

#attention .entry__content__details .tableStl02 {
    margin-top: 1em;
}

#attention .refusal {
    margin-top: 2.75em;
}

#attention .attentionWrap {
    padding: 2em 0;
    border-top: 1px solid #042F4D;
    border-bottom: 1px solid #042F4D;
}

#attention .attentionWrap h3 {
    text-align: center;
    color: #042f4d;
    font-size: 1.333em;
    font-weight: bold;
    padding-bottom: .75em;
}

#donation {
    padding: 2em 0;
}

#donation .linkArea {
    padding: 1em 0;
}

#donation .linkArea a.linkBtn {
    color: #37A0DA;
}

#donation .linkArea a.linkBtn:not(:hover) {
    text-decoration: underline;
}

@media screen and (min-width:769px) {
    #donation .contentIn {
        padding: 0 50px;
    }
}

#applicationInfo {
    padding: 5.5em 0 3.5em;
}

#applicationInfo .entry__content__details {
    padding-right: 0;
    padding-left: 0;
}

#applicationInfo .entry__content__details .tableStl02 .date {
    font-size: 1.6875em;
}

#applicationInfo .entry__content__details .tableStl02 .date .fzL {
    font-size: 1.5em;
    line-height: .8em;
}

.entry__content__details .tableStl02 .week {
    margin: 0 -.5em;
    line-height: 1em;
}

#applicationInfo .entry__content__details .tableStl02 .date+.indent01 {
    font-size: .9em;
}

#application .ttlStl03 .fzS {
    margin-left: auto;
    padding-left: 1em;
    font-size: .85em;
    text-indent: -1em;
    line-height: 1.4em;
}

#application .ttlStl03 {
    gap: 1em 0;
}

@media screen and (min-width:769px) {
    #application .ttlStl03 .fzS {
        max-width: 54%;
    }
}

#applicationInfo .entry__content__details .tableStl02 .btnStl01 {
    font-size: 1.125em;
}

.entry__content__details .tableStl03 {
    width: 100%;
    margin: 1em 0 2.5em;
}

.entry__content__details .tableStl03>tbody>tr>td ol li,
.entry__content__details .tableStl03>tbody>tr>td ol li * {
    line-height: 1.4em !important;
}

.attention__selectionResult {
    gap: .4em .75em;
    margin-top: 2em;
    color: #042f4d;
    font-size: 1.333em;
    font-weight: bold;
}

.attention__selectionResult dt {
    padding: .15em .5em;
    line-height: 1.2em;
    background: #f7b52c;
}

.attention__selectionResult dd {
    letter-spacing: .05em;
    line-height: 1.4em;
}

#applicationInfo .entry__content__details .tableStl02>tbody>tr>th {
    width: 8em;
}

#applicationInfo .entry__content__details .tableStl02>tbody>tr>td a+a {
    margin-top: .5em;
}

#applicationInfo .entry__content__details .tableStl02>tbody>tr>td .flexR.fc_red01 {
    font-size: 1.25em;
}

#applicationInfo .entry__content__details .tableStl02>tbody>tr>td .fzL {
    font-size: 1.125em;
}

#application {
    padding: 8em 0;
    background: #f4f2ec;
}

#applicationInfo .entry__content__details .tableStl02>tbody>tr>td>table>tbody>tr>th {
    padding-right: 1em;
    font-weight: normal;
}

#application .application__form {
    padding: 6% 6% 8%;
    background: #fff;
}

#application .application__form th {
    width: 10.5em;
}

#application .application__form .form__open__subStage>th,
#application .application__form .form__open__subParade>th {
    background: linear-gradient(to right, transparent .3em, rgba(55, 160, 218, .12) .3em);
}

#application .application__form tr>* .notes {
    margin-top: .3em;
    color: #909090;
    font-size: .8em;
}

#application .application__form th .application__form__th {
    margin-top: .8em;
    padding: .3em;
    color: #fff;
    font-size: .8em;
    line-height: 1.2em;
    background: #909090;
}

#application .application__form .formTable01 {
    width: 100%;
}

#application .application__form .formTable01>tbody>tr>* {
    padding: .5em 0;
    font-size: .933em;
    vertical-align: middle;
}

#application .application__form .formTable01>tbody>tr>th {
    width: 15%;
    font-weight: normal;
    line-height: 1.4em;
}

#application .application__form .formTable01>tbody>tr>td {
    width: 35%;
}

#application .application__form .formTable01>tbody>tr>td input {
    width: 4em;
    margin-right: .5em;
}


.application__form__sample {
    gap: 1em;
}

.application__form .error_list:not(:empty) {
    margin: 0 0 3em;
    text-align: center;
}

@media screen and (max-width:768px) {

    .application__form__sample {
        flex-direction: column;
    }
}

.application__form__sample p {
    flex-shrink: 0;
}

.application__form__sample .img {
    flex-grow: 1;
    text-align: center;
    max-width: 550px;
}

#application .application__form .application__form__table {
    margin-bottom: 1em;
}

#application .application__form .application__form__table+p {
    font-size: 0.933em;
}

#entry-page #application .application__form .application__form__table>tbody>tr>td,
#entry-form-page #application .application__form .application__form__table>tbody>tr>td {
    font-size: .933em;
}

#application .application__form td dl:not(.flexBox)>dt {
    margin-bottom: .6em;
    color: #042f4d;
    font-weight: bold;
    line-height: 1.2em;
}

#application .application__form td input[type="text"],
#application .application__form td input[type="tel"],
#application .application__form td input[type="email"],
#application .application__form td input[type="url"],
#application .application__form td textarea {
    padding: .75em;
    line-height: 1.4em;
    background: #f2f2f2;
}

@media screen and (max-width:768px) {

    #application .application__form td input[type="text"],
    #application .application__form td input[type="tel"],
    #application .application__form td input[type="email"],
    #application .application__form td input[type="url"],
    #application .application__form td textarea {
        padding: .75em .4em;
    }
}

#application .application__form td input[type="url"]+input {
    margin-top: .5em;
}

*::placeholder {
    color: #909090;
}

#application .application__form td dl dd input::placeholder,
#application .application__form td textarea::placeholder {
    color: #909090;
}

#application .application__form td>*+*:not(:empty) {
    margin-top: 1em;
}

#application .application__form td p {
    line-height: 1.4em;
}

#application .application__form td>*+ul {
    margin-top: 0;
}

#application .application__form td textarea {
    width: 100%;
    min-height: 2em;
    resize: vertical;
}

#entry-page #application .application__form td textarea+.application__form__file {
    margin-top: .75em;
}

.application__form__addFile {
    display: none;
    margin-top: .5em;
    color: #37a0da;
    font-size: .933em;
}

.application__form__addFile+* {
    margin-top: 1em;
}

.application__form__addFile span {
    position: relative;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin-right: .5em;
    vertical-align: middle;
    border: 1px solid #37a0da;
    border-radius: 50%;
}

.application__form__addFile span:before,
.application__form__addFile span:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: block;
    margin: auto;
    background: #37a0da;
    transform: translateY(-50%);
}

.application__form__addFile span:before {
    width: 55%;
    height: 1px;
}

.application__form__addFile span:after {
    width: 1px;
    height: 55%;
}


#application .application__form .application__form__submit {
    margin: 1.2em auto 0;
}

.application__form__music-text .fzS {
    margin-right: 3em;
    font-size: .857em;
    line-height: 1.2em
}

#application .application__form .application__form__parade dl {
    margin: .2em 0;
}

#application .application__form .application__form__parade>dl dt {
    padding-right: .2em;
}

@media screen and (min-width:769px) {
    #application .application__form .application__form__parade>dl:nth-of-type(odd) dt {
        width: 14em;
    }

    #application .application__form .application__form__parade>dl:nth-of-type(even) dt {
        width: 8em;
    }
}

#application .application__form .application__form__parade input {
    width: 4em;
}

.application__form__checkWrap {
    padding: 0 1em;
    font-size: .933em;
}

.application__form__checkWrap p.fzS {
    font-size: .928em;
}

.application__form__box {
    margin-top: 1.2em;
    padding: 1em;
    font-size: .933333em;
    background: rgba(55, 160, 218, .12);
}

.application__form__box table {
    width: 100%;
}

.application__form__box table tr>* {
    display: block;
    width: 100%;
}

.application__form__box.toggleentry p+.application__form__checkWrap {
    margin-top: .5em;
}

.application__form__checkWrap input[type="radio"],
.application__form__checkWrap input[type="checkbox"] {
    display: none;
}

*+.application__form__loop {
    margin-top: .5em;
}

.application__form__checkWrap input+span {
    position: relative;
}

.application__form__checkWrap input[type="radio"]+span:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: .5em;
    vertical-align: middle;
    background: #e6e6e6;
    border: 4px solid #e6e6e6;
    border-radius: 50%;
}

.application__form__checkWrap input:checked+span:before {
    background: #37a0da;
}

.application__form__checkWrap>* {
    flex-basis: 30%;
}

.application__form__loop {
    width: 100%;
}

.application__form__loop input[size="7"] {
    flex-shrink: 0;
}

.application__form__loop input[size="59"] {
    flex-basis: 100%;
    flex-grow: 1;
    width: 100%;
}

@media screen and (max-width:768px) {
    #application .application__form .application__form__table {
        width: 100%;
    }


    .application__form__checkWrap>* {
        flex-basis: 100%;
    }

    .mw_wp_form .horizontal-item+.horizontal-item {
        margin-left: 0 !important;
    }

    .application__form__wrap dl+dl {
        margin-top: 1em;
    }

    #application .application__form .application__form__table>tbody>tr>td {
        padding-bottom: 1.5em;
    }

    .ttlStl04 span {
        display: inline-block;
    }

    .entry__content__details .tableStl02 .date,
    .entry__content__details .tableStl02 .date .fzL {
        font-size: 1.3em;
    }

    #application .application__form {
        padding: 5% 3% 10%;
    }

    .form__complete.txa_c h3 {
        font-size: 1.2em;
    }

    #entry-page #stage .stage__catch {
        font-size: 1.2em;
    }

    #entry-page #stage .stage__catch p {
        padding: 0 2.7em;
    }

    .application__form__checkWrap {
        padding: 0;
    }
}

#application .application__form td .application__form__box input,
#application .application__form td .application__form__box textarea,
.application__form__box .application__form__checkWrap input:not(:checked)+span:before {
    background: #fff;
}

.application__form__box .application__form__checkWrap input+span:before {
    border-color: #fff;
}

.application__form__box p.fzS {
    font-size: .928em;
}

#application .application__form .consentCheck {
    margin: 1.5em 0 0;
}

#application .application__form .submit_btn {
    margin: 1em auto 0;
}

#application .application__form .mw_wp_form_preview .submit_btn {
    margin-top: 2em;
}

#application .application__form .submit_btn[disabled] {
    color: #909090;
    background-color: #f2f2f2;
    background-image: url(../images/arrowR01_gy.svg);
    pointer-events: none;
}

#application .application__form .consentCheck input[type="checkbox"] {
    display: none;
}

#application .application__form .consentCheck input[type="checkbox"]+span {
    position: relative;
}

#application .application__form .consentCheck input[type="checkbox"]+span:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-top: -.2em;
    margin-right: 0.25em;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #909090;
}

#application .application__form .consentCheck input[type="checkbox"]:checked+span:after {
    content: '';
    position: absolute;
    top: 0.55em;
    left: 0.25em;
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: #036eb8;
}

#application .application__form .consentCheck .linkStl01 {
    color: #036eb8;
}



.application__form__checkWrap input:checked+span.flexBox:after {
    top: auto;
}

.application__form__radio-text {
    display: flex;
    align-items: center;
    margin-left: .25em;
}

.application__form__radio-text input {
    width: 3em;
}

#application .application__form .application__form__parade input.application__form__othersText {
    width: 10em;
    margin-left: .25em;
}

.application__form__zip {
    gap: .5em;
    color: #042f4d;
    font-weight: bold;
}

.application__form__zip input {
    width: 5em;
}

.application__form__file {
    position: relative;
}

.mw_wp_form_input .application__form__file:before {
    content: 'ファイルを選択';
    position: absolute;
    top: .5em;
    left: .5em;
    display: inline-block;
    padding: .25em .75em;
    color: #fff;
    font-weight: bold;
    background: #37a0da;
    box-shadow: 7px 0px 0 0 #f2f2f2;
    pointer-events: none;
}

.application__form__file input {
    width: 100%;
    padding: .5em 1.25em;
    color: #909090;
    background: #f2f2f2;
    cursor: pointer;
}

.mwform-file-delete {
    position: absolute;
    top: .75em;
    right: .5em;
}

.application__form__wrap {
    gap: 2%;
}

.application__form__wrap>* {
    flex-basis: 49%;
}

.application__form__textCounter {
    margin: .25em 0;
}

.application__form__textCounter:not(.fc_red01) {
    color: #909090;
}

.mw_wp_form_preview .application__form__textCounter,
.mw_wp_form_preview .consentCheck {
    display: none;
}

.mw_wp_form_preview .application__form__checkWrap>* {
    flex-basis: auto;
}

.form__complete.txa_c h3 {
    margin-bottom: 1.25em;
    color: #042f4d;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.4em;
}

.form__complete.txa_c h3 span[class^="fc_"] {
    padding-left: 1.8em;
    line-height: 1.4em;
    background: url(../images/ico_check_bl.svg) no-repeat center left/ 1.4em;
}

.form__complete .btnStl01 {
    margin: 0 auto;
}

.form__complete {
    padding: 2em 0 1em;
}

#application+#attention {
    padding: 10em 0;
}

.application__notesContents {
    margin: 3em auto 0;
    font-size: 0.933em;
    text-align: center;
}

.application__notesContents__btnWrap a {
    margin: 1em auto 0;
}

.application__notesContents__tel {
    margin-top: 1.4em;
    font-weight: bold;
}

.application__notesContents__tel dt {
    color: #036eb8;
}

.application__notesContents__tel dd {
    line-height: 1.2em
}

.application__notesContents__tel dd .fzL {
    color: #042f4d;
    font-size: 2em;
    line-height: 1.2em
}

.application__step {
    display: flex;
    gap: 0 .25em;
    margin-top: .6em;
    font-size: 1.33333333em;
    font-weight: bold;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .application__step {
        font-size: .9em;
    }
}

.application__step>li {
    position: relative;
    flex: 1;
    padding: .4em .5em;
    color: #b2b2b2;
    text-align: center;
    background: #fff;
    transform: skewX(25deg);
}

.application__step>li span {
    position: relative;
    z-index: 1;
    display: block;
    transform: skewX(-25deg);
}

.application__step>li:first-of-type:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 20%;
    height: 100%;
    background: #fff;
    transform: skewX(-25deg);
}

.application__step>li:last-of-type:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 20%;
    height: 100%;
    background: #fff;
    transform: skewX(-25deg);
}

.application__step>li.active,
.application__step>li.active:before {
    color: #fff;
    background: #37a0da;
}

.mw_wp_form.mw_wp_form_confirm .confirm_only,
.mw_wp_form.mw_wp_form_input .input_only {
    display: block !important;
}

span.mwform-radio-field.horizontal-item {
    display: flex;
    align-items: center;
}

.entry__content {
    padding: 0em 0 2.5em;
}

/*==================================

	下層ページ:神戸まつりの歴史

	==================================*/

#history {
    font-size: 1.6rem;
}

#history .bk_white {
    padding-top: 1.5em;
}

#history .ttlStl01 {
    padding: 6em 0 5em;
}

#history .history-about {
    padding: 4em 0 6em;
}

#history .history-about .ttlStl02 {
    margin-bottom: 1.5em;
}

#history .history-about .ttlStl02 span {
    font-size: 2.4rem;
}

#history .history-details {
    padding: 10px 10px 7em;
    -webkit-border-image: url(../images/2025/border_nv.svg) 4 repeat;
    -ms-border-image: url(../images/2025/border_nv.svg) 4 repeat;
    -o-border-image: url(../images/2025/border_nv.svg) 4 repeat;
    border-image: url(../images/2025/border_nv.svg) 4 repeat;
    border-style: solid;
    border-top-width: 5px;
}

#history .history-details:first-of-type {
    position: relative;
}

#history .history-details:first-of-type:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    z-index: 3;
    display: block;
    width: 50%;
    height: 5px;
    background: #fff;
}

#history .history-details:first-of-type .history-details__title span:before {
    display: none;
}

#history .history-details:last-of-type {
    position: relative;
    border-right: none;
}

#history .history-details:last-of-type:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 3;
    display: block;
    width: 50%;
    height: 5px;
    background: #fff;
}

#history .history-details:last-of-type .history-details__title span:after {
    display: none;
}

#history .history-details:nth-of-type(odd) {
    border-right-width: 5px;
}

#history .history-details:nth-of-type(even) {
    border-left-width: 5px;
}

#history .history-details__title {
    position: relative;
    z-index: 3;
    width: 400px;
    max-width: 98%;
    margin: 0 auto 1em;
    color: #fff;
    background: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    -webkit-transform: translateY(calc(-50% - 10px));
    transform: translateY(calc(-50% - 10px));
}

#history .history-details__title:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 3px solid #042f4d;
}

#history .history-details__title:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    display: block;
    width: 100%;
    height: 100%;
    background: #37a0da;
}

#history .history-details__title span {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0.75em 1em;
}

#history .history-details__title span:before,
#history .history-details__title span:after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 2;
    display: block;
    width: 7px;
    height: 10px;
}

#history .history-details__title span:before {
    left: -4px;
    background: #fff;
    border-bottom: 3.25px solid #042f4d;
    -webkit-transform: translateY(calc(-50% - 6.75px));
    transform: translateY(calc(-50% - 6.75px));
}

#history .history-details__title span:after {
    right: -7px;
    width: 10px;
    background: #37a0da;
    border-top: 3.25px solid #042f4d;
    -webkit-transform: translateY(calc(-50% + 0.25px));
    transform: translateY(calc(-50% + 0.25px));
}

#history .history-details__box {
    padding: 0 6% 4em;
    background: #f4f2ec;
}

#history .history-details__box>p {
    margin-bottom: 2em;
}

#history .history-details__2col {
    display: grid;
    gap: 2em 3%;
}

@media screen and (min-width: 768.1px) {
    #history .history-details__2col {
        grid-template-columns: 1fr 29.2%;
    }
}

#history .history-details__images {
    gap: 2em 2.5%;
}

#history .history-details figure {
    max-width: 250px;
    text-align: center;
}

#history .history-details figure figcaption {
    margin-top: 0.5em;
    color: #042f4d;
    font-weight: bold;
    line-height: 1.4em;
}

#history .history-details figure p {
    font-size: 1.2rem;
    line-height: 1.5em;
}

#past {
    padding: 6em 0 4em;
    font-size: 1.6rem;
}

#past .ttlStl01 {
    margin-bottom: 4em;
}

#past .past__list {
    display: grid;
    gap: 1em 1.5%;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2.5em;
    padding: 3em 10% 4em;
    background: #fff;
}

#past .past__list li:nth-of-type(-n + 4) {
    margin-bottom: 1em;
}

#past .past__list p {
    color: #042f4d;
}

#past .past__list a {
    color: #036eb8;
}

#past .past__list a:not(:hover) {
    text-decoration: underline;
}


/*==================================

お問い合わせ

==================================*/
#application.contact-form .application__form .application__form__table {
    width: 100%;
}

#application.contact-form .application__form .application__form__table td input {
    max-width: 100%;
}

#application .application__form th.required:after {
    content: '必須';
    display: block;
    width: 2.5em;
    margin: .5em auto 0;
    font-size: 12px;
    text-align: center;
    background: #FFD600;
}


#contact-introduction {
    padding: 5em 0;
}

#contact-introduction p {
    font-size: 1.6rem;
}

#contact-introduction .ul01 {
    font-size: 1.4rem;
}

#application.contact-form .application__form {
    padding: 10% 6% 6%;
}

#application.contact-form {
    margin-bottom: 9em;
    padding-bottom: 5em;
}

.contact__introduction__btn {
    margin-bottom: 1.5em;
    gap: 1em;
}

#contact-form .ttlStl06 {
    margin: 1em auto 2.5em;
}

#others-contact {
    margin-top: 3em;
    padding: 4em 6%;
    background: #fff;
}

.others-contact__information {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2em 10%;
    justify-content: center;
    text-align: center;
}

#others-contact .ttlStl06 {
    margin-bottom: 1.75em;
}

.others-contact__text01 {
    margin-bottom: 1.2em;
    color: #042F4D;
    font-size: 1.8rem;
    font-weight: bold;
}

.others-contact__information dl dt span {
    display: inline-block;
    color: #042F4D;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.1em;
    background: linear-gradient(to bottom, rgba(247, 181, 44, 0) 75%, rgba(247, 181, 44, 1) 75%);
}

.others-contact__information dl dd {
    font-size: 3rem;
    font-weight: 800;
    color: #c1272d;
}

.others-contact__text02 {
    margin-top: 1.2em;
    font-size: 1.4rem;
}

/*==================================

js animation

==================================*/

/*
*[class*="fadein"].js_st{
  opacity: 0;
}

*[class*="fadeinT"].js_st {
  transform : translate(0, 50px);
}

*[class*="fadeinB"].js_st {
  transform : translate(0, -50px);
}

*[class*="fadeinR"].js_st {
  transform : translate(-50px, 0);
}

*[class*="fadeinL"].js_st {
  transform : translate(50px, 0);
}

*[class*="fadein"].js_st.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition : all 1500ms, background .3s , min-width 0s;
}
*/

/*==================================

@media screen PC

==================================*/
@media screen and (min-width:1070px) {
    header .spNaviButton {
        display: none;
    }

    header nav {
        display: block !important;
    }

    header nav .globalNav {
        gap: 0 4%;
    }
}

@media screen and (max-width:1250px) and (min-width:1070px) {
    header nav .globalNav {
        gap: 0 2%;
    }
}

@media screen and (min-width:769px) {

    .spOnly {
        display: none !important;
    }

    .tableStl02>tbody>tr>th+td {
        padding-left: 2.6em;
    }

    footer .flexBox .flexL {
        width: 67%;
        margin-right: 2em;
    }

    .hero-area {
        margin-bottom: 0 !important;
    }

    .main_info_date {
        text-align: right;
    }

    .eventBox .flexR .img+.img {
        margin-top: 2.2em;
    }

    #outline .others .eventBox dd .flexL {
        flex-basis: 70%;
    }

    #outline .others .eventBox dd .flexR {
        max-width: 30%;
        margin-left: 1em;
    }

    #outline .sportsCon .both-days+div .img:first-of-type {
        max-width: 110px;
        width: 23.888%;
    }

    #outline .sportsCon .both-days+div .img+.img {
        max-width: 214px;
        width: 46.672%;
    }

    #applicationInfo .entry__content__details .tableStl03>tbody>tr>th {
        width: 9em;
    }

    #applicationInfo .entry__content__details .tableStl02>tbody>tr>td>table>tbody>tr>h {
        padding-right: 1em;
    }

    header nav:has(.btn2) .globalNav li:not(.entryBtn) a {
        padding: 0 .5em;
    }

    header nav:has(.btn2) .globalNav {
        gap: 0 .5em;
    }
}


/*==================================

media screen SP

==================================*/
@media screen and (max-width:1069px) {
    header nav .entryBtn {
        margin-top: 5px;
    }

    header nav .entryBtn a {
        justify-content: center;
    }

    /*ヘッダー
	==================================*/
    header {
        position: relative;
    }

    header .logo {
        max-width: 65%;
    }

    header>.flexBox,
    .main_info_date .imgWrap {
        max-width: 96%;
    }

    .main_info_date {
        padding: .5em 0;
    }

    .main_info_date .imgWrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main_info_date .imgWrap img:first-of-type {
        max-width: 62%;
    }

    .main_info_date .imgWrap img+img {
        max-width: 35%;
        margin-left: 3%;
    }

    header nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 99;
        display: none;
        max-height: 100%;
        background: #F4F2EC;
        overflow-y: scroll;
    }

    header nav ul.jc_fe {
        justify-content: space-between;
        padding: 2em 20px 10px;
    }

    header nav ul li {
        flex-basis: 49%;
        margin: 1% 0;
        aspect-ratio: 1/1;
    }

    header nav ul li:last-of-type:nth-of-type(odd) {
        margin-bottom: 0;
        flex-basis: 100%;
        aspect-ratio: auto;
    }


    header nav ul li:not(.entryBtn) a {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        text-align: center;
        background: #fff;
        border-radius: 20px;
    }

    header nav ul li a img {
        min-width: 15%;
    }

    header nav ul li:last-of-type:nth-of-type(odd) a {
        padding: 1.5em 1em;
    }

    header nav ul li:last-of-type:nth-of-type(odd) a img {
        min-width: 7.5%;
    }

    /*　ハンバーガーメニュー
	==================================*/

    body>.spNaviButton {
        position: absolute;
        top: 6px;
        right: 6px;
    }

    .spNaviButton {
        position: relative;
        z-index: 99;
        display: block;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: #37A0DA url(../images/2025/txt_menu_white.svg) no-repeat center bottom 10px / auto 8px;
        cursor: pointer;
    }

    nav .spNaviButton {
        position: fixed;
        top: 6px;
        right: 6px;
    }

    .spNaviButton img {
        position: absolute;
        left: 0;
        right: 0;
        max-width: 50%;
        min-height: 2px;
        margin: 0 auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .spNaviButton span,
    .spNaviButton:before,
    .spNaviButton:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        width: 50%;
        height: 3px;
        margin: 0 auto;
        background: #fff;
        border-radius: 200px;
    }

    .spNaviButton:before {
        top: 30%;
        transition: top .3s .3s, transform .3s;
    }

    .spNaviButton span {
        top: 46%;
        transition: 0s .3s;
    }

    .spNaviButton:after {
        top: 62%;
        transition: top .3s .3s, transform .3s;
    }


    .spNaviButton.open:before,
    .spNaviButton.open:after {
        top: 46%;
        transition: top .3s, transform .3s .3s;
    }

    .spNaviButton.open:before {
        transform: rotate(45deg);
    }

    .spNaviButton.open span {
        width: 0;
    }

    .spNaviButton.open:after {
        transform: rotate(-45deg);
    }
}

@media screen and (max-width:768px) {

    .pcOnly {
        display: none !important;
    }

    .sp_bk {
        display: block;
    }

    body {
        /* padding-top: 0 !important; */
        font-size: 1.4rem;
    }

    /*==================================

	全ページ共通CSS

	==================================*/

    .wrapper {
        padding-bottom: 6em;
    }

    .ttlStl03 h2 {
        font-size: 1.5em;
    }

    .ttlStl03 .ttl__date {
        font-size: .8em;
    }

    .ttlStl06 {
        font-size: 2.2rem;
    }

    .tableStl01>tbody>tr>* {
        padding: .8em .3em;
        word-break: break-all;
    }

    .tableStl01>tbody>tr>th {
        font-size: 1em;
    }

    .tableStl01>tbody>tr>td {
        font-size: .8em;
    }

    .ttlStl02>span {
        font-size: 1.1em;
    }

    .ttlStl03 h2 {
        font-size: 1.5em;
    }

    .ttlStl03 .ttl__date {
        font-size: .8em;
    }

    .txa_c_sp {
        text-align: center;
    }

    .tableStl02>tbody>tr>* {
        display: block;
        width: 100% !important;
    }

    .tableStl02>tbody>tr>th {
        font-size: 1.1em;
    }

    .tableStl02>tbody>tr>th:before,
    .tableStl02>tbody>tr>th:after {
        top: auto;
        bottom: 1px;
        width: 50%;
        height: 1em;
        transform: translateY(100%);
    }

    .tableStl02>tbody>tr>th:before {
        left: 0;
        background: linear-gradient(to bottom left, rgba(4, 47, 77, 1) 48%, rgba(4, 47, 77, 0) 50%);
    }

    .tableStl02>tbody>tr>td {
        padding: 1em;
    }

    .tableStl02>tbody>tr>th+td {
        padding-top: 2em;
    }

    .tableStl02>tbody>tr>td a {
        margin: 0 auto;
    }


    .tableStl03>tbody>tr>* {
        display: block;
        width: 100%;
    }

    .tableStl03>tbody>tr>td {
        padding: 1em;
    }

    .tableStl04>tbody>tr>* {
        display: block;
        padding-right: .5em !important;
        padding-left: .5em;
    }

    .tableStl04>tbody>tr>th {
        width: 100% !important;
        background: #f4f2ec;
    }

    .btn01 {
        padding: .2em 1em;
    }

    .boxStl01__inner {
        padding: 3em 5% 3.5em;
    }

    .eventBox .tabBtn>li {
        font-size: 1.1em;
    }

    header nav:has(.btn2) .entryBtn {
        flex-basis: 100%;
        aspect-ratio: auto;
    }

    header nav:has(.btn2) .entryBtn a {
        padding: 1.5em;
    }

    /*==================================

	フッター

	==================================*/
    footer {
        padding-top: 1.25em;
    }

    footer>.flexBox {
        max-width: 100%;
    }

    footer .logo {
        margin-top: 1.5em;
        text-align: center;
    }

    footer address dl {
        text-align: center;
    }

    footer address table {
        margin: 0 auto;
    }

    footer .adobeReader {
        max-width: 95%;
        margin: 0 auto .5em;
    }

    footer .adobeReader .ai_c {
        align-items: flex-start;
    }

    footer .adobeReader .img {
        max-width: 35%;
    }

    footer .flexR {
        margin-top: 2em;
    }

    footer .snslink {
        justify-content: center;
    }

    footer .copyright {
        margin-top: 3em;
    }

    /*==================================

	トップページ

	==================================*/

    #lead {
        padding: 3em 0 4em;
    }

    .main_info_date {
        gap: 0 1em;
        justify-content: center;
        text-align: center;
    }

    .notes__title {
        font-size: 2em;
        padding-bottom: .5em;
        letter-spacing: .05em;
    }

    #news .newsBox {
        padding: .8em .4em .8em .8em;
    }

    #news .newsWrap {
        padding: .8em 0;
    }

    #news .scrollBox {
        max-height: 340px;
        padding: .5em 1em .5em 0;
    }

    .newsTable tr>* {
        display: block;
        width: 100%;
    }

    .newsTable tr>th {
        padding-bottom: 0;
    }

    .newsTable tr>td {
        padding-top: .3em;
    }

    .eventBox .tabBox>* {
        padding: 1.5em 1.2em;
    }

    .eventBox .time-schedule+.flexR {
        display: flex;
        justify-content: space-between;
        margin-top: 2em;
    }

    .eventBox .flexR .img {
        flex-basis: 48%;
    }

    #outline {
        padding-bottom: 2em;
    }

    #outline .sportsCon+.sportsCon {
        margin-top: 2em;
    }

    #outline .sportsCon dl {
        font-size: 1.2em;
    }

    #outline .sportsCon dl dt .day {
        font-size: 1.6em;
        line-height: 1em;
    }

    #outline .sportsCon dl dt .week {
        line-height: 1.5em;
    }

    #outline .sportsCon dd {
        font-size: .9em;
        line-height: 1.4em;
    }

    #outline .sportsCon .both-days+div .img:first-of-type {
        width: 33%;
    }

    #outline .sportsCon .both-days+div .img+.img {
        width: 65%;
    }

    #outline .others .eventBox>dt {
        padding: .8em .5em;
    }

    #outline .others .eventBox dd .flexR {
        margin: 1em 0;
    }

    #access .accessTbl {
        font-size: 1.1em;
    }

    #access .accessTbl tr th {
        padding-right: .5em;
    }

    #contact {
        padding-bottom: 2em;
    }

    #contact .flexBox>* {
        margin: 4em 0;
    }

    #link {
        padding: 3em 0 0;
    }

    #link .linkBn_wrap li {
        margin-top: 1.4em;
    }

    #link .linkBn_wrap img {
        width: 100%;
    }

    /*==================================

	下層ページ共通CSS

	==================================*/
    .nav__page .contentIn {
        padding: 0 5px;
    }

    .nav__page .contentIn ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav__page .contentIn ul>li {
        flex: auto;
    }

    /*==================================

	下層ページ:申し込み詳細

	==================================*/
    #applicationInfo .entry__content__details .tableStl02>tbody>tr>td>table>tbody>tr>* {
        display: block;
        width: 100%;
    }



    /*==================================

	下層ページ:よくある質問

	==================================*/
    .faq__category {
        gap: 1em 2%;
    }

    .faq__category>li {
        flex-basis: 49%;
    }

    .faq__category>li>a {
        gap: 0 .75em;
        padding: .5em 1em;
    }

    /*==================================

下層ページ:神戸まつりの歴史

==================================*/
    #history {
        font-size: 1.4rem;
    }

    #history .ttlStl01 {
        padding: 5em 0 4em;
    }

    #history .history-about .ttlStl02 span {
        font-size: 2.2rem;
    }

    #history .history-details:last-of-type {
        padding-bottom: 4em;
    }

    #history .history-details__title {
        margin: 0 auto;
        font-size: 1.8rem;
    }

    #history .history-details__title span {
        line-height: 1.4em;
    }

    #history .history-details__box {
        padding-bottom: 2em;
    }

    #history .history-details__2col {
        grid-template-columns: 100%;
    }

    #history .history-details__images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #history .history-details figure {
        margin: 0 auto;
    }

    #past {
        padding: 4em 0 3em;
        font-size: 1.4rem;
    }

    #past .ttlStl01 {
        margin-bottom: 2.5em;
    }

    #past .past__list {
        grid-template-columns: repeat(2, 49%);
        padding: 2em 5% 2.5em;
    }

    /*==================================

	下層ページ:お問い合わせ

	==================================*/
    #contact-form .ttlStl06 {
        margin-bottom: 2em;
    }

    .others-contact__text01 {
        font-size: 1.65rem;
    }

    .others-contact__information dl dt span {
        font-size: 2rem;
    }

    .others-contact__information dl dd {
        font-size: 2.6rem;
    }
}

.custom_password_aria {
    padding: 200px 0 200px;
    text-align: center;
}

.custom_password_aria input[type="password"] {
    border: 1px solid #ccc;
}

.custom_password_aria input[type="submit"] {
    padding: 0 .75em;
    color: #fff;
    background: #222;
    border-radius: 5px;
}

.custom_password_aria p+p {
    margin-top: 1em;
}

/*開催概要追記20240328
==================================*/
#outline .mainEvent {
    padding: 2em 0;
    border-bottom: 1px dashed #B3B3B3;
}

#outline .mainEvent:first-child {
    padding-top: 0;
}

#outline .mainEvent:last-child {
    border-bottom: none;
}

#outline .mainEvent .mainEventText h3 {
    color: #042f4d;
    font-weight: bold;
}

#outline .mainEvent .mainEventText p {
    margin: 0;
}

#outline .mainEvent .mainEventImg {
    text-align: center;
}

@media screen and (min-width:769px) {
    #outline .mainEvent {
        padding-left: 1.75em;
    }

    #outline .mainEvent .mainEventText {
        width: 60%;
    }

    #outline .mainEvent .mainEventImg {
        width: 36%;
    }
}

@media screen and (max-width:768px) {
    #outline .mainEvent {
        flex-direction: column;
    }

    #outline .mainEvent .mainEventImg {
        margin-top: 2em;
    }
}

.eventInfo {
    padding-top: 5em;
}

.eventInfo .eventInfo_contents .event-map {
    padding: 2em 0;
    text-align: center;
}

.eventInfo .eventInfo_contents .event-map p {
    font-size: 1.2rem;
}

.eventInfo .eventInfo_contents .indent_event-schedule {
    background: #036EB8;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 0.5em 0;
    margin-top: 3em;
}

.eventInfo .eventInfo_contents .eventInfo_contentsTable {
    width: 100%;
}

.eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr {
    border-bottom: 1px dashed #B3B3B3 !important;
}

.eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th,
.eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>td {
    padding: 1em .5em;
}

.eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th {
    width: 7.5em;
}

.eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th>span {
    display: inline-block;
    padding: .2em .5em;
    color: #fff;
    font-weight: normal;
    line-height: 1em;
    background: #F7B52C;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th:not(:empty),
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td {
    padding: 0 0.5em 2em;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td {
    padding-top: .15em;
    line-height: 2.5em;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th {
    width: 15em;
}

@media screen and (max-width:768px) {

    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th,
    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>td {
        display: block;
    }

    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>td {
        padding-top: 0 !important;
    }

    .eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th,
    .eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td {
        display: block;
        width: 100%;
    }

    .eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th:not(:empty) {
        padding-bottom: 0;
    }

    .eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.main-festival {
        display: none;
    }
}

.event-list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 1.5em;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td p * {
    display: inline-block;
    vertical-align: text-bottom;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td p .linkStl02 {
    line-height: 1.4em;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>td p a {
    display: inline-flex;
    align-items: flex-start;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th .eventType {
    display: inline-block;
    padding: 0.2em 0.5em;
    color: #fff;
    font-weight: normal;
    line-height: 1.5em;
    width: 100%;
    border-radius: 100px;
    text-align: center;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th .eventType img {
    display: block;
    margin: .25em auto;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.stage-event .eventType,
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable .stage-event span.number {
    background: #e1690d;
}

/* .eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.opening-event .eventType,
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable .opening-event span.number {
    background: #ba513a;
} */

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.parade-event .eventType,
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable .parade-event span.number {
    background: #d61518;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.main-festival .eventType {
    background: #fff;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.other-event .eventType,
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable .other-event span.number {
    background: #27a139;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th.market-event .eventType,
.eventInfo .eventInfo_contents .eventInfo_main-contentsTable .market-event span.number {
    background: #dc6987;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable p {
    display: inline-block;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable span.number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    border-radius: 100px;
    color: #fff;
    margin-right: 0.15em;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable span.number:has(+ .linkStl02) {
    margin-right: .5em;
}

/* .eventInfo .eventInfo_contents .eventInfo_main-contentsTable .performance-in-town a {
    color: #61b8b9;
} */

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable p.main-festival span.number {
    background-color: #036EB8;
}

.eventInfo .eventInfo_contents .outline__box img {
    max-width: 100%;
}

.eventInfo .eventInfoBox {
    padding-bottom: 1em;
}

#parade-event .ttlStl02 img {
    padding-left: 1em;
    padding-bottom: 0.5em;
}

/* 各区のまつり「※北区のみ5月20日（土）」で調整 */
.eventInfo .eventInfoBox .indent01 {
    text-align: right;
    padding-right: 1.4em;
}

.eventInfo .ttlStl05 {
    flex-wrap: wrap;
    gap: 0 .5em;
    color: #ffffff;
    background-color: #37a0da;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1.5em;
    padding: .5em 1em;
}

.eventInfo .ttlStl05 h3,
.eventInfo .ttlStl05 h3 span {
    line-height: 1.4em;
}

.eventInfo .ttlStl05 .fzS {
    font-size: .9em;
}

.eventInfo h4.ttlStl02 {
    margin: 3em 0 1em;
}

.eventInfo .outline__box {
    position: relative;
    padding: 1em 1.35em 2em;
}

.time-schedule_Btn {
    display: flex;
    align-items: center;
    gap: .5em;
    justify-content: center;
    margin-top: 1em;
    color: #00478b;
    font-size: 1.066666em;
    font-weight: bold;
    cursor: pointer;
}

.time-schedule_Btn:before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    margin-top: 2px;
    background: url(../images/accordionArrow.svg) no-repeat center center / contain;
}

.time-schedule_Btn.active:before {
    transform: rotate(180deg);
}

.time-schedule {
    display: none;
    margin-top: 1.2em;
    padding-top: 1em;
    border-top: 1px dashed #d6d6d6;
}

.eventInfo .outline__box .time-schedule_Btn {
    text-align: center;
}

.time-schedule .number {
    margin-bottom: .5em;
}

.time-schedule table tr:not(:last-of-type) th:not(.last) {
    padding-bottom: .5em;
}

.time-schedule table tr:not(:last-of-type) th:not(.last):before {
    content: '';
    position: absolute;
    top: auto;
    bottom: -3px;
    right: 0;
    left: 0;
    height: 12px;
    background: url(../images/arrowB_yl.svg) no-repeat center bottom;
}

.time-schedule table tr:not(:last-of-type) th:not(.last):after {
    content: '';
    position: absolute;
    top: .5em;
    bottom: 0;
    right: 0;
    left: 0;
    width: 1px;
    margin: 0 auto;
    background: #f7b52c;
}

.time-schedule table tr td ul li {
    line-height: 1.4em;
}

.eventInfo .outline__box .outline__box__head {
    position: relative;
}

.eventInfo .outline__box .numberWrap {
    position: absolute;
    top: 40%;
    right: 0px;
    display: flex;
    gap: 5px;
    transform: translateY(-50%);
}

.eventInfo .outline__box .number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 29px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
}

#stage-event .outline__box .number,
.eventInfo #stage-event .outline__box dl dt,
#parade-event .outline__box .number,
.eventInfo #parade-event .outline__box dl dt {
    background-color: #e1690d;
}


#other-event .outline__box .number,
.eventInfo #other-event .outline__box dl dt {
    background-color: #27a139;
}

#market-event .outline__box .number,
#market-event .outline__box .number_2,
.eventInfo #market-event .outline__box dl dt {
    background-color: #dc6987;
}

.eventInfo #performance-in-town.outline__box dl dt {
    background-color: #5FBAD2;
}

.eventInfo .outline__box dl dt {
    display: inline-block;
    padding: .2em .5em;
    min-width: 50px;
    text-align: center;
    color: #fff;
    font-weight: normal;
    background: #F7B52C;
}

.eventInfo .outline__box>dl {
    align-items: flex-start;
}

.eventInfo .outline__box>dl>dd {
    padding: .2em .5em;
    line-height: 1.4em;
}

.eventInfo .outline__box>dl>dd span {
    line-height: 1.4em;
}

.eventInfo .outline__box>dl>dd>span {
    display: inline-block;
}

.eventInfo .eventInfo_contents .eventInfo_main-contentsTable>tbody>tr>th .eventType img {
    display: block;
    margin: .25em auto;
}

.eventInfo .outline__box>dl.flexBox>dd:has(.number) {
    padding-top: 0;
}

.eventInfo .outline__box>dl.flexBox>dd p {
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom: 0;
}

.eventInfo .outline__box>dl.flexBox>dd p .number {
    display: grid;
    place-content: center;
    width: 1.75em;
    height: auto;
    font-size: .88888em;
    line-height: 1em;
    aspect-ratio: 1/1;
}

.eventInfo .outline__box dl+dl {
    margin-top: .5em;
}

.eventInfo .outline__box dl+dl:not(.textArea) {
    margin-top: .25em;
}

.eventInfo .outline__box>p {
    margin: 1em 0 !important;
}

.eventInfo .outline__box>p>span.fw_b {
    font-weight: bold;
}

.eventInfo .outline__box>.opening {
    color: #EF845C;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 !important;
    padding: 0 !important;
}

.eventInfo .outline__box>h6 {
    margin-top: 1em;
    font-weight: bold;
    color: #EF845C;
}

#parade-eventH_02>p {
    margin-top: 0 !important;
}

.eventInfo .outline__box .textArea {
    align-items: flex-start;
    margin-top: 1em;
    overflow: hidden;
}

.eventInfo .outline__box .textArea img {
    margin-right: 1em;
}

.eventInfo .outline__box .textArea img.aspect1-1 {
    background: #fff;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.eventInfo .outline__box .textArea p {
    margin: -.45em 0 0;
    font-size: 1.5rem;
}

.eventInfo .outline__box .ttlStl06 {
    display: flex;
    align-items: center;
    font-size: 1.333em;
    width: 100%;
    min-height: 60px;
    font-weight: bold;
    margin-bottom: .75em;
    padding-right: 2em;
    padding-bottom: .2em;
    line-height: 1.2em;
    text-align: left;
}

.eventInfo .outline__box.canceled {
    display: flex;
    flex-direction: column;
}

.eventInfo .outline__box.canceled:after {
    content: '※このイベントは中止になりました。';
    margin-top: .5em;
    color: #c1272d;
    font-size: 1.8rem;
    font-weight: bold;
}

.canceledText {
    margin-top: .5em;
    color: #c1272d;
    font-size: 1.8rem;
    font-weight: 700
}

.eventInfo .outline__box.canceled .time-schedule_Btn {
    order: 10;
}


.eventInfo .outline__box.canceled .time-schedule_Btn {
    margin-top: .5em;
}

.eventInfo .outline__box.canceled .time-schedule {
    order: 9;
}

.eventInfo .outline__box__head {
    margin-bottom: 1em;
}

.eventInfo .outline__box__head .ttlStl06 {
    margin-bottom: 0;
    color: #000;
}

#stage-event .ttlStl06 {
    border-bottom: 1px solid #e1690d;
}

#stage-event .outline__box,
#parade-event .outline__box {
    background: #FFFCEE;
    border-color: #e1690d;
}

#parade-event .ttlStl06 {
    border-bottom: 1px solid #e1690d;
    /* color: #d61518; */
}

#main-festivalI .ttlStl06 {
    border-bottom: 1px solid #036EB8 !important;
    color: #036EB8 !important;
}

#main-festivalI {
    border-color: #036EB8 !important;
}

#other-event .ttlStl06 {
    border-bottom: 1px solid #27a139;
    color: #27a139;
}

#other-event .outline__box {
    background: linear-gradient(135deg, #fff 65%, #f4faf5 85%, #bee3c4 100%);
    border-color: #27a139;
}

#other-eventJ p a.linkStl02 {
    display: inline-block;
    margin-top: .5em;
}

#market-event .ttlStl06 {
    border-bottom: 1px solid #dc6987;
}

#market-event .outline__box {
    background: #FCF2F4;
    border-color: #dc6987;
}

#performance-in-town .ttlStl06 {
    color: #5FBAD2;
    border-bottom: 1px solid currentColor;
}

#performance-in-town.outline__box {
    background: #E9F4F9;
    border-color: #5FBAD2;
}

.eventInfo .eventInfoBox .eventDetailBox {
    display: grid;
    align-items: flex-start;
    gap: 1em;
}

.eventInfo .eventInfoBox .festivalBox {
    margin-top: 1.5em;
    display: grid;
    gap: 1em;
}

.eventInfo .eventInfoBox>dl {
    align-items: center;
}

/* .eventInfo .eventInfoBox>dl>dd {
    font-weight: bold;
} */

.eventInfo .eventInfoBox>dl>dd span {
    display: inline-block;
}

@media screen and (min-width:1040px) {
    .eventInfo .eventInfoBox .eventDetailBox {
        grid-template-columns: 1fr 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox li a.festivalBtn p:nth-child(2) {
        font-size: 1.0em;
    }
}

@media screen and (min-width:769px) and (max-width:1040px) {
    .eventInfo .eventInfoBox .eventDetailBox {
        grid-template-columns: 1fr 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox {
        grid-template-columns: 1fr 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox li a.festivalBtn p:nth-child(2) {
        font-size: 1.1em;
    }
}

@media screen and (min-width:769px) {
    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th>span.period span {
        display: inline-block;
        transform: rotate(90deg);
    }
}

@media screen and (max-width:768px) {
    .sp_fdc {
        flex-direction: column;
    }

    .tableStl01 thead tr th {
        padding: .5em;
        font-size: 1.2rem;
    }

    .tableStl05 tr>* {
        display: block;
    }

    .tableStl05 tr>th {
        padding-bottom: 0;
    }

    .tableStl05 tr>td {
        padding-top: 0;
    }

    .eventInfo .eventInfoBox .eventDetailBox {
        grid-template-columns: 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox {
        grid-template-columns: 1fr;
    }

    .eventInfo .eventInfoBox .festivalBox li a.festivalBtn p:nth-child(2) {
        font-size: 1.3em;
    }

    .eventInfo .eventInfoBox .festivalBox li a p:nth-child(2) span {
        display: inline-block;
    }

    .eventInfo .outline__box {
        padding-bottom: 2em;
    }

    .eventInfo .outline__box .textArea {
        display: block;
    }

    .eventInfo .outline__box .textArea img {
        float: left;
    }

    #parade-event .ttlStl02 img {
        padding-left: 0;
        padding-bottom: .5em;
        padding-top: 1em;
    }

    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th:has(>span.period) {
        width: 100%;
        text-align: left;
    }

    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th>span.period {
        width: auto;
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        line-height: 1.2em;
    }

    .eventInfo .eventInfo_contents .eventInfo_contentsTable>tbody>tr>th>span.period span {
        line-height: 1.2em;
    }

    .eventCat-title {
        padding: .5em 1.25em;
    }
}

.eventInfo .eventInfoBox .eventDetailBox .outline__box {
    border-width: 4px;
    border-radius: 25px;
    box-shadow: none;
}

.eventInfo .festivalBox .festivalBtn {
    display: block;
    position: relative;
    border: 1px solid #002d5e;
    padding: .75em .75em 1em;
    text-align: center;
}

.eventInfo .festivalBox a.festivalBtn:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    bottom: 6px;
    right: 6px;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #002d5e;
}

.eventInfo .eventInfoBox .festivalBox li a:hover {
    opacity: .8;
}

.eventInfo .eventInfoBox>p.detail {
    margin-bottom: 1em;
}

.eventInfo .eventInfoBox dl dt {
    display: inline-block;
    padding: .2em .5em;
    color: #fff;
    /* min-width: 75px; */
    text-align: center;
    font-weight: normal;
    background: #F7B52C;
}

.eventInfo .eventInfoBox dl dd {
    padding: .2em .5em;
}

.eventInfo .eventInfoBox dl+dl {
    margin-top: .5em;
}

.columnR_accordion .outline__box+.outline__box,
.columnL_accordion .outline__box+.outline__box {
    margin-top: 1em;
}

#eventInfo {
    padding-bottom: 3em;
}

#eventInfo .eventWrap {
    padding: 2em 0;
}

.eventCat-title {
    padding: .5em 2.75em;
}

.eventWrap .area-title {
    margin-bottom: 1.2em;
}

.eventWrap .area-title span {
    position: relative;
    z-index: 1;
    color: #042f4d;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4em;
}

.eventWrap .area-title span:after {
    content: '';
    position: absolute;
    bottom: .1em;
    right: 0;
    left: 0;
    z-index: -1;
    display: block;
    height: 8px;
}

#eventInfo .eventWrap#performance-in-town {
    padding-top: 2.5em;
}

/* #opening-event.eventWrap .area-title span:after {
    background: linear-gradient(to right, #ba513a, #a53c1f);
} */

#stage-event.eventWrap .area-title span:after,
#parade-event.eventWrap .area-title span:after {
    background: linear-gradient(to right, #E1690D, #E1690D);
}

/*
#other-event.eventWrap .area-title span:after {
    background: linear-gradient(to right, #27a139, #25c243);
}

#market-event.eventWrap .area-title span:after {
    background: linear-gradient(to right, #dc6987, #da8a91);
} */

.outline__box .time-schedule table tr th span {
    background: #f7b52c;
}

.eventInfo .sub .eventInfoBox {
    padding-bottom: 2em;
}

.eventInfo .sub .eventInfoBox .flexBox>dt {
    min-width: 50px;
}

.eventInfo .sub #festival>dl {
    margin: 2em 0;
}

.eventInfo .sub #festival .festival__date {
    display: inline-flex;
    align-items: center;
    gap: .2em;
    margin-bottom: 1em;
    padding: .15em .5em;
    line-height: 1em;
}

.eventInfo .sub #festival .festival__date .week {
    display: inline-block;
    width: 1.75em;
    color: #f7b52c;
    font-size: 1rem;
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.eventInfo .sub #festival .festival__date+dd {
    padding: 0;
}

.eventInfo .sub #festival dd .festivalBox {
    margin: 0;
}

.eventInfo .sub #festival dd .festivalBox .ward {
    color: #fff;
    border-radius: 500px;
}

.eventInfo .sub #festival dd .festivalBox .festival__title {
    margin-bottom: .75em;
    padding: .5em 0;
    font-weight: bold;
    line-height: 1.5em;
    border-bottom: 1px dashed #b3b3b3;
}

.eventInfo .sub #festival dd .festivalBox .festival__title span {
    line-height: 1.5em;
}

.eventInfo .sub #festival dd .festivalBox .flexBox {
    align-items: center;
    padding: 0 .25em;
}

.eventInfo .sub #festival dd .festivalBox .flexBox>dt {
    line-height: 1.2em;
    background: #042f4d;
}

.eventInfo .sub #festival dd .festivalBox .flexBox>dd {
    font-weight: 400;
    line-height: 1.4em;
    text-align: left;
}

.eventInfoBox__grid {
    display: grid;
    gap: 1em 5em;
    grid-template-columns: auto 1fr;
    margin-top: 1em;
}

.eventInfoBox__grid>dl {
    margin: 0 !important;
}

@media (max-width:768px) {
    .eventInfoBox__grid {
        gap: .5em 5em;
        grid-template-columns: 100%;
    }
}