@charset "UTF-8";

/* ==========================================================================
   共通・基本設定
   ========================================================================== */
html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* ==========================================================================
   FV（ファーストビュー）
   ========================================================================== */
.fv_img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#page_view .fv_img img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

html body #page_view .page-ttl_sub_custom {
    display: block;
    position: absolute;
    right: 32px;
    top: 30px;
    z-index: 10;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.025em;
    line-height: 1;
    margin: 0;
    color: #333;
}

html body #page_view .fv_img p.fv_inner_ttl {
    font-family: MyWebFont, sans-serif;
    text-align: center;
    font-size: 2.4rem;
    color: #323232;
    text-shadow: 0 0 10px #fff, 0 0 5px #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

html body #page_view .fv_img p.fv_inner_ttl span {
    font-family: brother-1816, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #fff;
}

@media screen and (max-width: 767px) {
    html body #page_view .page-ttl_sub_custom {
        display: none;
    }
    .content-area,
    .article-container,
    #page_wrap {
        padding-top: 70px !important;
    }

    /* タイトル自体の上の余白も広げる場合 */
    .article-main-title {
        margin-top: 20px !important;
    }
}

/* ==========================================================================
   全体2カラムレイアウト（記事詳細・アーカイブ共通）
   ========================================================================== */
.column-layout,
.column-page-wrapper,
.column-archive-wrapper,
html body #primary .column-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 30px;
}

.column-main,
.column-main-content,
.column-archive-main,
html body #primary .column-main {
    flex: 1;
    min-width: 0;
}

.column-sidebar,
.column-archive-sidebar,
html body #primary .column-sidebar {
    flex: 0 0 300px;
    width: 300px;
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .column-layout,
    .column-page-wrapper,
    .column-archive-wrapper,
    html body #primary .column-layout {
        gap: 24px;
    }

    .column-sidebar,
    .column-archive-sidebar,
    html body #primary .column-sidebar {
        flex: 0 0 260px;
        width: 260px;
    }
}

@media screen and (max-width: 767px) {
    .column-layout,
    .column-page-wrapper,
    .column-archive-wrapper,
    html body #primary .column-layout {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

    .column-main,
    .column-main-content,
    .column-archive-main,
    html body #primary .column-main {
        width: 100%;
    }

    .column-sidebar,
    .column-archive-sidebar,
    html body #primary .column-sidebar {
        width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ==========================================================================
   コラム一覧：見出し・リード文エリア
   ========================================================================== */
.column-archive-header {
    text-align: center;
    margin: 45px auto 35px;
    padding: 0 16px;
}

.column-archive-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4e4335;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-archive-title span {
    font-size: 1.8rem;
    color: #8d7b5e;
    font-weight: 600;
    margin-bottom: 4px;
}

.column-archive-lead {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 680px;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
    .column-archive-header {
        margin: 30px auto 20px;
    }

    .column-archive-title {
        font-size: 1.7rem;
    }

    .column-archive-title span {
        font-size: 1.4rem;
    }

    .column-archive-lead {
        font-size: 1.25rem;
        text-align: left;
    }
}

/* ==========================================================================
   サイドバーデザイン
   ========================================================================== */
.sidebar-articles-box {
    width: 100%;
    box-sizing: border-box;
    background: #faf8f3;
    border-radius: 10px;
    padding: 18px 15px 15px;
    margin-bottom: 20px;
    box-shadow: 7px 7px 0 rgba(174, 158, 126, 0.12);
}

.sidebar-articles-title {
    display: flex;
    align-items: center;
    min-height: 35px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #9f8d70;
    color: #5f5345;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sidebar-articles-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    margin-right: 6px;
    color: #8d7b5e;
    font-size: 19px;
    line-height: 1;
}

.sidebar-article-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid #c9bca5;
    transition: opacity 0.3s ease;
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 5px;
}

.sidebar-article-item:hover {
    opacity: 0.65;
}

/* サイドバーのサムネイル枠 */
.sidebar-article-image {
    flex: 0 0 95px;
    width: 95px;
    height: auto;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
}

