@charset "UTF-8";
.form-container {
    max-width: 600px; /* フォームが広がりすぎないように */
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title-c{
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 500;
    gap: 8px;
    align-items: center;
    padding-bottom: 40px;
}

.section-subtitle-c{
    color: var(--primary-orange);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    }

.form-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-item label span {
    background: var(--primary-orange);
    color: var(--primary-white);
    font-size: 1.1rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.form-item input,
.form-item textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--primary-white);
}

/* チェックボックス部分 */
.form-policy {
    text-align: center;
    margin: 30px 0;
}

.form-policy a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* 送信ボタンのラッパー（中央寄せ） */
.form-btn-wrap {
    display: flex;
    justify-content: center;
}


.contact-btn{
    display: inline-block;
    padding: 20px;
    background: var(--btn-color);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.6rem;
    position: relative;
    transition: background-color 0.3s ease;
    width: 333px;
    border: none; /* ボタンのデフォルトの枠線を消す */
}

.contact-btn::after {
content: "";
    position: absolute;
    top: 50%;            /* 上下中央へ */
    right: 15px;         /* 右端から15pxの位置 */
    transform: translateY(-50%); /* 正確に中央寄せ */
    width: 15px;         /* 矢印の幅 */
    height: 15px;        /* 矢印の高さ */
    
    /* 修正ポイント：セミコロンを追加し、サイズを調整 */
    background-image: url("../img/arrow.svg"); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* 最初から表示させたい場合は 1 に、ホバー時なら 0 のまま */
    opacity: 1;
}