@charset "utf-8";


.sec-trouble {
    background: #f5f5f5;
}

.sec-trouble .inner {
    padding: 20px 0 64px;
}

.sec-trouble .title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px 70px;
    position: relative;
    width: fit-content;
    margin: 0 auto 40px;

}

.sec-trouble .title .kagi {
    position: absolute;
}

.sec-trouble .title .left {
    top: 0;
    left: 0;
}

.sec-trouble .title .right {
    bottom: 0;
    right: 0;
}

.sec-trouble .title .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 24px;
    color: #000;
    padding-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.sec-trouble .title .main::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform: translateX(-100%);
    transition: var(--default);
}

.sec-trouble .title .main.is-active::after {
    transform: translateX(0);
}

.sec-trouble .title .sub {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    color: #000;
    padding-bottom: 8px;
}

.sec-trouble .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3%;
}



.sec-trouble .list .item .item-tit {
    display: flex;
    align-items: flex-end;
    gap: 1%;
    margin-bottom: 13px;
}

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

.sec-trouble .list .item .item-tit .sub {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    color: #000;
}

.sec-trouble .list .item-body {
    background: #fff;
    padding: 32px 15px;
    border: 2px solid #74a3a8;
    display: grid;
    grid-template-columns: 22% 1fr;
    gap: 2%;
}

.sec-trouble .list .item-body .img {
    max-width: clamp(8.438rem, 8.013rem + 1.81vw, 10.188rem);
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50px;
}

.sec-trouble .list .item-body .img img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
}

.sec-title03 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 58px;
    position: relative;
}

.sec-title03::before {
    content: "";
    width: 28px;
    height: 28px;
    background-color: #00428E;
    position: absolute;
    top: 0;
    left: 0;
}

.sec-title03 .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    color: #000;
}

@media (max-width: 1200px) {
    .sec-trouble .list .item-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 1023px) {
    .sec-trouble .list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .sec-trouble .inner {
        padding: 40px 0 55px;
    }

    .sec-trouble .title {
        flex-direction: column;
        padding: 16px 60px;
        align-items: center;
        gap: 8px;
    }

    .sec-title03 {
        padding-left: 21px;
    }

    .sec-title03::before {
        width: 13px;
        height: 13px;
    }
}