html {
    scroll-behavior: smooth;
}
* {
    color: #333;
    text-align: justify;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
body {
    padding-top: 80px;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.6;
}
.invisible {
    display: none;
}

@keyframes appear {
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
}
header {
    width: 100vw;
    height: 80px;
    padding-top: 16px;
    padding-right: calc(50vw - 384px);
    padding-left: calc(50vw - 384px);
    padding-bottom: 16px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    animation: appear 1s ease;
    box-shadow: 0px 2px 2px #ddd;
}
header .logo {
    width: 160px;
    height: 48px;
    background-image: url(../img/logo_2.png);
    background-size: contain;
    background-position: left center;
    flex-grow: 10;
}
header .link {
    font-size: 16px;
    width: 96px;
    text-align: right;
    font-weight: 700;
}
header .link a {
    line-height: 48px;
}
footer {
    width: 100vw;
    height: 64px;
    padding-top: 16px;
    padding-right: calc(50vw - 384px);
    padding-left: calc(50vw - 384px);
    background: #666;
    animation: appear 1s ease;
}
footer .copyright {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 32px;
}
.main {
    width: 100vw;
    padding-right: calc(50vw - 384px);
    padding-left: calc(50vw - 384px);
}
.container {
    width: 100%;
    margin-bottom: 120px;
    scroll-margin-top: 88px;
    animation: appear 1s ease;
}
.container:first-child {
    margin-bottom: 0;
}
h2 {
    margin-bottom: 16px;
}
.text {
    padding: 0 8px;
}
.cards {
    width: 100%;
    display: flex;
    height: 480px;
}
.card {
    width: 240px;
    height: 480px;
    margin: 0 8px;
}
.card .image {
    width: 100%;
    height: 240px;
}
.card .image img {
    width: calc(100% - 16px);
    margin: auto;
    border-radius: 8px;
}
.card .name {
    font-size: 18px;
    font-weight: 700;
}
.card .description p {
    font-size: 14px;
}
table {
    width: 100%;
    padding: 8px;
}
tr {
    height: 32px;
}
th {
    text-align: left;
    width: 96px;
}
svg#logo {
    width: 400px;
    margin: 0 auto;
}
.path-1 {
    fill: none;
    stroke: #333;
    stroke-width: 6;
    stroke-miterlimit: 10;
}
.path-1.filled {
    fill: #333;
    animation-name: fill;
    animation-duration: 500ms;
    animation-timing-function: ease-in;
}
@keyframes fill{
    0%{
        fill: #fff;
    }
    100%{
        fill: #333;
    }
}
@media screen and (max-width: 768px) {
    body {
        padding-top: 64px;
    }
    header {
        padding: 8px 16px;
        height: 64px;
    }
    header .link {
        display: none;
    }
    header .logo {
        width: 160px;
        height: 48px;
    }
    .main {
        width: 100vw;
        padding-right: 16px;
        padding-left: 16px;
    }
    .container {
        margin-bottom: 64px;
        scroll-margin-top: 72px;
    }
    .kv {
        height: 320px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .cards {
        width: 100%;
        display: block;
        height: auto;
        padding: 0 8px;
    }
    .card {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-bottom: 64px;
    }
    .card .image {
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 8px;
    }
    .card .image img {
        width: 80%;
        margin: auto;
        display: inline-block;
    }
}