@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
html {
  font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #fbf8f4;
  color: #111111;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  line-height: 2;
  position: relative;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
  word-break: break-all;
}
a:hover {
  opacity: 0.7;
}
a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

.en {
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
}

.site-wrap {
  min-height: 100vh;
}

#site-header {
  background: #428062;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 900px) {
  #site-header {
    height: 64px;
  }
}
#site-header .header-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 900px) {
  #site-header .header-inner {
    padding: 0 18px;
  }
}

.site-logo {
  display: block;
  line-height: 1;
  max-width: 180px;
  width: 100%;
}
.site-logo img {
  height: 28px;
  width: auto;
}
@media screen and (max-width: 900px) {
  .site-logo img {
    height: 16px;
  }
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 1.2em;
}
@media screen and (max-width: 900px) {
  .global-nav {
    display: none;
  }
}
.global-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(9px, 0.9524vw, 11px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.global-nav a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 201;
}
@media screen and (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}
.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}
.hamburger.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 150;
  transition: background 0.3s;
}
@media screen and (max-width: 900px) {
  .drawer-overlay {
    display: block;
  }
}
.drawer-overlay.is-open {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}
.drawer-overlay {
  pointer-events: none;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100%;
  background: #ffffff;
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer-panel.is-open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 54px;
  background: #f2f2f2;
  flex-shrink: 0;
}

.drawer-logo {
  display: block;
}
.drawer-logo img {
  filter: brightness(0);
  max-width: 100px;
  height: auto;
  width: 100%;
}

.drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #888888;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
}
.drawer-close:hover {
  color: #111111;
}

.drawer-body {
  padding: 24px 0 40px;
}

.drawer-section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  padding: 0 20px;
  margin-bottom: 8px;
}

.drawer-nav-main a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  padding: 14px 20px;
  border-bottom: 1px solid #e5e5e5;
  letter-spacing: 0.1em;
  transition: background 0.15s;
}
.drawer-nav-main a:first-child {
  border-top: 1px solid #e5e5e5;
}
.drawer-nav-main a:hover {
  background: #eeeae5;
  opacity: 1;
}
.drawer-nav-main a .arr {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #bbbbbb;
}

.drawer-divider {
  margin: 20px 0;
}

.drawer-nav-sub {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer-nav-sub a {
  font-size: 10px;
  color: #555555;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.drawer-nav-sub a:hover {
  color: #111111;
  opacity: 1;
}

.mv-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}
@media screen and (max-width: 900px) {
  .mv-slider {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.mv-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}
@media screen and (min-width: 901px) {
  .mv-slide.is-active {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
}
.mv-slide.is-measuring {
  position: static;
}

/* ── ドット ── */
.mv-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgb(210, 225, 218);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.mv-dot.is-active {
  background: #428062;
  transform: scale(1.3);
}

.mv-section {
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 901px) {
  .mv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
}

.mv-image {
  background: #eeeae5;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .mv-image {
    aspect-ratio: 16/9;
  }
}
.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv-image-placeholder {
  width: 100%;
  height: 100%;
  background: #eeeae5;
  min-height: 200px;
}
.mv-image:empty {
  background: #eeeae5;
  min-height: 200px;
}

.mv-text {
  background: #ffffff;
  padding: 5em 5.6em 8em;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .mv-text {
    display: none;
  }
}

.mv-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
@media screen and (max-width: 900px) {
  .mv-meta {
    margin-bottom: 10px;
  }
}

.mv-cat {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #428062;
  border-radius: 100px;
  padding: 3px 18px;
}

.mv-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #888888;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.mv-title {
  font-size: clamp(18px, 2.8169vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  min-height: 5em;
}
.mv-title a {
  color: #111111;
}
.mv-title a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  .mv-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.mv-desc {
  font-size: 1.4rem;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .mv-desc {
    margin-bottom: 16px;
  }
}

.mv-author {
  font-size: 11px;
  color: #888888;
  margin-bottom: 20px;
}

.mv-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.mv-read-more:hover {
  opacity: 0.6;
}

.mv-nav {
  display: flex;
  gap: 4px;
  margin-top: 24px;
}
@media screen and (max-width: 900px) {
  .mv-nav {
    margin-top: 16px;
  }
}

.mv-nav-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  color: #555555;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s;
}
.mv-nav-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.sec-head {
  text-align: center;
  padding: 120px 0 60px;
}
@media screen and (max-width: 900px) {
  .sec-head {
    padding: 50px 0 30px;
  }
}

