<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* -----------------------------------------
page.css
各ページ用css
----------------------------------------- */

.sectionTitle {
    position: relative;
    padding: 0 0 20px 0.3em;
    margin-bottom: 40px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.3em;
}

.sectionTitle.small {
    font-size: 25px;
}



.sectionTitle:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    margin: 0 auto;
    background-color: #da4009;
}

@media screen and (max-width: 767px){
    .sectionTitle {
        padding: 0 0 12px;
        margin-bottom: 25px;
        font-size: 24px;
        letter-spacing: 0;
    }
    .sectionTitle.small {
        font-size: 20px;
    }
}


.explanation {
    max-width: 880px;
    margin: 30px auto;
    background-color: #eee;
    padding: 20px 25px;
}
.explanation img {
    float: left;
    margin: 0 15px 0 0;
}
@media screen and (max-width: 500px){
    .explanation {
        padding: 15px;
    }
    .explanation img {
        float: none;
        display: block;
        margin: 0 auto 10px;
    }
}

.uploadStep {
    margin: 30px 0 40px 3%;
    overflow: hidden;
}
.uploadStep li {
    position: relative;
    float: left;
    width: 30%;
    margin: 0 3.33% 30px 0;
    text-align: center;
}
.uploadStep p {
    font-weight: bold;
}
.uploadStep .img {
    position: relative;
    margin-top: 5px;
}
.uploadStep li .img:after {
    content: "";
    position: absolute;
    top: 0;
    right: -9%;
    bottom: 0;
    height: 0;
    margin: auto 0;
    border-left: 18px solid #b1b1b1;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}
.uploadStep li:last-child .img:after {
    display: none;
}
@media screen and (max-width: 767px){
    .uploadStep {
        margin: 20px 0 10px 5%;
    }
    .uploadStep li {
        width: 40%;
        margin: 0 10% 20px 0;
    }
    .uploadStep li .img:after {
        right: -15%;
    }
}
@media screen and (max-width: 480px){
    .uploadStep {
        margin: 20px 0 10px;
    }
    .uploadStep li {
        float: none;
        width: auto;
        margin: 0 0 40px;
    }
    .uploadStep li:last-child {
        margin-bottom: 20px;
    }
    .uploadStep li .img:after {
        top: auto;
        left: 0;
        right: 0;
        bottom: -28px;
        width: 0;
        margin: 0 auto;
        border-top: 18px solid #b1b1b1;
        border-left: 22px solid transparent;
        border-right: 22px solid transparent;
        border-bottom: none;
    }
}
</pre></body></html>