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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --text: #181818;
    --body: #fdfdfd;
    --background: #f4f6f5;
    --button: #4d4d4d;
    --border: #eaecea;
}
html {
    font-size: 10px;
    overflow-y: scroll;
}
body {
    background-color: var(--body);
    font-size: 1.6em;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover:not(.botton&gt;a) {
    opacity: .6;
}
img {
    width: 100%;
}
ul, dl {
    list-style-type: none;
}
.button {
    display: block;
    background: var(--button);
    color: #fff;
    letter-spacing: .15em;
    text-align: center;
    padding: 1.25em;
    width: 150px;
    border-radius: 999px;
}
.button:hover {
    opacity: .7;
}
h1, h2, h3, h5 {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}

/* header ----- */
body&gt;header {
    background: var(--background);
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 50px;
}
.header h1 {
    font-size: 1.5em;
    letter-spacing: .15em;
    font-weight: 600;
}
.header nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header nav ul li {
    font-size: .825em;
    letter-spacing: .15em;
}
#menu,
#menu+label,
.header nav ul li span {
    display: none;
}

/* main ----- */
main {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: 0 50px;
    margin: 100px auto;
}
main&gt;img {
    width: 70px;
    margin-bottom: 2em;
}
main&gt;p {
    font-size: 90%;
    line-height: 2;
    text-align: center;
    margin-bottom: 4em;
}
form {
    width: 100%;
}
table {
    width: 100%;
    background: var(--background);
    border-radius: 20px;
    border-collapse: collapse;
}
table th {
    text-align: left;
    padding: 1em 0 1em 1.5em;
    color: var(--button);
    font-size: 70%;
    font-weight: normal;
    line-height: 1.5;
    width: 23%;
}
table td {
    padding: 1em;
    width: 100%;
}
table input,
table textarea {
    outline: none;
    border: none;
    font-size: 90%;
    font-weight: normal;
    padding: 1em;
    background: var(--body);
    border-radius: 10px;
    width: 100%;
}
table textarea {
    resize: vertical;
    height: 10em;
    line-height: 1.5;
}
main div {
    display: flex;
    justify-content: center;
}
main div input {
    border: none;
    font-size: .825em;
    margin-top: 4em;
    display: block;
    background: var(--button);
    color: #fff;
    letter-spacing: .15em;
    text-align: center;
    padding: 1.25em;
    width: 180px;
    border-radius: 999px;
}
main div input:hover {
    opacity: .7;
}
span {
    display: inline-block;
}


/* footer ----- */
footer {
    background: var(--background);
    border-radius: 0 150px 0 0;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 70px 70px 30px 50px;
}
.footer&gt;div {
    display: flex;
    flex-flow: column;
    gap: 4em;
}
.footer&gt;div nav {
    display: flex;
    flex-flow: column;
    gap: 1.25em;
}
.footer&gt;div nav&gt;a,
.footer&gt;a p {
    letter-spacing: .1em;
}
.footer&gt;div small {
    letter-spacing: .1em;
}
.footer&gt;a {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: .375em;
}
.footer&gt;a img {
    width: 66px;
    border-radius: 999px;
}

@media (max-width:767px) {
    main {
        margin: 50px auto 100px;
        padding: 0 25px;
    }
    /* menu ----- */
    .meatball {
        display: inline-block;
        vertical-align: middle;
        color: var(--button);
        line-height: 1;
        width: .375em;
        height: .375em;
        background: var(--button);
        border-radius: 50%;
        box-shadow: -1.5em 0 0 0 var(--button), -.75em 0 0 0 var(--button)
    }
    #menu:checked + label span {
        opacity: .5;
    }
    #menu + label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: -24px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    .header nav {
        position: relative;
    }
    .header nav ul {
        display: none;
    }
    #menu:checked ~ ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        opacity: .8;
        position: absolute;
        top: 100%;
        right: 0;
        width: 150px;
        padding: 25px 0;
        z-index: 999;
    }
}

@media (max-width:440px) {
    .header {
        padding: 15px 25px;
    }
    .button {
        width: 100px;
    }
    .meatball {
        width: .25em;
        height: .25em;
    }
    #menu:checked ~ ul {
        width: 100px;
    }
}</pre></body></html>