@charset "utf-8";

/* Reservation
----------------------------------------------------------------------------------------------------*/
.reservavion {
    background: linear-gradient(#FFF, #a8ffd3 90%);
    padding-bottom: 35px;
}

/* Menu
----------------------------------------------------------------------------------------------------*/
ul.menu {
    display: flex;
    justify-content: space-around;
    margin-top: 30px 0;
    font-size: 1.75rem;
}

.menu li a {
    display: block;
    position: relative;
    padding: 15px 15px 15px 45px;
    border: 1px solid #412E20;
    border-radius: 10px;
    background-color: #FFF;
    transition: all .5s ease-in-out;
}

.menu li a::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #412E20;
    transform: rotate(180deg);
}

.menu li a:hover {
    opacity: .7;
}

/* reservavion Box
----------------------------------------------------------------------------------------------------*/
.contents_box {
    margin-top: 35px;
    width: 95%;
}

.reservavion h4 {
    text-align: center;
    color: #412E20;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}

.reservavion h4 span {
    display: block;
    padding-top: 5px;
    width: 100%;
    border-bottom: 1px dotted #412E20;
}

.contents_box .title {
    margin-top: 20px;
    font-size: 2rem;
}

.tab_how_to_box,
.important_notes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.tab_how_to_box > label,
.important_notes > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .7em 1em .5em;
    border: 1px solid #412E20;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    background-color: #a8ffd3;
    color: #412E20;
    font-size: 1.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.tab_how_to_box > label:hover,
.important_notes > label:hover {
    opacity: .8;
}

.tab_how_to_box input,
.important_notes input {
    display: none;
}

.tab_how_to_box > div,
.important_notes > div {
    display: none;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.tab_how_to_box label:has(:checked),
.important_notes label:has(:checked) {
    background-color: #FFF;
    border-radius: 20px 20px 0 0;
}

.tab_how_to_box label:has(:checked) + div,
.important_notes label:has(:checked) + div {
    display: block;
}

.contents_area {
    padding: 20px;
    font-size: 1.75rem;
    line-height: 1.5;
    border: 1px solid #412E20;
    border-radius: 0 0 20px 20px;
    background-color: #FFF;
}

.reservation_list {
    border-radius: 20px;
}

.how_to {
    margin: 10px auto;
    font-size: 2rem;
    font-weight: bold;
}

.how_to a {
    color: #6ec31e;
    transition: all 0.5s ease-in-out;
}

.how_to a:hover {
    color: #000;
}

.method span {
    display: block;
    position: relative;
    padding-bottom: 50px;
}

.method span::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #412E20;
    transform: rotate(180deg);
}

.how_to_img {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.how_to_img img {
    width: 250px;
    border: 1px solid #412E20;
}

/* Warning
 *************************************** */
.contents_area dt {
    font-weight: bold;
}

.contents_area dt:nth-child(n + 2) {
    margin-top: 20px;
}

 .contents_area dd ul {
    margin-left: 45px;
}

.contents_area dd li {
    list-style: disc;
}


/* -------------------- for SP (480px) -------------------- */
@media screen and (max-width: 480px) {
    /* Menu
    ----------------------------------------------------------------------------------------------------*/
    ul.menu {
        flex-direction: column;
        line-height: 1.5;
    }

    .menu li {
        margin-bottom: 25px;
    }

    .menu li a span {
        white-space: nowrap;
    }

    /* reservavion Box
    ----------------------------------------------------------------------------------------------------*/
    .contents_box {
        width: 100%;
    }

    .contents_area {
        padding: 10px;
    }

    .contents_area dd ul {
        margin-left: 25px;
    }

    .method span::after {
        left: 50%;
    }
}

/* -------------------- for Tablet (481px) and (1023px) -------------------- */
@media screen and (min-width: 481px) and (max-width: 1023px) {
    /* Menu
    ----------------------------------------------------------------------------------------------------*/
    ul.menu {
        flex-wrap: wrap;
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .menu li {
        width: 45%;
        margin-bottom: 25px;
    }

    .menu li a {
        width: 100%;
    }

    .menu li a span {
        white-space: nowrap;
    }

    /* reservavion Box
    ----------------------------------------------------------------------------------------------------*/
    .contents_box {
        width: 97.5%;
    }
    .method span::after {
        left: 50%;
    }
}
