footer {
    padding-top: 8vh;
}

.p-footer__kyoto {
    position: relative;
    background-image: url(../images/footer-kyoto.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 35vh;
    p {
        font-family: "Noto Serif JP", serif;
        font-size: 3rem;
        text-align: center;
        color: #fff;
        line-height: 1.5;
        height: 130px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 99;
        span {
            font-size: 2rem;
            display: block;
        }
    }
    img {
        height: 35vh;
        overflow: hidden;
    }
}
.p-kyoto__btn {
    font-family: "Noto Serif JP", serif;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15%;
    margin: auto;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    background: none;
    a {
        color: #fff;
        display: block;
        position: relative;
    }
    a::after {
        position: absolute;
        right: -1rem;
        bottom: -1.5rem;
        margin: auto;
        content: "";
        display: block;
        background: url(https://www.rakuten.ne.jp/gold/lululu-gift/images/footer/kyoto-arrow.png) no-repeat center
            center / contain;
        height: 30px;
        width: 70px;
    }
}
.p-kyoto__btn:hover {
    background: #356167;
    transition: all 0.5s;
    a::after {
        right: -1.5rem;
        transition: all 0.5s;
    }
}
.p-footer__mail img {
    border: 1px solid #111;
    border-radius: 10px;
    max-width: 600px;
    margin-top: 1rem;
}
.p-footer__infoList {
    display: flex;
    gap: 1px;
    background: #fff;
    color: #fff;
}

.p-footer__item {
    position: relative;
    width: calc((100% - 2px) / 3);
    background: #356167;
    span {
        font-size: 1.2rem;
        display: block;
    }
    a {
        font-size: 1.8rem;
        color: #fff;
        display: block;
        padding: 2.5rem 3rem;
    }

    a::after {
        display: block;
        position: absolute;
        top: 0;
        right: 4rem;
        bottom: 0;
        margin: auto;
        content: "";
        background: url(../images/footer-arrow.png);
        width: 13px;
        height: 13px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 99;
    }
}
.p-footer__item:hover a::after {
    right: 3rem;
    transition: all 0.3s;
}
.p-footer__evidence {
    background: #ededed;
    padding: 40px 0;
    > div {
        margin: 0 auto;
        max-width: 1200px;
        display: flex;
        align-items: center;
        gap: 5%;
    }
}
.p-footer__evidence__left {
    width: 45%;
}
.p-footer__evidence__right {
    width: 50%;
    p {
        margin-top: 1rem;
        color: #333;
        font-size: 1.2rem;
    }
}
.p-footer__evidence__title {
    color: #356167;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    span {
        display: block;
        position: relative;
        width: 320px;
        margin: 0 auto;
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 0.5rem;
        &::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: -2.5rem;
            margin: auto;
            display: block;
            content: "";
            width: 2.5rem;
            height: 1px;
            background: #356167;
        }
        &::after {
            position: absolute;
            top: 0;
            bottom: 0;
            right: -2.5rem;
            margin: auto;
            display: block;
            content: "";
            width: 2.5rem;
            height: 1px;
            background: #356167;
        }
    }
}
.p-footer__common {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 0;
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: center;
}
.p-footer__common__left {
    width: 25%;
    display: grid;
    place-items: center;
    img {
        width: 120px;
    }
}
.p-footer__common__right {
    width: 70%;
}
.p-footer__mail {
    font-size: 14px;
    font-weight: 600;
    color: #356167;
}
.p-footer__menu {
    display: flex;
    margin-top: 2rem;
    dl {
        display: block;
        width: 28%;
    }
    dt {
        color: #356167;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }
    dd {
        font-size: 1.2rem;
        line-height: 2;
    }
}
.copyright {
    font-size: 10px;
    max-width: 100%;
    text-align: center;
}
@media screen and (max-width: 820px) {
    .p-footer__evidence {
        padding: 3rem 0;
        > div {
            display: block;
        }
        p {
            display: none;
        }
    }
    .p-footer__infoList {
        display: grid;
        gap: 1px;
        background: #fff;
        color: #fff;
    }
    .p-footer__evidence__right,
    .p-footer__evidence__left {
        width: 90%;
        margin: 0 auto;
    }
    .p-kyoto__btn {
        width: 60px;
        height: 60px;

        font-size: 1.2rem;

        a::after {
            height: 30px;
            width: 50px;
        }
    }
    .p-footer__item {
        position: relative;
        width: 100%;
        background: #356167;
        a {
            padding: 1.5rem;
        }
        a::after {
            right: 2rem;
        }
        span {
            display: inline-block;
            padding-left: 2rem;
        }
    }
    .p-footer__evidence__title {
        margin-top: 2rem;
        span {
            font-size: 1.6rem;
        }
    }
    .p-footer__evidence__right {
        p {
            margin-top: 1rem;
            color: #356167;
            font-size: 1.2rem;
        }
    }
    .p-footer__common {
        margin: 0 auto;

        padding: 40px 0;
        display: block;
    }
    .p-footer__common__left {
        display: none;
    }
    .p-footer__common__right {
        width: 90%;
        margin: 0 auto;
    }
    .p-footer__mail img {
        text-align: center;
    }
    .p-footer__menu {
        flex-wrap: wrap;
        gap: 2rem 1rem;
        dl {
            width: calc((100% - 1rem) / 2);
        }
        dt {
            font-size: 1.6rem;
        }
    }
}
