/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 14 2025 | 06:47:20 */
/* -------------------------------------- */
/* フッター全体 (共通) */
/* -------------------------------------- */
.footer {
    background-color: #0065b2; 
    color: #ffffff;
    padding: 30px 20px;
	margin-top:40px;
	font-family:'Zen Kaku Gothic New';
}

/* フッターのコンテナ (横並びを実現するFlexboxコンテナ) */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; 
}

/* -------------------------------------- */
/* 1. ロゴエリア (左側) */
/* -------------------------------------- */
.footer-logo-area {
    text-align: left; 
    margin-bottom: 20px; 
}

/* ロゴのリンク部分のスタイル (display: blockで画像の親要素全体をリンクにする) */
.footer-logo-link {
    display: block; /* imgの親要素全体がリンク領域になるように */
    margin-bottom: 5px;
    line-height: 0; /* 画像の下の余白をなくす */
}

/* ★画像ロゴ自体のスタイル★ */
.footer-logo-img {
    max-width: 200px; /* ロゴの最大幅を調整（必要に応じて変更） */
    height: auto;     /* 縦横比を維持 */
    display: block;   /* インライン要素が持つ下部の余白を削除 */
}

.footer-catchphrase {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}


/* -------------------------------------- */
/* 2. 中央コンテンツ (連絡先・ナビゲーションエリア) */
/* -------------------------------------- */
.footer-center-content {
    flex-grow: 1;
    margin-left: 30px; /* ロゴとの間隔（必要に応じて調整） */
    margin-right: 40px; /* コピーライトとの間隔 */
    margin-bottom: 20px; 
}

.footer-address {
    font-style: normal; /* <address>タグの斜体を解除 */
    font-size: 15px;
	font-weight: 400;
    line-height: 1.6;
}

.footer-address a {
    color: #ffffff;
	text-decoration: none;
}

/* -------------------------------------- */
/* 3. コピーライト (右側) */
/* -------------------------------------- */
.footer-copyright {
    margin-left: auto; 
    text-align: right; 
    white-space: nowrap; 
}

.footer-copyright small {
    display: block;
    font-style: normal; /* <address>タグの斜体を解除 */
    font-size: 15px;
	font-weight: 400;
    line-height: 1.6;
    white-space: nowrap; /* PC表示でコピーライトが改行されないように */
}

/* -------------------------------------- */
/* PC表示用 (1024px以上で横並び) */
/* -------------------------------------- */
@media screen and (min-width: 1024px) {
    .footer-logo-area,
    .footer-center-content,
    .footer-copyright {
        margin-bottom: 0; 
    }

    .footer-logo-area {
        flex-basis: auto; /* 幅を自動調整に戻すか、固定幅を設定 */
    }

    .footer-center-content {
        /* PC表示時のマージン調整 */
        margin-left: 30px; 
        margin-right: 40px; 
    }

    .footer-copyright {
        flex-basis: auto; 
    }
}

/* -------------------------------------- */
/* スマホ・タブレット表示用 (横並び解除) */
/* -------------------------------------- */
@media screen and (max-width: 1023px) {
    .footer-container {
        /* 縦に積み重ねる */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; /* 左寄せ */
    }

    .footer-center-content {
        /* スマホではマージンを解除し、幅いっぱいに */
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .footer-logo-area,
    .footer-copyright {
        width: 100%;
        text-align: left;
    }

    .footer-copyright {
        /* スマホでは一番下で左寄せ */
        margin-left: 0; 
        margin-top: 0; /* 上にスペース */
    }
}