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

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

body {
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

:root {
  --header-height: 68px;
}

@media (max-width: 767px) {
  :root {
    --header-height: 52px;
  }
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 1.25em;
  line-height: 1;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: "Lato", "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #564a46;
  background-color: #f7f4eb;
}

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

.l-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.l-main {
  background-color: #f7f4eb;
}

.is-home .l-container {
  max-width: 1200px;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.is-home main {
  background-color: white;
}

.l-header {
  width: 100%;
  height: 64px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .l-header {
    height: 56px;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.l-header__logo-img {
  width: auto;
  height: 36px;
}
@media (max-width: 767px) {
  .l-header__logo-img {
    height: 28px;
  }
}

.l-header__logo-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .l-header__logo-name {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.l-header__nav-link {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}

.l-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}
@media (max-width: 767px) {
  .l-header__menu-btn {
    display: flex;
    position: fixed;
    top: calc((56px - 14px) / 2);
    right: clamp(1rem, 4vw, 2rem);
    z-index: 201;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 7px;
    height: 14px;
  }
}

.l-header__menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #564a46;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 767px) {
  .l-header__menu-line:nth-child(2) {
    width: 60%;
  }
  .l-header__menu-line:nth-child(3) {
    display: none;
  }
}

.l-sp-menu {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.l-sp-menu[aria-hidden=false] {
  transform: translateX(0);
}

.l-sp-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.l-sp-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  color: #564a46;
}

.l-sp-menu__body {
  flex: 1;
  padding: 2rem clamp(1rem, 4vw, 2rem) 1.5rem;
  overflow-y: auto;
}

.l-sp-menu__site {
  margin-bottom: 2rem;
}

.l-sp-menu__site-sub {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
  padding: 0.1em 0.4em;
  background-color: #f9ff7b;
  border-radius: 2px;
}

.l-sp-menu__site-logo {
  display: block;
}
.l-sp-menu__site-logo img {
  display: block;
  height: auto;
  max-width: 170px;
}

.l-sp-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.l-sp-menu__btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  background-color: #f7f4eb;
  letter-spacing: 0.05em;
}
.l-sp-menu__btn--contact {
  background-color: #f9ff7b;
  color: #564a46;
}

.l-sp-menu__footer-links {
  border-top: 1px solid #a09693;
  padding-top: 1.5rem;
  padding-left: 30px;
}
.l-sp-menu__footer-links li {
  display: flex;
  align-items: center;
}
.l-sp-menu__footer-links li::before {
  content: "—";
  margin-right: 0.75rem;
  color: #666;
  font-size: 0.875rem;
}
.l-sp-menu__footer-links li + li {
  margin-top: 1rem;
}
.l-sp-menu__footer-links a {
  font-size: 0.875rem;
  color: #666;
}
@media (hover: hover) and (pointer: fine) {
  .l-sp-menu__footer-links a:hover {
    text-decoration: underline;
  }
}

.c-contact-fixed {
  position: fixed;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1rem 0.625rem 2.125rem;
  background-color: #f9ff7b;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  color: #564a46;
  z-index: 200;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-fixed:hover {
    opacity: 0.85;
  }
}
@media (min-width: 768px) {
  .c-contact-fixed {
    min-width: 210px;
    top: calc(68px + 50px);
  }
}
@media (max-width: 767px) {
  .c-contact-fixed {
    top: 90px;
    position: absolute;
    font-size: 14px;
    padding-left: 15px;
  }
}

.c-contact-fixed__icon {
  font-size: 1.125rem;
  line-height: 1;
}

.l-site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 190;
  background-color: #f7f4eb;
}
.l-site-header.is-sticky {
  background-color: transparent;
}

.l-site-header__inner {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .l-site-header__inner {
    padding: 0.625rem 1.25rem 0.875rem;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .l-site-header__inner {
    padding: 0.5rem 1rem 0.625rem;
    width: 188px;
  }
}

.l-site-header__logo {
  display: block;
  width: 100%;
}
.l-site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer {
  background-color: #fff;
  border-top: 1px solid #a09693;
  padding-block: 2rem;
}

.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.l-footer__logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.l-footer__logo-img {
  width: auto;
  height: 32px;
}

.l-footer__logo-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.l-footer__nav-link {
  font-size: 0.8125rem;
  color: #666;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-link:hover {
    text-decoration: underline;
  }
}

.l-footer__copyright {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #666;
}
@media (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
  .c-button {
    font-size: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 0.8;
  }
}
.c-button--dark {
  position: relative;
  background-color: #4a3828;
  color: #fff;
  padding-right: 2.5rem;
  min-width: 270px;
}
.c-button--dark::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #f9ff7b;
  border-right: 2px solid #f9ff7b;
  transform: translateY(-50%) rotate(45deg);
}
.c-button--outline {
  background-color: transparent;
  border: 2px solid #564a46;
  color: #564a46;
}
.c-button--contact {
  background-color: white;
  color: #4a3828;
  padding: 1rem 2.5rem;
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.15));
}
@media (min-width: 768px) {
  .c-button--contact {
    width: 400px;
  }
}

