@charset "utf-8";

/* ==================================
access 
===================================== */
.section {
    padding: 30px 5.3%;
    margin: 0 auto;
}

.contents__title {
    text-align: center;
    margin: 0 auto 30px;
}

.address img {
    width: 24px;
    height: 24px;
    vertical-align: -5.5px;
}

address {
    text-align: center;
    font-family: "Noto Sans JP";
    align-items: center;
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 60%;
}

.map iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 80%;
    transform: translateX(-50%) translateY(-50%);
}

.map__img {
    margin: 30px auto;
}


.access__item {
    padding: 10px 0;
}

.access__detail {
    display: flex;
    gap: 5.9%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.access__detail::after {
    content: '';
    display: block;
    width: 89.3%;
    height: 1px;
    background-color: var(--lightgray);
    position: absolute;
    bottom: -18px;

}

.detail__contet {
    width:54.3%;
}

.detail__image img {
    width: 80px;
    height: 80px;
}

.detail__subtitle {
    font-style: normal;
    font-family: YuGothic,"Noto Sans JP";
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
    text-align: left;
}

.detail__txt {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: "Noto Sans","Noto Sans JP","Noto Sans TC","Noto Sans KR";
    text-align: left;
}

.spBr {
    white-space: pre;
}

.access__item {
    margin-top: 48px;
}

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

.btn--bbq {
    margin: 48px auto 30px; 
    background-color: var(--lightgreen);
    color: var(--green);
    
}

.btn--bbq::after {
    content: '';
    display: inline-block;
    width: 7.5px;
    height: 10px;
    background-image: url(../image/btn__srrow-green.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right:43.5px ;
    transform: translateY(-50%);
}


/* pc */
@media screen and (min-width:769px) {
    .section {
        padding: 60px 12.8%;
        margin: 0 auto;
    } 

    .detail__contet {
        width:56%;
    }

    .detail__subtitle {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .detail__txt {
        font-size: 1.6rem;
    }

    .access__item {
        padding: 30px 2.6%;
        margin-top: 0px;
    }

    .access__detail::after {
        bottom: -30pxs;
    }
}

