@charset "UTF-8";
/**
 * 共通スタイル
 */
/**
 * Variables
*/
/**
 * Reset
 * https://unpkg.com/modern-css-reset/dist/reset.min.css
 * ==========================================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/**
 * Base
 * ==========================================================================
 */
/**
 * ↓ General
 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: auto;
  -moz-text-size-adjust: auto;
  text-size-adjust: auto;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  overflow-x: hidden;
  word-wrap: break-word;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #212028;
  scrollbar-gutter: stable;
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

a:hover .scale-up {
  transform: scale(1.05);
  transition: all 0.3s;
}

::-moz-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa;
}

.pc-only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.t-center {
  text-align: center !important;
}

.t-white {
  color: #fff !important;
}

.t-shadow {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}

.pointer-none a,
.pointer-none {
  pointer-events: none;
}

.logo-black {
  filter: invert(1);
}

/**
 * ↓ Header
 * ==========================================================================
*/
.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  width: 100%;
  height: 95px;
}
@media (max-width: 768px) {
  .site-header {
    height: 75px;
  }
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header-inner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .site-branding {
    display: flex;
    align-items: center;
  }
}
.site-branding a {
  text-decoration: none;
  height: 80px;
  display: inline-block;
}
.site-branding a img {
  width: auto;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.header-menu {
  display: flex;
  gap: 1.2rem;
  padding: 0 30px;
}
.header-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
.header-menu a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-menu {
    display: none;
  }
}

/**
 * ↓ Navigation
*/
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-toggle {
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.3s;
  z-index: 2000;
  background-color: #EAEAEA;
  border-radius: 50%;
}
.menu-toggle:hover {
  opacity: 0.7;
}

.is-front.menu-toggle {
  background-color: #fff;
}
@media (max-width: 768px) {
  .is-front.menu-toggle.is-open {
    background-color: #EAEAEA;
  }
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #212028;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(35deg);
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-35deg);
}

/**
 * ↓ Drawer Menu
*/
.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.3s;
  z-index: 1000;
  overflow-y: auto;
  display: flex;
}
@media (max-width: 768px) {
  .drawer-menu {
    width: 100%;
    flex-direction: column;
  }
}
.drawer-menu .site-branding {
  display: none;
}
.drawer-menu.is-open {
  right: 0;
}
@media (max-width: 768px) {
  .drawer-menu.is-open .site-branding {
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-left: 15px;
  }
}

.drawer-menu__inner {
  flex: 1;
  padding: 30px;
}
@media (max-width: 768px) {
  .drawer-menu__inner {
    flex: none;
    padding: 20px 20px 30px;
  }
}
.drawer-menu__list {
  list-style: none;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  height: 100%;
}
.drawer-menu__list li {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .drawer-menu__list li {
    padding: 10px 0;
  }
}
.drawer-menu__list li:hover {
  opacity: 0.7;
}
.drawer-menu__list a {
  text-decoration: none;
  color: #212028;
  font-size: 1.1rem;
  display: block;
  padding: 0;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .drawer-menu__list a {
    text-align: center;
    font-size: 1rem;
  }
}
.drawer-menu__buttons {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  background-image: url(../images/bg/menu_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .drawer-menu__buttons {
    padding: 50px 30px;
  }
}
.drawer-menu__buttons .f-button {
  width: 80%;
  margin: 0 auto;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .drawer-menu__buttons .f-button {
    width: 70%;
    padding: 1rem 0;
  }
}

/**
 * ↓ Footer
 * ==========================================================================
*/
footer {
  position: relative;
  z-index: 1;
}

.footer-main {
  background-color: #fff;
  color: #333333;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }
}
.footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-main__inner {
    padding: 0 15px;
  }
}
.footer-main__top {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-main__top {
    margin-bottom: 30px;
  }
}
.footer-main__bottom {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer-main__bottom {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-logo__area img {
  max-width: 200px;
}

.footer-address__area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 2rem;
  padding: 30px 0;
}

.footer-menu__grid {
  flex: 1;
}
.footer-menu__grid ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
  max-width: 840px;
}
@media (max-width: 576px) {
  .footer-menu__grid ul {
    font-size: 0.8rem;
    gap: 0.8em;
  }
}
.footer-menu__grid a {
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}
.footer-menu__grid a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 0.9rem;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 400;
  color: #5A5A5A;
}
@media (max-width: 576px) {
  .copyright {
    font-size: 0.8rem;
  }
}

