*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #242424;
  background: #ffffff;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

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

p, h1, h2, h3 {
  margin: 0;
}

h1, h2, h3 {
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}

p {
  font-size: clamp(1rem, 0.85rem + 0.4vw, 1.0625rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: normal;
  color: #000;
}

@media (max-width: 768px) {
  p {
    font-size: 0.875rem;
    line-height: 2.15;
  }
}
.inner {
  width: min(100% - 80px, 1200px);
  margin: 0 auto;
}

.inner--narrow {
  max-width: 720px;
}

.inner--article {
  max-width: 760px;
}

.inner--blog {
  max-width: 800px;
}

.inner--news {
  max-width: 860px;
}

.inner--archive {
  max-width: 980px;
}

.inner--contact {
  max-width: 760px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 42px;
  color: #242424;
  background: #f4eee5;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header__logo {
  display: block;
  line-height: 1;
}
.site-header__logo a {
  display: block;
}
.site-header__logo img {
  display: block;
  width: 150px;
  max-width: none;
}
.site-header__nav {
  margin-left: auto;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.25rem);
}
.site-header__nav a {
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.25s ease;
}
.site-header__nav a:hover {
  color: #d95c34;
}
.site-header__facebook {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-left: clamp(1.5rem, 3vw, 3.5rem);
  transition: opacity 0.25s ease;
}
.site-header__facebook:hover {
  opacity: 0.72;
}
.site-header__facebook img {
  display: block;
  width: 100%;
  max-width: none;
}

.menu-button {
  display: none;
}

.sp-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  color: #ffffff;
  background: #d95c34;
}

#main {
  min-height: 100vh;
}

body.is-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.site-footer {
  overflow: hidden;
  color: #ffffff;
  background: #d95c34;
  border-radius: 16px 16px 0 0;
}
.site-footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
}
.site-footer .copyright {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .inner {
    width: min(100% - 56px, 100%);
  }
  #about {
    scroll-margin-top: 40px;
  }
  .site-header {
    height: 48px;
  }
  .site-header__inner {
    width: 100%;
    padding: 0 8px 0 18px;
    justify-content: space-between;
  }
  .site-header__logo {
    display: block;
  }
  .site-header__logo img {
    width: 132px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__facebook {
    display: none;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 56px;
    height: 48px;
    line-height: 1;
  }
  .menu-button__lines {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
  }
  .menu-button__lines::before, .menu-button__lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #242424;
    border-radius: 2px;
  }
  .menu-button__lines::before {
    top: 1px;
    box-shadow: 0 7px 0 #242424;
  }
  .menu-button__lines::after {
    bottom: 0;
  }
  .menu-button__text {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }
  .sp-nav {
    display: block;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .sp-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .sp-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .sp-nav__close img {
    width: 48px;
    height: 48px;
  }
  .sp-nav__menu {
    position: relative;
    z-index: 5;
    padding: 120px 28px 0;
  }
  .sp-nav__menu li + li {
    margin-top: 28px;
  }
  .sp-nav__menu a {
    display: inline-block;
    font-size: clamp(1.4rem, 5vw, 1.5rem);
    line-height: 1;
  }
  .sp-nav__menu .sp-nav__facebook {
    display: block;
    width: 100%;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px dashed rgba(255, 255, 255, 0.86);
  }
  .sp-nav__menu .sp-nav__facebook img {
    display: block;
    width: 42px;
    max-width: none;
  }
  .sp-nav__visual {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 72%;
    max-width: none;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .site-footer {
    border-radius: 22px 22px 0 0;
  }
  .site-footer .inner {
    min-height: 126px;
  }
  .site-footer .copyright {
    font-size: 0.72rem;
  }
}
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 28px;
  margin-bottom: 8px;
  padding: 0 16px;
  color: #ffffff;
  background: #d95c34;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
}

.home-hero {
  padding: 64px 0 40px 0;
  background: #faf7f2;
}
.home-hero__stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.home-hero__image {
  display: block;
  width: 100%;
}
.home-hero__picture {
  display: block;
  width: 100%;
}
.home-hero__copy {
  position: absolute;
  top: 36px;
  right: 8px;
  font-size: clamp(1.14rem, 1.36rem + 0.72vw, 2rem);
  line-height: 1.64;
  color: #242424;
  white-space: nowrap;
}
.home-hero__copy-pc {
  display: block;
}
.home-hero__copy-sp {
  display: none;
}

