/* コンタクトページ専用スタイル */

/* パンくずリスト */
.breadcrumb {
    padding: 15px 0;
    background-color: #f8f9fa;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--dark-pink);
}

.breadcrumb span {
    color: var(--dark-pink);
    font-weight: 500;
}

/* ヒーローセクション */
.contact-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f9d5e5' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.contact-hero-title {
    font-family: 'M PLUS Rounded 1c', 'Hachi Maru Pop', 'Yomogi', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-pink);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
   font-family: 'M PLUS Rounded 1c', 'Hachi Maru Pop', 'Yomogi', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* メールフォームセクション */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', 'Hachi Maru Pop', 'Yomogi', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 166, 197, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 166, 197, 0.3);
}

.btn-submit:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 166, 197, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* フォームバリデーション */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #949494;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus) {
    border-color: #28a745;
}

/* LINEお問い合わせセクション */
.line-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.line-contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.line-contact-image {
    flex: 1;
    text-align: center;
}

.line-contact-image img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.line-contact-text {
    flex: 2;
}

.line-contact-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'M PLUS Rounded 1c', 'Hachi Maru Pop', 'Yomogi', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
}

.line-contact-list {
    list-style: none;
    margin: 25px 0;
}

.line-contact-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.line-contact-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.btn-line-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #06C755;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

.btn-line-contact:hover {
    background: #05a845;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .line-contact-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .line-contact-list li {
        padding-left: 0;
        justify-content: center;
    }
    
    .line-contact-list i {
        position: static;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }
}