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

/* .cnav */
.cnav {
    display: flex;
    justify-content: center;
    column-gap: 70px;
    margin-top: 60px;
}
.cnav li {
    width: 100%;
}
.cnav li a {
    justify-content: center;
    width: auto;
}
.cnav li a::after {
    content: none;
}
@media screen and (max-width: 600px) {
    .cnav {
        flex-direction: column;
        column-gap: 0;
        margin-top: 30px;
    }
    .cnav li a {
        position: relative;
        flex-direction: column;
    }
    .cnav li a::after {
        position: absolute;
        top: 50%;
        right: 15px;
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-bottom: 1px solid #444;
        border-right: 1px solid #444;
        transform: rotate(45deg) translateY(-50%);
        transition: transform 0.5s;
        background: none;
    }
    .cnav li a:hover::after {
        right: 15px;
    }
}


/* ---------------------------------------------------
    .cmn_sec_lead
------------------------------------------------------ */
/* For position: sticky */
#contents_wrap {
    overflow: visible;
}
.main_tit {
    z-index: 1;
}
.main_tit::before {
    content: none;
}
.cmn_sec_lead {
    position: relative;
    overflow: hidden;
}
.cmn_sec_lead::before {
    content: "";
    display: block;
    width: 1378px;
    height: 75px;
    background: url(../img/bg_maintit_01.webp) no-repeat 0 0;
    background-size: 1378px;
    position: absolute;
    top: 0;
    left: calc(50% - 128px);
}
@media screen and (min-width: 601px) {
    .cmn_sec_lead .tit_01 {
        padding: 0 0 55px;
    }
}
@media screen and (max-width: 600px) {
    .cmn_sec_lead::before {
        width: 689px;
        height: 38px;
        background: url(../img/bg_maintit_01.webp) no-repeat 0 0;
        background-size: 689px;
        bottom: -38px;
        left: calc(50% - 60px);
    }
}

/* ---------------------------------------------------
    .spot 共通
------------------------------------------------------ */
.vis img {
    height: 200px;
}
.spot_col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.spot_col .cmn_tit_01 {
    width: 100%;
    padding: 110px 0 70px;
}
.spot_col .spot {
    display: flex;
    flex-direction: column;
    width: 47.5%;
    line-height: 2.2;
}
.spot_col .spot dt {
    padding: 18px 0 12px;
    font-size: 22px;
    text-align: center;
}
.spot_col .spot dd {
    padding-bottom: 80px;
}
.link_sight {
    display: flex;
    justify-content: flex-end;
    column-gap: 40px;
    margin-top: auto;
}
.link_sight li {
    min-width: 175px;
    max-width: 100%;
}
.link_sight a {
    position: relative;
    display: block;
    border-bottom: 1px solid #888;
    padding: 2px 0 2px 20px;
    box-sizing: border-box;
    color: #4f443a;
    text-align: center;
}
.link_sight .map a {
    background: url(/img/ja/sightseeing/ico_pin.svg)no-repeat center left/10px;
}
.link_sight .web a {
    background: url(/img/ja/sightseeing/ico_web.svg)no-repeat center left/13px;
}
.link_sight a:hover {
    text-decoration: none;
}
.link_sight a::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #d4d1ca;
    transition: width 0.5s;
}
.cmn_route_link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: min(100%, 300px);
    height: 55px;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid #d4d1ca;
    font-size: 15px;
    background-color: #f9f8f7;
    transition: background-color 0.5s, color 0.5s;
}
.cmn_route_link:hover {
    text-decoration: none;
}
.cmn_route_link::before {
    content: '';
    display: block;
    width: 10px;
    height: 25px;
    background: url(/img/ja/sightseeing/ico_pin.svg)no-repeat center/contain;
    transition: background-image 0.5s;
}

