@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: opacity 0.3s ease;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/material-symbols-outlined-subset.woff2") format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #FFFFFF;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-content {
  min-height: calc(100vh - 160px);
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .site-content {
    padding-top: 60px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.article-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.article-card__thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F5F5F5;
}
.article-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card__thumbnail:hover img {
  transform: scale(1.05);
}
.article-card__header {
  padding: 20px 20px 8px;
}
.article-card__date {
  display: inline-block;
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 8px;
}
.article-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  color: #222222;
}
.article-card__title a:hover {
  color: #E60012;
}
.article-card__excerpt {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.pagination {
  margin: 48px 0;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination .page-numbers.current {
  background-color: #E60012;
  color: #FFFFFF;
  border-color: #E60012;
}
.pagination .page-numbers:not(.current):hover {
  border-color: #E60012;
  color: #E60012;
}

.no-posts {
  text-align: center;
  padding: 80px 0;
}
.no-posts h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #222222;
}
.no-posts p {
  color: #666666;
}

.blog-card__placeholder, .article-card__placeholder, .works__item-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  color: #E8E8E8;
}
.blog-card__placeholder .material-symbols-outlined, .article-card__placeholder .material-symbols-outlined, .works__item-placeholder .material-symbols-outlined {
  font-size: 40px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background-color: #FFFFFF;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header {
    height: 70px;
  }
}
.site-header.is-scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.04);
}
@media screen and (max-width: 767px) {
  .site-header.is-scrolled {
    height: 60px;
  }
}
.site-header.is-scrolled .site-header__logo-img {
  height: 28px;
}
@media screen and (max-width: 767px) {
  .site-header.is-scrolled .site-header__logo-img {
    height: 20px;
  }
}
.site-header__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .site-header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.site-header__logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header__logo-img {
    height: 24px;
  }
}
.site-header__logo-sub {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .site-header__logo-sub {
    font-size: 10px;
    margin-top: 3px;
  }
}
.site-header__right {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.pc-nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
  margin-right: 40px;
}
.pc-nav-list li {
  height: 100%;
  display: flex;
  align-items: center;
}
.pc-nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80px;
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.pc-nav-list a .en {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}
.pc-nav-list a .ja {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  margin-top: 6px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.pc-nav-list a:hover {
  color: #E60012;
}
.pc-nav-list a:hover .ja {
  color: #E60012;
}

.header-cta {
  height: 100%;
  width: 195px;
  background-color: #E60012;
  transition: background-color 0.3s ease;
}
.header-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 80px;
  color: #FFFFFF;
  text-decoration: none;
}
.header-cta a .en {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}
.header-cta a .ja {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  line-height: 1.2;
  white-space: nowrap;
}
.header-cta:hover {
  background-color: #D60010;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 101;
  background: transparent;
  border: none;
}
.hamburger-btn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger-btn.is-active .hamburger-btn__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 34, 34, 0.98);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.sp-nav.is-active {
  transform: translateY(0);
}
.sp-nav__inner {
  width: 100%;
  padding: 80px 24px;
  text-align: center;
}
.sp-nav .sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.sp-nav .sp-nav-list li {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sp-nav .sp-nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sp-nav .sp-nav-list a .en {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sp-nav .sp-nav-list a .ja {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  transition: color 0.3s ease;
}
.sp-nav .sp-nav-list a:hover {
  color: #E60012;
}
.sp-nav .sp-nav-list a:hover .ja {
  color: #E60012;
}
.sp-nav .sp-nav-list .sp-cta-item {
  margin-top: 16px;
  width: 80%;
  max-width: 280px;
}
.sp-nav .sp-nav-list .sp-cta-item a {
  width: 100%;
  background-color: #E60012;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.sp-nav .sp-nav-list .sp-cta-item a .en {
  font-size: 16px;
}
.sp-nav .sp-nav-list .sp-cta-item a .ja {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}
.sp-nav .sp-nav-list .sp-cta-item a:hover {
  background-color: #D60010;
  color: #FFFFFF;
}
.sp-nav .sp-nav-list .sp-cta-item a:hover .ja {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  position: relative;
  background-color: #FFFFFF;
}

.site-footer__main {
  padding: 80px 0 60px;
  border-top: 1px solid #E8E8E8;
}
@media screen and (max-width: 767px) {
  .site-footer__main {
    padding: 56px 0 40px;
  }
}

.site-footer__main-inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .site-footer__main-inner {
    flex-direction: column;
    gap: 40px;
  }
}

.site-footer__brand {
  flex: 0 0 240px;
}
@media screen and (max-width: 1023px) {
  .site-footer__brand {
    flex: none;
  }
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.site-footer__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.site-footer__address p {
  font-size: 13px;
  line-height: 1.9;
  color: #666666;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #111111;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}
.site-footer__social a:hover {
  background-color: #E60012;
}
.site-footer__social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .site-footer__nav {
    gap: 32px 24px;
  }
}

.site-footer__nav-col {
  min-width: 130px;
}
.site-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__nav-col a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__nav-col a:hover {
  color: #E60012;
}

.site-footer__nav-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111111;
  margin-bottom: 18px;
}

.site-footer__bottom {
  background-color: #111111;
  padding: 20px 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.site-footer__legal {
  display: flex;
  gap: 20px;
}
.site-footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__legal a:hover {
  color: #FFFFFF;
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111111;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, visibility 0.3s ease;
}
.back-to-top .material-symbols-outlined {
  font-size: 22px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: #E60012;
}
@media screen and (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

.section-heading {
  margin-bottom: 48px;
}
.section-heading__en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E60012;
  margin-bottom: 8px;
}
.section-heading__ja {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111111;
}
.section-heading--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}
.btn--primary {
  background-color: #E60012;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #D60010;
}
.btn--white {
  background-color: #FFFFFF;
  color: #E60012;
}
.btn--white:hover {
  background-color: #111111;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.link-arrow .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.link-arrow:hover {
  color: #E60012;
}
.link-arrow:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  margin-bottom: 40px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.view-all-btn .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.view-all-btn:hover {
  border-color: #111111;
  background-color: #111111;
  color: #FFFFFF;
}
.view-all-btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.hero {
  position: relative;
  padding: 160px 0 100px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 80px 0 48px;
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E60012;
  margin-bottom: 14px;
}
.hero__pretitle {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #666666;
  margin-bottom: 4px;
}
.hero__title {
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .hero__title {
    margin-bottom: 20px;
  }
}
.hero__title-line {
  display: block;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .hero__title-line {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }
}
.hero__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .hero__lead {
    margin-bottom: 28px;
  }
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .hero__visual {
    margin-top: 40px;
  }
}
.hero__visual-video {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background-color: #F5F5F5;
}

