@charset "utf-8";
/*---------------------------------------------
	form.css
  ---------------------------------------------*/
#popupForm .popup-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    background: #6C9CD2;
    padding: 20px;
    border-radius: 5px;
    animation: fadeIn 0.4s ease;
}
#popupForm .popup-content h3 {
    color: #fff;
    font-weight: 900;
}
.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
.mottel-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}
.popup-inner {
    background: #fff;
    width: 90%;
    max-width: 480px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
.popup-inner form label {
    display: block;
    margin-bottom: 10px;
}
input[type=text], input[type=email] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 35%;
    padding: 10px;
    margin: 35px 10px 0;
    color: #fff;
    background: #ffa200;
    border: 2px solid #ffa200;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 900;
    transition: 0.3s;
}
button:hover {
    color: #ffa200;
    background: #fff;
    border: 2px solid #ffa200;
}
#complete-area a {
    color: #fff;
}
@media (max-width: 600px) {
    .popup-inner {
        margin: 30% auto;
        width: 92%;
    }
    button {
        width: 100%;
        margin-bottom: 8px;
    }
}
#popupForm {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
#popupForm .close-btn {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 22px;
    cursor: pointer;
    font-weight: 900;
    color: #fff;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#confirm-area, #complete-area {
    color: #fff;
}
#mottel-form .hissu_ico {
    padding: 0 5px 2px 3px;
    color: #ffffff;
    background: orange;
    text-align: center;
    font-size: 75%;
    border-radius: 2px;
}
#mottel-form label {
    font-weight: 400;
    padding: 0 10px 0 0;
    color: #fff;
    text-align: left;
    display: block;
}
#mottel-form select, #mottel-form input {
    border-radius: 8px;
    border: 1px solid #b2ccea;
    background: #f9fcfd;
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
    display: block;
}
#confirm-content table {
    border: transparent;
    margin: 25px auto 0;
}
#confirm-content table tr, #confirm-content table td {
    padding: 5px 30px;
    text-align: left;
}