/*フッターデコレーション設定*/
.site-footer {
    background-color: #072e4c;
    color: #fff;
}

.footer-address{
    text-align: center;
    width: 100%;
}

.footer-wrap{
    display: flex;
    width:100%;
    margin: 0 auto;
    padding:20px 0;
}

.footer-box{
    width:100%;
    padding:20px;
}

.footer-wrap ul li a{
    color: #fff !important;
}

.footer-box ul li{
    color: #fff;
    list-style: none;
}

.site-footer ul li a{
    text-decoration: none;
}

.site-footer ul li a:hover{
    text-decoration: underline;
}


/* フッターのカスタムメニューのインデントをリセット */
/* footer.php内の wp_nav_menu で出力されるリスト（ul要素）が対象 */
.site-footer .footer-box ul {
    /* リストのインデントを打ち消す */
    margin-left: 0;
    padding-left: 0; 
    
    /* リストマーカー（・や数字）も非表示にする */
    list-style: none;
}

/* メニューのリンク文字が中央揃えなどで表示崩れしないように調整 */
.site-footer .footer-box ul li {
    /* 項目間の余白を調整したい場合 */
    margin-bottom: 5px; 
}

.footer-logo{
    margin-top: 20px;
}

.footer-logo img{
    margin:0px auto;
    width: 200px;
}

.footer-contact span{
    font-size: 20px;
    font-weight: bold;
}

.social-icons i {
    font-size: 40px;         /* アイコンのサイズを調整 */
    color: #ffffff;          /* アイコンの色を白に（フッターの背景に合わせる） */
    margin-right: 20px;      /* アイコン間の間隔 */
    transition: color 0.3s;  /* ホバー時のアニメーション */
}

/* ホバー時の設定 */
@media screen and (max-width: 768px) {
    .col-full{
        margin: 0;
        padding:0;
    }

    .footer-wrap {
        /* デフォルトは row (横並び) */
        flex-direction: column; 
    }

    .footer-box{
        padding:0px;
    }

    .footer-box ul {
        margin:0px;
    }

    .site-footer .footer-box ul li {
        margin-bottom: 0;
        display: block;
        border-top: 1px solid #fff;
    }

    .site-footer .footer-box ul li a{
        display: block;
        padding:20px 10px;
    }

    .site-footer .footer-box2 ul li:last-child {
        border-bottom: 1px solid #fff;
    }

    .site-footer{
        padding: 0;
    }

    .footer-wrap{
        padding:0;
    }

    .footer-contact{
        text-align: center;
        padding:20px 10px 0px 0px;
    }

    .site-footer .contact-info-column {
        order: 999; /* 最も大きな数字で一番下に移動させる */
    }
    
    /* メニューカラムは order: 1; などにして上部に維持 */
    .site-footer .footer-box:not(.contact-info-column) {
        order: 1; 
    }
    
    .social-icons {
        text-align: center;
        padding-bottom: 20px;
    }
     /* Storefrontハンドヘルドフッターバーのアカウントボタンとかごボタンを非表示にする */
    .storefront-handheld-footer-bar ul li:nth-child(1), /* アカウントボタン */
    .storefront-handheld-footer-bar ul li:nth-child(3) { /* カート（かご）ボタン */
        display: none;
    }

    /* 検索ボタンの位置を中央にする（オプション） */
    .storefront-handheld-footer-bar ul li.search .site-search{
        bottom:-5em;
    }

    .storefront-handheld-footer-bar ul li>a{
        position:static;
    }

    .footer-address{
        padding-bottom: 5rem;
    }
    
}