
/* 観光個別ページ */
.sightseeing_single_main{
    width: 100%;
}
.sightseeing_single_main .title {
    font-size: 34px;
    letter-spacing: 2.72px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.sightseeing_single_main .image {
    width: 100%;
    margin-bottom: 20px;
}
.sightseeing_single_main .content {
    width: 100%;
}
table.sightseeing_single_table{
    width: 100%;
    margin: 50px 0;
    border-collapse: collapse;
}
table.sightseeing_single_table th{
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}
table.sightseeing_single_table td{
    width: 75%;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}
table.sightseeing_single_table tr:first-child th{
    border-top: 1px solid #000;
}
table.sightseeing_single_table tr:first-child td{
    border-top: 1px solid #000;
}

.sightseeing_single_main .sightseeing_googlemap{
    width: 100%;
}
.sightseeing_single_main .sightseeing_googlemap iframe{
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 767px){
    table.sightseeing_single_table th{
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        text-align: left;
    }
    table.sightseeing_single_table td{
        display: block;
        width: 100%;
    }
    table.sightseeing_single_table tr:first-child td{
        border-top: none;
    }
    .sightseeing_single_main .sightseeing_googlemap iframe{
        height: 300px;
    }
}

/* 観光一覧ページ */
.sightseeing_archive_main{
    margin: 0 auto;
    margin-bottom: 160px;
    padding: 100px 10%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.sightseeing_archive_main .sightseeing_archive_box{
    width: 31%;
    margin: 30px 1%;
}
.sightseeing_archive_main .sightseeing_archive_box .sightseeing_archive_img img{
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.sightseeing_archive_main .sightseeing_archive_box .sightseeing_archive_contents{
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    border-radius:  0 0 10px 10px;
}
@media screen and (max-width: 767px){
    .sightseeing_archive_main{
        width: 94%;
        margin-bottom: 80px;
        padding: 50px 0;
    }
    .sightseeing_archive_main .sightseeing_archive_box{
        width: 100%;
        margin: 20px 0;
    }
    .sightseeing_archive_headline{
        font-size: 30px !important;
    }
}