/*
 * fk-Info 基本スタイル（最小限）。
 * サイト側で装飾する場合は設定タブでオフにできる。
 */

.fkinfo-top .info-list {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5em 1em;
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fkinfo-top .info-date {
    white-space: nowrap;
    font-size: 0.9em;
    opacity: 0.75;
}

.fkinfo-top .info-link {
    text-decoration: underline;
}

.fkinfo-top .info-content {
    width: 100%;
    line-height: 1.8;
}

.fkinfo-footer-notice {
    text-align: center;
    padding: 0.6em 1em;
}

.fkinfo-footer-notice a {
    text-decoration: underline;
}

/* 固定フッターリンク: スマホのみ・1画面スクロール後に下からスライド表示
   （表示切替クラス fkinfo-is-visible は front.js が付与） */
.fkinfo-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--fkinfo-fl-bg, #ffffff);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(110%);
    transition: transform 0.3s ease;
    padding-bottom: env(safe-area-inset-bottom);
}

.fkinfo-fixed-footer.fkinfo-is-visible {
    transform: translateY(0);
}

/* PC(768px以上)では出さない */
@media (min-width: 768px) {
    .fkinfo-fixed-footer {
        display: none;
    }
}

.fkinfo-footer-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fkinfo-footer-links .fixed-footer-li {
    flex: 1 1 0;
    margin: 0;
}

.fkinfo-footer-links .fixed-footer-li + .fixed-footer-li {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.fkinfo-footer-links .fixed-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    font-size: 12px;
    line-height: 1.2;
    text-decoration: none;
    color: var(--fkinfo-fl-color, #333333);
}

.fkinfo-footer-links .fkinfo-icon {
    width: 22px;
    height: 22px;
}