.works {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 48px 0;
  }
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .works__grid {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .works__grid::-webkit-scrollbar {
    display: none;
  }
}
.works__item {
  display: block;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .works__item {
    flex: 0 0 64%;
    scroll-snap-align: start;
  }
}
.works__item--no-link {
  cursor: default;
}
.works__item-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F5F5F5;
}
.works__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border: 1px solid #E8E8E8;
}
.works__item:hover .works__item-thumb img {
  transform: scale(1.05);
}
.works__item-placeholder {
  position: absolute;
  inset: 0;
}
.works__item-placeholder .material-symbols-outlined {
  font-size: 32px;
}
.works__item-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}
.works__item-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}
.works__item-external {
  font-size: 15px;
  color: #666666;
  vertical-align: -2px;
  margin-left: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.works__item:hover .works__item-external {
  color: #E60012;
  transform: translate(1px, -1px);
}
.works__item-meta {
  font-size: 12px;
  color: #666666;
}
.works__empty {
  padding: 60px 0;
  text-align: center;
  color: #666666;
  border: 1px solid #E8E8E8;
  margin-bottom: 40px;
}
.works__view-all {
  text-align: center;
}
.works__view-all .view-all-btn {
  margin-bottom: 0;
}

.strength {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .strength {
    padding: 48px 0;
  }
}
.strength__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
@media screen and (max-width: 1023px) {
  .strength__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .strength__list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.strength__list--5col {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1023px) {
  .strength__list--5col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .strength__list--5col {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .strength__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .strength__head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .strength__body {
    flex: 1;
    min-width: 0;
  }
}
.strength__number {
  display: none;
}
@media screen and (max-width: 767px) {
  .strength__number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #E60012;
  }
}
.strength__icon {
  display: block;
  text-align: center;
  font-size: 64px;
  color: #E60012;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .strength__icon {
    font-size: 32px;
    margin-bottom: 0;
  }
}
.strength__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .strength__title {
    text-align: left;
    font-size: 15px;
    margin-bottom: 6px;
  }
  .strength__title br {
    display: none;
  }
}
.strength__text {
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}
.strength__view-all {
  text-align: center;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .strength__view-all {
    margin-top: 32px;
  }
}
.strength__view-all .view-all-btn {
  margin-bottom: 0;
}

