@charset "UTF-8";
.schedule-container {
  width: 100%;
  max-width: 600px;
  font-family: "Noto Sans JP", sans-serif;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  color: #363636;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .schedule-table {
    font-size: 0.75em;
  }
}
.schedule-table th,
.schedule-table td {
  text-align: center;
  padding: 8px 5px;
  vertical-align: middle;
}
.schedule-table thead th {
  border: none;
}
.schedule-table thead th:last-child {
  border-right: none;
}
.schedule-table .even-thead {
  background-color: #fef5fc;
  color: #c894bd;
}
.schedule-table .even-thead th,
.schedule-table .even-thead td {
  border-right: 2px solid #fef5fc;
}
.schedule-table .odd-thead {
  background-color: #c894bd;
  color: #fef5fc;
}
.schedule-table .odd-thead th,
.schedule-table .odd-thead td {
  border-right: 2px solid #c894bd;
}
.schedule-table tbody .time-slot {
  white-space: nowrap;
  width: 30%;
}
.schedule-table tbody .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.schedule-table .even-tbody {
  background-color: #c894bd;
  color: #fef5fc;
}
.schedule-table .even-tbody .time-slot {
  color: #fef5fc;
}
.schedule-table .even-tbody .dot {
  background-color: #fef5fc;
}
.schedule-table .even-tbody .dash {
  color: #fef5fc;
}
.schedule-table .odd-tbody {
  background-color: #fef5fc;
  color: #fef5fc;
}
.schedule-table .odd-tbody .time-slot {
  color: #c894bd;
}
.schedule-table .odd-tbody .dot {
  background-color: #c894bd;
}
.schedule-table .odd-tbody .dash {
  color: #c894bd;
}

.even-schedule-table {
  border: 2px solid #c894bd;
}
.even-schedule-table th,
.even-schedule-table td {
  border: 1px solid #fef5fc;
}

.odd-schedule-table {
  border: 2px solid #c894bd;
}
.odd-schedule-table th,
.odd-schedule-table td {
  border: 1px solid #c894bd;
}

.schedule-supplement {
  font-size: 0.875em;
}
@media screen and (max-width: 1024px) {
  .schedule-supplement {
    font-size: 0.75em;
  }
}
.schedule-supplement {
  margin-top: 10px;
}
.schedule-supplement .closed-days {
  color: #fb4b4b;
}

