/* header 背景色 */
.header-background-color {
    background-color: #defdf5;
}

/* header 画像サイズ */
.header-image-size {
    height: 50px;
}

/* header マージン */
.header-margin {
    height: 90px;
}



/* タイトルスタイル */
.title-style {
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* リンクスタイル */
.link-style {
    text-decoration: none;
}
.link-style-rss {
    text-decoration: none;
    color: #007bff; /* primary */
}
.link-style-rss:visited {
    color: #6c757d; /* secondary */
}

/* ボタンサイズ */
.button-size-fixed {
    width: 110px;
}

/* 文字サイズ */
.text-size-medium {
    font-size: 14px; /* 中 */
}
.text-size-small {
    font-size: 11px; /* 小 */
}



/* footer 固定 */
html {
    height: 100%;
}
body {
    height: 100%;
}
footer {
    position: sticky;
    top: 100vh;
}