.blog-section {
  padding: 100px 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .blog-section {
    padding: 48px 0;
  }
}
.blog-section .posts-grid {
  margin-top: 0;
  margin-bottom: 0;
}
.blog-section--4col {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.blog-section__empty {
  padding: 60px 0;
  text-align: center;
  color: #666666;
  border: 1px solid #E8E8E8;
  background-color: #FFFFFF;
}
.blog-section__view-all {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blog-section__view-all {
    margin-top: 28px;
  }
}
.blog-section__view-all .view-all-btn {
  margin-bottom: 0;
}
.blog-section .article-card__thumbnail {
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .blog-section .article-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: transparent;
    border: none;
    border-radius: 0;
  }
  .blog-section .article-card__thumbnail {
    flex: 0 0 96px;
    width: 96px;
  }
  .blog-section .article-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 8px;
    row-gap: 4px;
    flex: 1;
    min-width: 0;
    background-color: #FFFFFF;
    padding: 8px 10px;
    border-radius: 4px;
  }
  .blog-section .article-card__date {
    order: 1;
    margin-bottom: 0;
    font-size: 11px;
  }
  .blog-section .article-card__tag {
    order: 2;
    margin-bottom: 0;
  }
  .blog-section .article-card__title {
    order: 3;
    flex: 0 0 100%;
    font-size: 13px;
  }
}

.article-card__placeholder .material-symbols-outlined {
  font-size: 28px;
}
.article-card__tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  background-color: #F5F5F5;
  color: #222222;
}
.article-card__tag--2 {
  background-color: rgba(230, 0, 18, 0.08);
  color: #E60012;
}
.article-card__tag--3 {
  background-color: #FFF4D6;
  color: #8A6D00;
}
.article-card__tag--4 {
  background-color: #E4EEF7;
  color: #2B5B85;
}
@media screen and (max-width: 767px) {
  .article-card__tag {
    font-size: 9px;
    padding: 0 8px;
  }
}

.home-about {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .home-about {
    padding: 60px 0;
  }
}
.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.home-about__text {
  margin: 24px 0 32px;
  font-size: 14px;
  line-height: 2;
  color: #222222;
}
.home-about__visual {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .home-about__visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}
.home-about__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.partners {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background-color: #F5F5F5;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 12%, rgba(255, 255, 255, 0) 78%), var(--partners-bg);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .partners {
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 8%, rgba(255, 255, 255, 0) 60%), var(--partners-bg);
  }
}
@media screen and (max-width: 767px) {
  .partners {
    background-position: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), var(--partners-bg);
  }
}
@media screen and (max-width: 767px) {
  .partners {
    padding: 48px 0;
    min-height: 0;
    background-size: cover;
  }
}
.partners__inner {
  max-width: 560px;
}
.partners__title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #111111;
  margin: 8px 0 12px;
}
.partners__tagline {
  font-size: 14px;
  font-weight: 700;
  color: #E60012;
  margin-bottom: 20px;
}
.partners__text {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 32px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}
.contact-cta__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  background-color: #E60012;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .contact-cta__bg {
    display: none;
  }
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 340px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact-cta__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }
}
.contact-cta__left {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .contact-cta__left {
    padding: 40px 0 24px;
  }
}
.contact-cta__title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin: 8px 0 20px;
}
.contact-cta__text {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}
.contact-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 60px 40px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .contact-cta__right {
    background-color: #E60012;
    margin: 0 -16px;
    padding: 32px 16px 40px;
    align-items: stretch;
  }
}
.contact-cta__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}
.contact-cta__tel .material-symbols-outlined {
  font-size: 22px;
}
.contact-cta__hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.page-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 70%;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 40%), var(--page-header-bg);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .page-header {
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 40%), var(--page-header-bg);
  }
}
@media screen and (max-width: 767px) {
  .page-header {
    background-position: center;
    background-size: cover;
    background-image: var(--page-header-bg);
  }
}
@media screen and (max-width: 767px) {
  .page-header {
    min-height: 0;
    padding: 40px 0 24px;
  }
}
.page-header--plain {
  min-height: 0;
  background-image: none;
  background-color: #F5F5F5;
  padding: 140px 0 50px;
}
@media screen and (max-width: 767px) {
  .page-header--plain {
    padding: 100px 0 32px;
  }
}
.page-header__inner {
  max-width: 620px;
}
@media screen and (max-width: 767px) {
  .page-header__inner .section-heading__en {
    font-size: 11px;
    margin-bottom: 4px;
  }
}
.page-header__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 10px 0 16px;
}
@media screen and (max-width: 767px) {
  .page-header__title {
    font-size: 1.3rem;
    margin: 4px 0 8px;
  }
}
.page-header__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-header__subtitle {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 8px;
    padding: 2px 8px;
    background-color: rgba(255, 255, 255, 0.85);
  }
}
.page-header__lead {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .page-header__lead {
    font-size: 11px;
    line-height: 1.6;
    padding: 6px 10px;
    background-color: rgba(255, 255, 255, 0.85);
  }
}
.page-header__divider {
  display: block;
  width: 40px;
  height: 2px;
  margin: 4px 0 20px;
  background-color: #E60012;
}