@media screen and (hover: hover) and (min-width: 601px) {
    .link_sight a:hover::before {
        width: 100%;
    }
    .cmn_route_link:hover {
        background-color: #fff;
    }
}
@media screen and (min-width: 601px) {
    .vis img {
        min-height: 460px;
    }
    .spot_col .spot dl {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .spot_col .spot dd {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    .spot_col {
        display: block;
        width: 80%;
    }
    .spot_col .cmn_tit_01 {
        padding: 60px 0 40px;
    }
    .spot_col .spot {
        width: 100%;
        line-height: 2;
    }
    .spot_col .spot dt {
        padding: 10px 0 5px;
        font-size: 18px;
    }
    .spot_col .spot dd {
        padding-bottom: 50px;
    }
    .link_sight {
        flex-wrap: wrap;
        row-gap: 5px;
        column-gap: 6%;
        margin-top: 15px;
    }
    .link_sight li {
        min-width: 0;
    }
    .link_sight a {
        padding: 2px 10px 2px 25px;
    }
    .cmn_route_link {
        height: 48px;
    }
}


/* ---------------------------------------------------
    .course 共通
------------------------------------------------------ */
[id^="course_"] {
    counter-reset: num 0;
    display: flex;
    align-items: flex-start;
    padding: 70px 0;
}
[id^="course_"] h3 {
    position: sticky;
    top: 50px;
    border-left: 5px solid #3f3e3b;
    padding-left: 40px;
    line-height: 1.8;
}
[id^="course_"] h3>span {
    display: flex;
    align-items: center;
    font-size: 22px;
}
[id^="course_"] h3 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-left: 10px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background-color: #3f3e3b;
}
[id^="course_"] .wrap {
    line-height: 2.2;
}
[id^="course_"] .cmn_route_link {
    margin-top: 70px;
}
.course {
    position: relative;
    border-left: 1px solid #4f443a;
    padding: 0 0 100px 8%;
}
.course::before {
    counter-increment: num;
    content: counter(num,decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #4f443a;
    border-radius: 50%;
    padding-bottom: 5px;
    box-sizing: border-box;
    font-size: 26px;
    font-family: 'Cormorant Garamond';
    color: #4f443a;
    background-color: #f9f8f7;
}
.course dt {
    margin-bottom: 20px;
    font-size: 22px;
}
.course dd {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 8%;
}
.course .link_sight {
    justify-content: stretch;
}
.course .link_sight .map {
    min-width: 75px;
}

@media screen and (min-width: 601px) {
    [id^="course_"] h3 {
        width: 330px;
    }
    [id^="course_"] .wrap {
        width: calc(100% - 330px);
    }
    .course dd .image {
        flex-shrink: 0;
        width: 46.1%;
    }
}
@media screen and (max-width: 600px) {
    [id^="course_"] {
        display: block;
        width: calc(90% - 20px);
        padding: 20px 0 40px;
    }
    [id^="course_"] h3 {
        position: static;
        padding-left: calc(20px + 4%);
    }
    [id^="course_"] h3>span {
        font-size: 20px;
    }
    [id^="course_"] h3 .num {
        width: 22px;
        height: 22px;
        font-size: 17px;
    }
    [id^="course_"] .wrap {
        margin-top: 30px;
        line-height: 2;
    }
    [id^="course_"] .cmn_route_link {
        margin-top: 30px;
    }
    .course {
        padding: 0 0 50px calc(20px + 4%);
    }
    .course::before {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .course dt {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .course dd {
        display: block;
    }
    .course dd .image img {
        width: 100%;
        object-fit: cover;
    }
    .course dd .txt {
        margin-top: 20px;
    }
}


/* ---------------------------------------------------
    #sec_guide
------------------------------------------------------ */
#sec_guide {
    background-color: #f9f8f7;
}
#sec_guide .vis {
    position: relative;
}
#sec_guide .cmn_tit_01 {
    position: absolute;
    padding: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#sec_guide .cmn_tit_01 .ja {
    color: #fff;
}
#sec_guide .vis img {
    height: auto;
}
#sec_guide .description {
    padding: 40px 0 60px;
    text-align: center;
    line-height: 2.2;
}
#sec_guide .description p+p {
    margin-top: 20px;
}
#sec_guide .description p span {
    margin-right: 1.25em;
    border: 1px solid #adaaa3;
    padding: 4px 12px;
}
#course_03 {
    padding-bottom: 110px;
}

@media screen and (min-width: 601px) {
    #sec_guide .vis img {
        max-height: 800px;
    }
}
@media screen and (max-width: 600px) {
    #sec_guide .description {
        padding: 25px 0 40px;
        text-align: left;
        line-height: 1.8;
    }
    #course_03 {
        padding-bottom: 70px;
    }
}