/* 画像自体の表示設定 */
.sidebar-article-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.sidebar-article-text {
    flex: 1;
    padding-top: 1px;
    color: #3f3932;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.01em;
    word-break: break-word;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* サイドバーバナーエリア */
.sidebar-banners {
    max-width: 260px;
    margin: 25px auto 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-banner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sidebar-banner-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.sidebar-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   記事詳細ページ装飾
   ========================================================================== */
.article-container {
    width: 100%;
    box-sizing: border-box;
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: #fff;
    line-height: 1.8;
}

.article-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.4;
    color: #4e4335;
    margin: 40px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d2c7b2;
    letter-spacing: 0.03em;
}

.new-lead-box,
.article-local-lead {
    margin: 50px auto 60px;
    padding: 36px 36px;
    background: #faf8f5;
    border-radius: 12px;
    border: 1px solid #efe8dc;
}

.new-lead-text,
.lead-text,
html body .article-local-lead p,
html body .new-lead-box p {
    font-size: 1.45rem;
    line-height: 2.4;
    color: #333;
    margin: 0 0 1.5em 0;
    letter-spacing: 0.03em;
}

.new-lead-box p:last-child,
.article-local-lead p:last-child {
    margin-bottom: 0;
}

.article-body {
    padding: 0;
    font-size: 1.5rem;
    line-height: 2.2;
    letter-spacing: 0.03em;
    color: #333;
}

.article-body p {
    margin-bottom: 2em;
}

.article-h2 {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    min-height: auto;
    margin: 80px 0 40px;
    background: #f7f4ed;
    border-radius: 6px;
    font-size: 1.7rem;
    font-weight: 700;
    color: #4e4335;
    letter-spacing: 0.02em;
    scroll-margin-top: 100px;
}

.article-body h3 {
    font-size: 1.55rem;
    font-weight: 700;
    margin: 3em 0 1.2em;
    color: #8a7358;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.article-body ul {
    list-style: none;
    margin: 1.5em 0 2em;
    padding-left: 0.5em;
}

.article-body li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1em;
    line-height: 2.0;
}

.article-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    background: #d2c7b2;
    transform: rotate(45deg);
}

.article-illustration {
    text-align: center;
    margin: 40px auto;
    width: 100%;
    max-width: 540px;
}

.article-illustration img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.doctor-video-container {
    width: 100%;
    margin: 35px auto;
    display: flex;
    justify-content: center;
}

.doctor-video {
    width: 100%;
    max-width: 800px;
}

.doctor-video iframe,
.lyte-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: none;
}

.article-cta {
    background: #faf8f5;
    border: 1px solid #eee5d8;
    padding: 40px 32px;
    margin: 70px auto 0;
    max-width: 780px;
    text-align: center;
    border-radius: 12px;
    box-sizing: border-box;
}

.article-cta .cta-head {
    font-size: 1.55rem;
    font-weight: 700;
    color: #4e4335;
    margin-bottom: 24px;
    line-height: 1.4;
}

.article-cta .cta-desc {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.4rem;
    line-height: 2.1;
    color: #444;
}

.article-cta .cta-desc p {
    margin-bottom: 14px;
}

.article-cta .cta-points {
    list-style: none;
    padding: 16px 20px;
    margin: 18px 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0ece3;
}

.article-cta .cta-points li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.8;
}

.article-cta .cta-points li:last-child {
    margin-bottom: 0;
}

.article-cta .cta-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8a7358;
    font-size: 1.0em;
}

.article-cta .cta-sub {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0;
}

.article-cta .cta-button {
    display: inline-block;
    width: 100%;
    max-width: 380px;
    padding: 18px 24px;
    background: #8a7358;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.35rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(138, 115, 88, 0.25);
    box-sizing: border-box;
}

.article-cta .cta-button:hover {
    background: #6d5a44;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 115, 88, 0.35);
}

/* ==========================================================================
   コラム一覧カードレイアウト
   ========================================================================== */
.column-grid,
.column-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.column-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0ece1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card-thumb-wrap {
    width: 100%;
}

.column-grid .card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eee8dc;
}

