@charset "UTF-8";

/* ============================================
   お問い合わせページ専用 (contact.css)
   ============================================ */

/* --- 1. タイトルセクション --- */
.contact-title-section {
    padding: 60px 20px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-title-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-title-section .section-title {
    font-size: 1.8rem;
    color: var(--main-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.contact-title-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* 他のページの見出しに合わせました */
    height: 3px;
    background: var(--main-green);
}

.contact-subtitle {
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- 2. フォームセクション（メインパネル） --- */
.contact-form-section {
    padding: 20px 20px 80px;
    background: transparent !important; /* セクション自体の白背景を完全に排除 */
    position: relative;
    z-index: 10;
}

.contact-form-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* --- 3. Googleフォーム レスポンシブラッパー --- */
.google-form-wrapper {
    position: relative;
    width: 100%;
    background: #fff; /* フォームの読み込み中は白を表示 */
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.google-form-wrapper iframe {
    width: 100% !important;
    max-width: 100%;
	height: 1300px !important; 
}

/* --- 4. 注意書き（パネル内の下部） --- */
.contact-content {
    margin-top: 40px;
    padding: 30px 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
}

/* --- 5. 背景固定設定の突き抜け防止 --- */
.bg-fixed-wrapper {
    width: 100%;
    overflow: hidden;
}

/* --- 6. レスポンシブ --- */
@media (max-width: 768px) {
    .contact-title-section {
        padding: 40px 15px 10px;
    }

    .contact-form-section {
        padding: 10px 15px 60px;
    }

    .contact-form-section .container {
        padding: 30px 15px;
    }

    .contact-title-section .section-title {
        font-size: 1.6rem;
    }
}