@charset "UTF-8";

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans jp-<uniquifier> {
    font-family: 'Noto Sans JP', sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

/* レスポンシブデザイン対応コード */
@media only screen and (min-width: 896px) {
    .main-pc-container {
        display: block !important;
    }

    .price01 {
        display: block !important;
    }

    .price02 {
        display: block !important;
    }

    .pc-inline {
        display: inline !important;
    }

    .main-sp-container {
        display: none !important;
    }

    .price01-sp {
        display: none !important;
    }

    .price02-sp {
        display: none !important;
    }

    .sp-inline {
        display: none !important;
    }

    .purpose-sp {
        display: none !important;
    }

    /* sectionライン */
    #section-under {
        display: none !important;
    }

    .style-sp {
        display: none !important;
    }
}

@media only screen and (max-width: 895px) {
    .hr-title {
        display: none !important;
    }

    .main-pc-container {
        display: none !important;
    }

    .price01 {
        display: none !important;
    }

    .price02 {
        display: none !important;
    }

    .pc-inline {
        display: none !important;
    }

    .main-sp-container {
        display: block !important;
    }

    .price01-sp {
        display: block !important;
    }

    .price02-sp {
        display: block !important;
    }

    .sp-inline {
        display: inline !important;
    }

    /* 目的　*/
    .purpose {
        display: none !important;
    }

    .purpose-sp {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .training-style {
        display: none !important;
    }

    .br-pc {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

.available {
    display: block;
}

.un-available {
    display: none;
}

.opacity-animation {
    opacity: 0;
    transition: opacity 1s;
    -webkit-animation: opacity-animation 1.1s 1 ease forwards;
    animation: opacity-animation 1.1s 1 ease forwards;
}

@-webkit-keyframes opacity-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

input[readonly] {
    pointer-events: none;
    background-color: yellowgreen;
}

.hidden-flag {
    visibility: hidden;
}

.hidden-flag__disable {
    display: none;
}

/* sectionライン */
#section-under {
    margin-top: 38px;
    margin-bottom: 17px;
}

/* おすすめ  目的　研修スタイル－－－－－－－－－－－－－－－－－－*/
.common-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 120px;
}

.common-container.recommend {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    width: 37.75%;
    margin: 0 auto;
}

.style.recommend {
    margin-top: 50px;
    margin-bottom: 20px;
}

/* PDF －－－－－－－－－－－－－－－－－－*/
.custom-button {
    display: inline-block;
    width: 900px;
    height: 88px;
    line-height: 88px;
    background: #fadfd0;
    border: none;
    font-size: 24px;
    color: black;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
    margin-bottom: 40px;
}

.custom-button:hover {
    opacity: 0.7;
}
