@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;
}

.hotel_wrap {
    width: 980px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hotel_card {
    width: 460px;
    margin: 0 0 20px;
}

.hotel_card_title {
    margin: 0 0 20px;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.hotel_card_pic {
    margin: 0 0 20px;
}

.hotel_card_pic img {
    width: 100%;
    /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
}

article#sightseeing p.hotel_card_text {
    margin-bottom: 30px !important;
}

article#sightseeing p.caption {
    font-size: 80% !important;
    margin: 1em auto 0 !important;
    width: 1260px;
}

article#sightseeing p.notice {
    margin-top: 1.5em !important;
    font-size: 80% !important;
}

.slick-slide img {
    width: 100%;
}


article#sightseeing .pl-primary {
    margin: 4em 0 5em;
    display: flex;
    justify-content: center;
}

article#sightseeing .pl-primary__button, article#sightseeing .pl-primary__button:visited, article#sightseeing .pl-primary__button:hover, article#sightseeing .pl-primary__button:active {
    position: relative;
    display: flex;
    width: 720px;
    height: 100px;
    line-height: 1.5em;
    background-color: #e8931e;
    font-size: 23px;
    border-radius: 5px;
    box-shadow: 3px 3px 4px #777;
    text-align: left;
    padding-left: 1em;
    box-sizing: border-box;
    transition-duration: 50ms;
    color: #fff;
    text-decoration: none;
    justify-content: start;
    align-items: center;
}

article#sightseeing section.appeal .box p {
    width: auto;
    margin: 0 auto;
}

article#sightseeing section.appeal .pic p {
    width: 720px;
    margin: 0 auto;
}

article#sightseeing p.img_caption {
    text-align: right;
    font-size: 0.8em;
    margin-bottom: 0;
}

.externalLink::after {
    content: " >>";
}

/*　おすすめ特典②  */
.pic_box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

article#sightseeing .pic_box .pic_box_item_name {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

.pic_box_item img {
    width: 310px;
    
}

.pic_box_item img:nth-child(2) {
    padding-top: 30px;
}

article#sightseeing .pic_box_item_detail {
    padding-top: 50px;
    font-size: 14px;
    text-align: center;
}