.sec-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
}
@media screen and (max-width: 900px) {
  .sec-title {
    font-size: 2rem;
  }
}

.sec-line {
  width: 30px;
  height: 4px;
  border-radius: 20px;
  background: #111111;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .sec-line {
    height: 2px;
  }
}

.sec-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-head-left .sec-title {
  text-align: left;
}
.sec-head-left::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.card {
  cursor: pointer;
}
.card:hover .card-thumb img {
  transform: scale(1.03);
}

.card-thumb {
  background: #eeeae5;
  border-radius: 20px;
  aspect-ratio: 16/10;
  margin-bottom: 10px;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 8px;
}

.card-cat {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}
.card-cat::before {
  content: "— ";
}

.card-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #888888;
  letter-spacing: 0.1em;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 6px;
  text-wrap: auto;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-tag {
  font-size: 1.1rem;
  color: #888888;
  letter-spacing: 0.14em;
}
.card-tag::before {
  content: "#";
}

.articles-section {
  padding: 0 0 160px;
}
@media screen and (max-width: 900px) {
  .articles-section {
    padding: 0 20px 80px;
  }
}

.grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .grid-top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .grid-top .card {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .grid-top .card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .grid-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .grid-bottom .card {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .grid-bottom .card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.more-wrap {
  text-align: center;
}

.more-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 20px 36px;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #111111;
  background: transparent;
  border-radius: 100px;
  border: 2px solid #111111;
  cursor: pointer;
  transition: all 0.2s;
  margin: 4em auto 0;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .more-btn {
    font-size: 1.4rem;
    padding: 16px 30px 16px 36px;
    max-width: 240px;
  }
}
.more-btn:hover {
  background: #111111;
  color: #ffffff;
  opacity: 1;
}

.more-text {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.more-arr {
  font-size: 2rem;
  line-height: 1;
}

.cat-keyword-section {
  background: #eeeae5;
  padding: 40px 40px 160px;
}
@media screen and (max-width: 900px) {
  .cat-keyword-section {
    padding: 20px 20px 80px;
  }
}

.cat-keyword-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
  grid-gap: 1em;
}
@media screen and (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
    grid-gap: 1em 0.6em;
  }
}

.cat-item {
  background: #428062;
  padding: 16px 22px 16px 30px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.15s;
}
@media screen and (max-width: 900px) {
  .cat-item {
    padding: 12px 14px;
  }
}
.cat-item:hover {
  opacity: 0.8;
}
.cat-item:hover .cat-name,
.cat-item:hover .cat-arr {
  color: #ffffff;
}

.cat-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.15s;
}
@media screen and (max-width: 900px) {
  .cat-name {
    font-size: 10px;
  }
}

.cat-arr {
  font-size: 1.4rem;
  line-height: 1;
  color: #ffffff;
  transition: color 0.15s;
}

.kw-label {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .kw-label {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.kw-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .kw-list {
    gap: 6px;
  }
}

.kw-tag {
  font-size: 1.2rem;
  color: #111111;
  border: 1px solid #111111;
  border-radius: 100px;
  padding: 2px 18px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.15s;
}
@media screen and (max-width: 900px) {
  .kw-tag {
    padding: 4px 11px;
  }
}
.kw-tag:hover {
  border-color: #111111;
  color: #111111;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 70px;
  padding: 60px 40px 140px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 18px 40px;
  }
}

.breadcrumb {
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  .breadcrumb {
    padding: 10px 18px;
  }
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb-sep, .breadcrumb-current {
  font-size: 10px;
  letter-spacing: 0.05em;
}
.breadcrumb a {
  color: #888888;
}
.breadcrumb a:hover {
  color: #111111;
  opacity: 1;
}
.breadcrumb-sep {
  color: #bbbbbb;
}
.breadcrumb-current {
  color: #555555;
}

.article-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
}
@media screen and (max-width: 900px) {
  .article-header {
    margin-bottom: 10px;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.article-cat {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 100px;
  background: #428062;
  padding: 4px 14px;
}

.article-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #888888;
  letter-spacing: 0.1em;
}

.article-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-wrap: auto;
}
@media screen and (max-width: 900px) {
  .article-title {
    font-size: 17px;
  }
}

