@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    margin: 0;
    zoom: 1 !important;
}
* {
    box-sizing: border-box;
}
img {
    width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.global-inner {
    max-width: 1116px;
    padding: 0;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .global-inner {
        width: calc(100% - 40px);
    }
}



/*** SECTION TITLE ***/
.sec-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.sec-ttl__badge {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    background: var(--colorgreen);
    border-radius: 40px;
    padding: 5px 18px 8px;
    display: inline-block;
}
.sec-ttl__heading {
    color: var(--colorblue);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .sec-ttl {
        gap: 12px;
    }
    .sec-ttl__badge {
        font-size: 16px;
    }
    .sec-ttl__heading {
        font-size: 22px;
    }
}