.contact-support {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .contact-support {
    padding: 60px 0;
  }
}
.contact-support__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
@media screen and (max-width: 1023px) {
  .contact-support__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .contact-support__list {
    grid-template-columns: 1fr;
  }
}
.contact-support__item {
  text-align: center;
}
.contact-support__icon {
  display: block;
  font-size: 40px;
  color: #E60012;
  margin-bottom: 16px;
}
.contact-support__title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.contact-support__text {
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}

.contact-body {
  padding: 90px 0 120px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .contact-body {
    padding: 60px 0 70px;
  }
}
.contact-body__lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}
.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .contact-body__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-tags {
  padding: 32px 28px;
  margin-bottom: 24px;
  background-color: rgba(230, 0, 18, 0.05);
  border: 1px solid rgba(230, 0, 18, 0.15);
}
.contact-info-tags__title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}
.contact-info-tags ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #222222;
}
.contact-info-tags li .material-symbols-outlined {
  font-size: 16px;
  color: #E60012;
}

.contact-info-box {
  padding: 32px 28px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
}
.contact-info-box__text {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
}
.contact-info-box__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.contact-info-box__tel .material-symbols-outlined {
  font-size: 20px;
  color: #E60012;
}
.contact-info-box__tel:hover {
  color: #E60012;
}
.contact-info-box__hours {
  font-size: 12px;
  color: #666666;
  margin-bottom: 10px;
}
.contact-info-box__note {
  font-size: 11px;
  color: #666666;
}

.thanks-body {
  padding: 90px 0 120px;
}
@media screen and (max-width: 767px) {
  .thanks-body {
    padding: 60px 0 70px;
  }
}
.thanks-body__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-body__icon {
  display: block;
  font-size: 56px;
  color: #E60012;
  margin-bottom: 24px;
}
.thanks-body__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #111111;
  margin-bottom: 16px;
}
.thanks-body__note {
  font-size: 12px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}
.thanks-body__tel {
  max-width: 400px;
  margin: 60px auto 0;
  text-align: left;
}

.contact-form__lead {
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}
.contact-form__lead .required {
  color: #E60012;
}
.contact-form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .contact-form__group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field--full {
  grid-column: 1/-1;
}
.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}
.contact-form__field .required {
  margin-left: 2px;
  color: #E60012;
  font-weight: 700;
}
.contact-form__privacy {
  margin-bottom: 28px;
  font-size: 13px;
  color: #222222;
}
.contact-form__privacy a {
  color: #E60012;
}
.contact-form__privacy a:hover {
  text-decoration: none;
}
.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}
.contact-form__privacy label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-form__privacy input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #E60012;
}
.contact-form__submit {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__submit .form-submit {
    width: 100%;
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: #111111;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  transition: border-color 0.3s ease;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #B0B0B0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #E60012;
}
.form-input.wpcf7-not-valid,
.form-select.wpcf7-not-valid,
.form-textarea.wpcf7-not-valid {
  border-color: #E60012;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}

.form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px 18px 52px;
  background-color: #E60012;
  color: #FFFFFF;
  border: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-submit::before {
  content: "mail";
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  position: absolute;
  left: 26px;
}
.form-submit:hover {
  background-color: #D60010;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #E60012;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px 20px;
  font-size: 13px;
  border: 1px solid #E8E8E8;
  color: #222222;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-color: #E60012;
  color: #E60012;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2E7D32;
  color: #2E7D32;
}

.wpcf7-spinner {
  margin-left: 12px;
}

.page-content {
  padding: 80px 0 120px;
}
@media screen and (max-width: 767px) {
  .page-content {
    padding: 50px 0 70px;
  }
}
.page-content__inner {
  max-width: 840px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
}
.page-content__inner > * {
  max-width: 100%;
}
.page-content__inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E8E8;
}
.page-content__inner h2:first-child {
  margin-top: 0;
}
.page-content__inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin: 32px 0 16px;
}
.page-content__inner p {
  margin-bottom: 20px;
}
.page-content__inner ol,
.page-content__inner ul {
  margin: 0 0 20px 1.5em;
}
.page-content__inner ol li,
.page-content__inner ul li {
  margin-bottom: 8px;
}
.page-content__inner a:not(.btn) {
  color: #E60012;
}
.page-content__inner a:not(.btn):hover {
  text-decoration: none;
}
.page-content__inner .btn {
  margin-top: 12px;
}

