@charset "utf-8";
/*
Theme Name: IWASA KIKAKU
Theme URI: https://iwasa-kikaku.com/

フォント一覧：
font-family: 'Noto Sans JP', sans-serif;　（ゴシック）
font-family: 'Roboto', sans-serif;　（英文）
font-family: "Roboto Condensed", sans-serif;　（英文：細身）
font-family: "Great Vibes", cursive;　（筆記体）
font-family: "Zen Old Mincho", serif;　（明朝）
*/


/*-----------------------------------------------
　フッター
--------------------------------------------------*/
/*-- フッター内容 --*/
.footer__outer{
    position: relative;
    width: 100vw;
    min-width: 1000px;
    padding: 80px 0 60px;
    color: var(--text-color-w);
    background: var(--main-color1);
}
.footer__logo{
    width: 100vw;
    margin-bottom: 80px;
    text-align: center;
}
.footer__logo img{
    width: 300px;
}
.footer__list{
    width: 1000px;
    margin: 0 auto 60px;
}
.footer__list ul{
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer__list ul li{
    margin: 0 25px;
}
.footer__list ul li a{
    position: relative;
    display: block;
    padding: 5px 10px;
    font-size: var(--font-size-S);
    color: var(--text-color-w);
    letter-spacing: 0.2rem;
}
.footer__list ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:#fff;
    transition: all .3s ease-in-out;
    transform: scale(0, 1);
    transform-origin: center top;
}
.footer__list ul li a:hover::after {
    transform: scale(1, 1);
}
.footer__content{
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
    transition: all .3s ease-in-out;
}
.footer__content img{
    position: relative;
    width: 30px;
    z-index: 1;
}
.footer__content a{
    position: relative;
    display: inline-block;
    transition: all .3s ease-in-out;
}
.footer__content a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background:#000;
    transition: all .3s ease-in-out;
    transform: translateY(-50%) translateX(-50%) scale(0, 0);
    transform-origin: center center;
    border-radius: 50%;
}
.footer__content a:hover::after {
    transform: translateY(-50%) translateX(-50%) scale(1, 1);
}
.footer__content a:hover {
    filter: invert(100%);
}
.footer__ad{
    width: 1000px;
    margin: 0 auto 80px;
    font-size: var(--font-size-S);
    font-weight: 300;
    color: #fff;
    text-align: center;
}
.footer__ad a{
    color: #fff;
}
.footer__ad p{
    font-size: var(--font-size-M);
    line-height: 2.2;
}
.footer__copy{
    text-align: center;
    font-size: 1rem;
}
.footer__totop{
    position: absolute;
    top: 85px;
    right: 20vw;
    writing-mode: vertical-rl;
}
.footer__totop a{
    display: block;
    font-size: 1.2rem;
    color: var(--text-color-w);
    transition: all .3s ease-in-out;
}
.footer__totop::before,
.footer__totop::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 15%;
    width: 1px;
    background: #fff;
    transition: all .3s ease-in-out;
}
.footer__totop::before {
    height: 30px;
    transform: translateY(-50%);
}
.footer__totop::after {
    top: -31px;
    height: 8px;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: top center;
}
.footer__totop:hover::before{
    top: -40px;
}
.footer__totop:hover::after{
    top: -60px;
}
.footer__totop:hover::before{
    height: 50px;
}


/*-----------------------------------------------
　レスポンシブ（モバイル）
--------------------------------------------------*/
@media screen and (max-width: 468px) {

    .footer__outer{
        position: relative;
        width: 100vw;
        min-width: 100vw;
        padding: 60px 0 100px;
    }
    .footer__logo{
        margin-bottom: 60px;
    }
    .footer__logo img{
        width: 70%;
    }
    .footer__list{
        width: 90%;
        margin: 0 auto 60px;
    }
    .footer__list ul{
        display: block;
    }
    .footer__list ul li{
        width: 100%;
        margin: 25px 0;
        text-align: center;
    }
    .footer__list ul li:first-child{
        margin-top: 0;
    }
    .footer__list ul li a::after {
        transform: scale(1, 1);
    }
    .footer__content{
        margin-bottom: 40px;
    }
    .footer__ad{
        width: 90%;
        margin: 0 auto 50px;
    }
    .footer__totop{
        display: none;
    }

}