@charset "utf-8";
:root {
    --color-CD5025: #CD5025;
    --color-white: #fff;
    --color-0B5D33: #0B5D33;
    --color-75A240: #75A240;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: visible;
}

body {
    margin: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul li {
    text-decoration: none;
}

a {
    display: block;
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, p {
    margin: 0
}

h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

h2 {
    font-size: 28px;
    font-weight: bold;
}

h3 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

section {
    margin: 100px 0;
}

/* 共通 */
.pc_none {
    display: none;
}

.sp_none {
    display: block;
}

.m0b {
    margin-bottom: 0;
}

.m20b {
    margin-bottom: 20px;
}

.inner {
    width: 840px;
    margin: 0 auto;
}

.btn_rsrv {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: var(--color-CD5025);
    color: var(--color-white);
    text-align: center;
}

.txt_red {
    color: var(--color-CD5025);
}

.desc_img {
    margin-top: 6px;
}

.arr_right_wh {
    position: relative;
}

.arr_right_wh:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid var(--color-white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.btn_link_food {
    position: relative;
    padding-left: 20px;
    text-decoration: underline;
}

.btn_link_food:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: #000;
}

.btn_link_food:after {
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid var(--color-white);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@media screen and (max-width : 750px) {
    .pc_none {
        display: block;
    }

    .sp_none {
        display: none;
    }

    h1 {
        font-size: 40px;
    }

    h3 {
        margin-bottom: 10px;
    }

    section {
        margin: 60px 0;
        overflow-x: hidden;
    }

    .inner {
        width: 100%
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .inner {
        width: 80%;
    }
}

/* header */
.header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    background: rgb(255 255 255 / 0.6);
    z-index: 999;
}
.header_pc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    justify-content: space-between;
}

.header nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    justify-content: flex-end;
    align-items: center;
}

.header nav .btn_rsrv {
    border-radius: 2px;
}

.header nav .btn_rsrv span {
    font-size: 12px;
}

.btn_top {
    display: block;
    text-align: center;
}
.btn_top span {
    display: inline-block;
}

@media screen and (max-width: 750px) {
    .logo_head img {
        width: 138px;
    }

    .header nav {
        grid-template-columns: 80px 100px;
        text-align: center;
    }

    .btn_top {
        line-height: 0;
    }

    .btn_top span {
        display: none;
    }
}

/* mv */
.mv {
    position: relative;
    height: 345px;
    margin: 60px 0;
    text-align: center;
    overflow-x: hidden;
}

.mv .deco_garland {
    width: 40%;
}

.mv .deco_bird01 {
    position: absolute;
    top: 10%;
    left: 23%;
    width: 47px;
}

.mv .deco_tent01 {
    position: absolute;
    top: 30%;
    left: 23%;
    width: 95px;
}

.mv .deco_fire {
    position: absolute;
    top: 44%;
    left: 21%;
    width: 43px
}

.mv .deco_trees {
    position: absolute;
    top: 5%;
    right: 18%;
    width: 110px;
}

.mv .deco_tent02 {
    position: absolute;
    top: 45%;
    right: 21%;
    width: 176px;
}

.mv img {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .mv {
        height: 290px;
        margin: 30px 0 0;
        padding: 0 15px;
    }

    .mv .deco_garland {
        width: 100%;
    }

    .mv .deco_bird01 {
        top: 31%;
        left: 10%;
        width: 30px;
    }

    .mv .deco_tent01 {
        top: 45%;
        left: 5%;
        width: 49px;
    }

    .mv .deco_fire {
        top: 52%;
        left: 3%;
        width: 18px;
    }

    .mv .deco_tent02 {
        top: 16%;
        right: 5%;
        width: 62px;
    }

    .mv .deco_trees {
        top: 49%;
        right: 4%;
        width: 55px;
    }
}

@media screen and (min-width:751px) and (max-width: 1024px) {
    .mv h1 {
        margin: 40px 0;
    }

    .mv .deco_tent01 {
        left: 9%;
    }

    .mv .deco_fire {
        left: 6%;
    }

    .mv .deco_trees {
        right: 12%;
    }

    .mv .deco_tent02 {
        top: 69%;
        right: 4%;
    }
}
@media screen and (width: 1280px) {
    .mv .deco_tent01 {
        left: 19%;
    }

    .mv .deco_fire {
        left: 17%;
    }

    .mv .deco_tent02 {
        right: 13%;
    }
}

/* 1日目 */
.sec_day {
    padding-bottom: 80px;
}

.box_ttl_day {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}

.box_ttl_day .deco_garland {
    position: relative;
    top: 38px;
}

.txt_day_big {
    margin: 0;
    color: var(--color-0B5D33);
    font-size: 60px;
    line-height: 1;
}

.day_slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.day_slider img,
.wrap_time_day img,
.box_time_day img,
.wrap_time_day_horizontal img {
    width: 100%;
    border-radius: 12px;
}

.wrap_time_day {
    width: 65%;
    margin: 20px auto 40px;
}

.box_time_day {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: dotted #000;
}

.txt_time {
    color: var(--color-CD5025);
    font-size: 24px;
    font-weight: bold;
}

.wrap_time_day_horizontal {
    display: grid;
    grid-template-columns: 35% auto;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.wrap_time_day_horizontal+.wrap_time_day_horizontal {
    margin-top: 30px;
}

#go_room {
    position: relative;
}

#go_room .wrap_time_day_horizontal {
    grid-template-columns: 65% auto;
}

