@charset "utf-8";

/*----------------------------------------------------------------------
* common
--------------------------------------------------------------------- */
/* skip-link */
.skip-link {
    position: absolute;
    display: block;
    top: 0;
    left: -9999px;
    z-index: 20000;
    padding: 1rem;
    width: calc(100% - 2rem);
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    text-align: center;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}


/* outer */
.outer {
    position: relative;
    background-color: #ccf2d9;
    background-image: url(../img/body_bg.png);
    background-repeat: repeat;
    background-position: center top;
    background-attachment: fixed;
}
@media (max-width: 1280px) {
    .outer {
        background-image: none;
    }
}

.container {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2.3rem;
}


/* main
========================================= */
#main {
    background-color: #fff;
    border-radius: 3rem;
    padding: 2.8rem 2.2rem;
}


/* footer
========================================= */
footer {
    padding: 5rem 0 3rem;
}
footer .footer-gojiai {
    max-width: 44.6rem;
    margin: 0 auto 3rem;
}
footer .footer-panjo {
    max-width: 44.6rem;
    margin: 0 auto;
}
footer .footer-privacy {
    margin-top: 5rem;
    text-align: center;
}
footer .footer-privacy a {
    font-size: 2.2rem;
}


/*----------------------------------------------------------------------
* side
--------------------------------------------------------------------- */
.side-area {
    position: fixed;
    z-index: 100;
    top: 0;
    width: calc((100% - 750px) / 2);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.side-area.side-R {
    right: 0;
}
.side-area.side-L {
    left: 0;
}
@media (max-width: 1280px) {
    .side-area {
        display: none;
    }
}

.side-content {
    width: 100%;
    padding: 5rem 3rem;
    background-color: #ccf2d9;
}
.side-logo {
    max-width: 28rem;
    margin: 0 auto;
}