@charset "UTF-8";

footer {
    width: 100%;
    padding: 40px 0px;
    background: #F88E74;
}

.footer-flame {
    display: flex;
    justify-content: space-around;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 95%;
    height: auto;
    text-align: center;
}

.footer-contact-list-tel {
    font-size: 3.5rem;
    font-weight: bold;
}

.footer-contact-list-tel::before {
    content: "";
    background: url(../images/common/footer_tel.svg) no-repeat left;
    display: inline-block;
    width: 30px;
    height: 25px;
}

.footer-contact-list-tel span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 60%;
    margin-left: 30px;
    color: #fff;
}

.footer-contact-list-tel a {
    color: #fff;
}

.footer-contact-login {
    display: flex;
    margin-top: 20px;
}

.footer-contact-login li {
    margin-right: 10px;
    margin-bottom: 15px;
}

.footer-button-green {
    display: block;
    text-decoration: none;
    width: 130px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 8px 0px;
    color: #77C7C2;
}

.footer-button-orange {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    border: 2px solid #fff;
    background: #FD992D;
    border-radius: 25px;
    padding: 8px 0px;
    color: #fff;
}

.footer-btn-order span {
    color: #fff;
}

.footer-btn-order:hover span {
    color:#fff;
}

.footer-btn-order:before {
    background: #FFB769;
}

.footer-contact-faq {
    text-align: center;
    margin-top: 20px;
    margin-left: -30px;
    padding-left: 20px;
}

.footer-contact-faq::before {
    content: "";
    background: url(../images/common/icon_faq_sp.svg) no-repeat left;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: bottom;
}

.footer-contact-faq a {
    color: #fff;
}

.footer-member p,
.footer-option p {
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    pointer-events: none;
}

.footer-member ul li,
.footer-option ul li {
    line-height: 340%;
}

.footer-member ul li a,
.footer-option ul li a {
    color: #fff;
}

.footer-cloudmail-sub {
    margin-left: 20px;
}

.footer-info {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.footer-info li {
    border-right: 1px solid #fff;
    padding: 0 30px;
    color: #fff;
}

.footer-info li:last-child {
    border-right: none;
}

.footer-info li a {
    color: #fff;
}

.accordion-area {
    display: flex;
}

.accordion-area > div:first-child {
    margin-right: 100px;
}



@media screen and (max-width: 768px) {
    .footer-flame {
        display: block;
        justify-content: unset;
        width: 100%;
        margin: auto;
    }

    .footer-logo {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        margin: auto;
        text-align: center;
        display: table;
    }

    .footer-contact-list li:last-child {
        text-align: center;
    }

    .footer-contact-list-tel span {
        margin-left: 0;
    }

    .footer-member p,
    .footer-option p {
        font-size: 1.6rem;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        pointer-events: all;
    }

    .footer-info {
        display: block;
        justify-content: unset;
    }

    .footer-info li {
        border-right: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-info li:last-child {
        margin-bottom: 0;
    }

    .footer-info li span {
        display: block;
    }


    /*アコーディオン全体*/
    .accordion-area{
        list-style: none;
        width: 100%;
        display: unset;
    }

    .accordion-area > div:first-child {
        margin-right: 0px;
        margin-top: 40px;
    }

    .accordion-area .footer-accordion {
        border-top: 1px solid #fff;
    }

    .accordion-area .footer-accordion:last-child {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    /*アコーディオンタイトル*/
    .footer-sp-link {
        position: relative;/*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-weight: normal;
        transition: all .5s ease;
    }

    /*アイコンの＋と×*/
    .footer-sp-link::before,
    .footer-sp-link::after{
        position: absolute;
        content:'';
        width: 15px;
        height: 2px;
        background-color: #fff;
        
    }
    .footer-sp-link::before{
        top:48%;
        right: 15px;
        transform: rotate(0deg);
        
    }
    .footer-sp-link::after{    
        top:48%;
        right: 15px;
        transform: rotate(90deg);

    }
    /*　closeというクラスがついたら形状変化　*/
    .footer-sp-link.close::before{
        transform: rotate(45deg);
    }

    .footer-sp-link.close::after{
        transform: rotate(-45deg);
    }

    /*アコーディオンで現れるエリア*/
    .link-box {
        display: none;/*はじめは非表示*/
        margin:0 3% 3% 3%;
        padding: 3%;
    }

}