.about-intro {
  padding: 80px 0 100px 0;
  background: #ffffff;
}
.about-intro .inner {
  max-width: 760px;
}
.about-intro h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 12px;
}

.living-section {
  padding: 130px 0 0;
  background: #faf7f2;
}
.living-section__photo {
  display: block;
  width: 1200px;
  margin: 0 auto 82px;
}
.living-section h2 {
  margin-bottom: 46px;
  font-size: 1.7rem;
  text-align: center;
}
.living-section p + p {
  margin-top: 26px;
}
.living-section p + h2 {
  margin-top: 88px;
}

.photo-mosaic {
  padding: 136px 0 0;
  background: #faf7f2;
}
.photo-mosaic img {
  display: block;
  width: 100%;
  max-width: none;
}

.members-section {
  padding: 142px 0 156px;
  background: #ffffff;
}
.members-section h2 {
  margin-bottom: 80px;
  font-size: 1.8rem;
}

.member-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 76px;
  align-items: start;
}
.member-card + .member-card {
  margin-top: 92px;
  padding-top: 72px;
  border-top: 1px solid #ebe6de;
}
.member-card__profile {
  text-align: center;
}
.member-card__profile img {
  width: 160px;
  border-radius: 50%;
}
.member-card__profile .member-card__profile-image--unmasked {
  border-radius: 0;
}
.member-card__profile h3 {
  margin-top: 20px;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}
.member-card__profile p {
  margin-top: 2px;
  font-size: 0.8125rem;
  line-height: 1.7;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.member-card__body p {
  font-size: 1rem;
  line-height: 1.8;
}
.member-card__body p + p {
  margin-top: 16px;
  color: #333;
}
.member-card__body .member-card__job-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.news-section {
  padding: 116px 0 146px;
  background: #faf7f2;
  border-radius: 10px 10px 0 0;
}
.news-section .section-label {
  margin-bottom: 16px;
}
.news-section h2 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}
.news-section__lead {
  margin-bottom: 54px;
}
.news-section__more {
  margin-top: 72px;
  text-align: right;
}
.news-section__more-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.25s ease;
}
.news-section__more-link:hover {
  color: #d95c34;
}

.news-list {
  display: grid;
  gap: 28px;
}

.news-card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 15px 28px;
  background: #ffffff;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.07);
}
.news-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 32px;
  padding: 0 16px;
  color: #ffffff;
  background: #7697ae;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
}
.news-card time {
  color: #777777;
  font-size: 0.82rem;
  font-weight: 400;
}
.news-card__title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.blog-page .site-header {
  background: #f4eee5;
}

.blog-article {
  padding: 126px 0 132px;
  background: #ffffff;
}
.blog-article h1 {
  margin: 16px 0 56px;
  font-size: clamp(1.35rem, 5vw, 1.55rem);
  line-height: 1.35;
}
.blog-article__hero, .blog-article__gallery {
  display: block;
  width: 100%;
}
.blog-article__hero {
  margin-bottom: 88px;
}
.blog-article__gallery {
  margin: 96px 0 92px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.article-meta__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 31px;
  padding: 0 16px;
  color: #ffffff;
  background: #7697ae;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.article-meta time {
  color: #777777;
  font-size: 0.82rem;
  font-weight: 700;
}

.article-section + .article-section {
  margin-top: 78px;
}
.article-section h2 {
  margin-bottom: 42px;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.18rem;
  line-height: 2;
}
.article-section p {
  font-size: 1.1rem;
  line-height: 1.86;
}
.article-section p + p {
  margin-top: 30px;
}

.contact-page .site-header {
  background: #f4eee5;
}

.contact-section {
  padding: 128px 0 132px;
  background: #ffffff;
}
.contact-section h1 {
  text-align: center;
  font-size: 1.45rem;
  line-height: 1.5;
}

.contact-form,
.contact-complete {
  margin: 72px auto 0;
  padding: 48px 36px 28px;
  background: #f1f1f1;
  border-radius: 8px;
}