.c-button__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.c-card--interview {
  --c-cat: #4a87cc;
  --c-cat-light: rgba(74, 135, 204, 0.22);
}

.c-card--needs {
  --c-cat: #ef7fa8;
  --c-cat-light: rgba(239, 127, 168, 0.22);
}

.c-card--case {
  --c-cat: #4a8072;
  --c-cat-light: rgba(74, 128, 114, 0.22);
}

.c-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.c-card__link {
  display: block;
  height: 100%;
  color: #564a46;
}

.c-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/2.5;
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.15));
}
.c-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-card__thumb:hover img {
    transform: scale(1.04);
  }
}

.c-card__cat {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  width: 1.625rem;
  height: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  padding-block: 0.625rem;
  padding-inline: 0.25rem;
  background-color: var(--c-cat);
  border-radius: 0 0 8px 0;
}

.c-card__body {
  padding: 0.875rem 0 1.125rem;
}

.c-card__kicker {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #564a46;
  margin-bottom: 0.25rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.c-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #564a46;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-card__title span {
  display: inline;
  background: linear-gradient(to top, var(--c-cat-light, transparent) 0.45em, transparent 0.45em);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.c-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-card__new {
  display: inline-block;
  background-color: #564a46;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0 0.4em;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.c-card__date {
  font-size: 14px;
  color: #666;
}

.c-breadcrumb {
  padding-block: 0.75rem;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #666;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "›";
  margin-right: 0.25rem;
}
.c-breadcrumb__item:last-child {
  color: #564a46;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 40ch;
}

@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
  }
}

.c-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.25em 0.8em;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.c-article-tag::before {
  content: "•";
  font-size: 0.875em;
  line-height: 1;
}
.c-article-tag--interview {
  background-color: #4a87cc;
}
.c-article-tag--needs {
  background-color: #ef7fa8;
}
.c-article-tag--case {
  background-color: #4a8072;
}

.c-page-top {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 72px;
  height: 72px;
  background-color: #fff;
  border: 1.5px solid #4a3828;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #4a3828;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}
.c-page-top::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #4a3828;
  border-right: 1.5px solid #4a3828;
  transform: translateY(2px) rotate(-45deg);
}
.c-page-top span {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .c-page-top span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-page-top span {
    font-size: 12px;
  }
}
.c-page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-page-top:hover {
    opacity: 0.75;
  }
}
@media (max-width: 767px) {
  .c-page-top {
    width: 60px;
    height: 60px;
    right: 0.875rem;
    bottom: 1rem;
  }
}

