@charset "utf-8";
/*=======================
link
=======================*/
.pagelink {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    margin: 80px 15% 20px;
    gap: 20px 1%;
}

.pagelink a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #00AB98;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.8rem;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.pagelink a:hover {
    color: #fff;
    background-color: #00AB98;
}

/* link tb */
@media screen and (max-width: 1080px) {
    .pagelink {
        margin: 60px 10% 20px;
        gap: 12px 1%;
    }

    .pagelink a {
        padding: 4px 0;
        font-size: 1.7rem;
    }
}/* tb 1080px */

/* link sp */
@media screen and (max-width: 769px) {
    .pagelink {
        margin: 20px 4.2% 30px;
        gap: 8px 2%;
    }

    .pagelink a {
        padding: 3px 0;
        font-size: 1.4rem;
    }
}/* sp 769px */

/*=======================
location
=======================*/
.section--location {
    padding: 60px 10.4% 40px;
}

.location-txt {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    gap: 2%;
}

.location-txt a{
    color: #fff;
    background-color: #00AB98;
    padding: 3px 2%;
    border-radius: 15px;
    cursor: pointer;
}

.location-txt a:hover{
    opacity: 0.7;
}

.location-txt img{
    width: 1.6rem;
    padding-bottom: 4px;
}

.googlemap {
    margin-top: 10px;
    position: relative;
    width: 100%;
    padding-top:40%;
    overflow: hidden;
    border-radius: 5px;
}

.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* location tb */
@media screen and (max-width: 1080px) {
    .section--location {
        padding: 60px 4.2% 40px;
    }
}/* tb 1080px */

/* location sp */
@media screen and (max-width: 769px) {
    .section--location {
        padding: 20px 4.2% 30px;
    }

    .location-txt {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        font-size: 1.6rem;
        gap: 2%;
    }

    .location-txt a{
        color: #fff;
        background-color: #00AB98;
        padding: 3px 2%;
        border-radius: 15px;
    }

    .location-txt img{
        width: 1.6rem;
        padding-bottom: 4px;
    }

    .googlemap {
        padding-top:80%;
    }
}/* sp 769px */

/*=======================
elevatior
=======================*/
.section--elevator {
    padding: 60px 10.4% 40px;
}

.elevator__list {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.elevator__item {
    width: 32%;
}

.elevator__item img{
    border-radius: 20px;
}

.elevator__item p{
    margin-top: 8px;
    font-size: 1.6rem;
}

/* elevator tb */
@media screen and (max-width: 1080px) {
    .section--elevator {
        padding: 60px 4.2% 40px;
    }
}/* tb 1080px */

/* elevator sp */
@media screen and (max-width: 769px) {
    .section--elevator {
        padding: 20px 4.2% 30px;
    }

    .elevator__list {
        margin-top: 20px;
        display: block;
    }

    .elevator__item {
        margin-top: 30px;
        width: 100%;
    }

    .elevator__item:first-of-type {
        margin-top: 0;
    }

    .elevator__item img{
        border-radius: 10px;
    }

    .elevator__item p{
        margin-top: 8px;
        font-size: 1.6rem;
    }
}/* sp 769px */

/*=======================
parking
=======================*/
.section--car {
    padding: 60px 10.4% 40px;
}

.parkingmap {
    margin-top: 20px;
}

.parking__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 40px 4%;
}

.parking__item {
    position: relative;
}

.parking__item h4{
    position: absolute;
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px 0 5px 0;
    color: #fff;
    background: #00AB98;
}

.parking__item img{
    border-radius: 20px;
}

.parking__item p{
    margin-top: 8px;
    font-size: 1.6rem;
}

/* parking tb */
@media screen and (max-width: 1080px) {
    .section--car {
        padding: 60px 4.2% 40px;
    }
}/* tb 1080px */

/* parking sp */
@media screen and (max-width: 769px) {
    .section--car {
        padding: 20px 4.2% 30px;
    }

    .parkingmap {
        margin-top: 20px;
    }

    .parking__list {
        margin-top: 20px;
        display: block;
    }

    .parking__item {
        margin-top: 30px;
        position: relative;
    }

    .parking__item h4{
        position: absolute;
        font-size: 1.6rem;
        font-weight: 500;
        display: flex;
        padding: 4px 10px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 10px 0 5px 0;
        color: #fff;
        background: #00AB98;
    }

    .parking__item img{
        border-radius: 10px;
    }

    .parking__item p{
        margin-top: 8px;
        font-size: 1.6rem;
    }
}/* sp 769px */

/*=======================
train
=======================*/
.section--train {
    padding: 60px 10.4% 80px;
    position: relative;
}

.root-map {
    margin-top: 40px;
}

.root__list {
    position: absolute;
    counter-reset: mycounter;
    bottom: 80px;
    left: 10.4%;
    font-size: 1.8rem;
    background-color: #fff;
    padding: 10px 1% 0 3%;
}

.root__item {
    margin-top: 5px;
    position: relative;
}

.root__item::before {
    position: absolute;
    counter-increment: mycounter;
    content: counter(mycounter);
    top: 0;
    left: -10%;
    color: #fff;
    background-color: #00AB98;
    font-family: 'Roboto';
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2.5%;
    border-radius: 50px;
}

/* train tb */
@media screen and (max-width: 1080px) {
    .section--train {
        padding: 60px 4.2% 80px;
    }

    .root__list {
        left: 4.2%;
        font-size: 1.6rem;
    }

    .root__item::before {
        font-size: 1.5rem;
        padding: 0 8px;
    }
}/* tb 1080px */

/* train sp */
@media screen and (max-width: 769px) {
    .section--train {
        padding: 20px 0 40px;
        position: none;
    }

    .root-map {
        margin-top: 40px;
    }

    .root__list {
        position: static;
        counter-reset: mycounter;
        font-size: 1.5rem;
        padding: 8px 0 0 12%;
    }

    .root__item {
        margin-top: 5px;
        position: relative;
    }

    .root__item::before {
        position: absolute;
        counter-increment: mycounter;
        content: counter(mycounter);
        top: 0;
        left: -8%;
        color: #fff;
        background-color: #00AB98;
        font-family: 'Roboto';
        font-size: 1.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 7px;
        border-radius: 50px;
    }
}/* sp 769px */