/**
 * ↓ Utility
*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/**
 * ↓ 共通パーツ
 */
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 15px;
  }
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.section-title.underline {
  border-bottom: 2px solid #212028;
}
.section-title__label {
  display: block;
  color: #5A5A5A;
  opacity: 0.5;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .section-title__label {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}
.section-title__heading {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .section-title__heading {
    font-size: 1.4rem;
  }
}
.section-title__heading-text {
  font-size: 1.2rem;
  margin-left: 3em;
}
@media (max-width: 576px) {
  .section-title__heading-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}

.before-icon {
  position: relative;
  padding-left: 1.2em;
}
.before-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.before-icon.house::before {
  background-image: url("../images/icons/house.svg");
}
.before-icon.mail::before {
  background-image: url("../images/icons/mail.svg");
}

.f-button {
  display: inline-block;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
}
.f-button:hover {
  filter: brightness(0.9);
}
.f-button.real-estate {
  background-color: #E5E0D0;
  color: #5A5A5A;
}
.f-button.contact {
  background-color: #5A5A5A;
  color: #fff;
  font-weight: 400;
}

.fixed-buttons {
  position: fixed;
  bottom: 2.5rem;
  right: 0;
  z-index: 999;
  animation: fadeInUp 0.5s ease-out;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    gap: 0;
  }
}
.fixed-buttons .f-button {
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .fixed-buttons .f-button {
    flex: 1;
    padding: 0.8rem 0;
  }
}

