@charset "UTF-8";


/* ====================
コラム内修正
==================== */
img {
    display: block;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
}

/* ====================
目次
==================== */
/* 目次全体 */
#ez-toc-container {
    width: 100%;
    /* 少し幅広に */
    margin: 10px auto 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 目次タイトル */
#ez-toc-container .ez-toc-title {
    font-size: 2rem;
    /* タイトル文字を大きく */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* 目次リスト */
#ez-toc-container nav ul.ez-toc-list {
    padding-left: 0;
    list-style: none;
    font-size: 1.1rem;
    /* 内容文字も大きく */
    line-height: 1.8;
    /* 行間を広く */
}

/* 目次リンク */
#ez-toc-container .ez-toc-link {
    text-decoration: none;
    color: #333;
    display: block;
    /* リンクをブロック化してクリックしやすく */
    padding: 5px 0;
    /* リンクに上下の余白 */
    transition: color 0.3s ease;
}

/* 目次リンク ホバー時 */
#ez-toc-container .ez-toc-link:hover {
    color: #007acc;
    text-decoration: underline;
}

/* pc 769px */
@media screen and (min-width:769px) {

    /* 目次全体 */
    #ez-toc-container {
        width: 50%;
        /* 少し幅広に */
        margin: 40px auto 40px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* 目次タイトル */
    #ez-toc-container .ez-toc-title {
        font-size: 2.2rem;
    }

    /* 目次リスト */
    #ez-toc-container nav ul.ez-toc-list {
        padding-left: 0;
        list-style: none;
        font-size: 1.8rem;
        /* 内容文字も大きく */
        line-height: 1.8;
        /* 行間を広く */
    }
}


/* 記事全体のテキスト */
.columnList__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 20px 0;
}

/* h2 見出し */
.columnList__txt h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-red);
    /* 左に線をつける */
    padding-left: 15px;
    font-weight: bold;
    background-color: #f3f2ef;
}

/* h3 小見出し */
.columnList__txt h3 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-red);
    font-weight: bold;
}

/* 画像に余白を付ける */
.columnList__txt img {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    display: block;
}

/* 段落の余白 */
.columnList__txt p {
    margin-bottom: 20px;
}

.columnList__txt a {
    color: #007acc;
}

/* pc 769px */
@media screen and (min-width:769px) {

    /* h3 小見出し */
    .columnList__txt h3 {
        font-size: 2.0rem;
    }

    .columnList__txt img {
        max-width: 700px;
        height: auto;
        margin: 40px auto;
        display: block;
    }

}

/* 目次のデザイン調整 */
/* #ez-toc-container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 40px 0;
    border-radius: 8px;
  } */

/* 目次タイトル */
/* .ez-toc-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  } */

/* 目次リンク */
/* .ez-toc-list li a {
    text-decoration: none;
    color: #3498db;
  } */

/* 目次リンクにホバーしたとき */
/* .ez-toc-list li a:hover {
    text-decoration: underline;
  } */

/* .toc a {
    text-decoration: none;
    font-weight: bold;
  } */



/* ====================
columnList
==================== */
.columnList {
    /* padding: 15px 9.3%; */
    display: block;
}

.columnList h2 {
    text-align: left;
    font-size: 1.8rem;
    padding: 20px;
}

.columnList h2 img {
    max-width: 220px;
    height: auto;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .columnList {
        padding: 40px 7%;
    }

    .columnList h2 img {
        max-width: 320px;
        height: auto;
    }

    .columnList h2 {
        text-align: left;
        font-size: 2.6rem;
    }

}

/* ====================
category
==================== */
.columnList__category {
    margin-top: 20px;
    text-align: center;

    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 25px;

    position: relative;
    padding: 20px;
    margin: 20px;
}

.columnList__category p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.25;
    letter-spacing: 0.2em;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .columnList__category {
        margin-top: 50px;
        padding-bottom: 50px;
        border-bottom: none;
    }

    .columnList__category::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        /* 文字幅より少し広げる */
        height: 2px;
        background-color: var(--primary-red);
    }

    .columnList__category p {
        font-size: 1.8rem;
        line-height: normal;
    }
}

/* ====================
list
==================== */
.columnList__item {
    padding: 30px 9.3%;
}

.columnList__title {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
}

.columnList__item time {
    display: block;
    margin-top: 20px;
    font-family: Lato;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
}