.column-grid .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.column-card:hover .card-thumb img {
    transform: scale(1.05);
}

.column-grid .card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.card-tag {
    display: inline-block;
    background-color: #527AB7;
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.2;
    white-space: nowrap;
}

.card-tag.is-youtube {
    background-color: #e6236b;
}

.column-grid .card-title {
    font-size: 1.35rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
    color: #333333;
}

/* ==========================================================================
   スマホ（SP）最適化設定
   ========================================================================== */
@media screen and (max-width: 767px) {
    .article-container {
        padding-left: 0;
        padding-right: 0;
    }

    .article-main-title {
        font-size: 1.8rem;
        margin: 25px 0 20px;
    }

    .new-lead-box,
    .article-local-lead {
        margin: 30px auto;
        padding: 24px 20px;
    }

    .new-lead-text,
    .lead-text,
    html body .article-local-lead p,
    html body .new-lead-box p {
        font-size: 1.35rem;
        line-height: 1.4;
        margin-bottom: 1.2em;
    }

    .article-h2 {
        font-size: 1.45rem;
        padding: 14px 18px;
        margin: 50px 0 25px;
    }

    .article-body {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .article-body p {
        margin-bottom: 1.8em;
    }

    .article-body li {
        margin-bottom: 0.9em;
        line-height: 2.0;
    }

    .article-body h3 {
        font-size: 1.35rem;
        margin: 2.2em 0 1em;
    }

    .article-illustration {
        max-width: 100%;
        margin: 25px auto;
    }

    .article-cta {
        padding: 28px 20px;
        margin-top: 45px;
    }

    .article-cta .cta-head {
        font-size: 1.35rem;
    }

    .article-cta .cta-desc {
        font-size: 1.25rem;
        line-height: 1.9;
    }

    .article-cta .cta-sub {
        font-size: 1.2rem;
    }

    .article-cta .cta-button {
        max-width: 100%;
        font-size: 1.25rem;
    }

    .column-grid,
    .column-archive-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 15px;
    }

    .column-card {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 16px 0;
    }

    .card-link {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .card-thumb-wrap {
        flex: 0 0 135px;
        width: 135px;
    }

    .column-grid .card-body {
        padding: 0;
    }

    .column-grid .card-title {
        font-size: 1.15rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* =========================================
   皮膚科 日帰り手術 内部リンクボタン
========================================= */

.dermatology-surgery-button {
    width: 100%;
    max-width: 560px; /* 横幅をスマートに抑制 */
    margin: 35px auto;
}

/* ボタン本体 */
.dermatology-surgery-button .dermatology-link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 22px; /* 上下余白を詰めて高さを圧縮 */
    background: #f7f3ee;
    border: 1.5px solid #e3d5c4;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* テキストエリア */
.dermatology-surgery-button .button-text {
    display: flex;
    flex-direction: column;
    text-align: left; /* テーマの中央揃えの影響を防止 */
    gap: 3px;
}

.dermatology-surgery-button .button-text strong {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
}

.dermatology-surgery-button .button-text small {
    font-size: 12px;
    line-height: 1.4;
    color: #777;
}

/* 矢印アイコン */
.dermatology-surgery-button .button-arrow {
    flex-shrink: 0;
    margin-left: 15px;
    font-size: 24px;
    line-height: 1;
    color: #0090c8;
    transition: transform 0.25s ease;
}

/* PC ホバー */
.dermatology-surgery-button .dermatology-link-button:hover {
    background: #fff;
    border-color: #0090c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dermatology-surgery-button .dermatology-link-button:hover .button-arrow {
    transform: translateX(4px);
}

/* =========================================
   スマホ表示（767px以下）
========================================= */
@media screen and (max-width: 767px) {
    .dermatology-surgery-button {
        width: 100%;
        margin: 25px auto;
    }

    .dermatology-surgery-button .dermatology-link-button {
        padding: 12px 16px;
    }

    .dermatology-surgery-button .button-text strong {
        font-size: 15px;
    }

    .dermatology-surgery-button .button-text small {
        font-size: 11px;
    }

    .dermatology-surgery-button .button-arrow {
        font-size: 20px;
        margin-left: 8px;
    }
}

/* =========================================
   コラム詳細 ページ下部「コラム一覧へ戻る」ボタン
========================================= */
.column-page-nav {
    text-align: center;
    margin: 50px auto 30px;
    max-width: 360px;
    width: 100%;
}

.column-page-nav .column-nav-btn.btn-all {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 50px;
    padding: 12px 28px;
    background-color: #8a7358;
    border: 1px solid #8a7358;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(138, 115, 88, 0.2);
    box-sizing: border-box;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* 矢印アイコンの動きの基準 */
.column-page-nav .column-nav-btn.btn-all .nav-arrow {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
    font-family: sans-serif;
    transition: transform 0.25s ease;
}

/* --- ホバー時の動き --- */
.column-page-nav .column-nav-btn.btn-all:hover {
    background-color: #725d44; /* やや濃い落ち着いたブラウン */
    border-color: #725d44;
    transform: translateY(-2px); /* 2pxふわっと浮き上がる */
    box-shadow: 0 6px 16px rgba(114, 93, 68, 0.35); /* 影がふわっと広がる */
}

/* ホバー時に左矢印がスッと左に引くアニメーション */
.column-page-nav .column-nav-btn.btn-all:hover .nav-arrow {
    transform: translateX(-4px);
}

/* クリックした瞬間の沈み込み */
.column-page-nav .column-nav-btn.btn-all:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(114, 93, 68, 0.2);
}

/* スマホ表示 */
@media screen and (max-width: 767px) {
    .column-page-nav {
        margin: 35px auto 20px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .column-page-nav .column-nav-btn.btn-all {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }
}

/* ========================================
   症状・お悩みから探す カテゴリ別ボタン
======================================== */

.column-category-nav {
  margin: 0 0 32px;
  padding: 18px 20px;
  background: #f7f9fb;
  border-radius: 8px;
}

.column-category-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #333;
}

.column-category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.column-category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: 1px solid #1e73be;
  border-radius: 30px;
  background: #fff;
  color: #1e73be;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.column-category-button:hover {
  background: #1e73be;
  color: #fff;
}

.column-category-button.is-youtube {
  border-color: #d86b8a;
  color: #d86b8a;
}

.column-category-button.is-youtube:hover {
  background: #d86b8a;
  color: #fff;
}

@media (max-width: 767px) {

  .column-category-nav {
    margin-bottom: 25px;
    padding: 16px 12px;
  }

  .column-category-title {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .column-category-buttons {
    gap: 7px;
  }

  .column-category-button {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ========================================
   関連記事
======================================== */

.auto-related-articles {
  margin: 50px 0 35px;
}

.auto-related-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.auto-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.auto-related-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.auto-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.auto-related-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.auto-related-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f3f3;
}

.auto-related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-related-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #999;
  font-size: 12px;
}

.auto-related-body {
  padding: 14px;
}

.auto-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.auto-related-post-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  color: #333;
}


/* スマホ */
@media (max-width: 767px) {

  .auto-related-articles {
    margin: 40px 0 30px;
  }

  .auto-related-title {
    margin-bottom: 16px;
    font-size: 19px;
  }

  .auto-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .auto-related-body {
    padding: 12px;
  }

  .auto-related-post-title {
    font-size: 14px;
  }
}
/* ========================================
   TOP 院長コラム
======================================== */

.reiwa-top-column {
    padding: 50px 0;
}

.reiwa-top-column-grid {
    width: 82%;
    max-width: 900px;
    margin: 25px auto 0;
}

.reiwa-top-column-more {
    margin-top: 30px;
    text-align: center;
}

.reiwa-top-column-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    max-width: 90%;
    min-height: 46px;
    border: 1px solid #8a7358;
    border-radius: 6px;
    color: #8a7358;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

@media screen and (max-width: 767px) {

    .reiwa-top-column {
        padding: 40px 0 50px;
    }

    .reiwa-top-column-grid {
        width: calc(100% - 32px);
        margin: 15px auto 0;
    }
}