@charset "UTF-8";

.mainvisual {
    margin-bottom: 20px;
}

.mainvisual img {
    width: 100%;
    margin: 0 auto;
}

.mainvisual .spvisual_img {
    display: none;
}

.company {
    margin: auto;
    height: 400px;
    background-image: url(../images/company_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.company .left {
    margin-top: 70px;
    width: 450px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.company .left h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 45px;
}

.company .left p {
    font-size: 21px;
    width: 350px;
    margin: auto;
    text-align: left;
    margin-bottom: 5px;
}


.company .left button {
    width: 350px;
    height: 70px;
    font-size: 21px;
    background-color: #fff;
    font-weight: bold;
    border: 1px solid #333;
    transition: ease 0.5s;
    box-shadow: none;
    color: #333;
    cursor: pointer;
}

.company .left button:hover {
    color: #0085CA;
    transition: ease 0.5s;
    box-shadow: 6px 6px 4px 1px rgba(0, 0, 0, 0.4);
}

.company .left button a {
    text-decoration: none;
    color: #333;
    display: block;
}

.company .left button a:hover {
    color: #0085CA;
}

.company .right {
    margin-top: 23px;
}

.performance {
    margin: auto;
    height: 400px;
    background-image: url(../images/Performance_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.performance .left {
    margin-top: 70px;
    width: 450px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.performance .left h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 45px;
}

.performance .left p {
    font-size: 21px;
    width: 350px;
    margin: auto;
    text-align: left;
    margin-bottom: 5px;
}


.performance .left button {
    width: 350px;
    height: 70px;
    font-size: 21px;
    background-color: #fff;
    font-weight: bold;
    border: 1px solid #333;
    transition: ease 0.5s;
    box-shadow: none;
    color: #333;
    cursor: pointer;

}

.performance .left button:hover {
    color: #0085CA;
    transition: ease 0.5s;
    box-shadow: 6px 6px 4px 1px rgba(0, 0, 0, 0.4);
}

.performance .left button a {
    text-decoration: none;
    color: #333;
    display: block;
}

.performance .left button a:hover {
    color: #0085CA;
}

.performance .right {
    margin-top: 23px;
}

.information {
    margin: auto;
    height: 400px;
    background-image: url(../images/information_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
    padding-top: 20px;
}

.information h2 {
    font-size: 32px;
    font-weight: bold;
    width: 250px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.info_flex {
    display: flex;
    justify-content: space-evenly;
}

.info_flex li {
    width: 280px;
    height: 280px;
    margin: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.info_flex li a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.info_flex li a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}


.info_flex li:hover a {
    transform: scale(1.1);
}

.info_flex li:hover a img {
    transform: scale(1.2);
}

.news {
    margin: auto;
    height: 400px;
    background-image: url(../images/news_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
    padding-top: 20px;
}

.news h2 {
    font-size: 32px;
    font-weight: bold;
    width: 250px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.news ul {
    color: #000;
}

.news ul li {
    border-bottom: 2px solid #000;
    font-weight: bold;
    margin-bottom: 15px;
}

.news ul li span {
    font-weight: normal;
    padding-left: 6em;
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn2 {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn3 {
    animation-name: fadeIn;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn4 {
    animation-name: fadeIn;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media screen and (max-width:680px) {

    .mainvisual img {
        width: 100%;
        height: auto;
    }


    .mainvisual .pcvisual_img {
        display: none;
    }

    .mainvisual .spvisual_img {
        display: block;
        width: 100%;
    }

    .company {
        height: auto;
        padding: 30px 0;
    }

    .company .left {
        width: auto;
        height: auto;
        margin-top: 0px;
    }

    .company .left h2 {
        margin-top: 0px;
    }

    .company .left button {
        width: 200px;
    }

    .performance {
        height: auto;
        padding: 30px 0;
    }

    .performance .left {
        width: auto;
        height: auto;
        margin-top: 0px;
    }

    .performance .left h2 {
        margin-top: 0px;
    }

    .performance .left button {
        width: 200px;
    }

    .right {
        display: none;
    }


    .information {
        height: auto;
        width: auto;
        padding-bottom: 20px;
    }

    .info_flex {
        display: block;
    }



    .info_flex li {
        width: auto;
        margin: 25px 55px;
        position: static;
        display: block;
    }

    .info_flex li a img {
        position: static;
        width: 100%;
        height: auto;
    }

    .news ul li {
        padding-left: 10px;
        width: 300px;
        margin-left: 35px;
    }

    .news ul li span {
        padding-left: 0em;
        display: block;
    }




}