.columnList__tag {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.columnList__tag img {
    max-width: 20px;
    height: auto;

    height: auto;
    margin: 0px;
}

.columnList__tag p {
    font-size: 1.0rem;
    letter-spacing: 0.3em;
}

.columnList__img {
    max-width: 235px;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

.columnList__txt {
    font-size: 1.2rem;
    /* line-height: 2.5;
    letter-spacing: 0.08em; */
}

.columnList__txt p {
    margin-top: 20px;

    font-size: 1.2rem;
    line-height: 2.5;
    letter-spacing: 0.08em;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .columnList__list {
        margin-top: 75px;
        padding: 0 4.9%;
    }

    .columnList__group {
        display: flex;
        justify-content: center;
        align-items: stretch;
        /* アイテムの高さを揃える */
        gap: 50px;
    }

    .columnList__item {
        padding: 30px 2.4%;
        flex: 1;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        align-items: stretch;
        /* 高さを揃える */
        min-height: 100%;
        /* アイテム間の高さを揃える */
    }

    .columnList__title {
        font-size: 2.2rem;
        font-weight: 500;
        min-height: 8.6rem;
        /* 2行分の高さを確保 */
        display: flex;
        align-items: center;
        /* タイトルの中央揃え */
    }

    .columnList__item time {
        margin-top: 15px;
        font-size: 1.3rem;
    }

    .columnList__tag {
        margin-top: 15px;
    }

    .columnList__img {
        max-width: 440px;
        width: 100%;
        /* 親要素に合わせて拡大縮小させる */
        height: 330px;
        object-fit: cover;

        display: block;
        margin-left: auto;
        margin-right: auto;
        /* 横方向の中央揃え */
    }

    .columnList__txt {
        /* text-align: center; */
        font-size: 2.4rem;
        /* line-height: 1.87;
        flex-grow: 1; */
        margin-top: 10px;
    }

    .columnList__txt p {
        text-align: center;
        font-size: 1.6rem;
        line-height: 1.87;
        flex-grow: 1;
    }

    .columnList__txt p {
        text-align: left;
    }
}

/* ====================
sequelBtn
==================== */
.sequelBtnWrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    /* ボタンを右寄せ */
}

.sequelBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--primary-red);
    text-decoration: none;
    border: 2px solid var(--primary-red);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sequelBtn::after {
    content: "";
    display: inline-block;
    width: 10px;
    /* 矢印の幅 */
    height: 10px;
    /* 矢印の高さ */
    border-top: 2px solid var(--primary-red);
    /* 上の線 */
    border-right: 2px solid var(--primary-red);
    /* 右の線 */
    transform: rotate(45deg);
    /* 矢印の角度 */
    margin-left: 3px;
    /* 文字との間隔 */
    transition: margin-left 0.3s ease;
}

.sequelBtn:hover {
    background-color: var(--primary-red);
    color: white;
}

.sequelBtn:hover::after {
    border-color: white;
    /* ホバー時は矢印も白く */
    margin-left: 15px;
    /* ホバー時に矢印を動かす */
}

.article__sequelBtnWrapper {
    justify-content: center;
    margin-top: 45px;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .sequelBtn {
        font-weight: 700;
        padding: 10px 20px;
    }

    .sequelBtn::after {
        content: "";
        display: inline-block;
        width: 8px;
        /* 矢印の幅 */
        height: 8px;
        /* 矢印の高さ */
        border-top: 2px solid var(--primary-red);
        /* 上の線 */
        border-right: 2px solid var(--primary-red);
        /* 右の線 */
        transform: rotate(45deg);
        /* 矢印の角度 */
        margin-left: 10px;
        /* 文字との間隔 */
        transition: margin-left 0.3s ease;
    }

    .article__sequelBtnWrapper {
        justify-content: center;
        margin-top: 75px;
    }
}

/* ====================
pagination
==================== */
.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.pagination__list {
    display: inline-flex;
    /* 横並びを維持しつつ、コンテンツの幅にフィット */
    padding-bottom: 10px;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--primary-red);
    /* 真下だけに線 */
}

.pagination__pre,
.pagination__next {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.pagination__no {
    font-family: Lato;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* 現在のページ番号を太字・背景付きにする例 */
.pagination__no .current {
    background-color: var(--primary-red);
    color: #fff;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}


/* pc 769px */
@media screen and (min-width:769px) {
    .pagination {
        margin-bottom: 10px;
        margin-top: 75px;
    }

    .pagination__list {
        gap: 20px;
    }

    .pagination__pre,
    .pagination__next {
        font-size: 1.8rem;
    }

    .pagination__pre {
        margin-right: 20px;
    }

    .pagination__next {
        margin-left: 20px;
    }

    .pagination__no {
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 0.08em;
    }
}

/* ====================
columnArticle
==================== */
.columnArticle__img {
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .columnArticle__img {
        max-width: 720px;
        margin-top: 45px;
    }
}

/* ====================
アイキャッチ画像
==================== */
.veu_followSet {
    display: none;
}

.veu_adminEdit {
    display: none;
}

/* ====================
author
==================== */
.author-info {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-red);
    padding: 15px 4.5vw;
    margin: 30px;
}

.author-info__logo {
    width: 80px;
    height: auto;
    max-width: 80px;
    margin: 0;
}

.author-info__text {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin: 0 0 6px;
    margin-left: 10px;
}

@media screen and (min-width:769px) {
    .author-info {
        display: flex;
        align-items: center;
        border: 2px solid var(--primary-red);
        padding: 0 30px;
        margin: 30px;
    }

    .author-info__logo {
        width: 80px;
        height: auto;
        max-width: 80px;
        margin: 0;
    }

    .author-info__text {
        font-size: 0.95rem;
        color: var(--primary-black);
        margin: 0;
        margin-left: 50px;
    }
}