/* お問い合わせページ専用スタイル */

/* 会社紹介セクション */
.company-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.company-intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--d-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.intro-text p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* 会社概要セクション */
.company-profile-section {
    padding: 80px 0;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
  
    padding: 25px;
   
}






.profile-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-card-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card-icon i {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.profile-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--d-color);
    margin: 0;
}

.profile-card-content {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.profile-card-content strong {
    color: var(--d-color);
}

/* クーポンセクション */
.coupon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.coupon-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed var(--secondary-color);
}

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

.coupon-image img {
    width: 100%;
    height: auto;
   
}

.coupon-details {
    flex: 1;
}

.coupon-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--d-color);
    margin-bottom: 20px;
}

.coupon-discount {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(228, 1, 1);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.coupon-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

/* お問い合わせフォームセクション */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--d-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.required {
    color: #e74c3c;
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(129, 199, 132, 0.4);
}

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

/* 連絡先情報 */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--d-color);
    margin-bottom: 25px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--light-color);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-method h4 {
    color: var(--d-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-method p {
    color: #6c757d;
    margin-bottom: 15px;
}

.btn-line {
    display: inline-block;
    background: #06C755;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-line:hover {
    background: #05a845;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-intro-content,
    .coupon-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .company-intro-content,
    .coupon-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-image,
    .coupon-image {
        order: -1;
    }
    
    .profile-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .coupon-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .company-intro-section,
    .company-profile-section,
    .coupon-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info,
    .coupon-content {
        padding: 20px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px;
    }
}