.container {
    padding: 40px 0px !important;
}

h2 {
    background: none;
}

.pconly{
    display: block;
}
.sponly{
    display: none;
}

/* ベース設定 */
.sase_wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 15px 80px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

.sase_wrapper *,
.sase_wrapper *::before,
.sase_wrapper *::after {
    box-sizing: inherit;
}

.sase_wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 共通セクション設定 */
.sase_section {
    margin-bottom: 60px;
}

.sase_section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto 30px !important;
    line-height: 1;
    background: linear-gradient(transparent 50%, #d9f2d0 50%);
    text-align: center;
}


.sase_hero {
    display: flex;
    margin-bottom: 60px;
}

.sase_hero-left {
    width: 65%;
    background-color: #1a5b7d;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 25px 0; 
}

.sase_hero-text-box {
    background-color: #fff;
    padding: 15px 20px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sase_hero-text-box p {
    color: #4C7B31;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
}

.sase_hero-sub-text {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.sase_hero-right {
    width: 35%;
    background-color: #e5e5e5;
    display: flex;
}

.sase_hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.sase_flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.sase_flex-img {
    flex: 0.7;
}

.sase_flex-img img {
    width: 100%;
}

.sase_flex-text {
    flex: 1.2;
}


.sase_check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.sase_check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.sase_check-list li:last-child {
    margin-bottom: 0;
}


.sase_check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-color: #8fc31f;
    border-radius: 3px;
}

.sase_check-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 7px;
    width: 5px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}


.sase_text-block {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.sase_text-block:last-child {
    margin-bottom: 0;
}


.sase_grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}






.sase_card {
    border: 2px solid #333;
    border-radius: 6px;
    padding: 30px 15px 30px;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.sase_point-head {
    margin-bottom: 10px;
}

.sase_point-en {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.sase_point-num {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.sase_card-green-title {
    color: #65A442;
    font-weight: bold;
    margin: 0 0 15px;
    font-size: 20px !important;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sase_card-desc {
    font-size: 12px;
    margin: 0;
    color: #333;
    margin-bottom: 0 !important;
}

.sase_card.border-gr {
    border: 4px solid #65A442;
}



section.sase_section.sase_feature {
    border: 1px solid #1a5b7d;
    background-color: #ffffdc;
    padding: 50px 40px;
    border-radius: 12px;
  }


.sase_detail-lead {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.sase_detail-img-wrap {
    text-align: center;
}

.sase_detail-img-wrap img {
    width: 100%;
}


.sase_card-main-title {
    font-size: 24px !important;
    font-weight: bold;
    margin: 0 0 5px;
    line-height: 100% !important;
}

.sase_card-sub-title {
    font-size: 12px;
    margin: 0 0 15px;
}


.sase_footer-text {
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

.sase_footer-text p {
    margin: 0 0 5px;
    font-size: 20px;
}

.sase_text-red {
    color: #e60012;
}

/* =========================================
     スマホ対応（レスポンシブ）
     767px以下の画面幅で適用されます
  ========================================= */
@media screen and (max-width: 767px) {


    .pconly{
        display: none;
    }
    .sponly{
        display: block;
    } 



    .sase_section {
        margin-bottom: 40px;
    }

    .sase_hero {
        flex-direction: column;
    }

    .sase_hero-left {
        padding: 30px 15px;
    }

    .sase_hero-text-box p {
        font-size: 24px;
    }

    .sase_hero-sub-text {
        font-size: 14px;
    }

    .sase_hero-left,
    .sase_hero-right {
        width: 100%;
    }

    .sase_hero-left {
        padding: 30px 20px;
    }


    .sase_hero-sub-text {
        font-size: 14px;
    }

    .sase_hero-right img {
        height: auto;
    }

    .sase_flex-container {
        flex-direction: column;
        gap: 20px;
    }

    .sase_flex-img,
    .sase_flex-text {
        width: 100%;
    }

    .sase_grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}