:root {
    --font-base: "Noto Sans JP", sans-serif;
    --primary-color: #006DAA;
    --secondary-color: #EBFF00;
    --black-color: #333;
    --gray-color: #848590;
    --background-color: #F7FDFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-base);
    font-weight: normal;
    font-style: normal;
    color: var(--black-color);
}

@media only screen and (min-width: 992px) {
    .hidden-pc {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .hidden-mobile {
        display: none;
    }
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    padding-bottom: 100px;
}

/* Start CSS FOR min width 1200*/
@media (min-width: 1200px) {
    .container {
        max-width: 1040px;
    }
}

/* Start CSS FOR min width 992px*/
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

/* Start CSS FOR min width 768px*/
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

/* Start CSS FOR min width 576px*/
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

/* Start CSS FOR min width 575px*/
@media (max-width: 575px) {
    .container {
        max-width: 100%;
    }
}

.fw-md {
    font-weight: 500;
}

.fw-sb {
    font-weight: 600;
}

.section-tag {
    font-size: 18px;
    font-weight: 500;
    /* width: fit-content; */
    /* margin-top: -19px;
    margin-left: auto;
    margin-right: auto; */
    height: 46px;
    padding: 5px 25px 0px 25px;
    height: 46px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    left: 50%;
    transform: translate(-50%, -60px);
    white-space: nowrap;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-content {
    margin-top: 16px;
    padding: 15px 20px 15px 20px;
}

.high-light {
    color: var(--primary-color);
}

.d-none {
    display: none;
}

.v-hidden {
    visibility: hidden;
}

/* Mobile */
@media only screen and (max-width: 991px) { 
    .container {
        padding-top: 46px;
        padding-bottom: 70px;
    }

    .section-tag {
        font-size: 16px;
        height: 43px;
        transform: translate(-50%, -65px);
    }
    
    .section-title {
        font-size: 26px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-content {
        margin-top: 0;
        padding: 20px 15px 20px 15px;
    }
}

/* Special */
.main-logo {
    width: 134px;
    height: 49px;
}

@media only screen and (min-width: 992px) {
    footer .container {
        padding-top: 0 !important;
    }
}