@charset "UTF-8";
/* assets/src/scss/main.scss */
@font-face {
  font-display: swap;
  font-family: "Nourd";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/nourd_bold.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.mof {
  background: #fff;
  color: #222;
  font-family: YuGothic, YuGo, 游ゴシック体, 游ゴシック, "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.mof img {
  display: block;
  height: auto;
  max-width: 100%;
}

.mof-container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
}
.mof-container.single {
  max-width: 840px;
}

.mof-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin: 20px 0 22px;
}

/* Header */
.mof-header {
  background: #fff;
  padding: 24px 0;
}
.mof-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 90%;
  position: relative;
}
.mof-header__logo {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mof-header {
  /* PCメニュー */
}
.mof-header__nav {
  color: #222;
  display: flex;
  font-size: 13px;
  gap: 22px;
  /* wp_nav_menu の ul を吸収 */
}
.mof-header__nav ul {
  align-items: center;
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mof-header__nav li {
  margin: 0;
  padding: 0;
}
.mof-header__nav a {
  color: #222;
  opacity: 0.85;
  text-decoration: none;
}
.mof-header__nav a:hover {
  opacity: 1;
}
.mof-header {
  /* ハンバーガー（SP） */
}
.mof-header__burger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 40px;
  padding: 8px;
  position: relative;
  width: 44px;
}
.mof-header__burger span {
  background: #222;
  border-radius: 2px;
  display: block;
  height: 2px;
  left: 8px;
  position: absolute;
  right: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.mof-header__burger span:nth-child(1) {
  top: 12px;
}
.mof-header__burger span:nth-child(2) {
  top: 19px;
}
.mof-header__burger span:nth-child(3) {
  top: 26px;
}

img.mof-header__logoImg {
  display: block;
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  height: 40px;
  width: auto;
}

/* Drawer（SPメニュー） */
.mof-drawer {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 9999;
}
.mof-drawer__panel {
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  height: 100%;
  max-width: 320px;
  padding: 18px 18px 22px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(102%);
  transition: transform 0.25s ease;
  width: 86%;
}
.mof-drawer__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-left: auto;
  opacity: 0.8;
  padding: 6px 4px 10px;
}
.mof-drawer__close:hover {
  opacity: 1;
}
.mof-drawer__backdrop {
  background: rgba(0, 0, 0, 0.32);
  height: 100%;
  width: 100%;
}
.mof-drawer {
  /* ドロワー内メニュー */
}
.mof-drawer .mof-menu.mof-menu--drawer {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.mof-drawer .mof-menu.mof-menu--drawer li {
  border-top: 1px solid #eaeaea;
}
.mof-drawer .mof-menu.mof-menu--drawer li:last-child {
  border-bottom: 1px solid #eaeaea;
}
.mof-drawer .mof-menu.mof-menu--drawer a {
  color: #222;
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.9;
  padding: 14px 8px;
  text-decoration: none;
}
.mof-drawer .mof-menu.mof-menu--drawer a:hover {
  opacity: 1;
}
.mof-drawer.is-open {
  display: block;
}
.mof-drawer.is-open .mof-drawer__panel {
  transform: translateX(0);
}

/* メニュー開いている時は背景スクロール禁止 */
html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
}

/* Responsive（Header：SPはハンバーガー） */
@media (max-width: 768px) {
  .mof-header {
    padding: 16px 0;
  }
  .mof-header__inner {
    padding: 0;
  }
  .mof-header__nav {
    display: none;
  }
  .mof-header__burger {
    display: inline-block;
  }
  img.mof-header__logoImg {
    height: 28px;
  }
}
.mof-breadcrumb {
  font-size: 12px;
  margin: 0 auto 40px;
  max-width: 90%;
}

.mof-breadcrumb__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  -ms-overflow-style: none;
  overflow-x: scroll;
  padding: 0;
  scrollbar-width: none;
  white-space: nowrap;
}

.mof-breadcrumb__sep {
  margin: 0 6px;
}

.mof-breadcrumb__link {
  color: #222;
  text-decoration: none;
}

.mof-lead p {
  color: #222;
  font-size: 14px;
  line-height: 2.2857142857;
  margin: 0 0 14px;
}

/* Hero */
.mof-hero {
  padding: 10px 0 26px;
}
.mof-hero__center {
  padding: 18px 0 8px;
  text-align: center;
}
.mof-hero__title {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 16px;
  text-align: center;
}
.mof-hero__sub {
  color: #777;
  font-size: 13px;
  margin: 8px 0 0;
}

/* Cards */
.mof-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0 0;
}
.mof-grid--related {
  margin-top: 18px;
}

