html {
    max-width: 100%;
    height: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    font-family: 'Gotham SSm A', 'Gotham SSm B', '-apple-system', 'BlinkMacSystemFont',
        'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Original Yu Gothic', 'Yu Gothic', 'YuGothic',
        'Meiryo', 'sans-serif';
    margin: 0;
    letter-spacing: 0.04em;
    color: #3b434b;
}

::-webkit-scrollbar {
    display: none;
}

h2 {
    margin: 28px 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.image {
    width: 100%;
    height: auto;
    vertical-align: top;
}


.hiraginoSans {
    font-family: Hiragino Sans;
}
.hiraginoKaku {
    font-family: Hiragino Kaku Gothic ProN;
}



.container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.block-item {
    position: relative;
}

.block-img {
    display: block;
    width: 100%;
    height: auto;
}

.block-link {
    position: absolute;
    bottom: 10px;
    right: 14px;
}

.cv-link1 {
    position: absolute;
    top: 32%;
}

.cv-link2 {
    position: absolute;
    bottom: 7%;
}

.cv-img {
    display: block;
    width: 95%;
    height: auto;
    margin: 0 auto;
}

.arrow-animation1 {
    animation-name:UpDown1;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

@keyframes UpDown1{
    0%{
    transform: translateY(0);
    }
    100%{
    transform: translateY(25px);
    }
}

.arrow-animation2 {
    animation-name:UpDown2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

@keyframes UpDown2{
    0%{
    transform: translateY(0);
    }
    100%{
    transform: translateY(-10px);
    }
}

.arrow1 {
    position: absolute;
    top: 20%;
    width: 100%;
}

.arrow2 {
    position: absolute;
    bottom: 1%;
    width: 100%;
}

.arrow-img1 {
    display: block;
    width: 65%;
    height: auto;
    margin: 0 auto;
}

.arrow-img2 {
    display: block;
    width: 92%;
    height: auto;
    margin: 0 auto;
}

.block-link a {
    color: #204AAE;
    font-size: 14px;
    font-weight: 400;
    font-family: 'AXIS Std','Hiragino Sans','sans-serif';
}

.fixed-wrap {
    position: fixed;
    bottom: 0;
    display: none;
    max-width: 580px;
    width: 95%;
    bottom: 15px;
    z-index: 5;
    margin: 0 10px;
}

footer {
    text-align: center;
    background: #3b424b;
    padding: 24px 24px 160px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 16px;
}

.footer-line {
    width: 200px;
    margin-bottom: 16px;
}

.footer-link {
    list-style: none;
    padding: 0;
    font-weight: bold;
    margin-bottom: 32px;
}

.footer-link li {
    margin-bottom: 4px;
}

.footer-link a {
    font-size: 12px;
    text-decoration: none;
    color: #95a0ac;
}

.footer-copyright {
    font-size: 10px;
    color: #95a0ac;
}

@media screen and (min-width: 500px) {
    .block-link a {
        font-size: 18px;
    }
}