<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

section {
    margin: 0;
}

/* メインタイトル */
#main-title {
    margin-top: 60px;
    text-align: center;
}

#main-title h2 {
    position: relative;
    z-index: 99;
}
#main-title h2,
#main-title h2 span {
    color: var(--blue);
}

#main-title .pankuz {
    margin-top: 50px;
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 99;
}
#main-title .pankuz a {
    color: #fff;
    font-size: 12px;
}
#main-title .pankuz a::after {
    background: none;
}
#main-title .pankuz img {
    max-width: 0.85em;
    margin-right: 3px;
    transition : all 0.5s;
}
#main-title .pankuz a:hover img {
    opacity: 0.5;
}

/* メインコンテンツ */
#main-contents {
    max-width: 750px;
    margin: auto;
}

#main-contents h3 {
    margin: 70px 0 20px;
    color: var(--blue);
    font-size: 23px;
    font-weight: 500;
}

#main-contents p {
    text-align: justify;
}

#main-contents ul.list {
    margin-top: 30px;
}

@container (max-width: 1024px) {
#main-contents {
    width: 90%;
}
}

@container (max-width: 667px) {
#main-title .pankuz {
    display: none;
}

#main-contents {
    width: 100%;
}

#main-title,
#main-title .pankuz {
    margin-top: 30px;
}

#main-contents h3 {
    margin: 45px 0 15px;
    font-size: 19px;
}
}</pre></body></html>