/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    color: #333;
}

.inner {
    
    margin: 0 auto;
}
a:hover {
    opacity: 0.6;
}

/* 画像を中央に配置 */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.mv {
    position: relative;
}
.mv a {
    position: absolute;
    width: 100%;
    padding: 0 4%;
    bottom: -6%;
}
.service {
    position: relative;
}
.service a {
    position: absolute;
    width: 100%;
    padding: 0 4%;
    bottom: 3.5%;
}
.flow {
    position: relative;
}
.flow a {
    position: absolute;
    width: 100%;
    padding: 0 4%;
    bottom: 1.5%;
}
.achievements a {
    display: block;
    margin: 0 4%;
}

/* Footer */
footer {
    text-align: center;
}

footer p {
    margin: 32px 0 24px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    padding: 0 24px;
    border-right: 1px solid #D9D9D9;
}
.footer-links li:last-child a {
    border: 0
}


