@charset "UTF-8";
/*
* detail.css
*
*/

/*Article meta bar*/
.article-meta-bar {
    background-color: #fff;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
    font-size: 12px;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-block;
    font-size: 12px;
    color: #333;
    border-radius: 3px;
    padding: 1px 8px;
    background: #eee;
}

.category-badge.no-bg {
    background-color: transparent;
    border: 1px solid #ccc;
}

.category-badge:hover {
    background-color: #e0e0e0;
}

.meta-date {
    margin-left: auto;
    font-size: 12px;
    color: #333333;
}

.meta-pr-badge {
    display: inline-block;
    border: 1px solid #333;
    padding: 2px 6px;
    font-size: 12px;
    color: #333333;
    background: #fff;
}

/*Eyecatch*/
.eyecatch {
    background-color: #d9d9d9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    border-top: none;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.eyecatch img {
    width: 100%;
    object-fit: cover;
    display: block;
}
/*Image*/
.content-image {
    margin-bottom: 20px;
}
.content-image img {
    width: 100%;
}
/*目次*/
.toc-box {
    background-color: #fffef0;
    border: 1px solid #ccc;
    padding: 14px 20px 18px;
    margin-bottom: 24px;
    border-radius: 5px;
}

.toc-box .toc-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.toc-box .toc-title img {
    margin: 0;
    width: auto;
}
.toc-box ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.toc-box ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.toc-box a {
    color: #1B6BCF;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.toc-box a:hover {
    text-decoration: underline;
}

/*Headings*/
.content-h3 {
    margin: 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #e5e5e5;
    font-size: 16px;
    font-weight: bold;
}

.content-h3::before {
    content: "";
    border-left: 4px solid #2073DB;
    padding-right: 10px;
}

.content-h4 {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    margin: 10px 0 0 0;
    padding: 0 0 10px 0;
    color: #333;
}

.content-h5 {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 0 0;
    padding: 0 0 10px 0;
    color: #333;
}

/*本文テキスト*/
.body-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    margin-top: 16px;
}

.body-text a {
    color: #4a90d9;
}

/*強調テキスト*/
.text-bold {
    font-weight: bold;
}

.text-color-red {
    color: #CB0027;
    font-weight: bold;
}

.text-marker {
    background-color: #FCF686;
    font-weight: bold;
}

/*テキストリンク*/
.text-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-link-list li {
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
}

.text-link-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url('../../img/chevron_right.svg') no-repeat center;
    background-size: contain;
}

.text-link-list li a {
    color: #1B6BCF;
    text-decoration: none;
    font-size: 14px;
}

.text-link-list li a:hover {
    text-decoration: underline;
}

.text-666 {
    color: #666 !important;
}

#link p a,
#text p a {
    color: #1B6BCF !important;
}

/*ボタン*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* 
    font-wei */
    ght: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    line-height: 1.4;
    transition: opacity 0.2s;
}

.btn:hover {
    text-decoration: none;
}

.btn-sm {
    font-size: 14px;
    padding: 3px;
    border: 1px solid #ccc;
}

.btn-md {
    font-size: 15px;
    padding: 3px;
    width: 220px;
}

.btn-lg {
    font-size: 16px;
    padding: 3px;
    width: 420px;
}

.text-l {
    font-size: 16px !important;
}

.text-m {
    font-size: 15px !important;
}

.text-s {
    font-size: 14px !important;
}

.text-xs {
    font-size: 13px !important;
}

.text-xxs {
    font-size: 12px !important;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.btn-primary-outline {
    background-color: #fff;
    color: #1B6BCF;
    border-color: #1B6BCF !important;
}

.blue-btn-sm {
    background-color: #2073DB;
    border: none;
}

.red-btn-sm {
    background-color: #EA526F !important;
    color: #fff;
    border: none !important;
}

.btn-white-text-black:hover,
.btn-white-text-black-bold:hover,
.btn-white-text-black-arrow:hover,
.btn-white-text-blue-arrow:hover {
    background-color: #D2F0FF;
}

.blue-btn-sm:hover,
.red-btn-sm:hover {
    opacity: 0.7;
}

.uk-button-default {
    border: 1px solid #ccc !important;
}

/*注釈*/
.annotation-text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

/*テーブル*/
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    outline: 1px solid #ccc;
    table-layout: fixed;
}

.content-table th,
.content-table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}

.content-table tr:first-child th,
.content-table tr:first-child td {
    border-top: none;
}

.content-table tr:last-child th,
.content-table tr:last-child td {
    border-bottom: none;
}

.content-table tr th:first-child,
.content-table tr td:first-child {
    border-left: none;
}

.content-table tr th:last-child,
.content-table tr td:last-child {
    border-right: none;
}

.content-table th {
    background-color: #EEF0EC;
    font-weight: bold;
    white-space: nowrap;
    width: 30%;
}

.content-table tr:nth-child(even) td {
    background-color: #f7f7f7;
}

/*組版ボックス*/
.kumihan-box {
    border: 1px solid #ccc;
    margin-bottom: 16px;
}

.kumihan-box.type1 {
    background-color: #fffef0;
    padding: 8px 14px;
}

.kumihan-box.type2 {
    background-color: #fffef0;
    border: none;
}

.kumihan-box.type1 .kumihan-heading {
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 0 14px 8px 14px;
    margin: 0;
    color: #666;
}

.kumihan-box.type2 .kumihan-heading {
    background-color: #7fb3cb;
    color: #fff;
    border-bottom: none;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 12px;
    margin: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.kumihan-box.type2 .kumihan-body {
    background-color: #eaf6fe;
    padding: 10px 12px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.kumihan-body {
    padding-top: 8px;
}

.kumihan-box ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.kumihan-box ul li {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.7;
}

/*組み込み*/
.embed-box {
    border: 1px solid #e5e5e5;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.embed-box .embed-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px;
    color: #333;
}

.embed-box .embed-body {
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

.embed-box p.embed-body.text-xxs {
    color: #666;
}

.embed-box-captioned {
    position: relative;
    margin-top: 20px;
    padding-top: 12px;
}

.embed-box-captioned .embed-caption {
    position: absolute;
    top: -13px;
    left: 17px;
    background: #fff;
    padding: 3px 12px;
    font-size: 14px;
    color: #333;
    margin: 0;
    border-radius: 3px 3px 0 0;
}

.embed-box.embed-box-captioned ul li a {
    color: #1B6BCF !important;
}

/*執筆者*/
.author-box {
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #d9d9d9;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info .author-name {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 6px;
    color: #333;
}

.author-info .author-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 6px;
}

/*素敵場所テキスト*/
.place-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.place-image-caption {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.social-share {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}