.article-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.article-tag {
  font-size: 1.2rem;
  color: #888888;
  letter-spacing: 0.08em;
}
.article-tag::before {
  content: "#";
}

.eyecatch {
  background: #eeeae5;
  aspect-ratio: 16/8;
  margin-bottom: 3.6em;
  overflow: hidden;
  border-radius: 30px;
  max-width: 830px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .eyecatch {
    border-radius: 20px;
  }
}
.eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  font-size: 1.6rem;
  line-height: 2;
  color: #222222;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .article-body {
    font-size: 1.3rem;
  }
}
.article-body .wp-block-image {
  margin: 3em 0;
}
.article-body p {
  margin-bottom: 2.2em;
}
.article-body h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  background: #428062;
  border-radius: 6px;
  padding: 14px 10px 14px 20px;
  margin: 3em 0 2em;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 900px) {
  .article-body h2 {
    font-size: 1.8rem;
  }
}
.article-body h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #428062;
  margin: 3em 0 2em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #428062;
}
@media screen and (max-width: 900px) {
  .article-body h3 {
    font-size: 1.6rem;
  }
}
.article-body h4 {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin: 1.6em 0 0.6em;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.article-body ul li,
.article-body ol li {
  list-style: disc;
  margin-bottom: 0.4em;
}
.article-body ol li {
  list-style: decimal;
}
.article-body blockquote {
  border-left: 3px solid #e5e5e5;
  padding: 12px 18px;
  color: #555555;
  margin: 1.5em 0;
  font-style: italic;
}
.article-body code {
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: 12px;
  background: #eeeae5;
  padding: 2px 6px;
  color: #555555;
}
.article-body pre {
  background: #eeeae5;
  padding: 16px 18px;
  margin: 1.5em 0;
  border-left: 2px solid #e5e5e5;
  overflow-x: auto;
}
.article-body pre code {
  background: none;
  padding: 0;
  font-size: 12px;
}
.article-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5em auto;
}
.article-body a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover {
  opacity: 0.6;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 13px;
}
.article-body table th,
.article-body table td {
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  text-align: left;
}
.article-body table th {
  background: #eeeae5;
  font-weight: 500;
}

.article-author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eeeae5;
  padding: 20px 22px;
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 900px) {
  .article-author-box {
    padding: 16px 18px;
    gap: 12px;
  }
}

.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e5e5;
}
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #111111;
  margin-bottom: 4px;
}

.article-author-desc {
  font-size: 11px;
  color: #555555;
  line-height: 1.75;
  font-weight: 300;
}

.related-section {
  border-top: 1px solid #111111;
  padding: 10px 40px 140px;
}
@media screen and (max-width: 900px) {
  .related-section {
    padding: 10px 20px 60px;
  }
}
.related-section .sec-title strong {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 900px) {
  .related-section .sec-title strong {
    font-size: 2.2rem;
  }
}
.related-section .sec-title span {
  display: inline-block;
  font-size: 60%;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .related-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .related-grid .card {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .related-grid .card:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 900px) {
  .sidebar {
    order: 2;
  }
}

.sidebar-block {
  margin-bottom: 60px;
}

.sidebar-label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  padding-bottom: 7px;
  border-bottom: 1px solid #111111;
  margin-bottom: 13px;
}

.sidebar-cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.sidebar-cat-list li:hover .sidebar-cat-name {
  color: #111111;
}

.sidebar-cat-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #111111;
  transition: color 0.2s;
}

.sidebar-cat-count {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #bbbbbb;
}

.sidebar-search {
  display: flex;
  border: 1px solid #111111;
  width: 100%;
  margin-top: 1.4em;
}
.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 1.2rem;
  color: #222222;
  background: #ffffff;
  font-family: "BIZ UDPGothic", sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.sidebar-search button {
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  transition: opacity 0.2s;
}
.sidebar-search button:hover {
  opacity: 0.75;
}

.sidebar-recent-list {
  display: flex;
  flex-direction: column;
}

.sidebar-recent-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 1em 0;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.sidebar-recent-item:hover .sidebar-recent-title {
  color: #555555;
}

