@charset "UTF-8";
/*-----------------------------*/
/*サービス終了ページ CSS*/
/*-----------------------------*/
 .inner {
    max-width: 800px;
    margin: auto;
}
.logo {
    max-width: 500px;
    margin: 100px auto 50px auto;
    text-align: center;
}
.logo img {
    width: 60%;
}
.greeting {
    margin: 0 0 50px 0;
}
.corporate_link {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.corporate_link a {
    display: inline-block;
    min-width: 300px;
    padding: 10px 40px 10px 10px;
    margin: 10px 0 0 0;
    background: #2b245c url(../images/icon_arrow_right_w.svg) no-repeat center right 20px / 16px auto;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}
.corporate_link img {
    width: 120px;
}
.corporate_link a:hover {
    opacity: 0.6;
}
@media only screen and (max-width: 700px) {
    .logo img {
        width: 40%;
    }
}