.mof-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  overflow: hidden;
}
.mof-card__thumb {
  aspect-ratio: 16/10;
  background: #f2f2f2;
  display: block;
  position: relative;
}
.mof-card__thumb img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.mof-card__thumbPh {
  height: 100%;
  width: 100%;
}
.mof-card__body {
  padding: 16px 18px 18px;
}
.mof-card__tag {
  background: #fff;
  border: 1px solid #eaeaea;
  border-left: 0;
  border-radius: 0 4px 0 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 600;
  font-weight: 100;
  left: 0;
  padding: 2px 8px;
  position: absolute;
}
.mof-card__meta {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 12px;
  gap: 18px;
  margin-bottom: 8px;
}
.mof-card__meta .mof-meta {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  line-height: 1;
}
.mof-card__meta .mof-meta time {
  display: inline-block;
  line-height: 1;
}
.mof-card__meta .mof-meta__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  display: inline-block;
  flex-shrink: 0;
  height: 14px;
  width: 14px;
}
.mof-card__meta {
  /* 投稿日（時計） */
}
.mof-card__meta .mof-meta--published .mof-meta__icon {
  background-image: url("../../images/common/time.webp");
}
.mof-card__meta {
  /* 更新日（サイクル） */
}
.mof-card__meta .mof-meta--modified .mof-meta__icon {
  background-image: url("../../images/common/cycle.webp");
}
.mof-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  text-align: left;
}
.mof-card__excerpt {
  font-size: 12.5px;
  font-weight: 300;
  margin: 0;
  text-align: left;
}
.mof-card--link {
  color: #222;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.mof-card--link:hover {
  opacity: 0.7;
}

/* Pagination */
.mof-pagination {
  padding: 34px 0 26px;
  position: relative;
}
.mof-pagination .page-numbers {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0 64px;
}
.mof-pagination .page-numbers li {
  margin: 0 -1px;
  padding: 0;
}
.mof-pagination {
  /* 数字ボタン */
}
.mof-pagination .page-numbers a,
.mof-pagination .page-numbers span {
  align-items: center;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 0;
  color: #777;
  display: inline-flex;
  font-size: 13px;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0 14px;
}
.mof-pagination {
  /* 現在ページ */
}
.mof-pagination .page-numbers .current {
  border-color: #eaeaea;
  color: #222;
  font-weight: 700;
}
.mof-pagination {
  /* Prev / Next 共通（黒四角） */
}
.mof-pagination .page-numbers .prev,
.mof-pagination .page-numbers .next {
  align-items: center;
  background: #222;
  border: 1px solid #222;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  height: 44px;
  justify-content: center;
  min-width: 44px;
  padding: 0;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
}
.mof-pagination {
  /* 左にPrev固定 */
}
.mof-pagination .page-numbers .prev {
  left: 0;
}
.mof-pagination {
  /* 右にNext固定 */
}
.mof-pagination .page-numbers .next {
  right: 0;
}
.mof-pagination {
  /* hover */
}
.mof-pagination .page-numbers a:hover {
  border-color: #ccc;
  color: #222;
}
.mof-pagination .page-numbers .prev:hover,
.mof-pagination .page-numbers .next:hover {
  opacity: 0.9;
}

