header {
    width: auto;
    height: auto;
    justify-content: center;
}

header h1 {
    font-size: 16px;
    margin: 0;
}

header p {
    font-size: 0.8em;
    margin: 0;
}
footer p {
    font-size: 0.8em;
    margin: 0;
}

main {
    margin: 0 auto;
    padding: 0 5%;
    justify-content: center;
    align-items: center;
}

.lp-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.wrap,
.footer-in,
#footer-in {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 !important;
    box-sizing: border-box;
}

.c-btn {
    background-color: #ef5350;
    color: #fff;
}

.footer-bottom-content {
    margin-bottom: 200px;
}

.post_title {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header,
footer {
    background: rgba(17, 56, 92, 1);
    color: white;
    padding: 1em;
    text-align: center;
}
footer{
    margin-bottom:150px;
}

nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 10px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2em;
}

.article-list {
    margin-top: 2em;
}

.article {
    background: white;
    margin-bottom: 1.5em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.article h2 {
    margin-top: 0;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    font-size: 10px;
}

.article h2 a {
    color: inherit;
    text-decoration: none;
}

.article h2 a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table tr:nth-of-type(2n+1) {
    background-color: #f4f5f7;
}

strong {
    font-weight: bolder;
}

img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.st-catgroup {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.st-catid-ad {
    font-size: 13px;
    line-height: 1.5em;
    display: inline-block;
    word-break: break-word;
    padding: 6px 8px;
    margin-top: 5px;
    border-radius: 2px;
    text-decoration: none;
    background: #fafafa;
    color: #999;
    display: inline-flex;
}
.ranking_container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ranking_container img.lp-image {
  display: block;
  width: 100%;
  height: auto;
}

.ranking_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 6px;
  max-width: 450px;
  box-sizing: border-box;
  width: 90%;
  font-weight: bold;
}

article h2{
    background-color: rgba(17, 56, 92, 1);
    color: white;
    font-weight: bold;
    padding:15px 10px;
    font-size: 18px;
    margin:30px 0 20px 0;
}
article h3{
    border-bottom: rgba(17, 56, 92, 1) solid 5px;
    font-weight: bold;
    padding:15px 10px;
    font-size: 16px;
    margin:20px 0 10px 0;
}
article p{
    line-break: strict;
    line-height: 30px;
    font-size: 16px;
    padding:0 10px;
    margin:0 0 24px 0;
}
article table{
    font-size: 14px;
}
article table ul{
    padding-left:20px;
}
.tategaki {
  writing-mode: vertical-rl;     /* vertical-rl | vertical-lr */
  text-orientation: mixed;       /* 句読点や英数字の処理を日本語向けに */
  line-break: strict;            /* 禁則強め（日本語向け） */
  justify-content: center;  /* 縦方向（inline軸＝上下）を中央 */
  align-items: center;       /* 横方向（block軸＝左右）を中央 */
  text-align: center;        /* 行内のインライン要素の位置も中央に */
  padding:10px;
}
.wp-block-list{
    border:#7e7d7d solid 1px;
    padding:20px;
    margin:10px 0;
}
.wp-block-list li{
  list-style: none;   /* 点（番号）を消す */
  padding-left: 0;    /* 左の余白も消す（必要に応じて） */
  margin-left: 0;     /* ブラウザ既定のマージンもリセットしたい時 */
}
.cta-bottom {
    margin-top: 12px;
    margin-bottom: 500px;
    padding: 24px 0 6px;
}
/* --- CTA --- */
.cta {
    display: block;
    width: 90%;
    border: none;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    margin-bottom:20px;
    padding: 10px 5%;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 0 0 var(--red-dark);
    cursor: pointer
}

.cta .icon {
    margin-right: .5em;
    vertical-align: -2px
}

.cta:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 0 var(--red-dark)
}
:root {
    --red: #e53935;
    --red-dark: #c62828;
    --ink: #111;
    --line: #e8e8eb;
}
.banner{
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFF;
    width: 100%;
    text-align: center;
}
.banner p{
    margin:0;
}