.contact-form {
  position: relative;
}
.contact-form__row + .contact-form__row {
  margin-top: 28px;
}
.contact-form__row--half {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form__error {
  margin-bottom: 24px;
  color: #c94e29;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}
.contact-form__actions {
  display: grid;
  grid-template-columns: minmax(0, 180px) 1fr;
  gap: 16px;
  margin-top: 48px;
}
.contact-form__actions .contact-button {
  margin-top: 0;
}
.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
}
.contact-field label span {
  color: #d95c34;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  color: #242424;
  background: #ffffff;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.94rem;
  line-height: 1.7;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9a9a9a;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(118, 151, 174, 0.45);
  outline-offset: 2px;
}
.contact-field input {
  height: 44px;
  padding: 0 20px;
}
.contact-field textarea {
  min-height: 150px;
  padding: 14px 20px;
  resize: vertical;
}
.contact-field__error {
  margin-top: 6px;
  color: #c94e29;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: left;
}

.contact-button {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: #d95c34;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  transition: background 0.25s ease, transform 0.25s ease;
}
.contact-button:hover {
  background: #c94e29;
  transform: translateY(-1px);
}
.contact-button--back {
  color: #242424;
  background: #dedede;
}
.contact-button--back:hover {
  background: #d3d3d3;
}
.contact-button--link {
  max-width: 260px;
  margin-top: 34px;
}

.contact-confirm-list {
  margin: 0;
}
.contact-confirm-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #dedede;
}
.contact-confirm-list div:first-child {
  padding-top: 0;
}
.contact-confirm-list dt {
  font-size: 0.88rem;
  font-weight: 700;
}
.contact-confirm-list dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
}

