/*===============================
全体
================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body{
    color: #005497;
    background-color: #fff;
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/*===============================
ヘッダー
================================*/
header{
    width: 100%;
    height: auto;
    min-height: 150px;
    background-color: #fff;
    padding: 30px 5% 20px;
    position: relative;
    margin: 0 auto;
}

header h1{
    font-size: 100px;
    font-weight: bold;
    color: #005497;
    -webkit-text-stroke: 3px #fffa5f;
    margin-bottom: 20px;
}

/* ナビゲーション */
header nav {
    position: absolute;
    top: 00px;
    right: 0;
    z-index: 10;
    background-color: #fafabf;
    padding: 12px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

header nav ul li a {
    display: flex;
    align-items: center;

    padding: 0;
    background-color: transparent;
    color: #005497;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

header nav ul li a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(lemon-site-images2/Firefly_レモン\ 692583.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header nav ul li a:hover {
    color: #ffd700;
}
/*===============================
お問い合わせページ
================================*/
.contact-page {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 80px;
    color: #005497;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-intro .highlight {
    color: #333;
    font-weight: bold;
    margin-top: 20px;
}

/* フォームコンテナ */
.form-container {
    background-color: #f5f5f5;
    padding: 40px 50px;
    border-radius: 8px;
}

.form-title {
    font-size: 24px;
    color: #005497;
    margin-bottom: 30px;
    font-weight: bold;
}

/* フォームグループ */
.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.required {
    background-color: #333;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

/* 入力フィールド */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.form-input-half {
    width: 48%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.form-input-small {
    width: 80px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    text-align: center;
}

.form-textarea {
    width: 100%;
    min-height: 150px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    resize: vertical;
    font-family: inherit;
}

/* 名前グループ */
.name-group {
    display: flex;
    gap: 20px;
}

/* 住所グループ */
.address-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.postal-code {
    display: flex;
    align-items: center;
    gap: 8px;
}

.postal-code label {
    font-size: 16px;
    font-weight: bold;
}

.postal-code span {
    font-size: 16px;
}

/* ラジオボタングループ */
.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* チェックボックスグループ */
.checkbox-group {
    margin-top: 40px;
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-link {
    color: #005497;
    text-decoration: underline;
    font-weight: normal;
}

.privacy-link:hover {
    color: #FFD700;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

/* 送信ボタン */
.submit-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #555;
}

/*===============================
フッター
================================*/
footer {
    background-image: url(lemon-site-images2/AdobeStock_520953628.png);
    background-color: #fafabf;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 5% 50px;
    text-align: center;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-title {
    font-size: 60px;
    margin-bottom: 40px;
    color: #005497;
    font-weight: bold;
    letter-spacing: 0.05em;
}

footer nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

footer nav ul li a {
    color: #005497;
    font-size: 18px;
    padding: 5px 0;
    font-weight: bold;
}

footer nav ul li a:hover {
    color: #ffd700;
}

.footer-icon {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.footer-icon a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.footer-icon a:hover {
    transform: scale(1.1);
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}


/*===============================
レスポンシブ対応
================================*/
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .name-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-input-half {
        width: 100%;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
}