/* ----------------------------------------------------------------------------- */
/* main_area_title */
body .main_area .main_container .inner_center .main_area_title {
    font-size: 32px;
    font-weight: 450;
    text-align: center;
    padding: 20px 0px;
}

body .main_area .main_container .inner_center .main_area_title > span {
    background: linear-gradient(to top, #ddedf9 10%, #fff 50%); 
}
/* ----------------------------------------------------------------------------- */

/* contents_area */
.contents_area .inner_center > div:nth-child(1) {
    text-align: center;
    
    color: #000;
    font-size: 24px;
   
}

/* .contents_area .inner_center div:nth-child(2) {
    background: #f5f6f8;
    padding: 25px;
} */

.contents_area,
.contents_area_02 {
    margin: 40px 0px;
}

.contents_area .inner_center .hotel_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contents_area .inner_center .hotel_items > div {
    width: 30%;
    padding: 10px;
    border: 1px solid #d3d3d3;
    line-height: 2;
    margin-bottom: 40px;
}

.contents_area .inner_center .hotel_items > div > div > button {
    background-color: #d8edd8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    height: 34px;
}

.contents_area .inner_center .hotel_items > div > div > button:hover {
    background-color: #6fb06d;
}

@media (max-width:1000px) {
    .contents_area .inner_center .hotel_items > div {
        width: 48%;
    }
}

@media (max-width:750px) {
    .contents_area .inner_center .hotel_items {
        justify-content: center;
    }
    .contents_area .inner_center .hotel_items > div {
        width: 90%;
    }
}

/* contact_area */
.contact_area {
    margin-bottom: 100px;
}

.contact_area .inner_center > div:nth-child(1) {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact_area .inner_center > div:nth-child(2) {
    font-size: 15px;
    padding: 20px 15px;
    border: 1px solid #dddddd;
}

.contact_area .inner_center > div:nth-child(2) > a {
    color: #00F;
    text-decoration: underline;
}

/* list_table_area */
.list_table_area {
    padding: 60px 0px;
}

.list_table_area .inner_center .list_contents > div {
    display: flex;
    padding: 10px 5px;
}
.list_table_area .inner_center .list_contents > div > a {
    display: flex;
    color: #4a4a4a;
}

.list_table_area .inner_center .list_contents > div:nth-child(1) {
    font-weight: 500;
}

.list_table_area .inner_center .list_contents > div > a,
.list_table_area .inner_center .list_contents > div {
    width: 100%;
}

.list_table_area .inner_center .list_contents > div > div:nth-child(1),
.list_table_area .inner_center .list_contents > div > a > div:nth-child(1) {
    width: 15%;
    min-width: 70px;
}

.list_table_area .inner_center .list_contents > div > div:nth-child(3),
.list_table_area .inner_center .list_contents > div > a > div:nth-child(3) {
    width: 15%;
    display: flex;
    justify-content: flex-end;
    min-width: 90px;
}

.list_table_area .inner_center .list_contents > div > div:nth-child(2),
.list_table_area .inner_center .list_contents > div > a > div:nth-child(2) {
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.list_table_area .inner_center .list_contents > div:nth-child(2n) {
    background-color: rgba(0, 0, 0, .05);
}

.list_table_area .inner_center .list_contents > div > a:hover {
    color: red;
    transition: 0.5s;
}