.breadcrumbs {
  padding: 16px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 12px;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666666;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  color: #E8E8E8;
}
.breadcrumbs__item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs__item a:hover {
  color: #E60012;
}
.breadcrumbs__item span[aria-current=page] {
  color: #222222;
  font-weight: 600;
}
.breadcrumbs__home-icon {
  font-size: 16px;
  color: #666666;
}

.section-heading--center .page-header__divider {
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .service-list {
    padding: 48px 0;
  }
}
.service-list__lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}
.service-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media screen and (max-width: 1023px) {
  .service-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .service-list__grid {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-bottom: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-list__grid::-webkit-scrollbar {
    display: none;
  }
}
.service-list__item {
  padding: 40px 32px;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .service-list__item {
    padding: 20px 16px;
    flex: 0 0 64%;
    scroll-snap-align: start;
  }
}
.service-list__number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #E60012;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .service-list__number {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.service-list__icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .service-list__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
}
.service-list__title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .service-list__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.service-list__text {
  font-size: 13px;
  line-height: 1.9;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .service-list__text {
    font-size: 12px;
    line-height: 1.7;
  }
}

.service-cta {
  position: relative;
  padding: 90px 0;
  background-color: #F5F5F5;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 70%;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 12%, rgba(255, 255, 255, 0) 78%), var(--service-cta-bg);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .service-cta {
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 8%, rgba(255, 255, 255, 0) 60%), var(--service-cta-bg);
  }
}
@media screen and (max-width: 767px) {
  .service-cta {
    background-position: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), var(--service-cta-bg);
  }
}
@media screen and (max-width: 767px) {
  .service-cta {
    padding: 60px 0;
  }
}
.service-cta__inner {
  max-width: 560px;
}
.service-cta__label {
  font-size: 13px;
  font-weight: 700;
  color: #E60012;
  margin-bottom: 12px;
}
.service-cta__title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-cta__text {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 32px;
}

.works-archive {
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .works-archive {
    padding: 60px 0 60px;
  }
}
.works-archive .works__grid {
  margin-top: 0;
}
.works-archive__pagination {
  margin-top: 40px;
}

.page-header--about {
  overflow: hidden;
  background-size: 60%;
}
@media screen and (max-width: 767px) {
  .page-header--about {
    background-size: cover;
  }
}
.page-header--about .page-header__inner {
  position: relative;
  z-index: 1;
}
.page-header--about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15%;
  background-color: #E60012;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .page-header--about::after {
    display: none;
  }
}

.about-mission {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .about-mission {
    padding: 60px 0;
  }
}
.about-mission__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #222222;
}

.about-strengths {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .about-strengths {
    padding: 0 0 60px;
  }
}

.rep-message {
  padding: 100px 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .rep-message {
    padding: 60px 0;
  }
}
.rep-message__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .rep-message__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.rep-message__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111111;
  margin: 8px 0 0;
}
.rep-message__body {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  color: #222222;
}
.rep-message__profile {
  text-align: center;
}
.rep-message__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 20px;
}
.rep-message__company {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}
.rep-message__role {
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}
.rep-message__name {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-top: 6px;
}
.rep-message__sign {
  margin-top: 8px;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #E60012;
}

.profile-section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .profile-section {
    padding: 60px 0;
  }
}
.profile-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.profile-section__name {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #111111;
}
.profile-section__list {
  margin: 24px auto 0;
  width: fit-content;
  padding: 0;
  list-style: none;
  text-align: left;
}
.profile-section__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #222222;
}
.profile-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #E60012;
}
.profile-section__text {
  margin-top: 32px;
  text-align: left;
  font-size: 14px;
  line-height: 2;
  color: #222222;
}

.company-profile {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .company-profile {
    padding: 60px 0;
  }
}
.company-profile__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .company-profile__table {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.company-profile__col {
  display: flex;
  flex-direction: column;
}
.company-profile__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .company-profile__row {
    grid-template-columns: 100px 1fr;
  }
}
.company-profile__row dt {
  font-weight: 700;
  color: #111111;
}
.company-profile__row dd {
  color: #222222;
}
.company-profile__row dd a {
  color: #222222;
  text-decoration: none;
}
.company-profile__row dd a:hover {
  color: #E60012;
}

.simple-cta {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .simple-cta {
    padding: 0 0 60px;
  }
}
.simple-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 48px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .simple-cta__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 32px 24px;
  }
}
.simple-cta__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: #111111;
}

.category-tabs {
  padding: 20px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
}
.category-tabs__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}
.category-tabs__list::-webkit-scrollbar {
  display: none;
}
.category-tabs__item {
  flex: none;
}
.category-tabs__link {
  display: inline-block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #222222;
  background-color: #F5F5F5;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.category-tabs__link:hover {
  background-color: #E8E8E8;
}
.category-tabs__link.is-active {
  background-color: #E60012;
  color: #FFFFFF;
}

