@charset "UTF-8";

body {
    background-color: #fff;
    color: #222;
}

header {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
    text-align: center;
}

header img {
    height: 32px;
}

main {
    width: 640px;
    margin: 0 auto;
    padding: 24px;
}

main a {
    color: #006a94;
    text-decoration: underline;
}

main h2 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

main p {
    line-height: 150%;
    text-indent: 1rem;
}

main p + p {
    margin-top: 16px;
}

main dl {
    margin: 24px 0;
}

main dl div {
    font-size: 0.8rem;
    color: #555;
    padding: 8px;
    background-color: #f7f7f7;
}

main dl dt {
    margin-bottom: 8px;
}

main dl dt, main dl dd {
    text-align: center;
}

main dl img {
    width: 80%;
}

main dl dt.img-w img {
    max-height: 200px;
    max-width: 560px;
    width: auto;
}

main dl dt.img-w img + img {
    margin-left: 8px;
}


.contact {
    font-size: 0.9rem;
    margin-top: 24px;
}

.contact h3 {
    font-weight: bold;
    margin-bottom: 12px;
}

.contact a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #006a94;
    border-radius: 4px;
    color: #006a94;
    text-decoration: none;
}

.contact a:hover, .contact a:active {
    color: white;
    background-color: #006a94;
}

.contact ul li + li {
    margin-top: 8px;
}

footer {
    width: 100%;
    text-align: center;
    background-color: #f7f7f7;
    padding: 24px 0;
    color: #666;
    font-size: 0.8rem;
}

main .ad {
    margin-top: 16px;
}

@media screen and (max-width: 640px) {
    main {
        width: 100%;
    }

    main p {
        font-size: 0.9rem;
    }

    main dl img {
        width: 100%;
    }

    main dl dt.img-w img {
        max-height: 140px;
        max-width: 326px;
        width: auto;
    }
}