html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 1025px) {
  main {
    margin-top: 148px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main {
    margin-top: 131px;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 78px;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.tab-sp_only {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab-sp_only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab-sp_only {
    display: block;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc_only {
    display: block;
  }
}

h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  color: #363636;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5em;
  }
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  line-height: 1.7;
  color: #363636;
}

.h2_title span {
  font-family: "Zen Old Mincho", serif;
  font-size: 1em;
  font-weight: 500;
  color: #681c35;
}

.h2_title_center {
  text-align: center;
}

.common__btn {
  text-align: left;
  width: 100%;
}
.common__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  width: 100%;
  max-width: 311px;
  margin-right: 0;
  margin-left: auto;
  padding: 1.2em 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 100vh;
  border: 1px solid transparent;
  background-color: #fef5fc;
  color: #681c35;
  border-color: #681c35;
  font-size: 1rem;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common__btn a::after {
  content: "→";
  font-weight: 300;
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.common__btn a:hover {
  background-color: #681c35;
  color: #f8f8f8;
  border-color: #f8f8f8;
}
.common__btn a:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .common__btn a {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================
   コラム single ページ
   ============================ */

/* 全体レイアウト */
.column-layout {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.column-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* メインカラム */
.column-main {
  flex: 1;
}

/* サイドバー */
.column-sidebar {
  width: 280px;
}

/* ============================
   記事本体
   ============================ */

.column-single {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 32px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ヘッダー（日時・カテゴリ・タイトル） */
.column-single__head {
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}

/* 日付＋カテゴリ行 */
.column-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
}

/* 日付 */
.column-single__date {
  font-size: 0.85rem;
  color: #888;
}

/* カテゴリ */
.column-single__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-single__cats-item a {
  display: inline-block;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #fffaf0;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
  text-decoration: none;
}

.column-single__cats-item a:hover {
  background-color: #d4b06a;
  color: #fff;
}

/* タイトル */
.column-single__title {
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 600;
}

/* ============================
   本文（タイポグラフィ）
   ============================ */

.column-single__content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

.column-single__content p {
  margin: 0 0 1.5em;
}

/* aタグ */
.column-single__content a {
  color: #8b6a2e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.column-single__content a:hover {
  color: #b08a44;
}

/* ============================
   見出し（h2, h3, h4）
   ============================ */

/* セクション見出し h2 */
.column-single__content h2,
.news-single__content h2 {
  position: relative;
  margin: 2.4em 0 1.2em;
  padding: 0.4em 0.8em 0.4em 0.8em;
  font-size: 1.25rem;
  font-weight: 600;
  border-left: 4px solid #d4b06a;
  background: linear-gradient(to right, #fff8e6 0%, #ffffff 60%);
}

/* 小見出し h3 */
.column-single__content h3,
.news-single__content h3.wp-block-heading {
  position: relative;
  margin: 2em 0 0.9em;
  padding-left: 1.1em;
  font-size: 1.1rem;
  font-weight: 600;
}

.column-single__content h3::before,
.news-single__content h3.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: #d4b06a;
}

/* 小見出し h4 */
.column-single__content h4,
.news-single__content h4.wp-block-heading {
  margin: 1.6em 0 0.6em;
  padding-left: 0.9em;
  font-size: 1rem;
  font-weight: 600;
  border-left: 2px solid #e0cf9d;
}

/* ============================
   リスト（ul / ol）
   ============================ */

/* ベース */
.column-single__content ul,
.column-single__content ol,
.news-single__content ul,
.news-single__content ol {
  margin: 0 0 1.5em 1.4em;
  padding: 0;
}

/* 箇条書き（ul） */
.column-single__content ul,
.news-single__content ul {
  list-style: none;
}

.column-single__content ul > li,
.news-single__content ul > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0 0 0.4em;
  line-height: 1.8;
}

.column-single__content ul > li::before,
.news-single__content  ul > li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b06a;
  font-weight: 700;
}

/* 番号付き（ol） */
.column-single__content ol,
.news-single__content ol {
  list-style: none;
  counter-reset: num;
}

.column-single__content ol > li,
.news-single__content  ol > li{
  position: relative;
  padding-left: 1.6em;
  margin: 0 0 0.4em;
  line-height: 1.8;
  counter-increment: num;
}

.column-single__content ol > li::before,
.news-single__content ol > li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b06a;
  font-weight: 600;
  font-size: 0.95rem;
}

/* 入れ子リストの軽い調整 */
.column-single__content ul ul,
.column-single__content ol ol,
.column-single__content ul ol,
.column-single__content ol ul {
  margin-top: 0.3em;
  margin-bottom: 0.8em;
}

/* 引用（あれば） */
.column-single__content blockquote,
.news-single__content blockquote{
  margin: 1.8em 0;
  padding: 1em 1.2em;
  border-left: 4px solid #e0cf9d;
  background-color: #fffdf5;
  font-size: 0.92rem;
}

/* ============================
   戻るボタン
   ============================ */

.column-single__back {
  margin-top: 32px;
  text-align: right;
}

.column-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
  background-color: #fffaf0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.column-single__back-link::before {
  content: "‹";
  font-size: 1.1em;
  line-height: 1;
}

.column-single__back-link:hover {
  background-color: #d4b06a;
  color: #fff;
}

/* ============================
   サイドバー（コラムページ用）
   ============================ */

.column-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

/* functions.php の before_title = <div class="widget-title"> に対応 */
.column-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* リスト */
.column-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.column-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.column-sidebar .widget ul li a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.column-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
  .column-layout__inner {
    flex-direction: column;
  }

  .column-sidebar {
    width: 100%;
  }

  .column-single {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 599px) {
  .column-layout {
    padding: 40px 0 60px;
  }

  .column-single__title {
    font-size: 1.4rem;
  }

  .column-single__content {
    font-size: 0.9rem;
  }
}
/* ============================
   中絶手術コラム アーカイブ全体
   ============================ */

.column-archive-layout {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.column-archive-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* メインカラム */
.column-archive-main {
  flex: 1;
}

/* サイドバー */
.column-archive-sidebar {
  width: 280px;
}

/* リード文 */
.column-archive__lead {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px;
}

/* ============================
   コラムカード一覧
   ============================ */

.column-archive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 1件分のカード */
.column-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 20px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.column-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.column-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* カード上部：日付＋カテゴリ */
.column-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}

/* 日付 */
.column-card__date {
  font-size: 0.85rem;
  color: #888;
}

/* カテゴリ */
.column-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-card__cat {
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 999px;
  background-color: #fffaf0;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
}

/* タイトル */
.column-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 6px 0 6px;
  line-height: 1.6;
}

/* 抜粋テキスト */
.column-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 10px;
}

/* 「詳しく読む」 */
.column-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #8b6a2e;
  font-weight: 500;
}

.column-card__more::after {
  content: "›";
  font-size: 1.1em;
  line-height: 1;
}

/* ============================
   ページネーション
   ============================ */

.column-archive__pagination {
  margin-top: 24px;
  text-align: center;
}

/* the_posts_pagination の装飾 */
.column-archive__pagination .navigation.pagination {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.column-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  color: #555;
}

.column-archive__pagination .page-numbers.current {
  background-color: #d4b06a;
  color: #fff;
  border-color: #d4b06a;
}

.column-archive__pagination .page-numbers:not(.current):hover {
  border-color: #d4b06a;
  color: #8b6a2e;
}

/* ============================
   サイドバー（ウィジェット）
   ============================ */

.column-archive-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

/* functions.php の before_title = <div class="widget-title"> に対応 */
.column-archive-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* リスト */
.column-archive-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-archive-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.column-archive-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.column-archive-sidebar .widget ul li a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.column-archive-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
  .column-archive-layout__inner {
    flex-direction: column;
  }

  .column-archive-sidebar {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .column-archive-layout {
    padding: 40px 0 60px;
  }

  .column-archive__lead {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .column-card {
    padding: 14px 14px 16px;
  }

  .column-card__title {
    font-size: 1.02rem;
  }

  .column-card__excerpt {
    font-size: 0.88rem;
  }
}