.blog-list {
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .blog-list {
    padding: 40px 0 60px;
  }
}
.blog-list__layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media screen and (max-width: 1023px) {
  .blog-list__layout {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .blog-list__layout {
    flex-direction: column;
    gap: 48px;
  }
}
.blog-list__main {
  flex: 1;
  min-width: 0;
}
.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media screen and (max-width: 1023px) {
  .blog-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .blog-list__grid {
    grid-template-columns: 1fr;
  }
}
.blog-list__empty {
  padding: 60px 0;
  text-align: center;
  color: #666666;
  border: 1px solid #E8E8E8;
}
.blog-list__pagination {
  margin-top: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover .blog-card__thumbnail img {
  transform: scale(1.05);
}
.blog-card__thumb-link {
  display: block;
}
.blog-card__thumbnail {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #F5F5F5;
}
.blog-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.blog-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  background-color: #111111;
}
.blog-card__placeholder .material-symbols-outlined {
  font-size: 32px;
}
.blog-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 0 52px;
}
.blog-card__date {
  font-size: 12px;
  color: #666666;
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #E60012;
}
.blog-card__more {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  color: #111111;
  transition: color 0.3s ease;
}
.blog-card__more .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.blog-card__more:hover {
  color: #E60012;
}
.blog-card__more:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.blog-sidebar {
  flex: 0 0 320px;
  position: sticky;
  bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .blog-sidebar {
    flex-basis: 260px;
  }
}
@media screen and (max-width: 767px) {
  .blog-sidebar {
    position: static;
    flex-basis: auto;
  }
}
.blog-sidebar__empty {
  padding: 24px;
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
  background-color: #F5F5F5;
}
.blog-sidebar__contact-banner {
  display: block;
  margin-top: 48px;
}
.blog-sidebar__contact-banner img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #E8E8E8;
}
@media screen and (max-width: 767px) {
  .blog-sidebar__contact-banner {
    display: none;
  }
}
.blog-sidebar .widget {
  margin-bottom: 48px;
}
.blog-sidebar .widget:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget:has(> .wp-block-heading:only-child) {
  margin-bottom: 0;
}
.blog-sidebar .widget-title,
.blog-sidebar .wp-block-heading {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}
.blog-sidebar .widget-title::after,
.blog-sidebar .wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background-color: #E60012;
}
.blog-sidebar .search-form,
.blog-sidebar .wp-block-search__inside-wrapper {
  display: flex;
  border: 1px solid #E8E8E8;
}
.blog-sidebar .search-form label {
  flex: 1;
  display: flex;
}
.blog-sidebar .search-field,
.blog-sidebar .wp-block-search__input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-family: inherit;
  color: #111111;
  background-color: #FFFFFF;
  border: none;
}
.blog-sidebar .search-submit,
.blog-sidebar .wp-block-search__button {
  flex: none;
  width: 48px;
  padding: 0;
  font-size: 0;
  color: #FFFFFF;
  background-color: #111111;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23ffffff'%3E%3Cpath d='M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.blog-sidebar .search-submit svg,
.blog-sidebar .wp-block-search__button svg {
  display: none;
}
.blog-sidebar .search-submit:hover,
.blog-sidebar .wp-block-search__button:hover {
  background-color: #E60012;
}
.blog-sidebar .widget_categories ul,
.blog-sidebar .wp-block-categories-list {
  list-style: none;
}
.blog-sidebar .widget_categories ul li,
.blog-sidebar .wp-block-categories-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 2px;
  font-size: 13px;
  color: #222222;
  border-bottom: 1px solid #E8E8E8;
}
.blog-sidebar .widget_categories ul li a,
.blog-sidebar .wp-block-categories-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-sidebar .widget_categories ul li a:hover,
.blog-sidebar .wp-block-categories-list li a:hover {
  color: #E60012;
}
.blog-sidebar .tagcloud,
.blog-sidebar .wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-sidebar .tagcloud a,
.blog-sidebar .wp-block-tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px !important;
  color: #222222;
  background-color: #F5F5F5;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.blog-sidebar .tagcloud a:hover,
