@charset "UTF-8";

.worcation_container {
    font-size: 10px;
    text-align: left;
    color: #333;
    line-height: 1.7em;
}

/*メインビジュアル*/
.mainVisual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid #999;
    border-left: 10px solid #003894;
}

.mainVisual_image {
    width: 400px;
}

.mainVisual_text_wrap {
    width: 540px;
    padding: 20px;
}

.mainVisual_title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 0.2em;
}

.mainVisual_text {
    font-size: 1.4em;
    line-height: 1.7em;
}


/*目次*/

.index {
    margin: 80px auto 80px;
    padding: 0;
    font-size: 10px;
    /* width: 50%; */
    display: flex;
    justify-content: center;
    /* line-height: 1.7; */
}

.index_title {
    font-size: 1.8em;
    border-right: 1px solid #999;
    padding: 0.5em 2em;
}

.index_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2em;
    line-height: 1.7em;
}

.index_item {
    width: 100%;
    font-size: 1.6em;
    line-height: 2.2em;
}

.index_item::before {
    display: inline-block;
    content:"";
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border-right: 2px solid #0062ff;
    border-bottom: 2px solid #0062ff;
    transform: rotate(45deg);
    margin: 0 7px 4px 0;
}
.index_item a {
    color: #0062ff;
}

/*contents*/
.content_wrapper {
    margin: 5% 0 70px;
    font-size: 10px;
}

.content_title {
    font-size: 3.2em;
    font-weight: bold;
    line-height: 1.7;
}

.content_subtitle {
    font-size: 2.4em;
    font-weight: bold;
    width: 100%;
    margin: 1.5em 0 1.5em;
}

.contents {
    margin: 2% 0 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

/*ホテル枠*/

.hotel_card {
    margin: 0 0 50px;
    width: 470px;
}

.hotel_card figure {
    width: 100%;
    height: 250px;
}
.hotel_card figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hotel_name {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    background: #003894;
    padding: 1em;
}

.hotel_benefits_title {
    font-weight: bold;
    font-size: 1.6em;
    line-height: 1.7;
    margin: 1em 0 0.2em;
}

.hotel_benefits_list {
    margin: 0 0 0;
    list-style-type: disc;
    list-style-position: outside;
    border-bottom: 1px solid #999;
    font-size: 1.4em;
    padding: 0 0 1em;
}

.hotel_benefits_item {
    list-style: disc;
    list-style-position: outside;
    margin-left: 1.5em;
    line-height: 1.7em;
}

.hotel_description {
    margin: 1em 0 1.5em;
    font-size: 1.4em;
    line-height: 1.7em;
}

a.hotel_button {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 1em 0;
    position: relative;
    background: #f27b11;
    font-size: 1.6em;
    margin-top: 1em;
}

a.hotel_button::after {
    position: absolute;
    top: calc(50% + 1px);
    right: 22px;
    display: inline-block;
    content:"";
    width: 8px;
    height: 8px;
    margin-left: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(50%, -50%);
}

a.hotel_button:hover {
    opacity: 0.8;
}

.content_image_wrapper {
    width: 400px;
    margin-bottom: 50px;
}

.content_text_wrapper {
    width: 560px;
    font-size: 1.6em;
    line-height: 1.7;
}

p.content_text {
    margin-bottom: 1em;
}

.workation_card_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.workation_card {
    width: 438px;
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid #999;
}

.workation_card_upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.8em;
    line-height: 1.7;
    font-weight: 700;
    color: #003894;
}

.workation_card_upper figure {
    width: 200px;
}

.workation_card_upper .workation_card_title {
    width: 218px;
}

.workation_card_content {
    font-size: 1.4em;
    line-height: 1.7em;
}

.workation_card_content p {
    margin-bottom: 1em;
}

.workation_card_button_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

a.workation_card_button {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 1em 0;
    position: relative;
    background: #f27b11;
    font-size: 1.6em;
    margin-top: 1em;
    width: 480px;
}

a.workation_card_button::after {
    position: absolute;
    top: calc(50% + 1px);
    right: 22px;
    display: inline-block;
    content:"";
    width: 8px;
    height: 8px;
    margin-left: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(50%, -50%);
}

a.workation_card_button:hover {
    opacity: 0.8;
}
