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

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

ul {
  padding: 0 0 0 5px;
}

li {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

::placeholder {
  color: #aaa;
}

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

.site-content {
  flex: 1;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/*
 * ↓ 共通パーツ
 */
.marker-disc li {
  position: relative;
  padding-left: 12px;
}
.marker-disc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #212028;
  border-radius: 50%;
}

.marker-num {
  counter-reset: myCount;
  padding-left: 32px;
}
@media (max-width: 768px) {
  .marker-num {
    padding-left: 10px;
  }
}
.marker-num li {
  position: relative;
  padding-left: 40px;
}
.marker-num li::before {
  counter-increment: myCount;
  content: counter(myCount);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: #212028;
}
.marker-num li::after {
  content: "|";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: #212028;
}

.marker-yellow {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #ffff99 50%, #ffff99 100%);
}

/* 左上を白い三角で切り取る */
.diagonal-bg {
  position: relative;
  z-index: 2;
}
.diagonal-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .diagonal-bg::before {
    width: 150px;
    height: 150px;
  }
}
.diagonal-bg.orange::before {
  background: #FFB000;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  line-height: 1;
}
.section-title.underline {
  border-bottom: 2px solid #212028;
}
.section-title__label {
  display: block;
  color: #FF9300;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1rem;
}
.section-title__heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section-title__heading {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.section-title__heading-text {
  font-size: 1.2rem;
  margin-left: 3em;
}
@media (max-width: 768px) {
  .section-title__heading-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}

/**
 * ↓ Header
 * ==========================================================================
*/
.site-header {
  background-color: #fff;
  color: #595757;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
@media (max-width: 1024px) {
  .header-inner {
    height: 100px;
  }
}
@media (max-width: 576px) {
  .header-inner {
    padding: 0 1rem;
    height: 80px;
  }
}

.site-branding {
  max-width: 320px;
  width: 20%;
  flex-shrink: 0;
  padding-left: 1.5%;
}
.site-branding a {
  text-decoration: none;
}
@media (max-width: 576px) {
  .site-branding {
    width: 70%;
  }
}

/**
 * Navigation
*/
.header-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 30px;
}
@media (max-width: 1280px) {
  .header-navigation {
    margin-left: 20px;
    gap: 20px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 1.5rem;
}
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 576px) {
  .menu-toggle {
    padding: 0.5rem;
  }
}

.menu-toggle-icon {
  color: #FFB000;
}

.header-menu {
  display: flex;
  flex: 1;
  list-style: none;
  justify-content: space-between;
  max-width: 600px;
  margin-right: 30px;
}
@media (max-width: 1280px) {
  .header-menu {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
  }
}
.header-menu li {
  position: relative;
}
.header-menu li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #FFB000;
  border-bottom: 2px solid #FFB000;
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
.header-menu li:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(2px) rotate(-45deg);
}
.header-menu a {
  text-decoration: none;
  color: #595757;
  transition: all 0.3s;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0 30px;
}
@media (max-width: 1280px) {
  .header-tel {
    margin: 0;
  }
}
.header-tel a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF9300;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}
@media (max-width: 1280px) {
  .header-tel a {
    font-size: 1.6rem;
  }
}
.header-tel a::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-size: 1.4rem;
  font-weight: 900;
  color: #FF9300;
  vertical-align: middle;
}
.header-tel p {
  color: #595757;
  font-weight: 500;
  font-size: 1.1rem;
}
@media (max-width: 1280px) {
  .header-tel p {
    font-size: 0.9rem;
  }
}
@media (max-width: 1024px) {
  .header-tel {
    display: none;
  }
}

.header-contact {
  background-color: #FF9300;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 0;
  height: 100%;
  transition: all 0.3s;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-width: 210px;
  width: 15%;
}
.header-contact i {
  font-size: 2.2rem;
  color: #fff;
}
.header-contact:hover {
  background-color: #FFB000;
}
.header-contact.front {
  background-color: #FFB000;
}
.header-contact.front:hover {
  background-color: #FF9300;
}
@media (max-width: 1024px) {
  .header-contact {
    display: none;
  }
}

/**
 * ↓ Drawer(SP)
*/
.sp-drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  color: #595757;
  z-index: 2000;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