.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__bg {
  position: relative;
  z-index: 0;
  width: 100%;
  display: block;
}
.p-hero__bg picture {
  display: block;
  width: 100%;
}
.p-hero__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-hero__body {
  z-index: 1;
  max-width: 620px;
}
@media (min-width: 768px) {
  .p-hero__body {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: max(0px, (100vw - 1200px) / 2);
    padding: 2rem clamp(1rem, 4vw, 2rem);
  }
}
@media (max-width: 767px) {
  .p-hero__body {
    position: relative;
    margin: -4rem 1rem 1.5rem;
    padding: 1rem 1.25rem 1.1rem;
    max-width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
}

.p-hero .c-annotation {
  font-size: 14px;
  position: absolute;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .p-hero .c-annotation {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .p-hero .c-annotation {
    font-size: 10px;
    bottom: 0px;
  }
}

.p-hero__sub {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding: 0.1em 0.4em;
  background-color: #f9ff7b;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .p-hero__sub {
    font-size: 0.8125rem;
  }
}

.p-hero__title {
  margin-bottom: 10px;
}

.p-hero__title-logo {
  display: block;
  width: auto;
  max-width: 360px;
  height: auto;
}
@media (max-width: 767px) {
  .p-hero__title-logo {
    max-width: 300px;
    margin: 10px auto 0;
  }
}

.p-hero__desc {
  line-height: 1.6;
  color: #564a46;
}
@media (min-width: 768px) {
  .p-hero__desc {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .p-hero__desc {
    font-size: 15px;
  }
}
.p-hero__desc small {
  font-size: 12px;
}

.p-news-ticker {
  background-color: #f7f4eb;
  padding-block: 0.8rem;
  border-radius: 50px;
  max-width: 1200px;
  margin: 40px auto;
}
@media (min-width: 768px) {
  .p-news-ticker {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .p-news-ticker {
    margin: 10px 15px 40px;
    border-radius: 10px;
  }
}

.p-news-ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0.25rem 0;
}
@media (max-width: 767px) {
  .p-news-ticker__inner {
    flex-wrap: wrap;
    align-items: baseline;
    padding: 0.25rem 1.25rem;
  }
}

.p-news-ticker__cat {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-right: 1.25rem;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .p-news-ticker__cat {
    flex-basis: 100%;
    padding-left: 0;
    margin-right: 0;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
  }
}

.p-news-ticker__date {
  font-size: 0.9375rem;
  color: #666;
  white-space: nowrap;
}
.p-news-ticker__date::before {
  content: "|";
  display: inline-block;
  margin-right: 1.25rem;
  color: #a09693;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-news-ticker__date::before {
    display: none;
  }
}

.p-news-ticker__text {
  font-size: 0.9375rem;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .p-news-ticker__text {
    font-size: 0.875rem;
    flex-basis: auto;
    margin-left: 0.5rem;
    margin-top: 0;
  }
}

.p-articles {
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .p-articles {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .p-articles {
    padding-block: 0;
    margin: 0 15px;
  }
}

.p-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-articles__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-articles__more {
  text-align: center;
  margin: 0 auto;
}

.p-related {
  padding-block: 2.5rem;
}
@media (max-width: 767px) {
  .p-related {
    padding-block: 2rem;
    margin: 0 15px;
  }
}

.p-related__box {
  position: relative;
  background-color: #fff;
  border: 1px solid #a09693;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-related__box {
    padding: 2rem 1.25rem 1.25rem;
    border-radius: 14px;
  }
}
@media (min-width: 768px) {
  .p-related__box {
    max-width: 1200px;
    margin: 0 auto 60px;
  }
}

.p-related__heading {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: #f9ff7b;
  color: #564a46;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35em 2em;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid #a09693;
  margin-bottom: 0;
}

.p-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .p-related__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-related__item {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.12);
  transition: opacity 0.25s ease;
}
.p-related__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-related__item:hover {
    opacity: 0.85;
  }
  .p-related__item:hover img {
    transform: scale(1.03);
  }
}

.p-contact-cta {
  background-color: #d8d4ca;
  padding-block: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact-cta {
    padding-block: 2rem;
  }
}

.p-article--interview {
  --c-cat: #4a87cc;
  --c-cat-light: #ccdded;
}

.p-article--needs {
  --c-cat: #ef7fa8;
  --c-cat-light: #f7dae6;
}

.p-article--case {
  --c-cat: #4a8072;
  --c-cat-light: #4a8072;
}

.p-article {
  padding-block: 2rem 4rem;
}
@media (max-width: 767px) {
  .p-article {
    padding-block: 1rem 2.5rem;
  }
}

.p-article__header {
  margin-bottom: 2.5rem;
  border-bottom: solid 2px #a09693;
}
@media (min-width: 768px) {
  .p-article__header {
    position: relative;
    display: block;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .p-article__header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 20px;
  }
}

.p-article__header-body {
  min-width: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-article__header-body {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40%;
  }
}
@media (max-width: 767px) {
  .p-article__header-body {
    position: relative;
  }
}

.p-article__header-img {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-article__header-img {
    max-width: 720px;
    margin-left: auto;
  }
}
.p-article__header-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.p-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.p-article__date {
  font-size: 0.8125rem;
  color: #666;
  margin-top: 15px;
}

