@charset "utf-8";

/*==========================
Article header
========================= */
.keyImg3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
    height: 50vw;
    background: url(../images/keyVisual3.jpg) center/cover no-repeat;
}

.keyImg3::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 120%;
    height: 100px;
    margin: 0 0 -78px -10%;
    border-radius: 100%;
    background-image: url(../images/BackgroundColor.jpg);
}

.Access__Map {
    padding: 80px 0 120px;
}

.guide {
    padding: 64px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.guide__topic {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.guide__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(373px, 1fr));
    grid-template-rows: auto;
    gap: 32px;
}

.order {
    font-weight: 700;
    text-align: center;
}

.guideImg2 img {
    height: 249px;
    object-fit: cover;
}

.access__mapLink {
    display: block;
    margin: 64px auto 0;
    text-align: center;
    height: 53px;
    max-width: 215px;
    border-radius: 3px;
    background-color: var(--primary-brown);
    border: 1px solid var(--primary-brown);
    color: var(--primary-white);
    line-height: 1.5;
    padding: 16px 55px 18px 21px;
    position: relative;
    transition: 0.4s;
}

.access__mapLink::before,
.access__mapLink::after {
    content: "";
    position: absolute;
    margin: auto;
    transition: 0.3s;
}

.access__mapLink::before {
    top: 10px;
    left: 180px;
    bottom: 0;
    width: 12.5px;
    height: 7.5px;
    border: 1px solid var(--primary-white);
    border-radius: 50%;
}

.access__mapLink::after {
    top: 0;
    bottom: 15px;
    left: 183px;
    background: url(../images/poleWhite.svg) no-repeat;
    width: 6px;
    height: 11.5px;
}

.access__mapLink:hover {
    color: var(--primary-orange);
    background-color: var(--primary-white);
    background-image: none;
}

.access__mapLink:hover::before {
    border: 1px solid var(--primary-orange);
}

.access__mapLink:hover::after {
    bottom: 0;
    background-image: url(../images/poleOrange.svg);
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:767px) {
    .Access__Map {
        padding: 48px var(--contentPadding);
    }

    .keyImg3 {
        min-height: 630px;
    }

    .guide {
        padding: 0 var(--contentPadding) 32px;
    }

    .guide__topic {
        font-size: 1.8rem;
    }

    .guide__list {
        grid-template-columns: 100%;
    }

    .access__mapLink {
        margin: 24px auto 48px;
    }
}

/*==========================
footer__btnArea
========================= */
.footer__btnArea {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    align-items: center;
    padding: 80px 0 120px;
    position: relative;
}

.footer__btnArea a {
    display: block;
    min-height: 267px;
    border-right: 2px solid var(--primary-white);
    border-bottom: 2px solid var(--primary-white);
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    transition: 0.4s;
    padding: 18px;
    text-shadow: 0px 0px 4px #4C1900;
}

.footer__btnArea a::before,
.footer__btnArea a::after {
    content: "";
    position: absolute;
    transition: 0.3s;
}

.footer__btnArea .ToCafe::before {
    bottom: 66%;
    left: 130px;
}

.footer__btnArea .ToCafe::after {
    top: 16%;
    left: 130px;
}

.footer__btnArea .ToHandmade::after,
.footer__btnArea .ToVegetable::after {
    top: 16%;
    right: 50px;
}

.footer__btnArea .ToHandmade::before,
.footer__btnArea .ToVegetable::before {
    bottom: 66%;
    right: 50px;
}


@media screen and (max-width: 767px) {
    .footer__btnArea {
        padding: 48px 0;
    }

    .footer__btnArea a {
        font-size: 2.4rem;
        min-height: 200px;
    }

    .footer__btnArea .ToCafe::before {
        bottom: 62%;
        left: 100px;
    }

    .footer__btnArea .ToCafe::after {
        top: 18%;
        left: 100px;
        width: 40px;
    }

    .footer__btnArea .ToHandmade::before,
    .footer__btnArea .ToVegetable::before {
        bottom: 62%;
        right: 40px;
    }

    .footer__btnArea .ToHandmade::after,
    .footer__btnArea .ToVegetable::after {
        top: 18%;
        right: 40px;
        width: 40px;
    }
}