@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.product-grid label {
    flex: 0 1 calc(50% - 10px);
    margin: 5px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.product-grid label:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.product-grid img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    transition: 0.3s;
}
.product-grid input[type="radio"] {
    display: none;
}
.product-grid input[type="radio"]:checked + img {
    filter: brightness(50%);
}
.product-grid input[type="radio"]:checked + img + span {
    color: #000000;
    font-weight: bold;
}
.product-grid span {
    font-size: 16px;
    color: #333333;
}
.order-type {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.order-type label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.input-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}
.input-group {
    width: 100%;
}
.contact-form input[type="number"], 
.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form input[type="tel"] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #000000;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    box-sizing: border-box;
}
.result-container {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    background-color: rgba(255, 215, 0, 0.1);
    color: #000000;
    margin-top: 10px;
    box-sizing: border-box;
}
.result-container::before {
    content: "買取金額";
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.divider {
    width: 100%;
    height: 1px;
    background-color: #999999;
    margin: 20px 0;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #000000;
    border-radius: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.contact-form {
    margin-top: 20px;
}
button[type="submit"] {
    background: #264570;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    text-align: center;
}
button[type="submit"]:hover {
    background: #1e3760;
}
.section-title {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
    text-align: center;
}
.privacy-policy {
    text-align: center;
}
.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}
.submit-button {
    text-align: center;
}
@media (max-width: 767px) {
    .product-grid, .order-type, .input-row {
        flex-direction: column;
        gap: 10px;
    }
}
