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

#breadcrumb { margin-top: 120px; }
@media screen and (max-width: 600px) {
	#breadcrumb { margin-top: 60px; }
}

/* Animation */
@keyframes laggy {
	0% { transform: rotateZ(2deg);}
	10% { transform: rotateZ(-2deg);}
	20% { transform: rotateZ(2deg);}
	30% { transform: rotateZ(0);}
	100% { transform: rotateZ(0);}
}
@keyframes laggy_2 {
	0% { transform: rotateZ(-3deg);}
	10% { transform: rotateZ(2deg);}
	20% { transform: rotateZ(-3deg);}
	30% { transform: rotateZ(0);}
	100% { transform: rotateZ(0);}
}
.anim1::after {
	animation: laggy 2000ms 1500ms infinite step-end;
}
.anim2::after,
.anim2::before {
	animation: laggy_2 2000ms 2000ms infinite step-end;
}
.icon_popup2 {
	display: inline-block;
	width: 22px;
	height: 22px;
	color: #fff;
}
.icon_pin {
	display: inline-block;
	width: 20px;
	height: 24px;
	color: #fff;
}

.cmn_btn.icon2 {
	gap: 0 5px;
	padding: 15px 12px;
	background-color: var(--col-access);
}
@media screen and (min-width: 601px) {
	.cmn_btn.icon2 {
		width: 100%;
		min-width: 0;
		letter-spacing: 0.04em;
	}
}
@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_btn:hover {
		color: var(--col-access);
	}
	.cmn_btn:hover .icon_popup2,
	.cmn_btn:hover .icon_pin {
		color: var(--color, var(--col-access));
	}
}
@media screen and (max-width: 600px) {
    .icon_popup2,
	.icon_pin {
        width: 18px;
        height: 18px;
    }
}


/* ---------------------------------------------------
	#sec_intro
------------------------------------------------------ */
#sec_intro {
    display: flex;
    justify-content: space-between;
	gap: 0 4.5%;
	padding: 80px 0 60px;
}
#sec_intro .txt_col {
    position: relative;
    z-index: 2;
}
#sec_intro .cmn_tit_02 {
    color: var(--col-access);
    margin-bottom: 20px;
}
#sec_intro .desc {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
}
#sec_intro .photo {
    position: relative;
    width: 119%;
    right: -4%;
    transform: rotate(-8deg);
}
#sec_intro .photo img {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
#sec_intro .map_col {
	position: relative;
	flex-shrink: 0;
    z-index: 1;
}
#sec_intro .map_col::after,
#sec_intro .map_col>div::before,
#sec_intro .map_col>div::after {
	position: absolute;
	top: 0;
	z-index: 1;
	content: '';
	display: block;
	max-width: max(150px,12.3vw);
	margin-top: -40px;
}
#sec_intro .map_col::after {
	left: 40%;
	width: 161px;
	max-width: max(140px,11.5vw);
	height: 74.5px;
	background: url(../../access/img/illust_car.webp)no-repeat center/contain;
}
#sec_intro .map_col>div::before {
	left: 8%;
	width: 175px;
	height: 80px;
	background: url(../../access/img/illust_bus.webp)no-repeat center/contain;
}
#sec_intro .map_col>div::after {
	right: 7%;
	width: 180px;
	height: 90px;
	background: url(../../access/img/illust_train.webp)no-repeat center/contain;
}
#sec_intro .map_col img {
    width: 100%;
    height: auto;
    display: block;
	border-radius: var(--border-radius);
}

@media screen and (min-width: 601px) {
    #sec_intro .txt_col {
        width: 60%;
    }
    #sec_intro .map_col {
        width: 68%;
    }
}
@media screen and (max-width: 600px) {
    #sec_intro {
        position: relative;
        flex-direction: column;
        padding: 30px 0 calc(550 / 740 * 52%);
    }
    #sec_intro .cmn_tit_02 {
        text-align: center;
    }
    #sec_intro .txt,
    #sec_intro .map {
        width: 100%;
    }
    #sec_intro .txt {
        margin-bottom: 40px;
    }
    #sec_intro .txt_col {
        position: static;
    }
	#sec_intro .photo {
        position: absolute;
        right: 17.5%;
        bottom: 0;
        width: 65%;
    }
    #sec_intro .photo img {
        border-width: 3px;
    }
    #sec_intro .map_col::after,
    #sec_intro .map_col>div::before,
    #sec_intro .map_col>div::after {
        max-width: 21vw;
    }
    #sec_intro .map_col::after {
        max-width: 18.9vw;
    }
}

/* ---------------------------------------------------
	#sec_route
------------------------------------------------------ */
#sec_route {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	flex-wrap: wrap;
    gap: 60px 5%;
    margin-top: 60px;
}
.route_col {
    width: 47.5%;
}
.access_sub_tit {
    display: flex;
    align-items: center;
	padding: 15px 5px;
	font-size: 28px;
	font-weight: bold;
    color: var(--col-access);
}
.access_sub_tit .icon {
    width: 1em;
    height: 1.5em;
    margin-right: 8px;
    fill: currentColor;
	vertical-align: middle;
}
.route_box {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 20px 30px;
    margin-bottom: 20px;
}
.route_box:last-child {
    margin-bottom: 0;
}
.route_tit {
    color: var(--col-access);
	font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}