.blog-sidebar .wp-block-tag-cloud a:hover {
  color: #FFFFFF;
  background-color: #E60012;
}
.blog-sidebar .widget_recent_entries ul,
.blog-sidebar .wp-block-latest-posts {
  display: block !important;
  list-style: none;
  padding-left: 0;
}
.blog-sidebar .wp-block-latest-posts li,
.blog-sidebar .widget_recent_entries li {
  width: auto !important;
  margin: 0 !important;
  padding: 14px 0;
  border-bottom: 1px solid #E8E8E8;
}
.blog-sidebar .wp-block-latest-posts li:first-child,
.blog-sidebar .widget_recent_entries li:first-child {
  padding-top: 0;
}
.blog-sidebar .wp-block-latest-posts li:last-child,
.blog-sidebar .widget_recent_entries li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.blog-sidebar .wp-block-latest-posts li {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 12px;
  align-items: start;
}
.blog-sidebar .wp-block-latest-posts li:not(:has(.wp-block-latest-posts__featured-image)) {
  grid-template-columns: 1fr;
}
.blog-sidebar .wp-block-latest-posts__featured-image {
  grid-column: 1;
  grid-row: 1/span 2;
  margin: 0 !important;
  float: none !important;
}
.blog-sidebar .wp-block-latest-posts__featured-image a {
  display: block;
}
.blog-sidebar .wp-block-latest-posts__featured-image img {
  display: block;
}
.blog-sidebar .wp-block-latest-posts__post-title,
.blog-sidebar .widget_recent_entries li > a {
  display: -webkit-box;
  grid-column: 2;
  grid-row: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-sidebar .wp-block-latest-posts__post-title:hover,
.blog-sidebar .widget_recent_entries li > a:hover {
  color: #E60012;
}
.blog-sidebar .wp-block-latest-posts__post-date {
  grid-column: 2;
  grid-row: 2;
  margin-top: 6px;
  font-size: 12px;
  color: #666666;
}
.blog-sidebar .wpp-list {
  list-style: none;
  padding-left: 0;
  counter-reset: wpp-rank;
}
.blog-sidebar .wpp-list li {
  counter-increment: wpp-rank;
  padding: 14px 0;
  border-bottom: 1px solid #E8E8E8;
}
.blog-sidebar .wpp-list li:first-child {
  padding-top: 0;
}
.blog-sidebar .wpp-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.blog-sidebar .wpp-list li:has(.wpp-thumbnail) {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 12px;
  align-items: start;
}
.blog-sidebar .wpp-list li:has(.wpp-thumbnail) > a:has(.wpp-thumbnail) {
  position: relative;
  grid-column: 1;
  grid-row: 1/span 2;
}
.blog-sidebar .wpp-list li:has(.wpp-thumbnail) > a:has(.wpp-thumbnail)::before {
  content: counter(wpp-rank);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  background-color: #111111;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.blog-sidebar .wpp-list li:has(.wpp-thumbnail) .wpp-post-title {
  grid-column: 2;
  grid-row: 1;
}
.blog-sidebar .wpp-list li:has(.wpp-thumbnail) .wpp-meta {
  grid-column: 2;
  grid-row: 2;
}
.blog-sidebar .wpp-thumbnail {
  display: block;
  width: 90px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.blog-sidebar .wpp-post-title {
  display: -webkit-box;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-sidebar .wpp-post-title:hover {
  color: #E60012;
}
.blog-sidebar .wpp-meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666666;
}

.single-post__layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 80px;
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .single-post__layout {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .single-post__layout {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 56px;
  }
}

.single-post__main {
  flex: 1;
  min-width: 0;
}

.single-post__header {
  margin-bottom: 32px;
}

.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.single-post__category {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #E60012;
  text-decoration: none;
}

.single-post__date,
.single-post__updated {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666666;
}
.single-post__date .material-symbols-outlined,
.single-post__updated .material-symbols-outlined {
  font-size: 16px;
}

.single-post__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 20px;
}

.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.single-post__tags a {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  color: #666666;
  border: 1px solid #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.single-post__tags a:hover {
  color: #E60012;
  border-color: #E60012;
}

.single-post__eyecatch {
  margin: 32px 0;
  background-color: #F5F5F5;
}
.single-post__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post__intro {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 40px;
}

.article-body #ez-toc-container {
  display: block;
  width: auto;
  margin: 0 0 48px;
  padding: 28px 32px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .article-body #ez-toc-container {
    padding: 24px 20px;
  }
}
.article-body #ez-toc-container ul {
  list-style: none;
  margin-left: 0;
}
.article-body #ez-toc-container li {
  padding-left: 0;
}
.article-body #ez-toc-container li::before {
  content: none;
}
.article-body #ez-toc-container .ez-toc-title-container {
  display: block;
  width: auto;
  margin-bottom: 20px;
}
.article-body #ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.article-body #ez-toc-container .ez-toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}
.article-body #ez-toc-container .ez-toc-title::before {
  content: "format_list_bulleted";
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  color: #E60012;
}
.article-body #ez-toc-container ul.ez-toc-list-level-1 {
  columns: 2;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .article-body #ez-toc-container ul.ez-toc-list-level-1 {
    columns: 1;
  }
}
.article-body #ez-toc-container ul.ez-toc-list-level-1 > li {
  break-inside: avoid-column;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.article-body #ez-toc-container ul[class*=ez-toc-list-level-]:not(.ez-toc-list-level-1) {
  margin: 8px 0 0 1.2em;
}
.article-body #ez-toc-container ul[class*=ez-toc-list-level-]:not(.ez-toc-list-level-1) li {
  margin-bottom: 6px;
  font-size: 13px;
}
.article-body #ez-toc-container ul[class*=ez-toc-list-level-]:not(.ez-toc-list-level-1) a {
  color: #666666;
}
.article-body #ez-toc-container a {
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.article-body #ez-toc-container a:hover {
  color: #E60012;
  text-decoration: none;
}
.article-body #ez-toc-container a:visited {
  color: inherit;
}

