@charset "UTF-8";

/* CSS Document */
body {
    color: #333;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    margin: 0 auto;
    letter-spacing: .02rem;
    line-height: 1.5;
    font-feature-settings: "palt";
}

#wrapper {
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
    box-sizing: border-box;
}

img {
    vertical-align: top;
    max-width: 100%;
}

a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

a:hover {
    opacity: 0.8;
}

header {
    background: #00cdd3;
}

.header_inner {
    display: flex;
    max-width: 1360px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    margin: auto;
}

header img {
    height: 40px;
}

nav a {
    border: none;
    color: #fff;
}

main {
    max-width: 1360px;
    padding: 80px 40px;
    margin: auto;
}

footer {
    box-sizing: border-box;
    width: 100%;
    background: #fafafa;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

footer small {
    display: block;
    font-size: 10px;
    line-height: 1em;
}

h1 {
    font-size: 48px;
    line-height: 1.4;
    font-weight: normal;
    margin: 0 0 40px;
}

h2 {
    font-size: 30px;
    line-height: 1.4;
    padding-top: 40px;
    margin: 40px 0;
}

p,
ul li {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

@media screen and (max-width:767px) {
    .header_inner {
        padding: 15px 20px;
    }

    header img {
        height: 30px;
    }

    main {
        padding: 40px 20px;
    }

    h1 {
        font-size: 24px;
        margin: 0 0 20px;
    }

    h2 {
        font-size: 20px;
        line-height: 1.4;
        padding-top: 20px;
        margin: 20px 0;
    }

    p,
    ul li {
        font-size: 16px;
    }
}
