/* セクション縦余白 */
.section {
    padding: 160px 0;
}
@media (max-width: 767px) {
    .section {
        padding: 80px 0;
    }
}

/* セクション横余白 */
.container {
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width:1120px) {
    .container {
        padding: 0 20px;
    }
}

/* タイトル下のコンテンツ */
.contents {
    margin-top: 80px;
}
@media (max-width:767px) {
    .contents {
        margin-top: 40px;
    }
}


.for-sp {
    display: none;
}
/* SP */
@media (max-width: 767px) {
    .for-sp {
        display: inline-block;
    }
    .for-pc {
        display: none;
    }
}


.button {
    display: flex;
    height: 60px;
    min-width: 260px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 50px;
    background: linear-gradient(90deg, #7AF4EF 0%, #3B9DF9 100%);
    color: #002A79;
    font-weight: 700;
    letter-spacing: 0.64px;
    position: relative;
}
.button.arrow-left {
    background: #ccc;
    color: #000;
}
.button.arrow-right::after {
    content: "";
    background: url(../images/icon-arrow-right.svg) no-repeat center center / contain;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.sectionTitle {
    font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
    font-weight: 600;
    font-family: var(--font-en);
    line-height: 140%;
    font-style: normal;
    padding-left: 24px;
    position: relative;
}
.sectionTitle::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #3DDAF6;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sectionSubTitle {
    padding-left: 24px;
    font-size: clamp(1.8rem, 1.472rem + 2.25vw, 3.5rem);
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.04em;
    margin-top: 1.4815%;
}
@media (max-width:767px) {
    .sectionSubTitle {
        line-height: 140%;
    }
}

::-webkit-scrollbar {
    width: 10px;
    /* height: 12px; */
}
::-webkit-scrollbar-thumb {
    background-color: rgba(16, 54, 120, 0.25);
    border-radius: 200px;
    /* border-right: 2px solid transparent; */
    border: 4px solid transparent;
    background-clip: padding-box;
}
::-webkit-scrollbar-track {
    background-color: #f0f1f2;
}
