@charset "utf-8";

/* CSS Document */
/***************<下層ページ共通>**************/
header {
    position: fixed;
    top: 0;
}

h1.green {
    display: none;
}

main {
    margin-top: 200px;
}

/**************</下層ページ共通>***************/

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    width: 1080px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    margin-top: 100px;
}

table::before {
    background-image: url(../images/timeschedule_illust.png);
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 79px;
    top: -79px;
    left: 0;
}

th {
    font-weight: normal;
}

th,
tr,
td {
    padding: 10px 0;
}

.border {
    border: 1px dashed #8e8e8e;
}

tr.green {
    background: #41ce00;
    border: 1px solid #41ce00;
}

.border_right {
    background: #fff;
    border-right: 1px dashed #8e8e8e;
    width: 20%;
}

.bold {
    color: #fff;
    font-weight: bold;
}

span.white {
    color: #fff;
}

span.blue {
    color: #3b3bff;
}

span.red {
    color: #ff3b3b;
}

.caution {
    text-align: right;
    padding: 10px 10px 0 0;
}

span.red_caution {
    color: #ff3b3b;
    font-weight: bold;
}

.gray {
    background-color: #efefef;
    padding-bottom: 30px;
    padding-top: 30px;
}

.access {
    text-align: center;
}

.icon {
    padding-bottom: 20px;
}

.address {
    margin-bottom: 20px;
}

.car_train {
    line-height: 2;
    margin-bottom: 40px;
}

#access {
    margin-bottom: 50px;
}

.caption2 {
    position: relative;
    width: 339px;
}

.caption2 div {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    ;
    top: 0;
    left: 0;
    box-sizing: border-box;
    font-size: 18px;
}

.caption2 p {
    position: relative;
    top: 10px;
    text-align: left;
}

.info_talking {
    position: relative;
}

.info {
    position: absolute;
    left: 35%;
}
.fuwafuwa {
    animation-name: fuwa-chan;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
@keyframes fuwa-chan {
    0% {
        transform: translate(0, 0px);
    }

    100% {
        transform: translate(0, -15px)
    }
}

.info_yutaka {
    position: absolute;
    left: 60%;
}

.info_yutaka img {
    height: 70%;
}


/**********************<レスポンシブ>*********************/
@media screen and (max-width:640px) {

    /*****************下層ページ共通*************/
    header {
        position: fixed;
        top: 0;
    }

    .my-parts {
        border-left: none;
        color: #008c0d;
    }

    main {
        margin-top: 150px;
    }

    /*****************************************/
    .slider {
        overflow-x: auto;
        margin: 0 20px;
        -webkit-overflow-scrolling: touch;
    }

    .slider::-webkit-scrollbar {
        height: 5px;
    }

    .slider::-webkit-scrollbar-track {
        border-radius: 5px;
        background: #41ce00;
    }

    .slider::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #41ce00;
    }

    table {
        width: 640px;
    }

    .slider tr th {
        position: sticky;
        left: 0;
    }

    .bold {
        background-color: #41ce00;
    }

    .slider tr td:first-child {
        width: 50%;
        position: sticky;
        left: 0;
    }

    .slider td img {
        width: 30%;
    }

    .caution {
        text-align: center;
    }

    .icon {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    img.icon1 {
        width: 10%;
    }

    img.icon2 {
        width: 20%
    }

    .car_train {
        margin-bottom: 10px;
    }

    .caption2 {
        margin: auto;
    }

    .info,
    .info_yutaka {
        display: none;
    }

}

/**********************</レスポンシブ>*********************/
