﻿@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

body {
    padding-top: 4.5rem;
}

.main-area {
    overflow: hidden;
    padding-bottom: 60px;
}

.border-bottom-S {
    border: 0px solid #dee2e6;
    border-bottom: 1px solid #dee2e6 !important;
}

.border-color-S {
    border-bottom: 4px solid #9C9473 !important;
}

.bgffffff {
    background: #ffffff;
}

.openinnew {
    width: 20px;
    height: 20px;
}

/* ヘッダー */
.header-botton {
    background: #f2f2f2;
}


/* 走行位置画面 */
.busLocation {
    margin-bottom: 200px;
}

.fs-0 {
    font-size: calc(2rem + 1.5vw) !important;
}

.rounded-start {
    width: auto;
    height: 100%;
}

.busHeight {
    height: 60px;
}

.busStopText {
    position: absolute;
    color: #000000;
    transform: translateY(-20%);
}

.busPassedStopText {
    position: absolute;
    color: #888888;
    transform: translateY(-20%);
}

.imageSizeRoot {
    position: absolute;
    width: 40px;
    height: 120px;
    margin: 0 0 0 0;
    transform: translateY(-30%);
    z-index: 10;
}

.imageSizeDot {
    position: absolute;
    width: 40px;
    height: auto;
    z-index: 20;
}

.imageSizeBus {
    position: absolute;
    width: 40px;
    height: auto;
    z-index: 20;
    transform: scale(1.5);
}

.imageSizeBusOnRoot {
    position: absolute;
    width: 40px;
    height: auto;
    z-index: 30;
    transform: scale(1.5);
}

.imageSizeBusReverse {
    position: absolute;
    width: 40px;
    height: auto;
    z-index: 30;
    transform: scale(1.5) rotate(180deg);
}

.imageSizeBusOnRootReverse {
    position: absolute;
    width: 40px;
    height: auto;
    z-index: 30;
    transform: scale(1.5) rotate(180deg);
}

/* ページネーションの基本スタイル */
.swiper-pagination-bullet {
    background-color: transparent;
    /* 背景色を透明に */
    background-image: url("../img/point=inactive.png");
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: unset;
    height: 50px;
    opacity: 1;
    width: 50px;
}

/* 選択されているページネーション */
.swiper-pagination-bullet-active {
    background-image: url("../img/point=active.png");
    height: 50px;
    width: 50px;
}

.swiper-pagination {
    height: 10px;
    position: relative;
    text-align: center;
    margin: 24px 0;
    padding-top: 10px;
}

/* 走行位置画面のフッター*/
.footer {
    z-index: 4000;
    background-color: #f2f2f2;
}

.updateButton {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.16);
    border-radius: 60px;
    margin: 30px;
    transform: translateY(15%);
}

.updateButtonText {
    padding: 15px;
    text-align: center;
    color: #9C9473;
}

.footerContent {
    margin-top: -35px;
}

.footerText {
    color: #7A7460;
}


/* 時刻表画面 */
.timeTableImage {
    width: 100%;
    height: auto;
}

.timeTableHead {
    height: 3rem;
    margin: auto;
    text-align: center;
    vertical-align: middle;
    background-position: center;
    font-size: 2rem;
}

.timeTableHeadColor {
    color: #7A7460;
}

/* エラーポップアップ */
.popupOverlay {
    /*display: none;*/
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.popupWindow {
    width: 350px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 5px solid #9C9473;
    display: flex;
    justify-content: center;
    align-items: center;
    /*position: fixed;*/
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translate(-50%, 15%);
    z-index: 2000;
}

.infoSize {
    width: 60px;
    height: 60px;
}

.spin-contents {
    z-index: 9999;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    right: 0;
}

.spin-background {
    z-index: 9000;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #F2F2F2;
}

@keyframes rotate-z {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.image-spin {
    height: calc(100vh - 90vh);
    animation: rotate-z 1s linear infinite;
}