@charset "utf-8";

.sec-intro .inner {
    padding-top: 96px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sec-intro .inner .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    line-height: calc(32/18);
    color: #000;
    text-align: center;
}

.sec-intro .inner .desc p {
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    line-height: calc(40/18);
    text-align: center;
    font-weight: 500;
}

.sec-navi .inner {
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.sec-navi .link-item {
    display: flex;
    align-items: center;
    align-items: flex-end;
    padding: 24px 32px;
    border: 2px solid #00428e;
    border-radius: 5px;
    transition: var(--default);
}

.sec-navi .link-item:hover {
    opacity: 50%;
}

.sec-navi .link-item .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    color: #000;
}

.sec-navi .link-item .sub {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(0.938rem, 0.862rem + 0.32vw, 1.25rem);
    color: #000;
    margin-right: 20px;
}

.section .column {
    display: flex;
    gap: 4%;
}

.section .column .sec-img {
    max-width: 494px;
    width: 65%;
}

.section .column .troublelist .ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.section .column .troublelist .ttl::before,
.section .column .troublelist .ttl::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #00428E;
    border-radius: 50px;
}

.section .column .desc {
    margin-bottom: 40px;
}

.section .column .desc p {
    font-weight: 500;
    font-size: clamp(0.875rem, 0.829rem + 0.19vw, 1.063rem);
    line-height: calc(38/17);
}

.section .column .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 2%;
}

.section .column .list .item {
    padding: 16px;
    background: #f7f7f7;
    border: 2px solid #74a3a8;
}

.section .column .list .item p {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    text-align: center;
    color: #000;
}

.sec01,
.sec02 {
    margin-bottom: 120px;
}

.sec01 .inner,
.sec02 .inner,
.sec03 .inner {
    padding-bottom: 48px;
    border-bottom: 1px solid #dbdbdb;
}



.sec02 .column {
    margin-bottom: 67px;
}

.sec02 .sec-title03 {
    margin-bottom: 40px;
}

.sec02 .exlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
}

.sec02 .exlist .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sec02 .exlist .item .ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
    color: #000;
    padding-left: 19px;
    position: relative;
    margin-left: 3%;
}

.sec02 .exlist .item .ttl::before {
    content: "";
    background: url(/system_panel/uploads/images/20260405184154179376.svg);
    width: 11px;
    height: 11px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

.sec02 .exlist .item .box {
    border: 1px solid #00428e;
    padding: 20px;
}

.sec02 .exlist .item .box .desc p {
    font-weight: 500;
    font-size: clamp(0.875rem, 0.829rem + 0.19vw, 1.063rem);
    line-height: calc(38/17);
}

.sec03 .desc {
    margin-bottom: 67px;
}

.sec03 .desc p {
    font-weight: 500;
    font-size: clamp(0.875rem, 0.829rem + 0.19vw, 1.063rem);
    line-height: calc(38/17);
}

.sec03 .sec-title03 {
    display: grid;
    grid-template-columns: 4% 1fr;
    gap: 22px 3%;
    grid-template-areas: "rect ttl"
        "desc desc";
    padding-left: 0;
    margin-bottom: 40px;
}

.sec03 .sec-title03::before {
    grid-area: rect;
}

.sec03 .sec-title03 .main {
    grid-area: ttl;
}

.sec03 .sec-title03 .desc {
    grid-area: desc;
    margin-bottom: 0;
}

.sec03 .inner>.list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sec03 .column {
    display: grid;
    grid-template-columns: 38% 1fr;
}

.sec03 .column .sec-img {
    max-width: none;
    width: auto;
}

@media (max-width: 1366px) {
    .sec-navi .link-item {
        padding: 24px 20px;
    }

    .sec02 .exlist {
        gap: 2%;
    }


}

@media (max-width: 1200px) {
    .sec03 .column {
        grid-template-columns: 37% 1fr;
    }

    .sec-navi .inner {
        gap: 2%;
    }

    .sec-navi .link-item {
        padding: 24px 9px;
    }
}

@media (max-width: 1023px) {
    .section .column .list {
        flex-direction: column;
        align-items: center;
    }

    .section .column .troublelist .ttl {
        justify-content: center;
    }

    .sec-navi .link-item {
        padding: 20px;
    }

    .sec-navi .inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .section .column {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .sec02 .exlist {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .section .column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sec03 .column .sec-img {
        width: 80%;
        margin: 0 auto;
    }

}

@media (max-width: 767px) {

    .sec-navi .link-item .icon {
        width: 30px;
        height: auto;
    }
    .sec-title02 {
        padding: 12px 28px;
    }

    .sec-title02 .main {
        font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
    }

    .section .column .list .item {
        padding: 16px 6px;
    }

    .section .column .list {
        gap: 18px;
    }

    .sec-title03 {
        display: grid;
        grid-template-columns: 4% 1fr;
        gap: 22px 3%;
        grid-template-areas: "rect ttl"
            "desc desc";
        padding-left: 0;
        margin-bottom: 40px;
    }

    .sec-title03::before {
        grid-area: rect;
    }

    .sec-title03 .main {
        grid-area: ttl;
    }

    .sec-title03 .desc {
        grid-area: desc;
        margin-bottom: 0;
    }
}