.sp-drawer-menu.is-open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #595757;
  z-index: 10;
}
.drawer-close i {
  color: #595757;
}

.drawer-menu-list {
  list-style: none;
  padding: 5rem 0 0;
  margin: 0;
}
.drawer-menu-list li {
  border-bottom: 2px solid #EBEBEB;
  padding: 0 2rem;
}
.drawer-menu-list a {
  text-decoration: none;
  color: #595757;
  font-size: 1.1rem;
  display: block;
  padding: 1rem 0;
  transition: all 0.3s;
}
.drawer-menu-list a:hover {
  color: #FFB000;
}

.drawer-menu-tel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.drawer-menu-tel a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF9300;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  text-decoration: none;
}
.drawer-menu-tel a::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-size: 1.5rem;
  font-weight: 900;
  color: #FF9300;
  vertical-align: middle;
}
.drawer-menu-tel p {
  color: #595757;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

.drawer-menu-contact {
  background-color: #FF9300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  margin: 0 auto;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  width: 80%;
}
.drawer-menu-contact i {
  font-size: 1.5rem;
  color: #fff;
}
.drawer-menu-contact:hover {
  background-color: #FFB000;
}
.drawer-menu-contact.front {
  background-color: #FFB000;
}
.drawer-menu-contact.front:hover {
  background-color: #FF9300;
}

/**
 * ↓ Footer
 * ==========================================================================
*/
.site-footer {
  background: linear-gradient(90deg, #ff9900, #ffb300);
  color: #fff;
  margin-top: auto;
}

/* Footer - Search area */
.footer-search {
  padding: 6.5rem 0 4rem;
}
@media (max-width: 576px) {
  .footer-search {
    padding: 3rem 0 2rem;
  }
}
.footer-search .footer-search-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .footer-search .footer-search-inner {
    padding: 20px;
  }
}
.footer-search__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #212028;
  margin: 0;
}
.footer-search__title i {
  font-size: 1.6rem;
  margin-right: 12px;
  vertical-align: middle;
}
.footer-search__tags {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
  width: 740px;
}
@media (max-width: 768px) {
  .footer-search__tags {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer-search__tags {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-search__tag {
  background: #fff;
  color: #212028;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s;
  width: 100%;
}
.footer-search__tag:hover {
  background-color: #EBEBEB;
}

/* ===== article__list (related cases grid) ===== */
.article__list {
  margin: 64px 0 40px;
}
.article__list .article__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.article__list .article-card {
  background: #fff;
  border: 0;
  padding: 0;
}
.article__list .article-card .post-card__tag {
  display: inline-block;
  background: #FF9300;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.article__list .article-card__img {
  margin-bottom: 16px;
}
.article__list .article-card__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__list .article-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.article__list .article-card__title a {
  color: #212028;
}
.article__list .article-card__excerpt {
  color: #595757;
  font-size: 0.95rem;
  line-height: 1.8;
  min-height: 96px;
  margin-bottom: 18px;
}
.article__list .article-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.article__list .article-card__foot .article-card__btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #595757;
  color: #595757;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.article__list .article-card__foot .article-card__btn:hover {
  background: #FF9300;
  color: #fff;
  border-color: #FF9300;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .footer-main {
    padding: 1rem 0 0.5rem;
  }
}

.footer-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 576px) {
  .footer-main-inner {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.footer-main-left {
  max-width: 360px;
}
@media (max-width: 576px) {
  .footer-main-left {
    max-width: 100%;
  }
}

.footer-copy {
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

.footer-sns {
  margin-top: 2.5rem;
}

.footer-sns-inner {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 0;
  display: inline-flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.sns-badge {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  transition: all 0.3s;
}
.sns-badge:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.sns-x {
  background-color: #111;
}
.sns-x i {
  font-size: 30px;
}

.sns-instagram {
  background: linear-gradient(14deg, #ffd776 10%, #f20078 40%, #8515ff 96%);
  -webkit-background-clip: text; /* 文字の形に背景を切り取る */
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sns-instagram i {
  font-size: 52px;
}

.sns-facebook {
  background-color: #1877f2;
  border-radius: 50%;
}
.sns-facebook i {
  font-size: 38px;
  padding-top: 10px;
}

.sns-line {
  color: #00c300;
}
.sns-line i {
  font-size: 42px;
}

.footer-main-right {
  flex: 1;
}
@media (max-width: 576px) {
  .footer-main-right {
    padding: 0 15px;
  }
}

.footer-menu-grid {
  max-width: 800px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (max-width: 576px) {
  .footer-menu-grid {
    flex-direction: column;
    gap: 0;
  }
}

.footer-menu-column {
  flex: 1;
}
.footer-menu-column:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-menu-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-menu-title:hover {
  opacity: 0.7;
}
.footer-menu-title::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
}
.footer-menu-list li {
  letter-spacing: 0.05em;
}
.footer-menu-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.footer-menu-list a:hover {
  opacity: 0.7;
}

.footer-logo {
  margin-top: 2rem;
}
.footer-logo__inner {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  margin-left: auto;
}
@media (max-width: 576px) {
  .footer-logo__inner {
    flex-wrap: wrap;
  }
}
.footer-logo__image {
  flex: 1;
}
.footer-logo__image a:hover {
  filter: brightness(1.4);
  transition: all 0.3s;
}

.copyright {
  font-size: 0.9rem;
  color: #532d00;
  text-align: center;
  margin-top: 30px;
}

/**
 * 共通コンポーネント
 * ==========================================================================
 */
/**
 * ↓ Components - Button
 */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  background-color: #212028;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid #212028;
  position: relative;
  transition: all 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button::after {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
  color: #fff;
  transition: all 0.3s;
}
.c-button:hover {
  background-color: #fff;
  border-color: #212028;
  color: #212028;
}
.c-button:hover::after {
  border-color: #212028;
  transform: translateY(-50%) translateX(5px) rotate(45deg);
}
.c-button.btn-outline {
  background-color: transparent;
  color: #212028;
}
.c-button.btn-outline::after {
  border-top: 2px solid #212028;
  border-right: 2px solid #212028;
}
.c-button.btn-outline:hover {
  background-color: #212028;
  color: #fff;
}
.c-button.btn-outline:hover::after {
  border-color: #fff;
}
.c-button.btn-big {
  min-width: 320px;
  padding: 20px 80px;
}
.c-button.btn-big::after {
  width: 12px;
  height: 12px;
}
.c-button.btn-big .c-button__text {
  font-size: 1rem;
  text-align: center;
}
.c-button.btn-return::before {
  content: "";
  position: absolute;
  border-top: 2px solid #fff;
  width: 10px;
  height: 1px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c-button.btn-return::after {
  width: 8px;
  height: 8px;
}
.c-button.btn-return:hover::before {
  transform: translateY(-50%) translateX(5px);
  border-color: #212028;
}
.c-button.btn-orange {
  background-color: #FF9300;
  border-color: #FF9300;
  color: #fff;
}
.c-button.btn-orange:hover {
  background-color: #fff;
  border-color: #FF9300;
  color: #FF9300;
}
.c-button.btn-orange:hover::after {
  border-color: #FF9300;
}
.c-button span {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  padding-right: 5px;
}

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

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

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

/**
 * ↓ 下層ページ共通
 * ==========================================================================
 */
.page-header {
  position: relative;
  width: 100%;
  aspect-ratio: 375/88;
  color: #fff;
  background-image: url("../images/header_bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 120px 0;
  height: 400px;
}
@media (max-width: 576px) {
  .page-header {
    height: 300px;
    padding: 80px 0;
  }
}
.page-header.case {
  background-image: url("../images/header_case_bg.jpg");
  aspect-ratio: 375/106;
  padding: 140px 0;
}

.page-header__inner {
  max-width: 1200px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  line-height: 1;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header__label {
  font-size: 2.2rem;
  font-weight: 800;
  color: #212028;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1rem;
}

.case .page-header__label {
  color: #FF9300;
}

.page-header__heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case .page-header__heading {
  color: #212028;
}

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

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

.posts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 30px;
}
@media (max-width: 768px) {
  .posts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 576px) {
  .posts__list {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}

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

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

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

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

.post-card__body {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.post-card__title {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .post-card__title {
    font-size: 1rem;
  }
}

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

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

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

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

.posts.view-more {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .posts.view-more {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=common.css.map */