* {
    margin: 0;
    padding: 0;
    font-family: "Yu Gothic";
}

html {
    overflow-x: hidden;
}

body {
}

.mobile {
    display: none !important;
}

.pc {
    display: block !important;
}

@media (max-width: 768px) {
    .mobile {
        display: block !important;
    }

    .pc {
        display: none !important;
    }
}

.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}

.title-wrapper {
    position: relative;
    height: 70vh;
    width: 100%;
    border-bottom: solid 1px #000000;
    background-color: rgb(0, 0, 0);
}

.title-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-wrapper-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
}
.title-contents {
    margin-top: 5rem;
}

.title-text {
    font: normal normal bold 36px Yu Gothic;
    letter-spacing: 0px;
    color: rgb(255, 255, 255);
}

.subtitle-text {
    font: normal normal bold 24px Yu Gothic;
    letter-spacing: 0px;
    color: rgb(255, 255, 255);
    margin-left: 20px;
}
@media (max-width: 768px) {
    .title-wrapper {
        position: relative;
        height: 30vh;
    }

    .title-wrapper-bottom {
        left: 0px;
        height: 50%;
        flex-direction: column;
    }

    .title-text {
        font: normal normal bold 24px Yu Gothic;
        text-align: center;
    }
    .subtitle-text {
        font: normal normal bold 18px Yu Gothic;
        margin-left: 0px;
        text-align: center;
    }
}

.contents {
    position: relative;
    background-color: white;
}


.border-line {
    border: solid 1px #000000;
    width: 60%;
    margin: auto;
}

.background-img {
    position: absolute;
    top: 0;
    background-color: rgb(0, 0, 0);
    height: 100vh;
    width: 100%;
    opacity: 0.5;
}

.invert {
    filter: invert(100);
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale_effect {
    display: inline-block;
    transition: all .3s ease 0s;
    text-decoration: none;
}

.scale_effect :hover {
    cursor: pointer;
    transform: scale(1.1);
}


.container {
    position: relative;
    box-sizing: border-box;
    min-height: 100vh;
}

.intro-wrapper {
    margin-top: 3rem;
    width: 100%;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    width: 80%;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}

.button019 a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 30px;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight:bold;
    text-decoration: none;
    color: inherit;
}

.button019 a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    font-weight:bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.button019 a:hover {
    background: #343434;
    color: #FFF;
}

.button019 a:hover:after {
    right: 1.4rem;
}

/* List Contents */

.list-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.list-contents {
    width: 50vw;
    margin: 0 auto;
    display: block;
    background-color: #323846;
    color: white;
    border: none;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    padding: 1.5rem;
    border-radius: 1rem;
}

.list-contents ol {
    margin: 1.5rem;
    margin-left: 2rem;
}

.list-contents li {
    margin: 1.5rem;
    margin-left: 2rem;
}

.list-contents ul {
    margin: 1.5rem;
    margin-left: 2rem;
}

@media (max-width: 768px) {
    .list-contents {
        width: 80%;
    }
    
    .list-contents ol {
        margin: 0;
        margin-top: 8px;
        margin-left: 8px;
    }
    
    .list-contents li {
        margin: 0;
        margin-top: 8px;
    }
    .list-contents ul {
        margin: 0;
        margin-top: 8px;
    }
}

.detail-contents-wrapper {
    position: relative;
    width: 100%;
    font-size:18px;
    text-align: center;
}
.detail-contents-top {
    margin-top: 50px;
    width: 100%;
}
.detail-contents-top p {

    margin-top: 50px;
    font-weight:bold;
    font-size:22px;
}
.detail-contents-bottom {
    width: 80%;
    text-align: center;
    font-weight:bold;
    font-size:18px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.detail-contents-bottom ul {
    text-align: left !important;
}

@media (max-width: 768px) {
    .detail-contents-top p {
        font-size: 18px;
    }

    .detail-contents-bottom {
        width: 80%;
        text-align: center;
        font-weight: bold;
        font-size: 16px;
        margin: auto;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .intro {
        font-size: 16px;
    }
}