#hero{

    .message{
        position: absolute;
        width: 8em;
        height: 5em;
        top: 30%;
        right: 20%;
        font-size: clamp(0.8rem, calc(0.8rem + 1vw), 3rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.8;
        text-shadow: 0px 0px 8px black;
        padding: 0;
        text-align: left;

        @media screen and (max-width:600px) {
            right: 10%;
        }

        br{
            display: block;
        }
    }
}

#facilitys{
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin: 100px auto;

    @media screen and (max-width:600px) {
        &{
            margin: 60px auto;
        }
    }

    li{
        text-align: center;
        padding: 0 50px;

        @media screen and (max-width:600px) {
            &{
                padding: 0 15px;
            }
        }

        p{
            margin: 0 auto 20px;
            font-size: 15px;
            font-weight: 500;
            width: 10em;
            position: relative;

            @media screen and (max-width:480px) {
                &{
                    font-size: 13px;
                }
            }

            &::before{
                content: '';
                display: block;
                width: 1.5em;
                height: 1px;
                background-color: #000;
                transform: rotate(60deg);
                position: absolute;
                top: 10px;
                left: -15px;
            }

            &::after{
                content: '';
                display: block;
                width: 1.5em;
                height: 1px;
                background-color: #000;
                transform: rotate(305deg);
                position: absolute;
                top: 10px;
                right: -13px;
            }
        }
    
        img{
            width: 100%;
            height: auto;
            vertical-align: bottom;
            border-radius: 50%;
        }

        h2{
            font-size: 16px;
            font-weight: 700;
            margin: 10px 0 0;
            color: #333;

            @media screen and (max-width:480px) {
                &{
                    font-size: 14px;
                }
            }
        }
    }
}

#introductionVideo{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;

    @media screen and (max-width:700px) {
        &{
            flex-direction: column;
            padding: 50px 15%;
        }
    }

    li{
        width: 100%;

        @media screen and (max-width:700px) {
            margin: 0 0 30px;
        }

        iframe{
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
        }
    
        p{
            font-size: 13px;
            margin: 2px 0 0;
        }
    }

    
}