@charset "UTF-8";

#container a {
    color: #ff5900;
}
#container a:hover {
    text-decoration: none;
}

.section-main {
    width: 100%;
    min-width: 1200px;
    height: 500px;
    max-height: 500px;
    background: url("/ja/mottogo/img/main_pc.jpg") no-repeat center center / cover;
}
.section-main .pcOnly {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}
.section-main .pcOnly img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
@media screen and (max-width: 896px){
    .section-main {
        width: 100%;
        min-width: inherit;
        height: inherit;
        max-height: inherit;
        background: none;
    }
}

/* APP */
.section-app-contents {
    background: #000;
    padding: 20px;
}
.section-app-contents > div {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.section-app-contents > div > div,
.section-app-contents .section-app-text {
    margin: 0 10px;
}
.section-app-contents .section-app-text {
    color: #FFF;
}
.section-app-contents .section-app-text li:first-child {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 0 .4rem;
}
.section-app-contents .section-app-text li:last-child {
    line-height: 1.5;
}
.section-app-contents .section-app-logo img {
    width: 100px;
}
.section-app-contents .section-app-link {
    display: flex;
}
.section-app-contents .section-app-link li {
    display: flex;
    background: #FFF;
    margin: 0 10px;
    padding: 15px;
}
.section-app-contents .section-app-link .section-app-qr {
    width: 70px;
    margin: 0 15px 0 0;
}
.section-app-contents .section-app-link .section-app-qr img {
    width: 100%;
}
.section-app-contents .section-app-link p {
    line-height: 1.4;
    padding: 0 0 .4em;
}
.section-app-contents .section-app-link .section-app-banner img {
    height: 46px;
}
@media screen and (max-width: 896px){
    .section-app-contents {
        padding: 6vw 4vw;
    }
    .section-app-contents > div {
        width: inherit;
        display: block;
        margin: 0;
    }
    .section-app-contents > div > div {
        margin: 0;
    }
    .section-app-contents .section-app-logo {
        text-align: center;
        padding: 0 0 4vw;
    }
    .section-app-contents .section-app-logo img {
        width: 20vw;
    }
    .section-app-contents .section-app-text li:first-child {
        font-size: 6vw;
        text-align: center;
        padding: 0 0 2vw;
    }
    .section-app-contents .section-app-text li:last-child {
        display: none;
    }
    .section-app-contents .section-app-link {
        justify-content: center;
    }
    .section-app-contents .section-app-link li {
        display: block;
        background: none;
        margin: 0 2vw;
        padding: 0;
    }
    .section-app-contents .section-app-link .section-app-qr {
        display: none;
    }
    .section-app-contents .section-app-link p {
        display: none;
    }
    .section-app-contents .section-app-link .section-app-banner img {
        height: 12vw;
    }
}


/* コンテンツ */
.section-bg01 {
    background: #f5f5f5;
}

.section-title01 {
    text-align: center;
    padding: 0 0 50px;
}
.section-title02 {
    font-size: 40px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.section-title02 span {
    background: linear-gradient(transparent 70%, #d4f1fc 70%);
}
.section-text01 {
    font-size: 20px;
    text-align: center;
    padding: 1.2em 0 1.4em;
}
.section-text01 span {
    display: block;
    font-size: 16px;
    padding: .1em 0 0;
}
@media screen and (max-width: 896px){
    .section-title01 {
        padding: 0 0 4vw;
    }
    .section-title02 {
        font-size: 6.6vw;
    }
    .section-title02 span {
        background: linear-gradient(transparent 70%, #d4f1fc 70%);
    }
    .section-text01 {
        font-size: 4vw;
        text-align: left;
        padding: 4vw 0;
    }
    .section-text01 span {
        font-size: 3vw;
    }
}

.section01 {
    width: 1200px;
    margin: 0 auto;
    padding: 100px 0 80px;
}
.section01 .section-list01 {
    display: flex;
    justify-content: space-between;
}
.section01 .section-list01 li {
    width: 224px;
    padding: 20px 0 0;
    text-align: center;
}
.section01 .section-list01 li img {
    width: 100%;
}
.section01 .section-list01 li span {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    padding: .4em 0 0;
}
@media screen and (max-width: 896px){
    .section01 {
        width: inherit;
        margin: 0;
        padding: 10vw 4vw 8vw;
    }
    .section01 .section-list01 {
        flex-wrap: wrap;
    }
    .section01 .section-list01 li {
        width: 48%;
        padding: 5vw 0 0;
    }
    .section01 .section-list01 li span {
        font-size: 3.5vw;
        padding: 1vw 0 0;
    }
}

.section01-02 {
    width: 1200px;
    margin: 0 auto;
    border-top: 2px #CCC solid;
    padding: 60px 0 95px;
}
.section01-02 .section-img01 {
    margin: -10px 0 0;
}
.section01-02 .section-img02 {
    text-align: right;
    padding: 10px 0 0;
}
@media screen and (max-width: 896px){
    .section01-02 {
        width: inherit;
        margin: 0 4vw;
        padding: 8vw 0 12vw;
    }
    .section01-02 .section-img01 {
        margin: -4vw 0 0;
    }
    .section01-02 .section-img02 {
        padding: 2vw 0 0;
    }
    .section01-02 .section-img02 img {
        width: 50vw;
    }
}

.section02 {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section02 .section-img02 {
    padding: 20px 0 0;
}
@media screen and (max-width: 896px){
    .section02 {
        width: inherit;
        margin: 0 4vw;
        padding: 10vw 0 12vw;
    }
    .section02 .section-img02 {
        padding: 4vw 0 0;
    }
}

.section02-02 {
    width: 1200px;
    margin: 0 auto;
    border-top: 2px #CCC solid;
    padding: 60px 0 95px;
}
@media screen and (max-width: 896px){
    .section02-02 {
        width: inherit;
        margin: 0 4vw;
        padding: 8vw 0 12vw;
    }
}

.section03 {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section03 > div {
    border-left: 2px #CCC solid;
    border-right: 2px #CCC solid;
    border-bottom: 2px #CCC solid;
    border-radius: 0 0 20px 20px;
    padding: 35px 50px 50px;
}
.section03 > h3 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    background: #CCC;
    border-radius: 20px 20px 0 0;
    padding: .5em;
}
.section03 > div > h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: bold;
}
.section03 > div > p {
    font-size: 20px;
    line-height: 1.4;
    padding: .4em 0;
}
.section03 > div > ul {
    color: #b21440;
    font-size: 16px;
    line-height: 1.4;
}
.section03 > div > ul li {
    padding-left: 1em;
    text-indent: -1em;
}
.section03 .section-img01 {
    padding: 20px 0 0;
}
.section03 .section-img01 img {
    width: 100%;
}
@media screen and (max-width: 896px){
    .section03 {
        width: inherit;
        margin: 0 4vw;
        padding: 10vw 0;
    }
    .section03 > div {
        padding: 4vw;
    }
    .section03 > h3 {
        font-size: 6vw;
        padding: 2vw;
    }
    .section03 > div > h4 {
        font-size: 5vw;
    }
    .section03 > div > p {
        font-size: 4vw;
        padding: 1vw 0;
    }
    .section03 > div > ul {
        font-size: 3vw;
    }
    .section03 .section-img01 {
        padding: 2vw 0 0;
    }
}

.section04 {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section04 .section-img01 {
    padding: 10px 0 0;
}
@media screen and (max-width: 896px){
    .section04 {
        width: inherit;
        margin: 0 4vw;
        padding: 10vw 0;
    }
    .section04 .section-img01 {
        padding: 2vw 0 0;
    }
}

.section-caution {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.section-caution ul li {
    font-size: 16px;
    text-indent: -1em;
    padding-left: 1em;
}
@media screen and (max-width: 896px){
    .section-caution {
        width: inherit;
        margin: 0;
        padding: 10vw 4vw;
    }
    .section-caution ul li {
        font-size: 3vw;
        line-height: 1.5;
    }
}