.deco_lamp {
    position: absolute;
    top: 30%;
    right: -3%;
    width: 96px;
}

.deco_flag_2 {
    position: absolute;
    bottom: 10%;
    left: -13%;
    width: 197px;
}

.wrap_time_day_horizontal .wrap_time_day {
    width: 100%;
}

.grid_grid {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 50%);
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
}

#explore_hotel {
    position: relative;
}

.wrap_deco_fukidashi {
    position: absolute;
    bottom: 22%;
    right: -8%;
}

.deco_fukidashi {
    width: 160px;
}

.wrap_deco_fukidashi p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.cont_grid_img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cont_grid_img img {
    border-radius: 12px;
}

#hot_spring {
    position: relative;
}

.deco_onsen_mk {
    position: absolute;
    top: 4%;
    right: -10%;
    width: 80px;
}

.box_public_bath {
    display: grid;
    grid-template-columns: 35% auto;
    grid-template-rows: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.cont_sauna {
    grid-area: 1/1/2/2;
}

.cont_dinosaur {
    grid-area: 2/1/3/2;
}

.cont_public_bath_wide {
    grid-area: 1/2/3/3;
}

.box_public_bath img {
    width: 100%;
    border-radius: 12px;
}

.cont_public_bath_wide img {
    width: 100%;
    height: 437px;
    object-fit: cover;
}

#play {
    position: relative;
}

#play .wrap_time_day_horizontal .wrap_time_day.sp_none p {
    word-break: auto-phrase;
}

.deco_yuge {
    position: absolute;
    top: 3%;
    left: -3%;
    width: 108px;
}

.deco_yuge02 {
    position: absolute;
    bottom: 41%;
    right: -3%;
    width: 108px;
    transform: rotate(180deg);
}

#play .wrap_time_day_horizontal {
    grid-template-columns: 65% auto;
}

#dinner_buffet {
    position: relative;
}

.deco_bbq-pc {
    position: absolute;
    top: 60%;
    left: -53px;
    width: 100px;
}

.wrap_time_day p+a.btn_link_food {
    margin-top: 10px;
}

#karaoke {
    position: relative;
}

#karaoke .wrap_time_day_horizontal {
    grid-template-columns: 65% auto;
    
}

.deco_chair {
    position: absolute;
    top: 47%;
    left: -82px;
    width: 100px;
}

#karaoke .cont_grid_img .wrap_time_day {
    position: relative;
    width: 100%;
    margin: 0;
    
}

#karaoke .cont_grid_img .wrap_time_day .deco_wine {
    position: absolute;
    top: -16%;
    right: -24px;
    width: 70px;
}

#go_to_bed {
    position: relative;
}

#go_to_bed .wrap_time_day_horizontal {
    grid-template-columns: 65% auto;
    
}

.deco_hammock {
    position: absolute;
    top: -3%;
    right: -80px;
    width: 170px;
}

@media screen and (max-width: 750px) {
    .sec_day {
        margin: 0 20px;
        padding-bottom: 0;
    }

    .sec_day:has(.day_slider) {
        margin: 0;
    }
    
    .box_ttl_day .deco_garland {
        top: 20px;
    }

    .box_ttl_day {
        margin-bottom: 30px;
    }

    .txt_day_big {
        font-size: 40px;
    }

    .day_slider {
        display: block;
    }

    .day_slider img {
        width: 100%;
        height: auto;
    }

    .day_slider .slick-slide {
        margin: 0 10px;
    }

    .day_slider .slick-dots {
        display: none;
    }

    #arriving .wrap_time_day {
        margin: 20px 20px 40px;
    }

    .wrap_time_day {
        width: fit-content;
        margin: 20px 0 40px;
    }

    #go_room .wrap_time_day_horizontal {
        display: flex;
        flex-direction: column-reverse;
    }

    .wrap_time_day_horizontal .wrap_time_day {
        width: fit-content;
        margin: 0 0 20px;
    }

    .wrap_time_day_horizontal {
        grid-template-columns: unset;
        gap: 0;
    }

    .grid_grid {
        display: block;
    }

    .grid_grid img {
        width: 100%;
    }

    .grid_grid div {
        margin-bottom: 20px;
    }

    .box_public_bath {
        display: block;
    }

    .box_public_bath {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .box_public_bath > div > div:not(:last-child) {
        margin-bottom: 20px;
    }

    .box_public_bath img {
        width: 100%;
        height: auto;
    }

    .cont_grid_img {
        display: block;
    }
    .cont_grid_img div {
        margin-bottom: 20px;
    }

    .cont_grid_img img {
        width: 100%;
    }

    .wrap_deco_fukidashi {
        bottom: 8%;
        right: 4%;
    }

    .deco_yuge {
        top: -50%;
        width: 89px;
    }

    #hot_spring.sec_day {
        padding-bottom: 20px;
    }

    #play .wrap_time_day_horizontal {
        grid-template-columns: unset;
        margin: 0 0 20px;
    }

    #play .wrap_time_day_horizontal > img {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .deco_yuge02 {
        bottom: 63%;
        right: 8%;
        width: 65px;
    }

    .deco_bbq-pc {
        top: 45%;
        left: 10px;
        width: 92px;
    }

    #karaoke .wrap_time_day_horizontal {
        display: flex;
        flex-direction: column-reverse;
    }

    #karaoke .wrap_time_day_horizontal > div {
        width: 100%;
    }

    #karaoke .wrap_time_day_horizontal img:not(.m0b) {
        margin-bottom: 20px;
    }

    #karaoke .deco_hammock {
        position: absolute;
        top: -30px;
        right: 10px;
        width: 111px;
    }

    #karaoke .cont_grid_img .wrap_time_day {
        margin-bottom: 20px;
    }

    #go_to_bed .wrap_time_day_horizontal {
        display: flex;
        flex-direction: column-reverse;
    }

    .deco_lamp {
        top: 0;
        right: 2%;
    }

    .deco_onsen_mk {
        top: 25%;
        right: 3%;
    }
}