.p-article__kicker {
  font-weight: 500;
  color: #564a46;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  background: #fff;
  display: inline;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .p-article__kicker {
    font-size: 22px;
    width: calc(100% + 5rem);
  }
}
@media (max-width: 767px) {
  .p-article__kicker {
    font-size: 0.9375rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-article__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.5;
  color: #564a46;
}
.p-article__title span {
  display: inline;
  background-color: var(--c-cat-light);
}

.p-article__toc {
  background-color: #fff;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-article__toc {
    padding: 1.25rem 1.25rem;
    border-radius: 10px;
  }
}

.p-article__toc-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .p-article__toc-title {
    font-size: 24px;
  }
}

.p-article__toc-list {
  list-style: none;
  padding-left: 0;
}
.p-article__toc-list li {
  position: relative;
  padding-left: 1.625rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-article__toc-list li {
    font-size: 19px;
  }
}
.p-article__toc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #564a46;
  z-index: 1;
}
.p-article__toc-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.5em + 9px);
  bottom: calc(-1rem - 0.5em);
  width: 2px;
  background-color: #a09693;
  z-index: 0;
}
.p-article__toc-list li + li {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .p-article__toc-list li + li {
    margin-top: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-article__toc-list li:not(:last-child)::after {
    bottom: calc(-0.875rem - 0.5em);
  }
}
.p-article__toc-list li a {
  color: #564a46;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-article__toc-list li a:hover {
    color: var(--c-cat);
    text-decoration: underline;
  }
}

@media (min-width: 768px) {
  p.c-lead {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  p.c-lead {
    font-size: 13px;
  }
}
p.c-lead {
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.p-article__body {
  border-bottom: 2px solid #a09693;
}
@media (min-width: 768px) {
  .p-article__body {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .p-article__body {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .p-article__body .c-section {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .p-article__body .c-section {
    margin-top: 40px;
  }
}
.p-article__body h2 {
  font-weight: 700;
  line-height: 1.85;
  margin-block: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .p-article__body h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .p-article__body h2 {
    font-size: 1.125rem;
  }
}
.p-article__body h2 span {
  display: inline;
  background: linear-gradient(to top, var(--c-cat-light, rgba(74, 135, 204, 0.2)) 0.45em, transparent 0.45em);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-article__body h3 {
  font-weight: 700;
  margin-block: 2rem 1rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #a09693;
}
@media (min-width: 768px) {
  .p-article__body h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .p-article__body h3 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .p-article__body p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .p-article__body p {
    font-size: 13px;
  }
}
.p-article__body p {
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.p-article__body p em {
  background-color: var(--c-cat-light, rgba(74, 135, 204, 0.22));
  font-weight: 700;
  font-style: normal;
}
.p-article__body .p-question {
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-article__body .p-question {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .p-article__body .p-question {
    font-size: 15px;
  }
}
.p-article__body figure {
  margin-block: 2rem;
  max-width: 750px;
}
@media (min-width: 768px) {
  .p-article__body figure {
    margin: 50px auto;
  }
}
@media (max-width: 767px) {
  .p-article__body figure {
    margin: 20px auto;
  }
}
.p-article__body figure figcaption {
  font-size: 0.8125rem;
  color: #666;
  margin-top: 0.5rem;
}
.p-article__body img {
  width: 100%;
  border-radius: 4px;
}
.p-article__body p a {
  color: #4a87cc;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-article__body .c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-block: 1.5rem;
}
.p-article__body .c-table th, .p-article__body .c-table td {
  padding: 0.625rem 1rem;
  border: 1px solid #a09693;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.p-article__body .c-table th {
  white-space: nowrap;
  background-color: #faf7f0;
  font-weight: 700;
  width: 10em;
}

.p-article__profile {
  position: relative;
  overflow: hidden;
  background-color: white;
  border: none;
  border-radius: 14px;
  padding: 2.75rem 1.5rem 1.75rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-article__profile {
    padding: 2.5rem 1.125rem 1.5rem;
    border-radius: 10px;
  }
}

.p-article__profile-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--c-cat, #4a87cc);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.4em 1.1em;
  border-radius: 0 0 8px 0;
}

.p-article__profile-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-article__profile-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.p-article__profile-img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.p-article__profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-article__profile-img {
    width: 100px;
    height: 100px;
  }
}

.p-article__profile-content {
  flex: 1;
  min-width: 0;
}

.p-article__profile-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.p-article__profile-text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #666;
}

.p-article__back {
  text-align: center;
  margin-block: 2.5rem;
}

.p-btn__wrapper {
  margin-block: 2.5rem;
}

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

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

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

.u-text-center {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
