@charset "utf-8";
/* CSS Document */
body {
    font-family: 'Noto Serif JP', serif;
    background-color: rgba(240,240,230,1.00);
    font-size: 1.4rem;
}
.bgcolor {
    background-color: rgba(240,240,230,1.00);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.toppage {
    height: 100vh;
    background-image: url("../img/top1.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toppage h1 {
    text-align: center;
    margin:  0 auto;
    background-color: rgba(255,255,255,0.8);
    width: 30rem;
    border-radius: 5px;
    font-size: 3rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    padding:  1.5rem 0 1.8rem 0;
    animation-name: fadeInAnime;
    animation-duration: 5s;
    animation-timing-function: linear;
}
@media (max-width: 768px) {
        .toppage h1 {
            font-size: 8vw;
        }
}
@keyframes fadeInAnime{
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: rgba(255,255,255,1.00);
}
.about h3 {
    text-align: center;
}
.about-l {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-r ul {
    list-style: none;
    padding: 0;
}
.about dt {
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
}
.about dd {
    text-align: left;
    font-size: 1.2rem;
}
@media (max-width: 991.98px) {
    .about-r {
        text-align: center;
    }
    .about dt {
        text-align: center;
    }
    .about dd {
        text-align: center;
        margin-bottom: 1rem;
    }
}
.about h4 {
    border: solid 1px rgba(22,22,22,.8);
    padding: .7rem;
    margin:  0 auto;
    width: 12rem;
    text-align: center;
}

.pic {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.50);
}
.pic::before {
    background: url("../img/back1.jpg") no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}
.underline {
    background: linear-gradient(rgba(255,255,255,0) 50%, rgba(255,190,0,0.60));
}

.joboffer {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: rgba(255,255,255,1.00);
}
.joboffer-l {
    display: flex;
    justify-content: center;
    align-items: center;
}

.joboffer h3 {
    text-align: center;
}
.joboffer dt {
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
}
.joboffer dd {
    text-align: left;
    font-size: 1.2rem;
}
@media (max-width: 991.98px) {
    .joboffer dt {
        text-align: center;
    }
    .joboffer dd {
        text-align: center;
        margin-bottom: 1rem;
    }
}

footer {
    background-color: rgba(50,50,50,1.00);
    color: rgba(220,220,220,1.00);
    padding-top: 3rem;
    text-align: center;
    font-family:  Meiryo, "sans-serif";
}
footer .container {
    width: 60%;
}
@media (max-width: 991.98px) {
    footer .container {
        width: 95%;
    }
}
.footer-name {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-num {
    font-size: 1.2rem;
}

footer a {
    color: #FFF;
}
footer a:hover {
    color: rgba(247,255,204,1.00);
}

.copyright {
    color: rgba(180,180,180,1.00);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
}
