/* レスポンシブ対応のページスタイル */

/* 共通スタイル */
body {
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-sp,
.logo-pc {
    display: block;
    margin: 0 auto;
}

.container .header-text {
    font-size: 1.6rem;
    margin-top: 1.5rem;
}

.download .download-container .download-up {
    width: 100%;
    margin: 1rem;
    margin-left: 0;
    margin-right: 0;
}

.three-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.three-features .three-features-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.three-features .three-features-title .feature {
    font-size: 1.7rem;
    color: #009bf3;
}

.three-features .three-features-title .pointpass-three-features {
    font-size: 2.7rem
}

.three-features .image-list {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.three-features .image-list .image-item {
    margin: 0;
}

.three-features .image-list .image-item img {
    width: 100%;
}


.three-features .features-container {
    background-color: #fbfbfb;
    border: solid 1px #dddddd;
    border-radius: 2rem;
}

.three-features .features-container .feature-title {
    font-size: 2.5rem;
    color: #009bf3;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.three-features .features-container .feature-text {
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.three-features .features-container .feature-img {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.howto .howto-title {
    font-size: 2.2rem;
    background-color: #009bf3;
    color: #ffffff;
    padding: 1rem;
}

.howto .howto-item {
    background-color: #fbfbfb;
    border: solid 1px #dddddd;
    border-radius: 30px;
}

.faq {
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.faq .faq-title {
    background-color: #009bf3;
    color: #ffffff;
    font-size: 2.2rem;
    padding: 1rem;
}

.faq .faq-list {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    gap: 0;

}

.faq .faq-list .faq-list-item .faq-list-dd p {
    width: 100%;
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

.notes {
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
    align-items: center;
}

.notes .notes-title {
    font-size: 2.2rem;
    margin-top: 3rem;
    background-color: #009bf3;
    color: #ffffff;
    padding: 1rem;
}

.notes .notes-list>li {
    width: 100%;
    list-style: disc;
    font-size: 1.4rem;
    text-align: left;
}

.notes .notes-list .notes-asterisk-list li::marker {
    content: "※";
    font-size: 1.4rem;
}

.notes .notes-list .notes-asterisk-list {
    width: 100%;
    margin-left: 1.4rem;
}

.notes .notes-list .notes-asterisk-list>li {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 0.2rem;
}

.container footer {
    background-color: #005180;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
    align-items: center;
}

.container footer .footer-list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.container footer .footer-list li {
    text-align: left;
    padding-left: 2rem;
    margin: 0.5rem;
}

.container footer .footer-list li a {
    font-size: 1.4rem;
    color: #fafafa;
    margin-left: 0;
}

.container footer p {
    width: 100%;
    font-size: 1.4rem;
    color: #fafafa;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* スマホ用画像 (767px以下) */
@media screen and (max-width: 767px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    html {
        font-size: 55%;
    }

    .container,
    .container * {
        width: 100%;
        margin: 0;
    }

    .download .download-container {
        background-color: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download .download-container .download-up {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .download .download-container .download-up img {
        width: 90%;
    }

    .download .download-container .download-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download .download-container .download-content img {
        width: 24rem;
        /*192px*/
    }

    .download .download-text {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .three-features {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .three-features .image-list .image-item {
        flex: 1;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .three-features .image-list .image-item img {
        height: 100%;
        margin: 0;
    }

    .three-features .features-container {
        border-radius: 1.7rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }

    .howto .howto-title {
        padding: 1rem;
        margin-bottom: 0.7rem;
    }

    .howto .howto-list {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: column;
        gap: 0;
    }

    .howto .howto-list .howto-item {
        height: auto;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
        border-radius: 1.7rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: column;
    }

    .howto .howto-list .howto-item img {
        margin-top: 10px;
        height: 200px;
        width: auto;
        margin-left: 30px;
        margin-right: 20px;
    }

    .howto .howto-list .howto-item .howto-item-text {
        margin-top: 2rem;
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .howto .howto-list .howto-item .howto-item-text .howto-item-text-dt {
        width: 100%;
        font-size: 2.5rem;
        color: #009bf3;
    }

    .howto .howto-item .howto-item-text .howto-item-text-dd {
        width: 100%;
        font-size: 1.6rem;
        margin-top: 10px;
    }

    .faq .faq-title {
        margin-bottom: 5px;
    }

    .faq .faq-list .faq-list-item {
        margin-top: 5px;
        margin-bottom: 5px;
        border: solid 1px #eeeeee;
        background-image: url("../images/sp/pointpass_faq_Qbg.png");
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 1.7rem;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .faq .faq-list .faq-list-item .faq-list-dt {
        width: 100%;
        margin-top: 1.9rem;
        font-size: 1.9rem;
    }

    .faq .faq-list .faq-list-dd {
        width: 90%;
        font-size: 1.6rem;
        word-break: break-all;
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 5%;
        padding-right: 5%;
        margin-top: 1rem;
        margin-bottom: 2rem;
        border-radius: 1.2rem;
        border: solid 1px #eeeeee;
        background-image: url("../images/sp/pointpass_faq_Abg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        text-align: center;
    }

    .notes .notes-list {
        width: 85.5%;
        margin-left: 4%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .notes .notes-list>li {
        width: 100%;
        font-size: 1.3rem;
    }

    .notes .notes-list .notes-asterisk-list li::marker {
        font-size: 1.15rem;
    }

    .notes .notes-list .notes-asterisk-list {
        margin-left: 1.15rem;
    }

    .notes .notes-list .notes-asterisk-list>li {
        width: 100%;
        font-size: 1.15rem;
    }

    .container footer {
        width: 100%;
    }

}

/* PC用画像 (768px以上) */
@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

    html {
        font-size: 120%;
    }

    .container,
    .container * {
        width: 1080px;
        margin: 0 auto;
    }

    .download .download-container {
        background-color: #009bf3;
        width: calc(100% - 100px);
        min-height: 200px;
        border-radius: 40px;
        padding: 1.5rem;
        margin-top: 40px;
        ;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download .download-container .download-up img {
        width: 80%;
    }

    .download .download-container .download-content {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .download .download-container .download-content .download-left {
        width: 49%;
    }

    .download .download-container .download-content .download-left img {
        width: 18.75rem;
    }

    .download .download-container .download-content .download-center {
        width: 2%;
    }

    .download .download-container .download-content .download-center .vertical-line {
        width: 2px;
        height: 12rem;
        background-color: rgba(58, 193, 255, 0.792);
        margin: 0 auto;
    }

    .download .download-container .download-content .download-right {
        width: 49%;
    }

    .download .download-container .download-content .download-right img {
        width: 12rem;
    }

    .download .download-text {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .three-features .image-list .image-item {
        width: 31%;
    }

    .three-features .features-container {
        border-radius: 1.7rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .three-features .features-container .feature-img {
        width: 90%;
    }

    .howto .howto-title {
        padding: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .howto .howto-list {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-flow: column;
    }

    .howto .howto-list .howto-item {
        height: 350px;
        background-color: #ffffff;
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .howto .howto-list .howto-item img {
        height: 100%;
        width: auto;
        margin-left: 30px;
        margin-right: 20px;
    }

    .howto .howto-list .howto-item .howto-item-text {
        margin-top: 50px;
        margin-left: 20px;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }

    .howto .howto-list .howto-item .howto-item-text .howto-item-text-dt {
        width: 100%;
        font-size: 1.6rem;
        color: #009bf3;
    }

    .howto .howto-list .howto-item .howto-item-text .howto-item-text-dd {
        width: 100%;
        font-size: 1.4rem;
    }

    .faq .faq-title {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .faq .faq-list .faq-list-item {
        width: calc(100% - 100px);
        margin-top: 1rem;
        margin-bottom: 1rem;
        border: solid 1px #dddddd;
        background-image: url("../images/pc/pointpass_faq_Qbg.png");
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 1.5rem;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .faq .faq-list .faq-list-dd {
        width: 90%;
        font-size: 1.4rem;
        word-break: break-all;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 12.5%;
        padding-right: 12.5%;
        margin-top: 30px;
        margin-bottom: 40px;
        border-radius: 20px;
        border: solid 1px #dddddd;
        background-image: url("../images/pc/pointpass_faq_Abg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
    }

    .faq .faq-list .faq-list-item .faq-list-dt {
        width: 100%;
        margin-top: 50px;
        font-size: 1.9rem;
    }

    .notes .notes-list {
        width: 86%;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        list-style-position: inside;
    }

    .notes .notes-list>li {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

}

/* ホバー効果 */
.title:hover,
.section-title:hover {
    color: #009bf3;
    transition: color 0.3s ease;
}