.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: #222222;
}
.article-body > * {
  max-width: 100%;
}
.article-body p {
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 56px 0 24px;
  padding-left: 14px;
  border-left: 4px solid #E60012;
  scroll-margin-top: 105px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 40px 0 18px;
  scroll-margin-top: 105px;
}
.article-body ul {
  list-style: none;
  margin: 0 0 24px 1.6em;
}
.article-body ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.2em;
}
.article-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.article-body ol {
  margin: 0 0 24px 1.6em;
}
.article-body ol li {
  margin-bottom: 10px;
}
.article-body a {
  color: #E60012;
  text-underline-offset: 2px;
}
.article-body a:hover {
  text-decoration: none;
}
.article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background-color: #F5F5F5;
  border-left: 4px solid #E8E8E8;
  color: #666666;
}
.article-body blockquote p:last-child {
  margin-bottom: 0;
}
.article-body hr {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 48px 0;
}
.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px auto;
}
.article-body figure {
  margin: 32px 0;
}
.article-body figure img {
  margin: 0 auto;
}
.article-body figcaption,
.article-body .wp-caption-text {
  text-align: center;
  font-size: 13px;
  color: #666666;
  margin-top: 10px;
}
.article-body .wp-caption {
  max-width: 100% !important;
}
.article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}
.article-body table th,
.article-body table td {
  padding: 12px 16px;
  border: 1px solid #E8E8E8;
  text-align: left;
  white-space: nowrap;
}
.article-body table th {
  background-color: #111111;
  color: #FFFFFF;
  font-weight: 700;
}
.article-body table tr:nth-child(even) td {
  background-color: #F5F5F5;
}
.article-body code {
  padding: 2px 6px;
  font-size: 0.9em;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: #E60012;
  background-color: #F5F5F5;
}
.article-body pre {
  margin: 32px 0;
  padding: 24px;
  background-color: #1e1e1e;
  color: #e8e8e8;
  overflow-x: auto;
  font-size: 13.5px;
  line-height: 1.7;
}
.article-body pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  font-size: inherit;
}

.single-post__sidebar {
  flex: 0 0 320px;
  position: sticky;
  bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .single-post__sidebar {
    flex-basis: 260px;
  }
}
@media screen and (max-width: 767px) {
  .single-post__sidebar {
    position: static;
    flex-basis: auto;
  }
}

.post-navigation {
  padding: 40px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.post-navigation__list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .post-navigation__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.post-navigation__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-navigation__link:hover {
  color: #E60012;
}
.post-navigation__link.is-disabled {
  color: #E8E8E8;
  pointer-events: none;
}
.post-navigation__arrow {
  transform: scaleX(-1);
}
.post-navigation__link--prev {
  justify-self: start;
}
.post-navigation__link--next {
  justify-self: end;
}
.post-navigation__link--list {
  justify-self: center;
  padding: 10px 28px;
  border: 1px solid #E8E8E8;
  color: #111111;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.post-navigation__link--list:hover {
  border-color: #111111;
  background-color: #111111;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .post-navigation__link--prev, .post-navigation__link--next, .post-navigation__link--list {
    justify-self: stretch;
    justify-content: center;
    text-align: center;
  }
  .post-navigation__link--prev, .post-navigation__link--next {
    padding: 10px 0;
  }
}

.related-articles {
  padding: 0 0 90px;
}
@media screen and (max-width: 767px) {
  .related-articles {
    padding: 0 0 56px;
  }
}
.related-articles__heading {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E8E8E8;
}
.related-articles__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background-color: #E60012;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media screen and (max-width: 1023px) {
  .related-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .related-articles__grid {
    grid-template-columns: 1fr;
  }
}