.route_txt {
    line-height: 1.8;
}
.route_col .btn_wrap {
    display: flex;
    gap: 10px 15px;
    margin-top: 24px;
}
.route_plane .cmn_btn {
	width: auto;
}

@media screen and (max-width: 1304px) {
	.route_col .btn_wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 600px) {
    #sec_route {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    .access_sub_tit {
        font-size: 22px;
    }
    .route_col {
        width: 100%;
    }
    .route_box {
        padding: 16px;
    }
    .route_tit {
        font-size: 17px;
    }
    .route_col .btn_wrap {
        flex-direction: column;
        align-items: center;
    } 
    #sec_route .cmn_btn {
        gap: 0 8px;
        width: min(100%, 280px);
    }
}


/* ---------------------------------------------------
    #sec_taxi
------------------------------------------------------ */
#sec_taxi {
    margin-top: 70px;
    padding: 5px 35px 25px;
    border-radius: var(--border-radius);
    background-color: #fff;
}
#sec_taxi ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 60px;
}
#sec_taxi li {
    font-size: 20px;
}
#sec_taxi li .tel-link {
    display: flex;
    align-items: center;
    gap: 0 12px;
    font-size: 120%;
    color: var(--col-access);
}
#sec_taxi li .tel-link .icon {
    width: 22px;
    height: 22px;
}

@media screen and (max-width: 600px) {
    #sec_taxi {
        padding: 20px 6%;
    }
    #sec_taxi .access_sub_tit {
        padding: 0;
    }
    #sec_taxi ul {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        margin-top: 1em;
    }
    #sec_taxi li {
        font-size: 17px;
    }
    #sec_taxi li .tel-link .icon {
        width: 18px;
        height: 18px;
    }
}


/* ---------------------------------------------------
    #bus_info
------------------------------------------------------ */
#bus_info {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 44% auto;
    align-items: flex-start;
    gap: 0 5%;
    margin-top: 70px;
    padding: 45px;
    border-radius: var(--border-radius);
    background-color: #fff;
}
#bus_info .access_sub_tit {
    display: inline-block;
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    line-height: 1.8;
}
#bus_info .access_sub_tit .bg {
    display: inline-block;
    margin-right: 15px;
    padding: 4px 15px;
    font-size: 84.6%;
    line-height: 1.5;
    color: #fff;
    background-color: var(--col-access);
}
#bus_info .access_sub_tit .lg {
    font-size: 130%;
}
#bus_info .box dl {
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
}
#bus_info .box div:has(dt) {
    display: flex;
    gap: 0 10px;
    border-top: 1px solid #ccc;
    padding: 15px 0;
}
#bus_info .box .md {
    font-size: 20px;
}
#bus_info .box dt {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--col-access);
}
#bus_info .box dd {
    align-content: center;
}
#bus_info .box dd>span:not(.md) {
    display: inline-block;
}
#bus_info .txt_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5em;
    margin: 25px 0 35px;
}
#bus_info .txt_wrap a::after {
    content: ' ≫';
}
#bus_info .gmap {
    color: var(--col-access);
    text-decoration: underline;
}
#bus_info .box_bg {
    display: flex;
    padding: 35px;
    border-radius: var(--border-radius);
    color: #fff;
    background-color: var(--col-access);
}
#bus_info .box_bg .box_tit {
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
}
#bus_info .box_bg p {
    line-height: 2;
}
#bus_info .box_bg p+p {
    margin-top: 1em;
}
#bus_info .tel-link {
    font-size: 125%;
    color: #fff;
}

@media screen and (min-width: 601px) {
    #bus_info .box {
        grid-column: 1;
        grid-row: 1;
        flex-shrink: 0;
    }
    #bus_info .access_sub_tit+p {
        font-size: 20px;
    }
    #bus_info .txt_wrap {
        grid-row: 2;
        grid-column: 1 / 3;
    }
    #bus_info .box_bg {
        grid-row: 3;
        grid-column: 1 / 3;
    }
    #bus_info .box_bg .box_tit {
        align-self: center;
        flex-shrink: 0;
        width: 290px;
        margin-right: 20px;
    }
    #bus_info .box_bg .txt {
        border-left: 1px solid #fff;
        padding-left: 40px;
    }
}
@media screen and (max-width: 600px) {
    #bus_info {
        display: flex;
        flex-direction: column;
        padding: 30px 6%;
    }
    #bus_info .access_sub_tit {
        width: 100%;
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
    }
    #bus_info .access_sub_tit .bg {
        display: block;
        width: 5em;
        margin: 0 auto 0.5em;
    }
    #bus_info .box dt {
        width: 50px;
        height: 50px;
    }
    #bus_info .box .md {
        font-size: 16px;
    }
    #bus_info .box_bg {
        flex-direction: column;
        margin-top: 30px;
        padding: 20px 6%;
    }
    #bus_info .box_bg .txt {
        border-top: 1px solid #fff;
        padding-top: 1em;
    }
}

