.txt-120 {
    font-size: 120%;
    font-weight: 700;
}

.fixed-btn {
    position: fixed;
    right: 2em;
    bottom: 1em;
    z-index: 99;
    text-align: center;
    padding: 1em;
    border-radius: calc(var(--border-r) * 0.5);
    background-color: white;
    border: 1px solid #0098db;;
    color: var(--col-black);
    box-shadow: 0 0 40px #0098db;
}

.fixed-btn strong {
    font-size: 120%;
}

.fixed-btn .ui-btn-svg {
    margin: 0.5em auto 0;
    width: calc(var(--btn-w)*0.5);
    height: calc(var(--btn-w)*0.5);
    transform: rotate(90deg);
}

.fixed-btn .ui-btn-svg svg {
    transform: scale(2.50);
}

.c-content .txt-line {
    color: #557EA7;
    text-decoration: underline;
}

.c-header-lang nav {
    display: none;
}

.notes {
    font-size: 80%;
    text-indent: -1em;
    padding-left: 1em;
}

.c-section-h2-th {
    line-height: 2.0;
}

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

.c-ul>li {
    margin-bottom: 1em;
}

.c-ul>li>ul {
    margin-left: 1em;
    margin-bottom: 1em;
}

.c-ul>li>ul>li {
    margin-bottom: 0.5em;
}


.c-belt.petra {
    grid-template-columns: 2fr 1fr;
}



.c-belt.rnotes {
    grid-template-columns: auto;
    align-items: start;
    background-color: #eeeeee;
}

.c-belt.rnotes .c-belt-col {
    height: 20vw;
    overflow-y: scroll;
    scrollbar-color: #dcdcdc #eeeeee;
}

.c-sponsor-th.tour {
    width: 100%;
}

.c-content.tour {
    width: 100%;
}

.tour-table {
    text-align: center;
    width: 100%;
    border-spacing: 1px;
}

.tour-table th {
    background-color: #d2d2d2;
    padding: 0.5vw;
    border-radius: calc(var(--border-r)*0.5) calc(var(--border-r)*0.5) 0 0;
}

.tour-table thead>tr>th {
    border-radius: 0;
    font-size: 80%;
}

.tour-table thead>tr:first-child>*:first-child {
    border-radius: calc(var(--border-r)*0.5) calc(var(--border-r)*0.5) 0 0;
    font-size: 80%;
    line-height: 1.2;
    padding: 0.5vw;
}

.tour-table td {
    background-color: white;
    padding: 0;
}

.tour-table td.c-bg-gray {
    background-color: var(--col-img-bg);
}

.tour-table td:first-child {
    border-radius: 0 0 0 calc(var(--border-r)*0.5);
}

.tour-table td:last-child {
    border-radius: 0 0 calc(var(--border-r)*0.5) 0;
}

.tour-table td:first-child .ui-btn {
    border-radius: 0 0 0 calc(var(--border-r)*0.5);
}

.tour-table td:last-child .ui-btn {
    border-radius: 0 0 calc(var(--border-r)*0.5) 0;
}

.tour-table td[rowspan="3"] {
    border-radius: 0 0 calc(var(--border-r)*0.5) calc(var(--border-r)*0.5);
    background-color: rgba(255, 255, 255, .3);
    padding: 0.5vw;
    height: calc(var(--btn-w) * .5);
    box-sizing: content-box;
}

.tour-table td .ui-btn {
    display: block;
    padding: 0.5vw;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

/* href が “#” ちょうどの <a> 要素にだけ適用 */
.tour-table td .ui-btn[href="#"] {
    pointer-events: none;
    background-color: rgba(0, 0, 0, .3);
    /* 例: クリック無効化 */
}



.tour-table td .ui-btn[href="#"] .ui-btn-svg {
    display: none;
}



.tour-table td .ui-btn[href="#"] .ui-btn-body {
    width: 100%;
    text-align: center;
}

.tour-table .ui-btn-svg {
    /*  width: calc(var(--btn-w) * .5); */
    /* height: calc(var(--btn-w) * .5);
    line-height: calc(var(--btn-w) * .5); */
    /* position: absolute;
    right: 0;
    top: 0; */
    color: white;
    font-size: 80%;
    width: 5em;
    height: auto;
    aspect-ratio:inherit;
    padding: 0.25em;
}

.tour-table .ui-btn-body {
    height: calc(var(--btn-w) * .5);
    /* display: block; */
    position: relative;
    
}

.tour-table .ui-btn-txt {
    /* height: calc(var(--btn-w) * .5);
    line-height: calc(var(--btn-w) * .5); */
    padding: 0;
    flex: 1;
    text-align: center;
}

.c-clip .o {
    line-height: 1.5;
}

.tour-table .ui-btn-svg {
    border-radius: max(5px, .694vw);
}

.tour-table .ui-btn-svg svg {
    transform: scale(2.25);
}

.zoom-anim img {
    display: block;
    width: 100%;
    opacity: 0;
    transform: scale(1.1);
    animation: fadeZoomIn 1.8s ease-out forwards;
}


@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (min-width:701px) {
    .ui-btn:hover {
        background: #dcdcdc;

    }
}

@media screen and (min-width:1025px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }


}

@media screen and (max-width:1024px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .tour-table td .ui-btn {
        font-size: 80%;
    }

    .tb-bl {
        display: block;
    }

    .fixed-btn {
        border-radius: 500px;
        line-height: 1.2;
        width: 35vw;
        height: 35vw;
        right: 0.5em;
        bottom: 0.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

}

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

    .c-belt.petra {
        grid-template-columns: 1fr;
    }

    .c-belt.rnotes .c-belt-col {
        height: 50vw;
    }

    .tour-table th {
        padding: 1vw;
        font-size: 90%;
    }

    .tour-table thead>tr>td:first-child {
        padding: 1vw;
    }

    .tour-table td .ui-btn {
        padding: 2vw 1vw;
    }

    .tour-table .ui-btn-body {
        height: calc(var(--btn-w) * .4);
    }

    .tour-table .ui-btn-txt {
       /*  height: calc(var(--btn-w) * .4); */
        /* line-height: calc(var(--btn-w) * .4); */
        /* width: calc(100% - var(--btn-w) * .4); */
    }

    .tour-table .ui-btn-svg {
        /* width: calc(var(--btn-w) * .4); */
       /*  height: auto; */
        /* right: 1vw; */
    }

}

@media (prefers-color-scheme: dark) {

    .c-belt.rnotes,
    .tour-table,
    .tour-table a {
        color: var(--col-white);
    }

    .tour-table td.c-bg-gray {
        color: white;
    }

    .tour-table td[rowspan="3"] {
        color: white;
    }

    .fixed-btn {
    color: var(--col-white);
    }
}