.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
}

.header-band {
    background-color: #1D74F5; /* 背景色 */
    height: 141px; /* 帯の高さ */
    width: 100%; /* 横幅を画面いっぱいに */
    display: flex; /* 子要素を中央に配置するためにフレックスボックスを使用 */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
}

.header-band-text {
    color: #FFF; /* 白文字 */
    font-family: "Noto Sans JP", sans-serif; /* フォント指定 */
    font-size: 36px; /* フォントサイズ */
    font-style: normal; /* フォントスタイル */
    font-weight: 600; /* 太さ */
    line-height: var(--line-height-16_8, 17px); /* 行の高さ */
    flex-shrink: 0; /* 要素の縮小を防ぐ */
    text-align: left; /* 左揃え */
    width: 1204px; /* 幅 */
}

.article-card {
    width: calc(50% - 24px); /* 2列表示にするために50% - gapの半分 */
    max-width: 528px;
    height: 575px;
    border-radius: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.articles-wrapper {
    display: flex;
    flex-wrap: wrap; /* 2つ並んだら折り返す */
    gap: 48px;
    width: 100%;
    max-width: 1104px;
    margin: 103px auto;
    justify-content: left; /* 中央揃え */
}

.article-thumbnail {
    width: 100%; /* カード幅に合わせる */
    height: auto; /* 縦横比を維持 */
    border-radius: 3px; /* 少し角を丸く */
}

.article-title {
    width: 442.5px;
    height: 40.5px;
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    margin: 39px 49.5px 7.5px 36px; /* 上下の余白 */
    color: #000;
    font-weight: 800;
}

.article-description {
    font-family: "Noto Sans JP", sans-serif;
    width: 453px;
    height: 57px;
    font-size: 18px;
    color: #757575;
    font-weight: 400;
}

.download-button {
    display: block;
    width: 213px;
    height: 54px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 54px;
    background-color: #1D74F5;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    border-radius: 48px;
    text-align: center;
    cursor: pointer;
    align-self: center;
    margin-top: auto;
    margin-bottom: 32px;
}

.download-button:hover {
    background: #0F5BD7; /* ホバー時の背景色 */
    color: #ffffff;
}

@media screen and (max-width:768px){
.articles-wrapper-mobile {
    display: flex; /*flexboxで縦並び */
    width: 100%;
    flex-direction: column;
    /* 中央揃え */
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.article-card {
    width: 87%;
    max-width: 528px;
    height: 470px;
    border-radius: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.article-title-mobile {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    margin: 20px 20px;
    margin-bottom: 0;
    color: #000;
    font-weight: 800;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.article-description-mobile {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #757575;
    font-weight: 400;
    margin: 0px 20px;
    margin-top: 10px;
    width: calc(100% - 40px);
}

.header-band-text {
    color: var(--bakuraku-jp-white, var(--color-white-solid, #FFF));
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--font-size-32, 32px);
    font-style: normal;
    font-weight: var(--font-weight-600, 600);
    line-height: var(--line-height-48, 48px); /* 150% */
    letter-spacing: var(--letter-spacing-1_6, 1.6px);
    flex-shrink: 0; /* 要素の縮小を防ぐ */
    text-align: left; /* 左揃え */
    width: 87%; /* 幅 */
    box-sizing: border-box;
}
}

/* Single Whitepaper equal width layout */
.post-content-sidebar-wrapper {
    display: flex;
    width: 100%;
    gap: 32px;
}
.post-content-wrapper {
    flex: 1;
}
.sidebar {
    flex: 1;
}
body.single-whitepaper .sidebar {
    max-width: none !important;
    padding-right: 0 !important;
}

.single-post-container {
    padding-bottom: 60px !important;
}

