/* ページ内リンク */

.page-links .card {
    padding: 48px 20px;
    background: #fffbec;
    border-radius: 10px;
}

.page-links .hedding-block h2 {
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; 
}

.page-links .content-block ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-links .content-block ul li a {
    box-sizing: border-box;
    width: 450px;
    height: 60px;
    padding: 12px 50px 12px 20px;
    background: #fff;
    border: 1px solid #fbdf62;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    position: relative;
    transition: all 0.3s ease;

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.page-links .content-block ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 17px;
    height: 10px;
    background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='10' viewBox='0 0 17 10' fill='none'%3E%3Cpath d='M15.5 1.5L8.5 8.5L1.5 1.5' stroke='%23333333' stroke-width='2.4186' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-links .content-block ul li a:hover {
    box-shadow: 0 10px 10px 2px rgb(0 0 0 / 30%);
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .page-links .content-block ul {
        flex-direction: column;
    }

    .page-links .content-block ul li {
        width: 100%;
    }

    .page-links .content-block ul li a {
        box-sizing: border-box;
        display: flex;
        width: 100%;
        height: auto;
    }
}

/* コンテンツ部分 */

.Section.ToggleSet a:hover {
    opacity: .8;
}

.Section.ToggleSet a img {
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
}

.Section.ToggleSet a:hover img {
    transform: scale(1.05);
}

/* CTA */

.cta {
    background: linear-gradient(101deg, rgba(251, 223, 98, 0.24) 0.01%, rgba(255, 208, 0, 0.30) 100.01%);
}

.cta .hedding-block {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta .hedding-block .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cta .hedding-block .text-box .description {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
}

.cta .hedding-block .image-box img {
    max-width: 405px;
}

.cta .content-block p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.cta .content-block p strong {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #fbdf62;
    text-decoration-thickness: 20%;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.cta .cta-block {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    .cta .hedding-block {
        flex-direction: column;
        gap: 1rem;
    }

    .cta .hedding-block .text-box .description {
        font-size: 19px;
    }

    .cta .content-block p {
        font-size: 1.1rem;
    }

    .cta .cta-block {
        flex-direction: column;
        gap: 1rem;
    }
}