 :root{
    /* 画面下部メニューの色 */
    --lists-main: #ffffff;
    /* 背景色 */
    --bg-color: linear-gradient(45deg,#c0dcec,#508fee);
    /* コンテンツボックスの色 */
    --content-bg-color: linear-gradient(90deg,#3ab3c60rgba(48, 105, 170, 0)aa 70%);
    /* 交通機関の文字のシャドウ */
    --title-shadow-color: #09b244;
}
body{
    background-attachment: fixed !important;
    background: var(--bg-color); 
}
#main-content{
    margin-top: 85px;
}
#transportation-title-jp{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #f1f1f1;
    opacity: 0;
    text-align: right;
    padding-right: 5vw;
    font-size: 2.9rem;
    margin: 30px 0 0;
    text-shadow: 0 0 7px var(--title-shadow-color);
    overflow: hidden;
    animation-name:transportationNameAnime;
    animation-duration:0.7s;
    animation-fill-mode:forwards;
}
#transportation-title-en{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    text-align: center;
    color: #f1f1f1;
    opacity: 0;
    text-align: right;
    padding-right: 5vw;
    font-size: 1.5rem;
    margin: 10px 0;
    text-shadow: 0 0 7px var(--title-shadow-color);
    overflow: hidden;
    animation-name:transportationNameAnime;
    animation-duration:0.7s;
    animation-fill-mode:forwards;
    animation-delay: 0.1s;
}
@keyframes transportationNameAnime{
    from {
        opacity: 0;
        margin-right: -50vw;
    }

    to {
        opacity: 1;
        margin-right: 0;
    }
}
/* 詳細全体 */
#information-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30vh;
}

/* ここから各要素コンテナ */
.container{
    display: flex;
    opacity:0;
    margin: 0 0 25px;
    width: fit-content;
    max-width: 90vw;
    height: fit-content;
    color: #ffffff;
    background: var(--content-bg-color);
    font-feature-settings: "palt";
    animation-name:fadeUpAnime;
    animation-duration:1.0s;
    border-radius: 30px;
    animation-fill-mode:forwards;
}
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.heading{
    display: flex;
    flex-direction: column;
    margin: 30px 0 0;
    width: fit-content;
}
.container h3{
    position: sticky;
    top: 85px;
    margin: 5px auto 10px;
    padding: 0 10px;
    color: #efefef;
    font-size: 2.0rem;
    white-space: nowrap;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
}
.heading-jp{
    letter-spacing: 0.2em;
}
.heading-en{
    font-size: 0.5em;
}
.container article{
    align-self: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 1.2em;
    line-height: 1.3em;
    padding: 1% 5% 4%;
    border-left: 1px dashed #ffffff;
}
#seichi article ul{
    list-style: none;
    padding: 0;
}
#seichi article ul li{
    margin: 1.3em 0;
}
/* 以下聖地のリンク用（リンク付与する場合）
#seichi article a{
    position: relative;
    text-decoration: none;
    color: #ffffff;
}
#seichi article a::before{
    position: absolute;
    content: "";
    bottom: 0.4em;
    right: 0;
    transform: rotate(45deg);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    height: 0.5em;
    width: 0.5em;
    opacity: 0;
    animation-name:arrowAnime;
    animation-duration:1.0s;
    animation-delay: 0.5s;
    animation-fill-mode:forwards;
    transition: all 0.3s ease;
}
@keyframes arrowAnime{
    from {
        opacity: 0;
        right: 0;
    }

    to {
        opacity: 1;
        right: -25px;
    }
}
#seichi article a:hover::before{
    height: 1.0em;
    width: 1.0em;
    bottom: 0.1em;
    border-top: 3.5px solid #ffffff;
    border-right: 3.5px solid #ffffff;
}
ここまで */
#fare{
    height: fit-content;
}
#fare-info{
    padding-bottom: 25px;
}
#fare-info ul{
    list-style: none;
}
#fare-info ul li{
    margin: 2.3em 0;
}
#fare-info ul li .price{
    margin: 0.3em 0.6em 0.6em;
    font-size: 1.8em;
    font-weight: 400;
}
#information{
    height: fit-content;
    aspect-ratio: unset !important;
}
#information article{
    max-width: 500px;
}
#site article ul{
    list-style: none;
}
#site article ul li{
    margin: 0.8em;
}
#site article ul li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 1.1em;
}
#site article a::before{
    position: absolute;
    content: "";
    bottom: 0.4em;
    right: 0;
    transform: rotate(45deg);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    height: 0.5em;
    width: 0.5em;
    opacity: 0;
    animation-name:arrowAnime;
    animation-duration:1.0s;
    animation-delay: 0.5s;
    animation-fill-mode:forwards;
    transition: all 0.3s ease;
}
#map{
    flex-direction: column !important;
}
#map .heading h3{
    position: relative;
}
#map iframe{
    width: 90vw;
    height: 70vh;
}
#transportation-wrapper{
    position: fixed;
    flex-direction: column;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 2px 0;
    background-color: #518fc1da;
}
#transportation-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    overflow: auto;
    scroll-snap-type: x;
    height: 66px;
    width: 90vw;
    margin: 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-align: center;
}
#transportation-container::-webkit-scrollbar{
    display:none;
}
.transportation-lists{
    height: 30px;
    aspect-ratio: 1/1;
    margin: 6px 9px 0;
    text-align: center;
    letter-spacing: 0.1em;
}
input{
    display: none;
}
label{
    position: relative;
    width: 100%;
    color: var(--lists-main);
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: -1px;
    cursor: pointer;
}
svg{
    margin: 2px 0 0;
    height: 25px;
    aspect-ratio: 1/1;
    stroke-width: 1.5px;
}
