/*////////////////////////////////
column/index.html
////////////////////////////////*/
.contentArea .columnIndexBox > h2 {
    font-size: 120%;
    color: #EA71A3;
    padding: 10px;
    border-bottom: 1px solid #FF7BA7;
    width: 50%;
}
.contentArea .columnIndexBox > h3 {
    margin-bottom: 15px;
    padding: 5px 10px;
    font-size: 12px;
    color: #999;
}

/* ---- 一覧リスト ---- */
.contentArea .columnIndexBox .columnList ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.contentArea .columnIndexBox .columnList ul li {
    border-top: 1px dotted #ddd;
}
.contentArea .columnIndexBox .columnList ul li:last-child {
    border-bottom: 1px dotted #ddd;
}
.contentArea .columnIndexBox .columnList ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}
.contentArea .columnIndexBox .columnList ul li a:hover {
    background: #fef4f7;
}

/* サムネイル */
.contentArea .columnIndexBox .columnList ul li .thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}
.contentArea .columnIndexBox .columnList ul li .thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* テキストエリア */
.contentArea .columnIndexBox .columnList ul li .ttl {
    font-size: 13px;
    color: #f5568b;
    line-height: 1.5;
    margin-bottom: 4px;
    flex: 1;
}
.contentArea .columnIndexBox .columnList ul li .descliption {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}
.contentArea .columnIndexBox .columnList ul li .descliption time {
    display: block;
}

/* テキスト側をまとめるラッパー */
.contentArea .columnIndexBox .columnList ul li a > div:not(.thumb) {
    flex: 1;
    min-width: 0;
}

/* ---- もっと見るボタン ---- */
.moreBtn-link {
    display: block;
    background: #f5568b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 8px;
    width: 87%;
    margin: 10px auto 15px;
    box-sizing: border-box;
}
.moreBtn-link:hover,
.moreBtn-link:visited {
    color: #fff;
    text-decoration: none;
}


/*////////////////////////////////
column/detail.html
////////////////////////////////*/
.columnArticle {
    padding: 0 10px;
}
.columnArticle > article {
    padding-bottom: 40px;
}

/* アイキャッチ */
.columnArticle .eyeCatch img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* タイトル */
.columnArticle article > h1 {
    color: #f5568b;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}
.columnArticle article > time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
}

/* 本文 */
.columnArticle article > .postDetail h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 8px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ddd;
    line-height: 1.5;
}
.columnArticle article > .postDetail h3 {
    color: #f5568b;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0 5px;
    line-height: 1.5;
}
.columnArticle article > .postDetail p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.columnArticle article > .postDetail p:last-child {
    margin-bottom: 0;
}
.columnArticle article > .postDetail strong {
    font-weight: bold;
}

/* テーブル */
.columnArticle article > .postDetail table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.columnArticle article > .postDetail table,
.columnArticle article > .postDetail table td,
.columnArticle article > .postDetail table th {
    border: 1px solid #f5568c;
}
.columnArticle article > .postDetail table td,
.columnArticle article > .postDetail table th {
    padding: 8px;
    font-size: 12px;
    line-height: 1.5;
}

/* 戻るボタン */
.columnArticle .backBtn {
    background: #f5568b;
    border-radius: 8px;
    display: block;
    text-align: center;
    width: 87%;
    margin: 20px auto 0;
    box-sizing: border-box;
}
.columnArticle .backBtn a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: bold;
}
.columnArticle .backBtn a:visited {
    color: #fff;
}

strong {
    font-weight: bold;
}
.blue {
    color: #00b5d0;
}/*////////////////////////////////
column/index.html
////////////////////////////////*/
.contentArea .columnIndexBox > h2 {
    font-size: 120%;
    color: #EA71A3;
    padding: 10px;
    border-bottom: 1px solid #FF7BA7;
    width: 50%;
}
.contentArea .columnIndexBox > h3 {
    margin-bottom: 15px;
    padding: 5px 10px;
    font-size: 12px;
    color: #999;
}