.contact-complete {
  text-align: center;
}
.contact-complete p {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

@media (max-width: 768px) {
  .section-label {
    min-width: auto;
    height: 26px;
    margin-bottom: 4px;
    padding: 0 18px;
    font-size: 0.82rem !important;
  }
  .home-hero {
    padding: 48px 0 50px;
  }
  .home-hero .inner {
    width: 100%;
    padding: 0;
  }
  .home-hero__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-hero__picture {
    order: 1;
    width: 100%;
    max-width: none;
  }
  .home-hero__image {
    width: 100%;
  }
  .home-hero__copy {
    position: static;
    order: 2;
    margin-top: 22px;
    font-size: clamp(1.25rem, 4.05vw, 1.5rem);
    line-height: 1.9;
    text-align: center;
    white-space: normal;
  }
  .home-hero__copy-pc {
    display: none;
  }
  .home-hero__copy-sp {
    display: block;
  }
  .about-intro {
    padding: 42px 0 78px;
  }
  .about-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(1.3rem, 4.2vw, 1.4rem);
    line-height: 1.75;
  }
  .about-intro p {
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .living-section {
    padding: 72px 0 0;
  }
  .living-section .inner {
    width: min(100% - 56px, 100%);
  }
  .living-section__photo {
    width: 100%;
    margin-bottom: 38px;
  }
  .living-section h2 {
    margin-bottom: 28px;
    font-size: clamp(1.3rem, 4.2vw, 1.4rem);
    line-height: 1.75;
    text-align: left !important;
  }
  .living-section p {
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .living-section p + p {
    margin-top: 22px;
  }
  .living-section p + h2 {
    margin-top: 58px;
    text-align: center;
  }
  .photo-mosaic {
    padding-top: 64px;
    overflow: hidden;
  }
  .photo-mosaic img {
    width: 100%;
    min-width: 0;
    height: auto;
  }
  .members-section {
    padding: 80px 0 86px;
    text-align: center;
  }
  .members-section h2 {
    margin-bottom: 48px;
    font-size: clamp(1.2rem, 4.2vw, 1.4rem);
    line-height: 1.8;
  }
  .member-card {
    display: block;
  }
  .member-card + .member-card {
    margin-top: 58px;
    padding-top: 50px;
  }
  .member-card__profile {
    margin-bottom: 22px;
  }
  .member-card__profile img {
    width: 84px;
  }
  .member-card__profile h3 {
    margin-top: 14px;
    font-size: clamp(1rem, 4.2vw, 1.1rem);
  }
  .member-card__profile p {
    font-size: 0.75rem;
  }
  .member-card__body {
    text-align: left;
  }
  .member-card__body p {
    font-size: clamp(1rem, 4vw, 1rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .member-card__body .member-card__job-title {
    font-size: 0.8rem;
  }
  .news-section {
    padding: 56px 0 70px;
    border-radius: 8px 8px 0 0;
  }
  .news-section h2 {
    margin-bottom: 20px;
    font-size: clamp(1.2rem, 4.2vw, 1.4rem);
  }
  .news-section__lead {
    margin-bottom: 32px;
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.8;
  }
  .news-section__more {
    margin-top: 42px;
    text-align: center;
  }
  .news-section__more-link {
    font-size: 0.95rem;
  }
  .news-list {
    gap: 18px;
  }
  .news-card {
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 8px;
  }
  .news-card__status {
    width: 58px;
    height: 21px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
  .news-card time {
    font-size: 0.78rem;
  }
  .news-card__title {
    grid-column: 1/-1;
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.6;
  }
  .blog-article {
    padding: 86px 0 74px;
  }
  .blog-article .inner {
    width: min(100% - 56px, 100%);
  }
  .blog-article h1 {
    margin: 18px 0 40px;
    font-size: clamp(1.45rem, 6vw, 1.65rem);
    line-height: 1.6;
  }
  .blog-article__hero {
    width: calc(100% + 8px);
    max-width: none;
    margin: 0 -4px 70px;
  }
  .blog-article__gallery {
    width: calc(100% + 8px);
    max-width: none;
    margin: 74px -4px 72px;
  }
  .article-meta {
    gap: 16px;
  }
  .article-meta__status {
    min-width: 76px;
    height: 34px;
    font-size: 0.82rem;
  }
  .article-meta time {
    font-size: 0.78rem;
  }
  .article-section + .article-section {
    margin-top: 66px;
  }
  .article-section h2 {
    margin-bottom: 30px;
    font-size: 1.17rem;
    line-height: 2;
  }
  .article-section p {
    font-size: 1rem;
    font-weight: 400;
  }
  .article-section p + p {
    margin-top: 28px;
  }
  .contact-section {
    padding: 96px 0 88px;
  }
  .contact-section h1 {
    font-size: 1.32rem;
  }
  .contact-form,
  .contact-complete {
    margin-top: 48px;
    padding: 28px 20px 24px;
  }
  .contact-form__row + .contact-form__row {
    margin-top: 24px;
  }
  .contact-form__row--half {
    display: block;
  }
  .contact-form__row--half .contact-field + .contact-field {
    margin-top: 24px;
  }
  .contact-form__actions {
    display: block;
    margin-top: 38px;
  }
  .contact-form__actions .contact-button + .contact-button {
    margin-top: 14px;
  }
  .contact-field label {
    font-size: 0.82rem;
  }
  .contact-field input {
    height: 46px;
    padding: 0 16px;
  }
  .contact-field textarea {
    min-height: 158px;
    padding: 12px 16px;
  }
  .contact-button {
    min-height: 46px;
    margin-top: 40px;
  }
  .contact-confirm-list div {
    display: block;
    padding: 16px 0;
  }
  .contact-confirm-list dt {
    margin-bottom: 6px;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.blog-filter {
  padding-top: 42px;
  background: #edf6f8;
}
.blog-filter__inner {
  display: grid;
  grid-template-columns: 128px 128px 170px;
  gap: 38px;
  align-items: center;
  justify-content: end;
  min-height: 56px;
}
.blog-filter__select-wrap {
  position: relative;
}
.blog-filter__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid #707070;
  transform: translateY(-38%);
  pointer-events: none;
}
.blog-filter__select, .blog-filter__search-input {
  width: 100%;
  height: 32px;
  color: #242424;
  background: #ffffff;
  border: 2px solid #9a9a9a;
  border-radius: 6px;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.03);
}
.blog-filter__select:focus, .blog-filter__search-input:focus {
  outline: 2px solid rgba(118, 151, 174, 0.55);
  outline-offset: 2px;
}
.blog-filter__select {
  appearance: none;
  padding: 0 30px 0 12px;
  text-align: center;
  text-align-last: center;
}
.blog-filter__search {
  position: relative;
  min-width: 0;
}
.blog-filter__search-input {
  padding: 0 42px 0 14px;
  font-weight: 400;
  text-align: left;
}
.blog-filter__search-button {
  position: absolute;
  top: 50%;
  right: 9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
.blog-filter__search-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.blog-filter + .blog-article.single-post {
  padding-top: 64px;
}

.post-archive {
  padding: 108px 0 142px;
  background: #ffffff;
}
.post-archive__title {
  margin-bottom: 16px;
  font-size: 1.8rem;
}
.post-archive__description {
  margin-bottom: 56px;
}

.post-archive-list {
  display: grid;
  gap: 0;
}

.archive-post-card {
  padding-bottom: 24px;
  background: #ffffff;
  border-bottom: 1px dotted #626262;
}
.archive-post-card + .archive-post-card {
  padding-top: 48px;
}
.archive-post-card__link {
  display: block;
}
.archive-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.archive-post-card__status {
  min-width: 70px;
  min-height: 28px;
  padding: 0 14px;
  font-size: 0.8rem;
}
.archive-post-card__date {
  font-size: 0.9rem;
  font-weight: 400;
}
.archive-post-card__title {
  margin: 0;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.25s ease;
}
.archive-post-card__link:hover .archive-post-card__title {
  color: #d95c34;
}

.post-list {
  display: grid;
  gap: 28px;
}
.post-list__empty {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #ebe6de;
  border-radius: 8px;
}

.post-card {
  background: #ffffff;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.07);
}
.post-card__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 15px 28px;
}
.post-card__title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.post-status,
.article-meta__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 31px;
  padding: 0 16px;
  color: #ffffff;
  background: #7697ae;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.post-date,
.post-category,
.article-meta__category {
  color: #777777;
  font-size: 0.82rem;
  font-weight: 700;
}

.wp-content .wp-block-gallery {
  margin: 58px 0 64px;
}
.wp-content .wp-block-embed-youtube {
  width: 100%;
  margin: 58px 0 64px;
}
.wp-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-content .wp-block-embed-youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wp-content img {
  height: auto;
}
.wp-content ul,
.wp-content ol {
  padding-left: 1.4em;
  font-size: 1.05rem;
  line-height: 1.86;
}
.wp-content li + li {
  margin-top: 0.5em;
}

.pagination {
  margin-top: 76px;
  text-align: center;
}
.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #ebe6de;
  border-radius: 999px;
  color: #242424;
  font-size: 0.88rem;
  font-weight: 700;
}
.pagination .current {
  color: #ffffff;
  background: #7697ae;
  border-color: #7697ae;
}

.not-found-section {
  padding: 118px 0 132px;
  background: #ffffff;
}
.not-found-section h1 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.not-found-section p {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .blog-filter {
    padding-top: 48px;
  }
  .blog-filter__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    justify-content: stretch;
    min-height: 104px;
  }
  .blog-filter__select, .blog-filter__search-input {
    height: 48px;
    border-radius: 4px;
    font-size: 0.86rem;
  }
  .blog-filter__select {
    padding: 0 28px 0 8px;
  }
  .blog-filter__select-wrap::after {
    right: 9px;
    border-left-width: 7px;
    border-right-width: 7px;
    border-top-width: 13px;
  }
  .blog-filter__search-input {
    padding: 0 42px 0 10px;
  }
  .blog-filter__search-button {
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .blog-filter__search-icon {
    width: 26px;
    height: 26px;
  }
  .blog-filter + .blog-article.single-post {
    padding-top: 48px;
  }
  .post-archive {
    padding: 40px 0 92px;
  }
  .post-archive__title {
    margin-bottom: 20px;
    font-size: 1.35rem;
    line-height: 1.8;
  }
  .post-archive__description {
    margin-bottom: 42px;
  }
  .post-archive-list {
    gap: 0;
  }
  .archive-post-card {
    padding-bottom: 34px;
  }
  .archive-post-card + .archive-post-card {
    padding-top: 38px;
  }
  .archive-post-card__meta {
    gap: 16px;
    margin-bottom: 18px;
  }
  .archive-post-card__status {
    min-width: 84px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 400;
  }
  .archive-post-card__date {
    font-size: 1rem;
  }
  .archive-post-card__title {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .post-list {
    gap: 18px;
  }
  .post-card {
    border-radius: 8px;
  }
  .post-card__link {
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
    min-height: 52px;
    padding: 13px 16px;
  }
  .post-card__title {
    grid-column: 1/-1;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .post-status,
  .article-meta__status {
    min-width: 76px;
    min-height: 34px;
    font-size: 0.82rem;
  }
  .post-date,
  .post-category,
  .article-meta__category {
    font-size: 0.78rem;
  }
  .wp-content .wp-block-gallery {
    margin: 42px 0 48px;
  }
  .wp-content .wp-block-embed-youtube {
    margin: 42px 0 48px;
  }
  .pagination {
    margin-top: 52px;
  }
  .not-found-section {
    padding: 86px 0 92px;
  }
  .not-found-section h1 {
    font-size: 1.35rem;
    line-height: 1.7;
  }
}
