.geoselectionArticle {
    width: 780px;
    margin: 0 auto;
    padding: 0 55px;
}

/* ヘッダータグ
-----------------------------------------------------------*/
.geoselectionArticle h1 {
    margin: 16px 0;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.5;
}

.geoselectionArticle h2 {
    border-left: solid 4px #ff8000;
    margin: 56px 0 40px 0;
    padding: 8px 0 8px 16px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.geoselectionArticle h3 {
    margin: 48px 0 32px 0;
    padding: 6px 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #000c15;
}

.geoselectionArticle h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: -webkit-gradient(linear, left top, right bottom, from(#ff8000), to(#ffbb00));
    background: -moz-linear-gradient(left, #ff8000, #ffbb00);
    background: linear-gradient(left, #ff8000, #ffbb00);
}

/* 日付
-----------------------------------------------------------*/
.geoselectionArticle .article_date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 40px 0;
    font-size: 12px;
    color: #666;
}

.geoselectionArticle .article_date img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}

/* 目次
-----------------------------------------------------------*/
.geoselectionArticle .tableOfContents {
    margin: 40px auto 0;
    padding: 16px 24px;
    background-color: inherit;
    border: solid 2px #e2e5e8;
    min-width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
}

/* ============ タイトル ============ */
.geoselectionArticle .tableOfContents_title {
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #000c15;
}

.geoselectionArticle .tableOfContents_title .toc_view {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
}

.geoselectionArticle .tableOfContents_title .toc_view span {
    color: #ff8000;
    cursor: pointer;
}

/* ============ リスト ============ */
.geoselectionArticle .tableOfContents_list {
    padding-top: 10px;
}

.geoselectionArticle .tableOfContents_list ul {
    margin: 0 0 0 8px;
}

.geoselectionArticle .tableOfContents_list li {
    list-style: none;
}

.geoselectionArticle .tableOfContents_list li span {
    display: inline-block;
    margin-right: 10px;
}

/* h3用 */
.geoselectionArticle .tableOfContents_list li a {
    display: block;
    padding: 8px 0;
    border-bottom: dotted 1px #ccc;
    text-decoration: none;
    text-shadow: none;
}

/* h2用 */
.geoselectionArticle .tableOfContents_list > li > a {
    margin: 16px 0 8px 0;
    padding: 0 0 8px 0;
    border-bottom: solid 1px #ccc;
}

/* メインコンテンツ
-----------------------------------------------------------*/
/* ============ テキスト ============ */
.geoselectionArticle p {
    margin-top: 40px;
    font-size: 16px;
    line-height: 2;
}

.geoselectionArticle strong,
.geoselectionArticle b {
    display: inline;
    font-weight: bold;
}

.geoselectionArticle a {
    text-decoration: underline;
    color: #ff8000;
    transition-duration: 0.1s;
}

.geoselectionArticle a:hover {
    text-decoration: none;
    color: #ff8000;
}

.geoselectionArticle .red {
    color: red;
}

/* ============ 画像 ============ */
.geoselectionArticle img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px 0 0;
}


/* ============ リスト ============ */
.geoselectionArticle .list {
    margin: 40px 0px 0px 24px;
    list-style: disc;
    color: #333;
}

.geoselectionArticle ol.list {
    margin-left: 0;
    counter-reset: item;
    list-style-type: none;
}

.geoselectionArticle .list li {
    margin: 8px 0;
    font-size: 16px;
}

.geoselectionArticle ol.list li:before {
    counter-increment: item;
    content: counters(item, "-") ". ";
}

.geoselectionArticle dt {
    padding: 8px 0;
    border-bottom-style: solid;
    border-color: #d2b48c;
    border-width: 1px;
    font-size: 16px;
    font-weight: bold;
}

.geoselectionArticle dd {
    padding: 8px 0;
    font-size: 16px;
}

/* ============ 下線 ============ */
.geoselectionArticle .underline {
    text-decoration-line: underline;
    text-decoration-style: double;
    text-decoration-color: red;
}

.geoselectionArticle .underYellow {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffffbc 0%) repeat scroll 0 0;
}

.geoselectionArticle .underPink {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffdfef 0%) repeat scroll 0 0;
}

/* ============ アラート ============ */
.geoselectionArticle .alert {
    margin-top: 40px;
    padding: 10px 20px;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
}

.geoselectionArticle .alert > *:first-child {
    margin-top: 0;
}

.geoselectionArticle .alert.alert-primary {
    background-color: #f5f5f5;
    border-color: silver;
}

.geoselectionArticle .alert.alert-warning {
    background-color: #fffacd;
    border-color: #deb887;
}

.geoselectionArticle .alert.alert-info {
    background: #f4f6fa;
    border: solid 2px #e2e5e8;
    border-radius: 0;
}

/* ============ ボタン ============ */
.geoselectionArticle .btn_wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.geoselectionArticle .btn {
    display: block;
    margin: 0 auto;
    padding: 20px;
    max-width: 515px;
    background: #ff8c00;
    border: 2px solid #ffa500;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    width: 100%;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-in-out;
}

.geoselectionArticle .btn:hover {
    border-radius: 4px;
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    opacity: 0.8;
    background: #ffffff;
    color: #ff8c00;
}

/* ============ 動画 ============ */
.movie_box {
    margin-top: 40px;
}

.movie_box iframe {
    width: 670px;
    height: calc(670px * 9 / 16);
}

/* 関連記事
-----------------------------------------------------------*/
.geoselectionArticle .related {
    margin-top: 40px;
    padding: 32px;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 5px;
}

.geoselectionArticle .related_title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
}

.geoselectionArticle .related .article_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.geoselectionArticle .related .article_list li {
    width: calc(50% - 10px);
}

.geoselectionArticle .related .article_list li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
}

.geoselectionArticle .related .article_left {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.geoselectionArticle .related .article_left img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.geoselectionArticle .related .article_right {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.geoselectionArticle .related .article_date {
    display: block;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #666;
}

.geoselectionArticle .related .article_title {
    margin-top: 5px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: normal;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    color: black;
}
