@charset "utf-8";
/* ===================================================
	Access CSS
====================================================== */

/* ===================================================
	#sec_access
====================================================== */
.googlemap {
    line-height: 0;
}
.googlemap iframe {
    width: 100%;
}

.link_col {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px 15px;
    margin-top: 20px;
}
.cmn_link_03 {
    border-bottom: none;
    padding: 4px 35px 4px 0;
}
.cmn_link_03::before {
    transform-origin: left;
    transform: scale(0);
}

@media screen and (min-width: 601px) {
    .cmn_table dt,
    .cmn_table dd {
        padding: 25px 20px 25px 30px;
    }
    .cmn_table dt {
        width: 230px;
    }
    .cmn_table dd {
        width: calc(100% - 230px);
    }
    .cmn_table.sm dt {
        width: 160px;
    }
    .cmn_table.sm dd {
        width: calc(100% - 160px);
    }
}
@media screen and (hover: hover) and (min-width: 601px) {
    .cmn_link_03:hover {
        opacity: 1;
    }
    .cmn_link_03:hover::before {
        transform: scale(1);
    }
}
@media screen and (max-width: 600px) {
    .googlemap iframe {
        aspect-ratio: 3 / 2;
        height: auto;
    }
}


/* ---------------------------------------------------
    #sec1_1
------------------------------------------------------ */
#sec1_1 {
    padding: 70px 0 100px;
}
#sec1_1 .inner_md {
    display: flex;
    gap: 0 10%;
}
#sec1_1 h2 {
    font-size: 24px;
}
#sec1_1 dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
#sec1_1 dt,
#sec1_1 dd {
    border-bottom: 1px solid #aaa;
    padding: 22px 0;
}
#sec1_1 dt {
    width: 100px;
}
#sec1_1 dd {
    width: calc(100% - 100px);
}

@media screen and (min-width: 601px) {
    #sec1_1 .photo {
        flex-shrink: 0;
        width: 43.7%;
    }
}
@media screen and (max-width: 600px) {
    #sec1_1 {
        padding: 60px 0 50px;
    }
    #sec1_1 .inner_md {
        flex-direction: column;
    }
    #sec1_1 h2 {
        font-size: 20px;
    }
    #sec1_1 .txt {
        margin-top: 25px;
    }
    #sec1_1 dt,
    #sec1_1 dd {
        padding: 18px 0;
    }
}


/* ---------------------------------------------------
    #sec1_2
------------------------------------------------------ */
#sec1_2 {
    display: flex;
    flex-wrap: wrap;
    gap: 55px 8%;
    padding: 90px 0 100px;
}
#sec1_2 .icon {
    display: inline-flex;
    gap: 0 10px;
    margin-bottom: 25px;
    font-size: 26px;
}
#sec1_2 .icon::before {
    content: '';
    display: block;
    width: 24px;
    /* height: 39px; */
    height: auto;
}
#sec1_2 .icon.car::before {
    background: url(../../access/img/icon_car.svg)no-repeat center/contain;
}
#sec1_2 .icon.plane::before {
    background: url(../../access/img/icon_plane.svg)no-repeat center/contain;
}
#sec1_2 .icon.train::before {
    background: url(../../access/img/icon_train.svg)no-repeat center/contain;
}
#sec1_2 .icon.bus::before {
    background: url(../../access/img/icon_bus.svg)no-repeat center/contain;
}
#sec1_2 .route dd {
    align-content: center;
}

@media screen and (min-width: 601px) {
    #sec1_2 .route {
        width: 46%;
    }
    #sec1_2 .route.full {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    #sec1_2 {
        padding: 60px 0;
    }
    #sec1_2 .icon {
        font-size: 20px;
    }
    #sec1_2 .icon::before {
        height: auto;
    }
}


/* ===================================================
    #sec_sightseeing
====================================================== */
/* ---------------------------------------------------
    #sec2_1
------------------------------------------------------ */
#sec2_1 {
    padding: 100px 0;
}
#sec2_1 .tit_col {
    text-align: center;
}
#sec2_1 .tit_en {
    font-size: 66px;
    color: var(--color-tit);
}
#sec2_1 .spot_col {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 10%;
    margin-top: 85px;
}
#sec2_1 .spot dt {
    padding: 20px 0;
    font-size: 26px;
    text-align: center;
    color: var(--color-accent);
}
#sec2_1 .spot dd {
    line-height: 1.8;
}
#sec2_1 .spot .link_col {
    gap: 5px 30px;
}
#sec2_1 .spot .link_col li {
    position: relative;
}
#sec2_1 .spot .link_col a {
    display: flex;
    gap: 0 8px;
    padding-right: 18px;
}
#sec2_1 .spot .link_col a::before,
#sec2_1 .spot .link_col li::after {
    content: '';
    display: block;
}
#sec2_1 .spot .link_col a::before {
    width: 18px;
    height: 28px;
}
#sec2_1 .spot .link_col .foot a::before {
    background: url(../../access/img/icon_foot.svg)no-repeat center/contain;
}
#sec2_1 .spot .link_col .car a::before {
    width: 21px;
    background: url(../../access/img/icon_car.svg)no-repeat center/contain;
}
#sec2_1 .spot .link_col .web a::before {
    background: url(../../access/img/icon_web.svg)no-repeat center/contain;
}
#sec2_1 .spot .link_col li::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 28px;
    background: url(../../access/img/arrow.svg)no-repeat center/contain;
    transition: right 0.5s 0.2s ease;
}

@media screen and (hover: hover) and (min-width: 601px) {
    #sec2_1 .spot .link_col li:has(a:hover)::after {
        right: -3px;
    }
    #sec2_1 .spot .link_col a:hover {
        opacity: 1;
    }
    #sec2_1 .spot .link_col a:hover::after {
        transform: scale(1);
    }
}
@media screen and (min-width: 601px) {
    #sec2_1 .spot {
        width: 45%;
    }
}
@media screen and (max-width: 600px) {
    #sec2_1 {
        padding: 60px 0;
    }
    #sec2_1 .tit_en {
        font-size: min(10vw, 38px);
    }
    #sec2_1 .spot_col {
        gap: 55px 0;
        margin-top: 50px;
    }
    #sec2_1 .spot dt {
        padding: 15px 0 12px;
        font-size: 20px;
    }
    #sec2_1 .spot .link_col {
        gap: 5px 20px;
    }
}


/* ---------------------------------------------------
    #sec2_2
------------------------------------------------------ */
#sec2_2 {
    padding: 95px 0 70px;
}
#sec2_2 h2 {
    text-align: center;
}
#sec2_2 ul {
    display: flex;
    justify-content: center;
    gap: 0 50px;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    #sec2_2 {
        padding: 50px 0 30px;
    }
    #sec2_2 ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    #sec2_2 ul li {
        width: min(100%, 300px);
    }
}