.sidebar-recent-thumb {
  background: #eeeae5;
  aspect-ratio: 1;
  overflow: hidden;
}
.sidebar-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-recent-title {
  font-size: 1.2rem;
  line-height: 1.5;
  transition: color 0.2s;
  letter-spacing: 0.14em;
}

.sidebar-recent-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: #888888;
  margin-top: 3px;
}

.sidebar-author {
  text-align: center;
  padding: 14px 0;
}

.sidebar-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  background: #e5e5e5;
}
.sidebar-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #111111;
  margin-bottom: 6px;
}

.sidebar-author-desc {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-align: left;
  color: #555555;
  line-height: 1.8;
}

.sidebar-banner a {
  display: block;
}
.sidebar-banner a img {
  width: 100%;
  height: auto;
}
.sidebar-banner:empty {
  background: #eeeae5;
  border: 1px solid #e5e5e5;
  aspect-ratio: 4/3;
}

.archive-header {
  padding: 40px 40px;
}
@media screen and (max-width: 900px) {
  .archive-header {
    padding: 24px 18px;
  }
}

.archive-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 10px;
}
.archive-title::before {
  content: "— ";
  color: #888888;
}
@media screen and (max-width: 900px) {
  .archive-title {
    font-size: 1.6rem;
  }
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 100px 40px 140px;
}
@media screen and (max-width: 900px) {
  .archive-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 40px;
    gap: 0;
  }
  .archive-grid .card {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .archive-grid .card:last-child {
    border-bottom: none;
  }
}

.pagination {
  text-align: center;
  padding: 0 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination a,
.pagination span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 100px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555555;
  text-align: center;
  color: #555555;
  transition: all 0.2s;
}
.pagination a:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  opacity: 1;
}
.pagination .current {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

#site-footer {
  background: #111111;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media screen and (max-width: 900px) {
  #site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 40px 20px;
  }
}

.footer-logo {
  display: block;
  margin-bottom: 2px;
}
.footer-logo img {
  width: 126px;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .footer-nav {
    justify-content: flex-start;
    gap: 16px;
  }
}
.footer-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbbbbb;
  transition: opacity 0.2s;
}
.footer-nav a:hover {
  opacity: 0.6;
}

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #bbbbbb;
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .footer-copy {
    text-align: left;
    margin-top: 10px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

@keyframes mvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mv-slide {
  display: none;
  opacity: 0;
}
.mv-slide.is-active {
  display: grid;
  opacity: 1;
  animation: mvFadeIn 0.6s ease forwards;
}
@media screen and (min-width: 901px) {
  .mv-slide.is-active {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
}

.archive-count {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.search-no-result {
  grid-column: 1/-1;
  padding: 48px 0;
  text-align: center;
}
.search-no-result p {
  font-size: 13px;
  color: #555555;
  margin-bottom: 12px;
}
.search-no-result__form {
  max-width: 400px;
  margin: 24px auto 0;
}

.page-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 40px 56px;
}
@media screen and (max-width: 900px) {
  .page-layout {
    padding: 24px 18px 40px;
  }
}
.page-layout .wp-block-image img {
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  .page-layout .wp-block-image img {
    border-radius: 20px;
  }
}

.page-header {
  padding: 2em 0 3em;
}
@media screen and (max-width: 900px) {
  .page-header {
    padding: 1em 0;
  }
}

.page-title {
  font-size: 4.6rem;
  font-family: "Montserrat", "BIZ UDPGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .page-title {
    font-size: 2.4rem;
  }
}

.error404-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 18px;
}

.error404-inner {
  text-align: center;
}

.error404-num {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 300;
  color: #e5e5e5;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 900px) {
  .error404-num {
    font-size: 60px;
  }
}

.error404-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 16px;
}

.error404-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 32px;
}

.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #111111;
  border-radius: 10px;
  padding: 0.6em 1em;
  margin-top: 0.4em;
  width: 100%;
}
.wpcf7 input[type=submit] {
  background: #428062;
  border: none;
  border-radius: 100px;
  display: block;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 0.8em;
  margin: 0 auto;
  max-width: 300px;
}
.wpcf7 .required {
  background: #111111;
  border-radius: 4px;
  color: #fff;
  font-size: 70%;
  letter-spacing: 0.2em;
  display: inline-block;
  padding: 0 0.6em;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  border: none;
}

.wpcf7-not-valid-tip {
  font-size: 80%;
}/*# sourceMappingURL=style.css.map */