/* 基本的なスタイルのリセットと設定 */
body, h1, h2, h3, p, ul, li, table, details { margin: 0; padding: 0; font-family: 'Noto Sans JP', sans-serif; box-sizing: border-box; }
body { line-height: 1.7; color: #333; background-color: #fff; }
.container { max-width: 1024px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }
.section-bg { background-color: #f8f9fa; }

/* ヘッダー */
.main-header { padding: 10px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
.header-logo img { max-height: 40px; }
.header-cta a { display: inline-block; }
.header-cta img { height: 50px; }
.header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }


/* ナビゲーション */
.main-nav { background-color: #0d2a4c; text-align: center; padding: 12px 0; border-bottom: 3px solid #f0b90b; position: sticky; top: 0; z-index: 1000; }
.main-nav a { margin: 0 15px; font-weight: bold; color: #fff; font-size: 0.9rem; }
.main-nav a i { margin-right: 8px; }

/* ヒーローセクション */
.hero-section {
    background-image: linear-gradient(rgba(0, 20, 40, 0.0), rgba(0, 20, 40, 0.0)), url('/image/export-agent/angryman.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.hero-section h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.4; font-weight: 900; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.hero-section h1 span { color: #ff4d4d; }
.hero-section .sub-headline { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px auto; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.hero-section .cta-button { background-color: #e60012; color: #fff; padding: 15px 40px; font-size: 1.2rem; border-radius: 5px; font-weight: bold; display: inline-block; text-shadow: none; }
.hero-section .cta-button:hover { background-color: #c00; text-decoration: none; }

/* 共通セクションスタイル */
.content-section { padding: 80px 20px; }
.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background-color: #0d2a4c;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}
.section-title span { color: #f0b90b; }
.text-center { text-align: center; }

/* お悩みセクション (背景画像適用) */
.problems-section.background-hagare {
    position: relative;
    z-index: 1;
    background-image: url('image/hagare.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.problems-section.background-hagare::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.9); /* 白い半透明のフィルター */
    z-index: -1;
}
.problems-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.problems-list { list-style: none; padding: 0; text-align: left; }
.problems-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; }
.problems-list i { margin-right: 12px; font-size: 1.4rem; line-height: 1.7; width: 25px; text-align: center; }
.problems-list .fa-angry { color: #d9534f; }
.problems-list .fa-sad-tear { color: #5bc0de; }


/* お客様の声 (スライダー) */
.testimonial-section { background-color: #f0f4f8; }
.swiper { width: 100%; height: auto; padding: 20px 0 50px 0; }
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 30px; /* Increased vertical padding to 300% of original 30px */
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 420px;
}
.testimonial-card { text-align: left; }
.testimonial-card h3 { color: #e85f0c; margin-bottom: 15px; font-size: 1.4rem; }
.testimonial-card img {
    margin-top: 15px;
    border-radius: 5px;
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Crop image to fit */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.swiper-button-next, .swiper-button-prev { color: #0d2a4c; }
.swiper-pagination-bullet-active { background: #0d2a4c; }



/* フォーム */
.contact-form-section { background-color: #f0f4f8; }
.contact-form { max-width: 800px; margin: 40px auto; border: 1px solid #ccc; padding: 30px; border-radius: 5px; background-color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.form-table { width: 100%; border-collapse: collapse; }
.form-table th, .form-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.form-table th { width: 30%; background-color: #f8f9fa; vertical-align: top; font-weight: bold; }
.form-table input[type="text"], .form-table input[type="email"], .form-table input[type="tel"], .form-table textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.form-table .haveto { background-color: #e60012; color: #fff; padding: 3px 6px; font-size: 0.8rem; border-radius: 3px; margin-right: 5px; }
.form-submit-button { background-color: #e60012; color: #fff; border: none; padding: 15px 40px; font-size: 1.2rem; font-weight: bold; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; }
.form-submit-button:hover { background-color: #c00; }
.form-submit-button:disabled { background-color: #ccc; cursor: not-allowed; }

/* フッター */
.main-footer { background-color: #2c3e50; color: #ecf0f1; padding: 50px 0; }
.company-table { width: 100%; max-width: 800px; margin: 0 auto; color: #bdc3c7; }
.company-table td { padding: 12px; border-bottom: 1px solid #34495e; }
.company-table td:first-child { font-weight: bold; width: 30%; color: #fff; }
.copyright { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #34495e; font-size: 0.9rem; color: #7f8c8d; }

/* New styles for the alternating sections */
.alternating-section {
    background-color: #add8e6; /* Light blue background as in your screenshot */
    padding: 60px 0;
}

.alternating-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.alternating-item:last-child {
    margin-bottom: 0;
}

.alternating-item-reverse {
    flex-direction: row-reverse;
}

.alternating-item .text-content,
.alternating-item .image-content {
    flex: 1;
    min-width: 300px; /* Adjust as needed for smaller screens */
}

.alternating-item .image-content img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alternating-item .title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* NEW: Simple Numbered Icon Style */
.point-icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: #0d2a4c; /* Site's main dark blue */
    color: #f0b90b; /* Site's accent gold */
    border-radius: 50%; /* Make it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Large number */
    font-weight: 900; /* Bold number */
    line-height: 1; /* Adjust line height for better vertical centering */
}

.alternating-item .title h3 {
    font-size: 1.8rem;
    color: #0d2a4c;
    line-height: 1.4;
    margin: 0;
}

.alternating-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.marker_yellow {
    background: linear-gradient(transparent 60%, #ffff99 60%);
    font-weight: bold;
}


/* Responsive adjustments for alternating sections */
@media (max-width: 768px) {
    .alternating-item {
        flex-direction: column;
        text-align: center;
    }
    .alternating-item-reverse {
        flex-direction: column; /* On small screens, always stack */
    }
    .alternating-item .title {
        flex-direction: column;
        text-align: center;
    }
    .point-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.final-message {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #f0b90b;
    color: #0d2a4c;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.final-message p {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.6;
}

.final-message span {
    color: red;
    font-size: 2.2rem;
    display: block;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .final-message span {
        font-size: 1.8rem;
    }
}