@charset "utf-8";

/***********************************/
.main_area {}

.main_area video {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

/*600px以上*/
@media (min-width: 600px) {
    .main_area video {
        object-fit: cover;
        height: 44vw;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/****about*******************************/
.about p {}

/*600px以上*/
@media (min-width: 600px) {
    .about p {
        text-align: center;
    }
}

/*900px以上*/
@media (min-width: 900px) {}


/****link_list*******************************/
.link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.link_list li {
    padding: 1rem;
    width: 100%;
}

.link_list li:not(:last-child) {
    border-bottom: dotted 2px #ccc;
}

.link_list li a {}

.link_list dl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem 0;
}

.link_list dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link_list dt .img {
    width: 36px;
    text-align: center;
}


.link_list dd {
    text-align: center;
}

.link_list dd .img {
    width: 100%;
    max-width: 250px;
    margin: 0 0 1em;
}

.link_list dd .img img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*600px以上*/
@media (min-width: 600px) {
    .link_list li {
        padding: 1em;
        width: 31%;
    }

    .link_list li:not(:last-child) {
        border-bottom: unset;
        border-right: dotted 2px #ccc;
    }

}

/*900px以上*/
@media (min-width: 900px) {}

/****recruit*******************************/
.recruit {}

.recruit .flex_area {
    margin: 0 0 3rem;
}

.recruit .img_area {
    width: 70%;
    margin: 0 auto 1rem;
    max-width: 200px;
}

.recruit .text_area {
    text-align: center;
}

/*600px以上*/
@media (min-width: 600px) {
    .recruit .flex_area {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .recruit .img_area {
        width: 30%;
        margin: 0;
        max-width: 200px;
        padding: 0 1rem;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/**ban_area*********************************/
.ban_area {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {}