@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* タブレット */
/* PC:最低幅 */
/* PC:中幅 */
/* PC:大幅 */
/* PC:VW基準*/
/* PC:%基準*/
/* PC:大幅VW基準*/
/* PC:大幅%基準*/
/* PC:中幅VW基準*/
/* PC:中幅%基準*/
/* PC:px基準*/
/* タブレットpx基準 */
/* タブレット%基準 */
/* スマートフォンvw基準 */
/* スマートフォン%基準 */
/* ==========================================================================
   コラム 共通（一覧・詳細）
   ========================================================================== */
.column-archive,
.column-single {
  margin: 0 auto;
  padding: 60px 20px 100px;
}
@media only screen and (max-width: 767px) {
  .column-archive,
  .column-single {
    padding: 9.375vw 20px 15.625vw;
  }
}

.column-archive {
  max-width: 1300px;
}

.column-single {
  max-width: 1180px;
}

/* ==========================================================================
   一覧・詳細 共通レイアウト（本文 + サイドバー）
   ========================================================================== */
.column-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .column-layout {
    flex-direction: column;
    gap: 9.375vw;
  }
}

.column-main {
  flex: 1;
  min-width: 0;
}

.column-sidebar {
  width: 280px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1200px) {
  .column-sidebar {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .column-sidebar {
    width: 100%;
  }
}

.column-sidebar__block {
  padding: 3rem;
  margin-bottom: 5rem;
  background: #fff;
  border: 2px solid #145bad;
  box-shadow: 4px 4px 0 0 #145bad;
  border-radius: 1em;
}
@media only screen and (max-width: 767px) {
  .column-sidebar__block {
    padding: 6.25vw;
    margin-bottom: 7.8125vw;
  }
}
.column-sidebar__block:last-child {
  margin-bottom: 0;
}

.column-sidebar__title {
  position: relative;
  margin-bottom: 16px;
  font-feature-settings: "halt" on;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #145bad;
}
@media only screen and (max-width: 767px) {
  .column-sidebar__title {
    font-size: 5vw;
  }
}

.column-sidebar__posts {
  list-style: none;
}

.column-sidebar__post {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(33, 23, 19, 0.3);
}
.column-sidebar__post:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.column-sidebar__post a {
  display: block;
  text-decoration: none;
  color: #000;
}
.column-sidebar__post a:hover .column-sidebar__post-title {
  color: #145bad;
}

.column-sidebar__post-title {
  font-size: 1.3rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .column-sidebar__post-title {
    font-size: 3.75vw;
  }
}

.column-sidebar__categories {
  list-style: none;
}
.column-sidebar__categories li {
  border-bottom: 1px solid rgba(33, 23, 19, 0.3);
}
.column-sidebar__categories li:last-child {
  border-bottom: none;
}
.column-sidebar__categories a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 12px 1.4em;
  font-size: 1.4rem;
  display: block;
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .column-sidebar__categories a {
    font-size: 3.75vw;
  }
}
.column-sidebar__categories a::before {
  content: "・";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #145bad;
  font-weight: 700;
  line-height: 1;
}
.column-sidebar__categories a:hover {
  color: #145bad;
}
.column-sidebar__categories a small {
  color: #b1b1a7;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .column-sidebar__categories a small {
    font-size: 3.125vw;
  }
}

/* ==========================================================================
   コラム一覧（archive-column.php）
   ========================================================================== */
.column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .column-list {
    gap: 6.25vw 3.125vw;
  }
}

.column-list__item {
  width: calc((100% - 60px) / 3);
}
@media only screen and (max-width: 1200px) {
  .column-list__item {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .column-list__item {
    width: calc((100% - 3.125vw) / 2);
  }
}
.column-list__item a {
  display: block;
  text-decoration: none;
  color: #000;
}

.column-list__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 15px;
  background: #f7f7f7;
}
.column-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-list__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}

.column-list__excerpt {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgb(33, 23, 19);
  margin-bottom: 10px;
}

.column-list__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.column-list__date {
  font-size: 1.3rem;
  color: #b1b1a7;
  font-family: "Oswald", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.05em;
}

.column-list__category {
  display: inline-block;
  padding: 2px 12px;
  background: #145bad;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 2px;
}

.column-list__empty {
  text-align: center;
  font-size: 1.6rem;
  padding: 60px 0;
}

/* ページネーション */
.pagination {
  margin-top: 60px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(33, 23, 19, 0.3);
  text-decoration: none;
  color: #000;
  font-family: "Oswald", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.05em;
}
.pagination .page-numbers.current {
  background: #145bad;
  border-color: #145bad;
  color: #fff;
}

/* ==========================================================================
   コラム詳細（single-column.php）
   ========================================================================== */
.column-single__header {
  text-align: left;
  margin-bottom: 3em;
}

.column-single__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .column-single__meta {
    flex-wrap: wrap;
  }
}

.column-single__category {
  display: inline-block;
  padding: 4px 16px;
  background: #145bad;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 2px;
}

.column-single__dates {
  display: flex;
  align-items: center;
  gap: 16px;
}

.column-single__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .column-single__title {
    font-size: 2.2rem;
  }
}

.column-single__date {
  font-size: 1.3rem;
  color: #b1b1a7;
  font-family: "Oswald", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.05em;
}

.column-single__thumb {
  margin-bottom: 40px;
}
.column-single__thumb img {
  width: 100%;
  height: auto;
}

.column-single__content {
  font-size: 1.6rem;
  line-height: 2;
}
.column-single__content > * + * {
  margin-top: 1.6em;
}
.column-single__content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  border-left: 6px solid #145bad;
  padding-left: 16px;
}
.column-single__content h3 {
  font-size: 1.9rem;
  font-weight: bold;
}
.column-single__content a {
  color: #145bad;
  text-decoration: underline;
}
.column-single__content .wp-block-button__link {
  text-decoration: none;
}
.column-single__content ul,
.column-single__content ol {
  padding-left: 1.6em;
}
.column-single__content ul {
  list-style: disc;
}
.column-single__content ol {
  list-style: decimal;
}
.column-single__content img {
  max-width: 100%;
  height: auto;
}
.column-single__content blockquote {
  padding: 16px 20px;
  background: #f7f7f7;
  border-left: 4px solid #b1b1a7;
}
.column-single__content table {
  width: 100%;
  border-collapse: collapse;
}
.column-single__content table th,
.column-single__content table td {
  border: 1px solid rgba(33, 23, 19, 0.3);
  padding: 10px 14px;
}

.column-single__back {
  text-align: center;
  margin-top: 60px;
}
.column-single__back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #145bad;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: opacity 0.2s;
}
.column-single__back a::before {
  content: "";
  width: 9px;
  height: 12px;
  background: url(../img/common/icon-arrow01.svg) no-repeat center center;
  background-size: contain;
  transform: scaleX(-1);
}
.column-single__back a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   監修者カード（ACFブロック: acf/editor-card）
   ========================================================================== */
.editor-card {
  display: flex;
  gap: 24px;
  padding: 3rem;
  margin: 40px 0;
  background: #fff;
  border: 2px solid #145bad;
  box-shadow: 4px 4px 0 0 #145bad;
  border-radius: 1em;
}
@media only screen and (max-width: 767px) {
  .editor-card {
    flex-direction: column;
    gap: 3.75vw;
    padding: 6.25vw;
    margin: 7.8125vw 0;
  }
}

.editor-card__photo {
  flex-shrink: 0;
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .editor-card__photo {
    width: 80px;
  }
}

.editor-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

.editor-card__body {
  flex: 1;
  min-width: 0;
}

.editor-card__label {
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #145bad;
}

.editor-card__title {
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.editor-card__name {
  margin-bottom: 12px;
  font-size: 2.4rem;
  font-weight: 700;
}

.editor-card__profile {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ==========================================================================
   記事編集画面（Gutenberg）を column-single__content の見た目に近づける
   ========================================================================== */
.editor-styles-wrapper {
  font-size: 16px;
  line-height: 2;
}
.editor-styles-wrapper .is-root-container > * + * {
  margin-top: 1.6em;
}
.editor-styles-wrapper .wp-block-post-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
.editor-styles-wrapper h2 {
  font-size: 22px;
  font-weight: bold;
  border-left: 6px solid #145bad;
  padding-left: 16px;
}
.editor-styles-wrapper h3 {
  font-size: 19px;
  font-weight: bold;
}
.editor-styles-wrapper a {
  color: #145bad;
  text-decoration: underline;
}
.editor-styles-wrapper .wp-block-button__link {
  gap: 20px;
  padding: 16px 30px;
  border-radius: 16px;
  font-size: 20px;
  text-decoration: none;
}
.editor-styles-wrapper .wp-block-button__link::after {
  width: 16px;
  height: 15px;
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  padding-left: 1.6em;
}
.editor-styles-wrapper ul {
  list-style: disc;
}
.editor-styles-wrapper ol {
  list-style: decimal;
}
.editor-styles-wrapper img {
  max-width: 100%;
  height: auto;
}
.editor-styles-wrapper blockquote {
  padding: 16px 20px;
  background: #f7f7f7;
  border-left: 4px solid #b1b1a7;
}
.editor-styles-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
  border: 1px solid rgba(33, 23, 19, 0.3);
  padding: 10px 14px;
}
.editor-styles-wrapper .editor-card__label {
  font-size: 20px;
}
.editor-styles-wrapper .editor-card__title {
  font-size: 14px;
}
.editor-styles-wrapper .editor-card__name {
  font-size: 24px;
}
.editor-styles-wrapper .editor-card__profile {
  font-size: 14px;
}

/*# sourceMappingURL=column.css.map */
