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

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.9;
}

main {
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
}

/* -----header----- */
.header::before {
    content: '';
    display: block;
    height: 30px;
    background: linear-gradient(90deg, #ff8f7a, #1f5397);
}

.header_container {
    margin: 10px 5%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.header_content {
    font-size: 2rem;
}

.header_content a {
    display: block;
}

.header_content:hover {
    opacity: 0.7;
}

.header_content img {
    width: 100px;
}

@media screen and (max-width:400px) {
    .header_container {
        gap: 10px;
        margin: 5px 3%;
    }

    .header_content img {
        width: 60px;
    }

    .header_content a {
        font-size: 1.6rem;
    }
}

/* -----title----- */
.title {
    margin: 70px 0 50px;
}

.title h2 {
    font-size: 4rem;
    font-weight: 700;
}

.title p {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 20px;
}

@media screen and (max-width:1000px) {
    .title {
        margin: 40px 0 0;
    }

    .title h2 {
        font-size: 3.2rem;
    }

    .title p {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-top: 20px;
    }
}

@media screen and (max-width:400px) {
    .title {
        margin: 20px 0 0;
    }
    
    .title h2 {
        font-size: 2.4rem;
    }
    
    .title p {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-top: 10px;
    }
}

/* -----footer----- */
.footer {
    border-top: solid #EEEEEE 0.8px;
}

.footer_inner {
    max-width: 1000px;
    margin: 30px auto 0;
}

.copyright {
    font-size: 1.4rem;
}

.footer_inner p {
    font-size: 2rem;
    text-align: center;
    margin: 20px auto;
}

.footer_ineer a {
    /* cursor: pointer; */
    display: block;
    width: 150px;
    padding: 10px 0;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width:1000px) {
    .footer {
        margin: 30px 3% 0;
    }

    .footer_ineer {
        margin: 0;
    }
}

@media screen and (max-width:400px) {
    .copyright {
        font-size: 1.2rem;
    }
    
    .footer_inner p {
        font-size: 1.4rem;
    }
    
    .footer_ineer a {
        display: block;
        font-size: 1.4rem;
    }
}</pre></body></html>