/* Category blocks (3 columns) */
.mof-catBlocks {
  padding: 34px 0 10px;
}
.mof-catBlocks__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mof-catBlock {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 18px;
}
.mof-catBlock__title {
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.mof-catBlock__list {
  display: grid;
  gap: 12px;
  margin: 10px 0 14px;
}
.mof-catBlock__item {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 60px 1fr;
}
.mof-catBlock__miniThumb {
  background: #f2f2f2;
  border-radius: 10px;
  height: 42px;
  overflow: hidden;
  width: 60px;
}
.mof-catBlock__miniThumb img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.mof-catBlock__itemTitle {
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.mof-catBlock__itemExcerpt {
  color: #777;
  font-size: 11.5px;
  line-height: 1.5;
}
.mof-catBlock__more {
  border-top: 1px solid #eaeaea;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
}

/* Article */
.mof-article {
  padding-bottom: 24px;
}

.mof-articleHeader {
  margin-bottom: 24px;
}
.mof-articleHeader__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  margin: 6px 0 12px;
}
.mof-articleHeader__meta {
  align-items: center;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mof-articleHeader__meta .mof-meta {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}
.mof-articleHeader__meta .mof-meta__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  flex-shrink: 0;
  height: 14px;
  width: 14px;
}
.mof-articleHeader__meta {
  /* 投稿日（time.webp） */
}
.mof-articleHeader__meta .mof-meta--published .mof-meta__icon {
  background-image: url("../../images/common/time.webp");
}
.mof-articleHeader__meta {
  /* 更新日（cycle.webp） */
}
.mof-articleHeader__meta .mof-meta--modified .mof-meta__icon {
  background-image: url("../../images/common/cycle.webp");
}
.mof-articleHeader__hero {
  margin: 14px 0 10px;
  overflow: hidden;
}
.mof-articleHeader__hero img {
  height: auto;
  width: 100%;
}

a.mof-articleHeader__authorLink {
  color: #2b6cb0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a.mof-articleHeader__authorLink:hover {
  opacity: 0.9;
}

.mof-pill {
  color: #222;
  display: inline-flex;
  text-decoration: none;
}

.mof-author {
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  margin: 56px auto;
  padding: 32px 0;
}
.mof-author__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 160px 1fr;
}
.mof-author__media {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
}
.mof-author__avatar {
  display: block;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100px;
}
.mof-author__avatarPh {
  align-items: center;
  background: #d9d9d9;
  border-radius: 10px;
  color: #222;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 96px;
  justify-content: center;
  width: 96px;
}
.mof-author__body {
  display: grid;
  gap: 10px;
}
.mof-author__label {
  color: #777;
  font-size: 12px;
}
.mof-author__name {
  color: #2b6cb0;
  font-size: 14px;
  font-weight: 700;
}
.mof-author__role {
  color: #222;
  font-size: 12.5px;
  font-weight: 700;
}
.mof-author__desc {
  font-size: 12.5px;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

@media (max-width: 640px) {
  .mof-author__inner {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .mof-author__avatar, .mof-author__avatarPh {
    height: 80px;
    width: 80px;
  }
}
/* TOC accordion */
.mof-acc {
  background: #f9f6ee;
  border-radius: 12px;
  margin: 18px 0 22px;
  padding: 0;
}
.mof-acc__summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 14px 16px;
  position: relative;
}
.mof-acc__summary::-webkit-details-marker {
  display: none;
}
.mof-acc__summary {
  /* ▼ 矢印（デフォルト表示） */
}
.mof-acc__summary::after {
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  content: "";
  height: 12px;
  margin-left: auto;
  position: absolute;
  right: 12px;
  transform: rotate(45deg);
  transition: opacity 0.2s ease;
  width: 12px;
}
.mof-acc {
  /* 開いた状態 */
}
.mof-acc[open] .mof-acc__summary::after {
  opacity: 0;
}
.mof-acc[open] .mof-acc__summary::before {
  content: "閉じる";
  font-size: 12px;
  font-weight: 400;
  margin-left: auto;
  position: absolute;
  right: 0;
}
.mof-acc__body {
  background: #f9f6ee;
  padding: 16px 0 0;
}

.mof-toc__list, .mof-toc__sub {
  margin: 0;
  padding-left: 18px;
}
.mof-toc__item {
  margin: 6px 0;
}
.mof-toc__link {
  color: #222;
  font-size: 12.5px;
  text-decoration: none;
}
.mof-toc__link:hover {
  text-decoration: underline;
}

/* Entry content style (headings, tables, quote) */
.mof-entry {
  color: #222;
  font-size: 14px;
}
.mof-entry h2,
.mof-entry h3,
.mof-entry h4 {
  font-weight: 800;
  line-height: 1.35;
  margin: 28px 0 12px;
}
.mof-entry h2 {
  font-size: 28px;
}
.mof-entry h3 span {
  border-bottom: 2px solid #222;
  border-top: 2px solid #222;
  display: inline-block;
  font-size: 22px;
  padding: 8px 0;
}
.mof-entry h4 {
  border-left: 5px solid #d6cc99;
  font-size: 18px;
  padding: 10px 12px;
}
.mof-entry p {
  line-height: 2.2857142857;
  margin: 0 0 14px;
}
.mof-entry ul,
.mof-entry ol {
  margin: 10px 0 16px;
  padding-left: 1.2em;
}
.mof-entry li {
  margin: 6px 0;
}
.mof-entry {
  /* 1) t-h：1行目の td を塗る */
}
.mof-entry .t-h tr:first-child > td {
  background: #f9f6ee;
}
.mof-entry {
  /* 2) t-l：各行の先頭 td を塗る */
}
.mof-entry .t-l tr > td:first-child {
  background: #f9f6ee;
}
.mof-entry {
  /* 3) t-scroll：横スクロール＋上記背景も適用 */
}
.mof-entry .t-scroll table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  /* スクロールが発生するように“中身の最小幅”を作る */
  min-width: 720px;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  /* レイアウト崩れ防止 */
  width: 100%;
  /* 背景ルール（t-h + t-l 両方） */
}
.mof-entry .t-scroll table tr:first-child > td {
  background: #f9f6ee;
}
.mof-entry .t-scroll table tr > td:first-child {
  background: #f9f6ee;
}
.mof-entry .t-scroll table {
  /* セルを折り返さない（横に伸びる＝スクロール） */
}
.mof-entry .t-scroll table td,
.mof-entry .t-scroll table th {
  white-space: nowrap;
}
.mof-entry blockquote {
  background: #f9f6ee;
  margin: 18px 0;
  padding: 40px 64px;
  position: relative;
}
.mof-entry blockquote:before {
  background-image: url("../../images/common/quarto-bottom.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 23px;
  left: 24px;
  position: absolute;
  top: 30px;
  width: 27px;
}
.mof-entry blockquote:after {
  background-image: url("../../images/common/quarto-top.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 30px;
  content: "";
  height: 23px;
  position: absolute;
  right: 24px;
  width: 27px;
}
.mof-entry table {
  border-collapse: collapse;
  font-size: 12.5px;
  width: 100%;
}
.mof-entry table th,
.mof-entry table td {
  border: 1px solid #eaeaea;
  min-width: 260px;
  padding: 10px 12px;
  vertical-align: top;
}
.mof-entry table th {
  background: #f7f7f7;
}

@media (max-width: 640px) {
  .mof-entry h2 {
    font-size: 1.2rem;
  }
  .mof-entry h3 span {
    font-size: 1.1em;
  }
  .mof-entry h4 {
    font-size: 1.05rem;
  }
  .mof-entry table th,
  .mof-entry table td {
    min-width: 132px;
  }
}
img.mof-js-avatar-check {
  display: none;
}

img.mof-js-avatar-check.avatar__option {
  display: block;
}

/* Buttons */
.mof-btn, .wp-block-button__link {
  align-items: center;
  background: #fff;
  background-image: url("../../images/common/arrow_black.webp");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  border: 1px solid #222;
  border-radius: 9999px;
  color: #222;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-width: 300px;
  padding: 16px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mof-btn:hover, .wp-block-button__link:hover {
  opacity: 0.7;
}

.mof-articleCta {
  display: flex;
  justify-content: center;
  margin: 22px 0 8px;
}

.mof-articleNav {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
  margin: 34px 0 44px;
}

.mof-articleNav__prev,
.mof-articleNav__next {
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.mof-articleNav__prev {
  justify-self: start;
}

.mof-articleNav__next {
  justify-self: end;
  text-align: right;
}

.mof-articleNav__center {
  justify-self: center;
}

/* link base */
.mof-articleNav__prev a,
.mof-articleNav__next a {
  color: inherit;
  display: block;
  font-size: 12px;
  font-weight: 300;
  max-width: 200px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mof-articleNav__prev a:hover,
.mof-articleNav__next a:hover {
  opacity: 0.85;
}

/* LEFT arrow (<) */
.mof-articleNav__prev a {
  padding-left: 20px;
}

.mof-articleNav__prev a::after {
  border-bottom: 1px solid #222;
  border-left: 1px solid #222;
  content: "";
  height: 12px;
  left: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
}

/* RIGHT arrow (>) */
.mof-articleNav__next a {
  padding-right: 20px;
}

.mof-articleNav__next a::after {
  border-right: 1px solid #222;
  border-top: 1px solid #222;
  content: "";
  height: 12px;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
}

@media (max-width: 640px) {
  .mof-articleNav {
    grid-template-areas: "prev next" "center center";
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  /* ✅ ここが必須：areas の割り当て */
  .mof-articleNav__prev {
    grid-area: prev;
  }
  .mof-articleNav__next {
    grid-area: next;
  }
  .mof-articleNav__center {
    grid-area: center;
    justify-self: stretch;
  }
  .mof-articleNav__center .mof-btn, .mof-articleNav__center .wp-block-button__link {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
  .mof-articleNav__prev a,
  .mof-articleNav__next a {
    max-width: 45vw;
  }
}
/* Related */
.mof-related {
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 16px 0 80px;
  text-align: center;
}
.mof-related__more {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}

.mof-strip {
  padding: 26px 0 0;
}
.mof-strip__imgs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.mof-strip__img {
  background: #ddd;
  height: 88px;
}

.mof-info {
  padding: 28px 0 42px;
}
.mof-info__inner {
  text-align: center;
}
.mof-info__label {
  color: #222;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mof-info__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

/* Footer */
.mof-footer {
  background-color: #30302e;
  color: #fff;
  padding: 60px 0 20px;
}
.mof-footer__inner {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
  text-align: center;
}
.mof-footer {
  /* ロゴ */
}
.mof-footer__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.mof-footer__logo {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.mof-footer__socialIcon {
  display: block;
  height: auto;
  margin: 0 auto;
  margin-top: -10px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  width: 20px;
}
.mof-footer__socialIcon:hover {
  opacity: 1;
}
.mof-footer img.mof-footer__logoImg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 72vw;
  width: 222px;
}
.mof-footer__logoText {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.mof-footer {
  /* メニュー（横並び・控えめ） */
}
.mof-footer__nav {
  border-top: 1px solid #444;
  margin-bottom: 50px;
  padding-top: 40px;
}
.mof-footer__nav .mof-menu.mof-menu--footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mof-footer__nav .mof-menu.mof-menu--footer li {
  font-weight: 500;
  margin: 0;
  padding: 0;
  position: relative;
}
.mof-footer__nav .mof-menu.mof-menu--footer li:not(:first-child):before {
  background-color: #666;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.mof-footer__nav .mof-menu.mof-menu--footer a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 5px 15px;
  text-decoration: none;
}
.mof-footer__nav .mof-menu.mof-menu--footer a:hover {
  opacity: 0.7;
}
.mof-footer {
  /* Instagram（中央の1リンク） */
}
.mof-footer__social {
  margin: 6px 0 8px;
}
.mof-footer__socialLink {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.95;
}
.mof-footer__socialLink:hover {
  opacity: 1;
  text-decoration: underline;
}
.mof-footer {
  /* コピーライト */
}
.mof-footer__copy {
  font-family: "futura bk bt", sans-serif;
  font-size: 0.5rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .mof-footer {
    padding: 60px 0 20px;
  }
  .mof-footer__inner {
    padding: 0 16px;
  }
  .mof-footer img.mof-footer__logoImg {
    width: 36.8vw;
  }
  .mof-footer__nav .mof-menu.mof-menu--footer {
    gap: 0;
  }
  .mof-footer__nav .mof-menu.mof-menu--footer a {
    font-size: 2.6666666667vw;
  }
}
img.mof-footer__logoImg {
  display: block;
  margin: 0 auto 40px;
  width: 222px;
}

/* Responsive */
@media (max-width: 980px) {
  .mof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mof-catBlocks__grid {
    grid-template-columns: 1fr;
  }
  .mof-strip__imgs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .mof-container {
    padding: 0 16px;
  }
  .mof-grid {
    grid-template-columns: 1fr;
  }
  .mof-hero__title {
    font-size: 34px;
  }
  .mof-btn, .wp-block-button__link {
    min-width: 80%;
  }
}
/* ===== Single page fine-tuning (design match) ===== */
.mof-article {
  padding-bottom: 34px;
}

.mof-articleHeader__title {
  letter-spacing: 0.02em;
  margin: 10px 0 14px;
}
.mof-articleHeader__meta {
  margin-bottom: 14px;
}
.mof-articleHeader__hero {
  margin: 18px 0 12px;
}
.mof-articleHeader__author {
  font-size: 12px;
  margin: 8px 0 20px;
}

/* TOC：添付の「薄ベージュカード」感を強める */
.mof-tocAcc {
  padding: 24px 32px;
}
.mof-tocAcc .mof-acc__summary {
  padding: 0;
}

.mof-entry {
  margin-top: 24px;
}

.mof-articleCta {
  margin: 26px 0 10px;
}

.mof-strip {
  margin: 40px 0 40px;
}
.mof-strip__swiper {
  overflow: hidden;
  width: 100%;
}
.mof-strip {
  /* Swiperのスライドを「横長の帯」に揃える */
}
.mof-strip__slide {
  background: #ddd;
  border-radius: 0;
  height: 88px;
  overflow: hidden;
  width: 220px;
}
.mof-strip__slide img {
  aspect-ratio: 4/3;
  display: block;
  height: 100%;
  max-height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

@media (max-width: 980px) {
  .mof-strip__slide {
    height: 78px;
    width: 180px;
  }
}
@media (max-width: 640px) {
  .mof-strip {
    margin: 24px 0;
    padding: 0;
  }
  .mof-strip__slide {
    height: 72px;
    width: 150px;
  }
}
/* Infoセクション：添付の余白 */
.mof-info {
  padding: 34px 0 54px;
}
.mof-info__title {
  font-family: "Nourd", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.mof-info__sub {
  color: #777;
  font-size: 13px;
}

@media (max-width: 640px) {
  .mof-articleHeader__title {
    font-size: 24px;
  }
}

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