/**
 * ↓ コンポーネント ↓
 * ==================================================================
*/
/**
 * ↓ c-button
*/
.c-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 0;
  width: 240px;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #333333;
  position: relative;
  transition: color all 0.3s, border-color all 0.3s;
  justify-content: center;
  overflow: hidden;
}
.c-button__wrapper {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .c-button__wrapper {
    margin-top: 30px;
  }
}
.c-button__wrapper.center {
  justify-content: center;
}
@media (max-width: 576px) {
  .c-button {
    width: 220px;
  }
}
.c-button.t-shadow {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.c-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: 5px;
}
.c-button span {
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.c-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  width: 16px;
  height: 1px;
  transform: translateY(-50%);
  background-color: #333333;
  transition: all 0.3s;
  z-index: 2;
}
.c-button span::after {
  content: "";
  position: absolute;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.c-button:hover::after {
  transform: translateX(0);
}
.c-button:hover {
  border-color: #333333;
  color: #fff;
  text-shadow: none;
}
.c-button:hover span::before {
  background-color: #fff;
  transform: translate(5px, -50%);
}
.c-button:hover span::after {
  border-color: #fff;
  transform: translate(5px, -50%) rotate(45deg);
}
.c-button.c-button--white {
  color: #fff;
  border-color: #fff;
}
.c-button.c-button--white::after {
  background-color: #fff;
}
.c-button.c-button--white span::before {
  background-color: #fff;
}
.c-button.c-button--white span::after {
  border-color: #fff;
}
.c-button.c-button--white:hover {
  color: #333333;
}
.c-button.c-button--white:hover span::before {
  background-color: #333333;
  transform: translate(5px, -50%);
}
.c-button.c-button--white:hover span::after {
  border-color: #333333;
  transform: translate(5px, -50%) rotate(45deg);
}

/**
 * ↓ c-slider
*/
.c-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-content {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.slide-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.slide-tag {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 18px;
}
.slide-title {
  flex-grow: 1;
}
.slide-title a {
  color: inherit;
  text-decoration: none;
}
.slide-title a:hover {
  opacity: 0.7;
}
.slide-title h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .slide-title h3 {
    font-size: 0.9rem;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
}
.slide-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**
 * ↓ c-breadcrumb
*/
.c-breadcrumb {
  padding: 1rem 0;
  background-color: #EAEAEA;
}
.c-breadcrumb__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .c-breadcrumb__list {
    padding: 0 1rem;
    font-size: 0.9rem;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__link {
  color: #333333;
  text-decoration: none;
  transition: opacity all 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.c-breadcrumb__separator {
  margin: 0 0.5rem;
  color: #EAEAEA;
}

/**
 * ↓ c-pagination
*/
.c-pagination {
  margin: 3rem 0;
  text-align: center;
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem; /* 間隔を少し広めに */
}
.c-pagination__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.c-pagination__item--next {
  align-items: center;
}
.c-pagination__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-decoration: none;
  transition: all all 0.3s;
  width: 56px; /* 丸のサイズ（画像に合わせて調整） */
  height: 56px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #EAEAEA;
  border: 1px solid #EAEAEA;
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
}
.c-pagination__link i {
  font-size: 1.25rem;
}
.c-pagination__link:hover {
  background-color: transparent;
  color: #212028;
  border-color: #212028;
}
.c-pagination__link--prev, .c-pagination__link--next {
  font-weight: 600;
}
.c-pagination__link--next {
  background-color: #fff; /* 次ボタンは白で縁取りの見た目 */
  border: 2px solid #212028;
  width: 56px;
  height: 64px;
}
.c-pagination__link--next i {
  font-size: 1.25rem;
}
.c-pagination .c-pagination__next-label {
  display: inline-block;
  margin-left: 0.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #212028;
}

.page-numbers.current,
.page-numbers.current.c-pagination__link {
  background-color: #212028 !important;
  color: #fff !important;
  border-color: #212028 !important;
  pointer-events: none;
}

/**
 * ↓ テンプレートパーツ ↓
 * ==================================================================
*/
/**
  * ↓ footer-buttons
  */
.footer-button {
  padding: 0;
}
.footer-button__inner {
  display: flex;
  justify-content: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-button__inner {
    flex-direction: column;
    gap: 2px;
  }
}
.footer-button__inner a {
  flex: 1;
  text-align: center;
  height: auto;
  aspect-ratio: 3/2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.footer-button__inner a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  transition: all 0.3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-button__inner a::after {
  content: "→";
  position: absolute;
  line-height: 1;
  font-size: 2rem;
  font-weight: 400;
  bottom: 16px;
  right: 20px;
}
.footer-button__inner a.event::before {
  background-image: url(../images/bg/btn-event_bg.png);
}
.footer-button__inner a.faq::before {
  background-image: url(../images/bg/btn-faq_bg.png);
}
.footer-button__inner a.real-estate::before {
  background-image: url(../images/bg/btn-real-estate_bg.png);
}
.footer-button__inner a:hover::before {
  transform: scale(1.05);
}
.footer-button__inner h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 576px) {
  .footer-button__inner h3 {
    font-size: 1.6rem;
  }
}
.footer-button__inner p {
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}
@media (max-width: 576px) {
  .footer-button__inner p {
    font-size: 0.8rem;
  }
}

/**
 * ↓ posts
 */
.archive-content {
  padding: 48px 0;
}

.posts {
  width: 100%;
  position: relative;
}

.posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}
@media (max-width: 768px) {
  .posts__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img,
.post-card__thumb .post-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-card__thumb--placeholder {
  background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
}

.post-card__tag {
  background-color: #5A5A5A;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 20px;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

.post-card__body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
}
@media (max-width: 576px) {
  .post-card__body {
    gap: 0.5rem;
  }
}

.post-card__date {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 800;
}

.post-card__title {
  font-size: 1rem;
  font-weight: 500;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media (max-width: 576px) {
  .post-card__title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
}

.post-card__excerpt {
  line-height: 1.8;
  font-size: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .post-card__excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }
}

.post-card__cta {
  margin-top: auto;
}

.post-card__btn {
  display: flex;
  justify-content: flex-end;
}

/**
 * ↓ single
*/
article h3 {
  font-size: 1.6rem;
  padding-bottom: 16px;
  border-bottom: 2px solid #212028;
  margin-bottom: 1.2em;
}
article h4 {
  font-size: 1.4rem;
  margin-bottom: 2em;
  padding-left: 16px;
  line-height: 1.4;
}
article .wp-block-image {
  margin-bottom: 2rem;
}
article p {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  article h3 {
    padding-bottom: 8px;
    margin-bottom: 1rem;
  }
  article p {
    margin-bottom: 1rem;
  }
}

.posts.view-more {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .posts.view-more {
    margin-bottom: 50px;
  }
}

/**
 * ↓ posts-list (シンプル版)
 */
.posts-list {
  width: 100%;
  position: relative;
}
.posts-list__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.posts-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #333333;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .posts-list__item {
    margin-bottom: 0;
    padding: 15px 0;
  }
}
.posts-list__item span {
  padding-bottom: 0.2rem;
}
.posts-list__item:last-child {
  margin-bottom: 0;
}
.posts-list__date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.posts-list__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 100px;
}
.posts-list__tag {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
}
.posts-list__title-link {
  flex: 1;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .posts-list__title-link {
    flex-grow: 1;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
}
.posts-list__title-link:hover .posts-list__title {
  opacity: 0.7;
}
.posts-list__title {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  color: #333;
  transition: opacity 0.3s ease;
}/*# sourceMappingURL=common.css.map */