@charset "utf-8";
:root{
    --white: #ffffff;
    --black: #241613;
    --red-card: #BD3220;
    --gray-usui: #F9F9F9;
    --beige-matsuru: #E4CEBF;
    --gray-matsuru: #DED9D1;
    --green-matsuru: #628774;
    --beige-matsuru: #E4CEBF;
    --beige-media: #F3EEE4;
    --gray-access: #F2F2F2;
    --gray-about: #D6D6D6;
    --red-footer: #AC3131;
    --green-card: #5B8973;
    --gray-card: #DED9D0;
    --black-card: #272D32;
    --brown-card: #E2CABA;
    --brown2-card: #E6CDBD;
    --transparent: rgba(0,0,0,0);
    --bg-opacity: 0;
}

footer{
    width: 100%;
    background: var(--red-footer);
    overflow-x: hidden;

    .footer-sp{
        display: none;
    }

    .footer-pc{
        width: 100%;
        padding: 7rem 3.5% 6rem 0;
        background: var(--red-footer);
        display: flex;
        align-items: center;
        .rogo-corai{
            width: 36.4%;
            display: flex;
            justify-content: center;
            align-items: center;
            a{
                width: max(90px,24.73%);
                img{
                    width: 100%;
                    height:auto;
                }
            }
        }

        .footer-inner{
            width: 36.3%;
            display: flex;
            margin-left: auto;

            .footer-menu{
                width: max(104px,27.27%);
                margin: 0 1rem 0 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                flex-shrink: 0; 
                li{
                    width: 100%;
                    list-style: none;
                    padding-left: 0;
                    a{
                        display: block;
                        width: 100%;
                        line-height: 3.5rem;
                        white-space: nowrap;
                    }
                }
            }
    
            .insta{
                width: max(164px,72.73%);
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;
                position: relative;
                top: -0.5rem;
            }
        }
    }
}

@media screen and (max-width:767px){
    footer{
        padding: 4rem 0 2rem 0;
        display: block;

        .footer-pc{display: none;}

        .footer-sp{
            display: block;
            .footer-sp-inner{
                width: 100%;
                display: flex;

                .rogo-corai{
                    width: 55.45%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    a{
                        width: max(90px,24.73%);
                        img{
                            width: 100%;
                            height:auto;
                        }
                    }
                }
                .footer-menu{
                    width: 44.55%;
                    li{
                        width: fit-content;
                        list-style: none;
                        a{
                            display: block;
                            width: 100%;
                            line-height: 3.5rem;
                            white-space: nowrap;
                        }
                    }
                }
            }
            .insta{
                width: max(200px,22.73%);
                height: 100px;
                text-align: center;
                margin: 4rem auto;
                a{
                    display: block;
                    height: 78%;
                }
            }
        }
    }
}