@media screen and (min-width:751px) and (max-width: 1024px) {
    .sec_day {
        padding-bottom: 0;
    }
    .deco_flag_2 {
        bottom: 1%;
        left: -9%;
    }

    .deco_fukidashi {
        width: 100px;
    }

    .box_public_bath {
        grid-template-rows: repeat(2, 168px);
    }

    .cont_public_bath_wide img {
        height: 331px;
    }

    .deco_yuge02 {
        bottom: 25%;
    }

    .wrap_deco_fukidashi {
        bottom: 8%;
        right: -6%;
    }

    .deco_fukidashi {
        width: 140px;
    }

    .wrap_deco_fukidashi p {
        left: 49%;
        font-size: 13px;
    }
}

/* 2日目 */
#osora_cafe {
    position: relative;
}

.deco_cloud {
    position: absolute;
    top: -3%;
    right: -50px;
    width: 80px;
}

#bf_buffet .wrap_time_day_horizontal {
    grid-template-columns: 65% auto;
    
}

#check_out {
    position: relative;
}

.wrap_deco_fukidashi02 {
    position: absolute;
    top: -10%;
    left:30%;
    width: 170px;
}

.deco_fukidashi02 {
    position: relative;
    width: 170px;
}

.wrap_deco_fukidashi02 p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


#check_out .wrap_cont_grid_img {
    position: relative;
}

#check_out .cont_public_bath_wide img {
    height: auto;
}

.deco_leafs {
    position: absolute;
    top: -30%;
    left: -30px;
    width: 90px;
}

.deco_shoes {
    position: absolute;
    right: -24px;
    bottom: -30px;
    width: 90px;
}

@media screen and (max-width: 750px) {
    .deco_cloud {
        top: 184px;
        right: 20px;
    }

    #bf_buffet .wrap_time_day_horizontal {
        display: flex;
        flex-direction: column-reverse;
    }

    #bf_buffet .wrap_time_day_horizontal .wrap_time_day {
        width: 100%;
    }

    #bf_buffet .wrap_time_day_horizontal img {
        margin-bottom: 20px;
    }

    .wrap_deco_fukidashi02 {
        top: -6%;
        left: 60%;
    }

    .deco_fukidashi02 {
        width: 130px;
    }

    .wrap_deco_fukidashi02 p {
        left: 40%;
    }
}

@media screen and (min-width:751px) and (max-width: 1024px) {
    .deco_fukidashi02 {
        width: 140px;
    }

    .wrap_deco_fukidashi02 p {
        left: 45%;
    }
}


/* cta */
.cta_inner {
    width: 65%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    text-align: center;
}

.txt_cta {
    font-size: 20px;
    font-weight: bold;
}

.cta_inner .btn_rsrv,
.cta_inner .btn_back_top {
    width: 50%;
    height: 60px;
    padding: 10px;
    margin: 0 auto;
}

.cta_inner a span {
    font-size: 12px;
}

.btn_back_top {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: var(--color-0B5D33);
    color: var(--color-white);
}

@media screen and (max-width: 750px) {
    .cta_inner {
        width: 90%;
        margin: 0 20px;
    }

    .cta_inner .btn_rsrv,
    .cta_inner .btn_back_top {
        width: 100%;
    }
}

@media screen and (min-width:751px) and (max-width: 1024px) {
    .cta_inner .btn_rsrv,
    .cta_inner .btn_back_top {
        width: 100%;
    }
}

/* footer */
.footer img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-top: 80px;
}