/* =======================
フォーム
==========================*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form-container {
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

label {
    display: block;
    max-width: 500px;
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: #333;
    margin: 0 auto 5px auto;
    text-align: left;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.4rem;
    text-align: left;
}

textarea {
    height: 400px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.privacy-policy {
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
}

.privacy-policy a {
    color: #007BFF;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.form-group {
    max-width: 500px;
    margin: 0 auto 10px auto;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid #333333;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

input[type="checkbox"]:checked+.checkbox-custom::after {
    opacity: 1;
}

form {
    margin: 0 auto;
    text-align: center;
}

.label01 {
    margin-left: 0;
}

.form-container button {
    display: block;
    width: 100%;
}

/* =======================
本文
==========================*/
.content {
    background-color: white;
    font-size: 1.4rem;
    padding: 100px 0;
    border-bottom: 1px solid #3C3B3B;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content p {
    padding: 0 20px;
    text-align: left;
    max-width: 540px;
}

.content-offer {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #999999;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and (min-width:768px) {
    .content {
        font-size: 1.6rem;
    }
}

/* =======================
ボタン
==========================*/
.button-container{
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    max-width: 500px;
    color: #2c3e50;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
    border-radius: 999px;
    border: 1px solid #7D7DC7;
    background: linear-gradient(90deg, #C6C6FF 0%, #A0A0F9 100%);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.button-container {
    position: relative;
    overflow: hidden; /* 擬似要素がはみ出ないように設定 */
}

.button-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.4s ease;
}

.button-container:hover::before {
    left: 100%; /* ホバー時に擬似要素がボタンの右端まで移動 */
    transition: all 0.4s ease; /* 擬似要素の動きに滑らかなアニメーションを追加 */
}
/* =======================
フォーム
==========================*/

/* =======================
フォーム
==========================*/

/* =======================
フォーム
==========================*/
