@charset "UTF-8";

body {
    background-image: url(../../images/bgimg_02.png);
    background-color: var(--main-color-w);
    background-size: cover;
}

/*===================
mv
===================*/
.pc-access_mv {

    width: 100%;
    height: 35vh;
    max-height: 1040px;
    top: 0;
    left: 0;
    margin-bottom: var(--section-gutter);

}

.pc-access-mv_img {
    width: auto;
    height: 35vh;
    max-height: 1040px;
    position: relativ;

    background-image: url(../../images/access/mv_access.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    box-shadow: inset 0 -5px 10px 5px rgba(230, 230, 236, 0.5);
    animation: fadeIn 1s forwards;


}

/* =========
アクセス
=========== */



.access .access_inner {
    background-color: var(--main-color-w);
    margin-bottom: var(--footer-gutter);
    /* border: solid 1px #000; */
    padding: 1em;

}

.access .info {
    display: flex;
    position: relative;
    background-color: #fff;
    align-items: center;
    padding: var(--side-gutter);
    line-height: 2em;

}

.vew img {
    filter: drop-shadow(1px 2px 2px #aaa);
    width: 50vw;
    padding: var(--side-gutter);
    margin: auto;
}

.gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*16:9の比率にしたい場合、9/16=56.25%*/
    margin-bottom: var(--contents-gutter);
}

.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(1px 2px 2px #aaa);
    margin-bottom: var(--contents-gutter);

}

.contact {
    /* display: block; */
    position: relative;
    margin-bottom: var(--contents-gutter);
    margin: auto;
    background-color: #fff;
    padding: var(--side-gutter);
    filter: drop-shadow(1px 2px 2px #aaa);
}

.contact .contact_title {
    font-size: var(--size-lg);
    font-family: var(--font-shi-a);
    text-shadow: 1px 1px 2px #3B2C16;
    padding-bottom: 1rem;
}

.access-contact {
    font-size: var(--size-md);
    color: var(--main-color);
    border-bottom: solid 5px;
    width: 40vw;
}

.access-contact_tel {
    margin-top: 1em;
    display: flex;
    gap: 1em;
    align-items: center;
    font-size: var(--size-lg);
}

.access-contact_tel a {
    font-weight: bold;
    text-decoration: none;
}

.contact-btn {
    display: block;
    background-color: var(--main-color-o);
    color: #fff;
    font-size: var(--size-md);
    width: 200px;
    text-align: center;
    line-height: 3;
    align-items: center;
    border-radius: 10px;


}

.contact-btn:hover {
    opacity: 0.7;
}

@media screen and (max-width:1200px) {

    .access-contact {
        width: 50vw;
    }
}

/*========max-width:1200px========*/
@media screen and (max-width:767px) {
    .access .info {
        display: inline-block;
    }

    .contact {
        text-align: center;
    }

    .access-contact_tel {
        display: block;
        text-align: center;
    }

    .access-contact_tel p {
        padding-bottom: 1em;
    }

    .access-contact {
        width: 50vw;
        margin: auto;
    }

    .contact-btn {
        /* display: inline-block; */
        margin: auto;
    }

}

/*========max-width:767px========*/

@media screen and (max-width:520px) {
    .access .info {
        display: block;
        margin: auto;
    }

    .vew img {
        width: 100%;
    }





}

/*========max-width:520px======== */