/**
 * ランディングページ用スタイル
 */

/* メインビジュアル */
.l-landing_Hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-landing_Hero__Overlay {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 80px 0;
}

@media screen and (min-width: 768px) {
    .l-landing_Hero__Overlay {
        padding: 100px 0;
    }
}

@media screen and (min-width: 1000px) {
    .l-landing_Hero__Overlay {
        padding: 120px 0;
    }
}

.l-landing_Hero__Content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.l-landing_Hero__Heading {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .l-landing_Hero__Heading {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1000px) {
    .l-landing_Hero__Heading {
        font-size: 4rem;
        margin-bottom: 40px;
    }
}

.l-landing_Hero__Lead {
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
    .l-landing_Hero__Lead {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 1000px) {
    .l-landing_Hero__Lead {
        font-size: 1.4rem;
    }
}

/* セクション */
.l-landing_Section {
    /* デフォルトのセクションスタイルは削除 - containerとcontentクラスがパディングを持つため */
}

/* セクション背景色バリエーション */
.l-landing_Section.-gray {
    background-color: #f7f7f7;
}

.l-landing_Section.-white {
    background-color: #fff;
}

/* 見出し - 既存サイトのスタイルを継承するため、上書きしない */
.l-landing_Heading {
    /* text-align: center を削除 - 既存の.is-2, .is-decoスタイルを使用 */
}

/* 画像 */
.l-landing_Image {
    margin: 0 auto;
}

.l-landing_Image.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.l-landing_Image.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.l-landing_Image.aligncenter {
    text-align: center;
}

.l-landing_Image img {
    max-width: 100%;
    height: auto;
}

.l-landing_Image figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* テキスト + 画像 */
.l-landing_TextImage {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media screen and (min-width: 1000px) {
    .l-landing_TextImage {
        gap: 60px;
    }
}

.l-landing_TextImage.-reverse {
    flex-direction: row-reverse;
}

.l-landing_TextImage__Text {
    flex: 1;
}

.l-landing_TextImage__Image {
    flex: 1;
}

.l-landing_TextImage__Image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* テキストコンテンツの装飾 */
.l-landing_Section .m-content {
    line-height: 1.8;
}

.l-landing_Section .m-content h2,
.l-landing_Section .m-content h3,
.l-landing_Section .m-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.l-landing_Section .m-content h2:first-child,
.l-landing_Section .m-content h3:first-child,
.l-landing_Section .m-content h4:first-child {
    margin-top: 0;
}

.l-landing_Section .m-content p {
    margin-bottom: 1.5em;
}

.l-landing_Section .m-content ul,
.l-landing_Section .m-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.l-landing_Section .m-content li {
    margin-bottom: 0.5em;
}

.l-landing_Section .m-content strong {
    font-weight: bold;
    color: #003F90;
}

/* カスタムHTMLセクション用のボタンスタイル */
.l-landing_Section .m-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
    .l-landing_Section .m-btn {
        padding: 20px 60px;
        font-size: 1.2rem;
    }
}

.l-landing_Section .m-btn:hover {
    background: #c5000f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

/* レスポンシブ */
@media (max-width: 767px) {
    .l-landing_TextImage {
        flex-direction: column;
        gap: 30px;
    }

    .l-landing_TextImage.-reverse {
        flex-direction: column;
    }

    .l-landing_Image.alignleft,
    .l-landing_Image.alignright {
        float: none;
        margin: 0 auto 20px;
    }
}

/* FAQセクション用スタイル */
.l-landing_Section .l-faq_Main__Box {
    margin-top: 40px;
}

.l-landing_Section .l-faq_Main__Box:first-child {
    margin-top: 0;
}

.l-landing_Section .l-faq_Question {
    padding: 15px 0;
    font-weight: bold;
    border-bottom: 1px solid #e0e0e0;
}

.l-landing_Section .l-faq_Answer {
    padding: 15px 0 20px;
    line-height: 1.8;
}

.l-landing_Section .l-faq_Answer strong {
    color: #e60012;
}

/* テーブルスタイル調整 */
.l-landing_Section .m-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.l-landing_Section .m-table th,
.l-landing_Section .m-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.l-landing_Section .m-table thead th {
    background-color: #003F90;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.l-landing_Section .m-table tbody td {
    text-align: left;
}

.l-landing_Section .m-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* セクション間のマージン調整 */
.l-landing_Section.l-top_Service,
.l-landing_Section.l-top_Pickup,
.l-landing_Section.l-top_Campaign {
    padding: 60px 0;
}

@media screen and (min-width: 768px) {
    .l-landing_Section.l-top_Service,
    .l-landing_Section.l-top_Pickup,
    .l-landing_Section.l-top_Campaign {
        padding: 80px 0;
    }
}

@media screen and (min-width: 1000px) {
    .l-landing_Section.l-top_Service,
    .l-landing_Section.l-top_Pickup,
    .l-landing_Section.l-top_Campaign {
        padding: 100px 0;
    }
}
