@charset "utf-8";


body {
    font-family: noto-sans-jp, sans-serif;
}

/* 入力フォーム */

#reserve-block-s02 {
    background-color: #fff;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

#reserve-block-s02 h2 {
    text-align: center;
    font-size: clamp(1.25rem, -0.38rem + 6.2vw, 2.3rem);
    margin-bottom: 10px;
    background-color: #54B9CC;
    color: #FFF;
    padding: 20px 0;
    letter-spacing: 0.05em;

    span {
        letter-spacing: 0.02em;
    }
}

.reserve-field-s02 {
    margin-inline: min(3%, 20px);

}

.reserve-field-s02 p:first-child {
    text-align: center;
    font-size: clamp(1.063rem, 0.563rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    color: #F94142;
    font-weight: bold;
    margin-bottom: 60px;
}

.reserve-label-s02 {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reserve-required-s02 {
    background: #E32;
    color: #fff;
    font-size: 14px;
    padding: 3px 12px 2px;
    margin-left: 8px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

#reserve-date-s02 {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    background-image: none;
    width: 100%;
    max-width: 100%;
    padding: 15px 3%;
    position: relative;
}

/* 黒い三角を擬似要素で追加 */

.reserve-select-wrap-s02 {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.reserve-select-wrap-s02::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    transform: translateY(-50%);
    pointer-events: none;
}

.reserve-cta-s02 {
    text-align: center;
}

.reserve-cta-s02 p:first-child {
    text-align: center;
    font-size: clamp(1.063rem, 0.563rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    color: #FF4E31;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.reserve-cta-s02 p:first-child::after,
.reserve-cta-s02 p:first-child::before {
    content: "";
    background-color: #FF4E31;
    width: 4px;
    height: 30px;
    border-radius: 5px;
    vertical-align: middle;
    position: absolute;
}

.reserve-cta-s02 p:first-child::after {
    right: -30px;
    bottom: 0;
    transform: rotate(20deg);
}

.reserve-cta-s02 p:first-child::before {
    left: -30px;
    bottom: 0;
    transform: rotate(-20deg);
}

.reserve-button-s02 {
    margin-inline: auto;
    display: block;
    width: min(80%, 460px);
    border-radius: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #36C22C 0%, #088843 100%);
    box-shadow: 0 6px 0 0 #A6E97D;
    color: #fff;
    font-size: clamp(1.25rem, 0.536rem + 2.86vw, 1.875rem);
    font-weight: 900;
    margin-bottom: 56px;
    cursor: pointer;
    transition: 0.25s;
    letter-spacing: 0.06em;
    
}
.reserve-button-s02:hover{
    box-shadow: none;
    transform: translateY(6px);
}
.reserve-error-s02 {
    color: #E60000;
    font-size: 16px;
    font-weight: 700;
    margin-top: -30px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    line-height: 1;
}
.reserve-error-s02::before {
    display: inline-block;
    content: "！";
    font-size: 16px;
    vertical-align: middle;
    font-weight: 800;
    background-color: #E60000;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

@media screen and (max-width: 480px) {
    .reserve-button-s02 {
        height: 60px;
    }
}