/* ---- 一覧リスト ---- */
.contentArea .columnIndexBox .columnList ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.contentArea .columnIndexBox .columnList ul li {
    border-top: 1px dotted #ddd;
}
.contentArea .columnIndexBox .columnList ul li:last-child {
    border-bottom: 1px dotted #ddd;
}
.contentArea .columnIndexBox .columnList ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}
.contentArea .columnIndexBox .columnList ul li a:hover {
    background: #fef4f7;
}

/* サムネイル */
.contentArea .columnIndexBox .columnList ul li .thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}
.contentArea .columnIndexBox .columnList ul li .thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* テキストエリア */
.contentArea .columnIndexBox .columnList ul li .ttl {
    font-size: 13px;
    color: #f5568b;
    line-height: 1.5;
    margin-bottom: 4px;
    flex: 1;
}
.contentArea .columnIndexBox .columnList ul li .descliption {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}
.contentArea .columnIndexBox .columnList ul li .descliption time {
    display: block;
}

/* テキスト側をまとめるラッパー */
.contentArea .columnIndexBox .columnList ul li a > div:not(.thumb) {
    flex: 1;
    min-width: 0;
}

/* ---- もっと見るボタン ---- */
.moreBtn-link {
    display: block;
    background: #f5568b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 8px;
    width: 87%;
    margin: 10px auto 15px;
    box-sizing: border-box;
}
.moreBtn-link:hover,
.moreBtn-link:visited {
    color: #fff;
    text-decoration: none;
}


/*////////////////////////////////
column/detail.html
////////////////////////////////*/
.columnArticle {
    padding: 0 10px;
}
.columnArticle > article {
    padding-bottom: 40px;
}

/* アイキャッチ */
.columnArticle .eyeCatch img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* タイトル */
.columnArticle article > h1 {
    color: #f5568b;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}
.columnArticle article > time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
}

/* 本文 */
.columnArticle article > .postDetail h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 8px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ddd;
    line-height: 1.5;
}
.columnArticle article > .postDetail h3 {
    color: #f5568b;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0 5px;
    line-height: 1.5;
}
.columnArticle article > .postDetail p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.columnArticle article > .postDetail p:last-child {
    margin-bottom: 0;
}
.columnArticle article > .postDetail strong {
    font-weight: bold;
}

/* テーブル */
.columnArticle article > .postDetail table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.columnArticle article > .postDetail table,
.columnArticle article > .postDetail table td,
.columnArticle article > .postDetail table th {
    border: 1px solid #f5568c;
}
.columnArticle article > .postDetail table td,
.columnArticle article > .postDetail table th {
    padding: 8px;
    font-size: 12px;
    line-height: 1.5;
}

/* 戻るボタン */
.columnArticle .backBtn {
    background: #f5568b;
    border-radius: 8px;
    display: block;
    text-align: center;
    width: 87%;
    margin: 20px auto 0;
    box-sizing: border-box;
}
.columnArticle .backBtn a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: bold;
}
.columnArticle .backBtn a:visited {
    color: #fff;
}

strong {
    font-weight: bold;
}
.blue {
    color: #00b5d0;
}


/*////////////////////////////////
TOP / column section
////////////////////////////////*/
.mainCont .topColumnArea {
    margin-bottom: 20px;
    padding: 0 10px;
}

.mainCont .topColumnArea .columnIndexBox > h2 {
    font-size: 120%;
    color: #EA71A3;
    padding: 10px;
    border-bottom: 1px solid #FF7BA7;
    width: 50%;
    margin-bottom: 10px;
}

.mainCont .topColumnArea .columnList ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mainCont .topColumnArea .columnList ul li {
    border-top: 1px dotted #ddd;
}
.mainCont .topColumnArea .columnList ul li:last-child {
    border-bottom: 1px dotted #ddd;
}
.mainCont .topColumnArea .columnList ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}
.mainCont .topColumnArea .columnList ul li a:hover {
    background: #fef4f7;
}

/* サムネイル */
.mainCont .topColumnArea .columnList ul li .thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}
.mainCont .topColumnArea .columnList ul li .thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* テキスト */
.mainCont .topColumnArea .columnList ul li .ttl {
    font-size: 13px;
    color: #f5568b;
    line-height: 1.5;
    margin-bottom: 4px;
}
.mainCont .topColumnArea .columnList ul li .descliption {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}
.mainCont .topColumnArea .columnList ul li .descliption time {
    display: block;
}