@charset "UTF-8";

/* MIJ 診断CTA（このボタンだけ） */
.mij-cta-diagnosis .swell-block-button__link {
    background: #ff8a00;
    border-color: #ff8a00;
    color: #fff !important;
    font-weight: 800;
    font-size: 1.2em;
    text-decoration: none;
}

.mij-cta-diagnosis .swell-block-button__link span {
    color: #fff !important;
}

.mij-cta-diagnosis .swell-block-button__link:hover {
    color: #fff;
    text-decoration: none;
}

/* ====================================================
		   追加：日常清掃ページの独自スタイル 
		   ==================================================== */

/* --- ジャンプリンク --- */
.cleaning_anchor_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.cleaning_anchor_link_item {
    width: calc(24% - 10px);
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--color_main);
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.cleaning_anchor_link_item:hover {
    background: var(--color_main);
    color: #fff;
}

/* --- 清掃サービス内容（罫線区切りレイアウト） --- */
.cleaning_service_section {
    padding: 60px 0;
    background: #fdfdfd;
}

.cleaning_service_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.cleaning_service_item {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.cleaning_service_item:last-child {
    border-bottom: none;
}

/* ヘッダー部分（ナンバリングとタイトル・リード文の高さを合わせる） */
.cleaning_service_header {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.cleaning_service_num {
    font-size: 3.2em;
    color: #36af83;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
    transform: scaleY(1.2);
    display: inline-block;
    transform-origin: top left;
    padding-right: 15px;
}

.cleaning_service_title_wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 5px;
}

.cleaning_service_title {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--color_main);
    margin: 0;
    line-height: 1.4;
}

.cleaning_service_lead {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
    padding-left: 0;
}

/* ボディ部分（画像とテキスト） */
.cleaning_service_body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .cleaning_service_body {
        flex-direction: row;
        align-items: stretch;
    }
}

.cleaning_service_img {
    background-color: #e0e0e0;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
}

.cleaning_service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .cleaning_service_img {
        width: 320px;
        flex-shrink: 0;
        aspect-ratio: auto;
        height: auto;
    }
}

.cleaning_service_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cleaning_service_text {
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.cleaning_service_title {
    font-size: 1.25em;
}

.cleaning_service_lead {
    font-size: 1em;
}

/* リストボックス */
.cleaning_service_list_box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    margin-top: auto;
}

.cleaning_service_list_title {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: var(--color_main);
    font-size: 1em;
    border-bottom: 2px solid var(--color_main);
    padding-bottom: 5px;
    display: inline-block;
}

.cleaning_service_list_ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cleaning_service_list_ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 0.9em;
    color: #333;
    font-weight: 500;
}

.cleaning_service_list_ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    background: var(--color_main);
    border-radius: 50%;
}

/* --- よくあるお悩み --- */
.trouble_section {
    padding: 60px 0;
    background-color: #f7f7f7;
    margin-bottom: 60px;
}

.trouble_box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trouble_title {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    color: var(--color_main);
    margin-bottom: 20px;
}

.trouble_desc {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.trouble_list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.trouble_list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.trouble_list li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    color: #e44141;
    font-weight: 900;
    font-size: 1.2em;
}

.trouble_solution {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color_main);
    background: #f4f4f4;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

/* --- 選ばれる理由（スライダー形式・左画像） --- */
.reason_section {
    padding: 60px 0;
    background: #fff;
}

.reason_swiper {
    padding-bottom: 50px !important;
    margin-top: 30px;
    overflow: hidden;
    /* Swiperのコンテナとして必須 */
}

.reason_slide {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    height: auto;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .reason_slide {
        flex-direction: row;
        align-items: stretch;
    }
}

.reason_img_placeholder {
    background-color: #e0e0e0;
    width: 100%;
    aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    .reason_img_placeholder {
        width: 30%;
        /* 左側小さめ */
        aspect-ratio: auto;
        min-height: 250px;
    }
}

.reason_img_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason_content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .reason_content {
        width: 70%;
        padding: 40px 50px;
    }
}

.reason_num {
    font-size: 1.2em;
    color: var(--color_main);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.reason_title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.reason_text {
    line-height: 1.7;
    font-size: 0.95em;
    margin: 0;
}

/* Swiperのページネーション色 */
.swiper-pagination-bullet-active {
    background: var(--color_main) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color_main) !important;
}

/* --- よくある質問 --- */
.faq_section {
    padding: 60px 0;
    background: #fdfdfd;
    margin-bottom: 60px;
}

.faq_list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

.faq_item {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.faq_item:first-child {
    border-top: 1px solid #ddd;
}

.faq_q,
.faq_a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq_q {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.faq_icon_q {
    color: #fff;
    background: var(--color_faq_q, #d55656);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.faq_icon_a {
    color: #fff;
    background: var(--color_faq_a, #6599b7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.faq_q_text,
.faq_a_text {
    margin: 0;
    line-height: 1.6;
    padding-top: 2px;
}

.faq_a_text {
    color: #444;
}

/* --- レスポンシブ調整 --- */
@media (max-width: 768px) {
    .cleaning_anchor_link_item {
        width: calc(50% - 10px);
    }

    .cleaning_service_item {
        padding: 30px 0;
    }

    .cleaning_service_img {
        aspect-ratio: 16/9;
        height: auto;
    }

    .cleaning_service_num {
        font-size: 2.5em;
        padding-right: 10px;
    }

    .trouble_box {
        padding: 25px 15px;
    }

    .reason_content {
        padding: 20px;
    }

    .faq_item {
        padding: 20px 0;
    }

    .cleaning_service_section {
        padding: 10vw 0;
    }

    .cleaning_service_list {
        margin-top: 0;
    }

    .trouble_section {
        margin-bottom: 0;
    }

    .reason_section {
        padding-bottom: 0;
    }

    .faq_section {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .reason_swiper {
        padding-bottom: 20vw !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 6vw;
        height: 6vw;
        top: unset;
        bottom: 8vw;
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after,
    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        font-size: 6vw;
    }

    .page_business .page_flow {
        margin-top: 0;
        padding: 0 0 10vw;
    }
}