:root {
  --color-primary: #0177B4;
  --color-deep: #0a3655;
  --color-sky: #e8f4fb;
  --color-text: #1f2933;
  --color-muted: #1C1C1C;
  --color-line: #dce8ef;
  --color-bg: #f3f5f5;
  --color-white: #fff;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

/* Align the SP header logo with the left edge of the content banners. */
@media (max-width: 767px) {
  .header__logo {
    margin-left: -27px;
  }
}

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

.site-body {
  margin: 0;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  background: var(--color-white);
}

.site-body a {
  color: inherit;
  text-decoration: none;
}

.site-body img {
  display: block;
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: 8px 0 4px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(var(--content-width), calc(100% - 80px));
  min-height: 76px;
  margin: 0 auto;
  gap: var(--header-gap, clamp(10px, 1vw, 20px));
}

.header__logo {
  flex: 0 0 auto;
}

.header__logo img {
  width: 180px;
  height: auto;
}

.header__sp-cta {
  display: none;
}

.header__nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  row-gap: 0;
  min-width: 0;
  color: #1c1c1c;
  font-size: var(--header-font-size, 16px);
  font-weight: 600;
  white-space: nowrap;
}

.header__nav a {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--header-link-pad, clamp(10px, 0.6vw, 14px));
}

.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo)::after {
  position: absolute;
  right: var(--header-link-pad, clamp(10px, 0.6vw, 14px));
  bottom: 6px;
  left: var(--header-link-pad, clamp(10px, 0.6vw, 14px));
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  content: "";
}

.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):hover::after,
.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):focus-visible::after {
  transform: scaleX(1);
}

.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo) {
  flex: 1 1 auto;
  justify-content: center;
  min-width: max-content;
  text-align: center;
  border-left: 1px solid #2f84bd;
  font-weight: 400;
  transition: color 0.2s ease;
}

.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):hover,
.header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):focus-visible {
  color: var(--color-primary);
}

.header__nav a.header__content-link:not(.header__book-link):not(.header__cta) {
  border-left: 0;
}

.header__book-link {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: fit-content;
  max-width: none;
  min-height: 46px;
  padding: 3px 10px 5px !important;
  color: var(--color-primary) !important;
  text-align: left;
  border: 1px solid #2f84bd;
}

.header__nav a.header__book-link {
  min-height: 46px;
}

.header__book-link span {
  width: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

.header__book-link small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

.header__book-link b {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
}

.header__book-link b::before {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.header__book-link b::after {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
  content: "";
}

.header__cta {
  flex: 0 0 auto;
  margin-left: 0;
  min-height: 46px !important;
  padding: 0 var(--header-cta-pad, clamp(12px, 0.8vw, 16px)) !important;
  color: #fff !important;
  font-weight: 600;
  background: var(--color-primary);
  border-color: var(--color-primary) !important;
}

.hamburger__btn {
  position: absolute !important;
  top: 50%;
  right: 0 !important;
  z-index: 2;
  display: none;
  margin-left: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.hamburger__btn span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px 0 6px auto;
  background: var(--color-deep);
}

.header__panel-head,
.header__menu-close {
  display: none;
}

.layout-main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding-top: 12px;
  background: #fff;
}

@media (min-width: 981px) {
  .hero {
    padding-top: 4px;
  }
}

.hero__slider {
  position: relative;
  width: min(var(--content-width), calc(100% - 80px));
  min-height: 560px;
  margin: 0 auto;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero__dots {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero__dot.is-active {
  width: 26px;
  background: var(--color-primary);
}

.hero__slider--image {
  width: 100%;
  min-height: 0;
}

.hero__slide--image {
  min-height: 0;
}

.hero__link,
.hero__picture,
.hero__image {
  display: block;
  width: 100%;
}

.hero__image {
  height: auto;
}

.hero__slider--image .hero__dots {
  position: static;
  justify-content: center;
  margin: 18px auto 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 458px);
  align-items: center;
  width: 100%;
  min-height: 560px;
  margin: 0;
  gap: 40px;
}

.hero__title {
  margin: 0;
  color: #000;
  font-size: 85px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__lead {
  width: min(800px, 100%);
  margin: 42px 0 0;
  color: #1c1c1c;
  font-size: 21px;
  font-weight: 600;
  line-height: 2.1;
  white-space: nowrap;
}

.hero__badges {
  position: relative;
  min-height: 500px;
}

.badge {
  position: absolute;
  display: grid;
  place-items: center;
  align-content: center;
  row-gap: 8px;
  width: 230px;
  height: 230px;
  aspect-ratio: 1 / 1;
  padding: 28px;
  color: #fff;
  text-align: center;
  background: #0089c8;
  border-radius: 50%;
  box-shadow: none;
}

.badge:nth-child(1) {
  top: 0;
}

.badge:nth-child(2) {
  top: 135px;
  right: 0;
}

.badge:nth-child(3) {
  top: 260px;
  left: 0;
  background: #0089c8;
}

.badge span,
.badge small {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}

.badge strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: Roboto, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.badge strong small {
  margin-left: 0.12em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.42em;
  line-height: 1.18;
  text-align: left;
}

.badge em {
  margin-top: -10px;
  font-style: normal;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.badge--primary {
  background: var(--color-primary);
}

.service-gates {
  padding: 80px 0 120px;
  background: #fff;
}

.service-gates__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
  gap: 24px;
}

.service-gate {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 0;
  overflow: hidden;
  background: #0c3854;
}

.service-gate::after {
  content: none;
}

.service-gate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 0;
}

.section__inner {
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 50px;
}

.section__label {
  display: none;
}

.section__title {
  margin: 0;
  padding: 0;
  color: #0177B4;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.15;
}

.section__title--news img {
  width: min(150px, 45vw);
  height: auto;
}

.more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 0;
}

.more::after {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  font-size: 12px;
  line-height: 1;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "→";
}

.more--external::after {
  content: none;
}

.more__external-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news {
  background: #f3f5f5;
}

.news .section__inner {
  width: min(var(--content-width), calc(100% - 80px));
  max-width: none;
  padding: 0;
}

.news__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.25rem;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.75rem;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.news-card {
  background: transparent;
  border: 0;
}

.news-card a {
  display: block;
  height: 100%;
}

.news-card--feature a {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
  align-items: stretch;
  gap: 2rem;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.news-card--feature .news-card__body {
  grid-column: 1;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.news-card h3 {
  margin: 12px 0 10px;
  color: #202a34;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-card--feature h3 {
  font-size: 45px;
  line-height: 1.34;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.news-card p {
  margin: 0;
  color: #1C1C1C;
  font-size: 18px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-card--feature p {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-card figure {
  width: 100%;
  margin: 24px 0 0;
  aspect-ratio: 234 / 132;
  overflow: hidden;
  background: #fff;
}

.news-card--feature figure {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2 / 4;
  width: 95%;
  max-width: none;
  justify-self: end;
  margin: 0;
  aspect-ratio: 936 / 526;
  background: #fff;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card--feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 18px;
  color: #0177B4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background: #F2F8FB;
  border: 0;
}

.pill--muted {
  color: #4f7c21;
  background: #eef6e9;
}

.interviews {
  background: #fff;
  padding-bottom: 55px;
}

.books {
  padding-top: 55px;
}

.interview-groups {
  display: grid;
  gap: 55px;
}

.subtitle {
  margin: 0 0 28px;
  padding-bottom: 16px;
  color: var(--color-primary);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid var(--color-primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.interview-card {
  background: #E6F1F7;
  border: 0;
}

.interview-card a {
  display: block;
  height: 100%;
}

.interview-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg);
}

.interview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card__body {
  padding: 20px 22px 24px;
  background: #E6F1F7;
}

.interview-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 1px 11px 3px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  background: var(--interview-tag-color, #0177B4);
}

.interview-card h4 {
  margin: 6px 0 8px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.interview-card__services,
.interview-card__industries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.interview-card__services {
  margin-bottom: 6px;
}

.interview-card__industries {
  margin-bottom: 7px;
}

.interview-card__industry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 54px;
  padding: 1px 10px 2px;
  color: #0177B4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  background: #fff;
  border: 1px solid #0177B4;
}

.interview-card__company {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.interview-card p {
  color: #1c1c1c;
  font-size: 14px;
  line-height: 1.55;
}

.interview-card .interview-card__industry {
  color: #0177B4;
}

.books {
  background: #fff;
}

.books .section__inner {
  width: min(var(--content-width), calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.book-row {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.book-row::-webkit-scrollbar {
  display: none;
}

.book-row .archive-items {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 26px;
}

.book-row article {
  flex: 0 0 253px;
  scroll-snap-align: start;
}

.book {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 253px;
  min-height: 384px;
  padding: 80px 0 54px;
  text-align: center;
  background: #eef4fb;
  border-radius: 0;
  border: 0;
}

.book span {
  position: absolute;
  top: 6%;
  left: 28px;
  min-width: 54px;
  padding: 1px 13px 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-primary);
}

.book img {
  width: 173px;
  height: auto;
  aspect-ratio: 173 / 250;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: none;
}

.company-band {
  display: grid;
  grid-template-columns: 1fr;
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
  padding: 35px 0 164px;
  gap: 76px;
  background: #fff;
}

.company-band__block {
  display: grid;
  gap: 28px;
}

.company-band__item {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1600 / 346;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.company-band__item::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
}

.company-band__item::after {
  display: none;
}

.company-band__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.company-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-companies {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
}

.group-companies__label {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 10px 9px 13px;
  color: #1c1c1c;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  background: #f3f3f3;
}

.group-companies__label::after {
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: #f3f3f3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.group-companies__logos {
  display: flex;
  align-items: center;
  gap: 46px;
  min-width: 0;
}

.group-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.group-logo img {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
}

.group-logo--group img {
  height: 60px;
}

.footer {
  color: var(--color-text);
  background: #fff;
}

.footer-contact {
  color: #fff;
  background: #2f84bd;
}

.footer-contact__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0;
}

.footer-contact__panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  min-height: 220px;
  padding: 0 56px;
  text-align: center;
}

.footer-contact__panel + .footer-contact__panel {
  border-left: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-contact h2 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-contact p {
  margin: 0 0 34px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.footer-contact a {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  min-height: 76px;
  padding: 0 60px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.footer-contact a span {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.footer__main {
  background: #f7f7f8;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(440px, 1.15fr) minmax(180px, 0.55fr);
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 52px;
  gap: 48px;
}

.footer__logo {
  display: inline-block;
  width: min(100%, 285px);
}

.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__company {
  margin: 24px 0 22px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__address {
  color: #1c1c1c;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.footer__sns {
  display: flex;
  gap: 16px;
  margin: 24px 0 22px;
}

.footer__sns img {
  width: 30px;
  height: 30px;
  filter: brightness(0);
}

.footer__privacy,
.footer small {
  display: block;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 1.8;
}

.footer__service,
.footer__news {
  padding-left: 48px;
  border-left: 1px solid #1c1c1c;
}

.footer__service h2,
.footer__news h2 {
  margin: 0 0 24px;
  color: #1c1c1c;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer__service-grid {
  display: grid;
  grid-template-columns: minmax(205px, 1.05fr) minmax(0, 1fr);
  gap: 24px;
}

.footer__service h3 {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.footer__service p {
  margin: -4px 0 18px;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 1.5;
}

.footer__service a.footer__service-heading {
  display: block;
  margin: 0 0 18px;
  padding-left: 0;
  color: #1c1c1c;
}

.footer__service a.footer__service-heading::before {
  content: none;
}

.footer__service a.footer__service-heading h3,
.footer__service a.footer__service-heading p {
  color: inherit;
}

.footer__service a.footer__service-heading p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
  white-space: nowrap;
}

.footer__external-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 0;
  color: #1c1c1c;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: transparent;
}

.footer__service a,
.footer__news a {
  display: block;
  color: #1c1c1c;
  font-weight: 400;
}

.footer__service a {
  position: relative;
  margin: 0 0 9px;
  padding-left: 13px;
  font-size: 13px;
  line-height: 1.55;
}

.footer__service a.footer__service-external-link {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 6px;
}

.footer__service a.footer__service-external-link .footer__external-icon {
  width: 15px;
  height: 15px;
}

.footer__service a::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #2f84bd;
  border-radius: 50%;
  content: "";
}

.footer__service-text {
  position: relative;
  display: block;
  margin: 0 0 9px;
  padding-left: 13px;
  color: #1c1c1c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.footer__service-text::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #2f84bd;
  border-radius: 50%;
  content: "";
}

.footer__service-text--disabled {
  color: #9aa0a6;
  cursor: default;
}

.footer__service-text--disabled::before {
  background: #b8bdc2;
}

.footer__news a {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.footer__news a.footer__external-link {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
}

.footer__news .footer__external-icon {
  width: 17px;
  height: 17px;
}

.footer__news h2 > a {
  display: inline-block;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.philosophy-main {
  background: #fff;
}

.site-fallback {
  padding: 64px 0 96px;
}

.site-fallback__inner {
  width: min(var(--content-width), calc(100% - 80px));
  margin-inline: auto;
}

.site-fallback__eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-fallback h1 {
  margin: 0 0 30px;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.4;
}

.site-fallback__results {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.site-fallback__result {
  padding: 24px;
  background: #f3f7f9;
  border: 1px solid var(--color-line);
}

.site-fallback__result h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.55;
}

.site-fallback__result h2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-fallback__result p {
  margin: 0;
  line-height: 1.8;
}

.site-fallback__action {
  margin-top: 30px;
}

.site-fallback__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 260px;
  padding: 14px 24px;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-primary);
}

.site-fallback__action a:hover,
.site-fallback__action a:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

@media (max-width: 680px) {
  .site-fallback {
    padding: 44px 0 68px;
  }

  .site-fallback__inner {
    width: min(100% - 56px, var(--content-width));
  }

  .site-fallback__result {
    padding: 20px;
  }

  .site-fallback__action a {
    width: 100%;
    min-width: 0;
  }
}

.philosophy {
  padding: 64px 0 88px;
}

.philosophy .page-message__inner {
  max-width: 1000px;
  width: min(100% - 80px, 1000px);
  margin: 0 auto;
  padding-inline: 0;
  overflow: visible;
}

.philosophy .page-message__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 0;
  overflow: visible;
}

.philosophy .js-fadeIn {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.philosophy .page-message__section-title {
  margin: 0;
  color: #0177B4;
  font-size: clamp(2.5rem, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.philosophy__body {
  width: 100%;
  margin-top: 3.3125rem;
  color: #404040;
  font-size: clamp(1rem, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.philosophy .page-message__text1 {
  margin: 0 0 0.8em;
  color: #404040;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  text-align: center;
}

.philosophy .page-message__text1 strong {
  font-weight: 800;
}

.philosophy p {
  margin: 0 0 1.5em;
  color: #404040;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  text-align: center;
}

.philosophy .page-message__section-title:not(.philosophy__mission-title) {
  margin-top: 5rem;
  margin-bottom: 4rem;
  font-size: clamp(2.5rem, 4vw, 56px);
  line-height: 1;
}

.philosophy .wp-block-spacer {
  height: 0 !important;
}

.philosophy .pc-only.wp-block-spacer {
  height: 0 !important;
}

.philosophy .table_design03 {
  width: 100%;
  border-collapse: collapse;
  color: #404040;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.55;
}

.philosophy .table_design03 tr {
  border-top: 2px solid #cfd7d9;
}

.philosophy .table_design03 tr:first-child {
  border-top: 0;
}

.philosophy .table_design03 th,
.philosophy .table_design03 td {
  padding: 28px 0;
  vertical-align: top;
}

.philosophy .table_design03 th {
  position: relative;
  width: 32%;
  padding-left: 10%;
  font-weight: 700;
  text-align: left;
}

.philosophy .table_design03 th::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #2f84bd;
  content: "";
}

.philosophy .table_design03 td {
  padding-left: 36px;
  font-weight: 600;
}

.philosophy .table_design03 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.philosophy .table_design03 a {
  color: inherit;
  text-decoration: underline;
}

/* Legacy page overrides */
.page-news.layout-page-news {
  margin-top: 0;
}

.header-spacer:has(+ main .page-news.layout-page-news) {
  height: 0;
}

.page-news__inner {
  margin-top: 0;
}

.page-news__section-title {
  width: auto;
  max-width: none;
}

.page-news__section-title img {
  width: min(150px, 45vw);
  height: auto;
}

@media (min-width: 1301px) and (max-width: 1500px) {
  .header__inner {
    --header-gap: clamp(6px, 0.7vw, 12px);
    --header-link-pad: clamp(5px, 0.5vw, 10px);
    --header-cta-pad: clamp(10px, 0.7vw, 14px);
    width: min(var(--content-width), calc(100% - 80px));
  }

  .header__nav {
    --header-font-size: 16px;
  }

  .header__nav a {
    padding-right: var(--header-link-pad);
    padding-left: var(--header-link-pad);
  }

  .header__cta {
    padding-right: var(--header-cta-pad) !important;
    padding-left: var(--header-cta-pad) !important;
  }
}

@media (min-width: 1025px) and (max-width: 1300px) {
  .header__inner {
    --header-gap: clamp(3px, 0.5vw, 6px);
    --header-link-pad: clamp(2px, 0.35vw, 4px);
    --header-cta-pad: clamp(7px, 0.6vw, 10px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: min(var(--content-width), calc(100% - 48px));
    min-height: 72px;
  }

  .header__logo img {
    width: 160px;
  }

  .header__nav {
    --header-font-size: clamp(12.5px, calc(0.78vw + 4.6px), 15px);
    flex: 1 1 auto;
    justify-content: flex-start;
    width: auto;
  }

  .header__nav a {
    min-height: 40px;
    padding-right: var(--header-link-pad);
    padding-left: var(--header-link-pad);
  }

  .header__book-link {
    width: fit-content;
    max-width: none;
    min-height: 46px;
    padding: 3px 8px 5px !important;
  }

  .header__book-link span {
    font-size: clamp(13px, calc(0.5vw + 8px), 15px);
  }

  .header__book-link small {
    gap: 4px;
    font-size: clamp(10px, calc(0.63vw + 3.85px), 12px);
  }

  .header__book-link b {
    width: 11px;
    height: 11px;
  }

  .header__cta {
    min-height: 46px !important;
    padding-right: var(--header-cta-pad) !important;
    padding-left: var(--header-cta-pad) !important;
  }
}

@media (max-width: 1024px) {
  .header {
    margin: 4px 0 2px;
  }

  .header__logo img {
    width: 152px;
    max-width: 152px;
    height: auto;
  }

  .header__inner {
    justify-content: space-between;
    width: min(100% - 80px, var(--content-width));
    min-height: 64px;
    gap: 16px;
  }

  .header__sp-cta {
    position: absolute;
    top: 50%;
    right: 42px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 12px 1px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    background: var(--color-primary);
    transform: translateY(-50%);
  }

  .hamburger__btn {
    flex: 0 0 44px;
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  .header__nav {
    position: absolute;
    top: 64px;
    right: 40px;
    left: 40px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    box-shadow: 0 18px 40px rgba(10, 54, 85, 0.12);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
  }

  .header__nav a.header__panel-logo {
    flex: 0 0 auto;
    display: block;
    width: 150px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .header__nav a.header__panel-logo::after {
    content: none;
  }

  .header__panel-logo img {
    width: 100%;
    height: auto;
  }

  .header__menu-close {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 0 auto;
    padding: 2px 0 8px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .header__menu-close span[aria-hidden="true"] {
    font-size: 25px;
    font-weight: 300;
    line-height: .8;
  }

  .header__nav a {
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f5;
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo) {
    flex: 0 0 auto;
    justify-content: flex-start;
    min-width: 0;
    text-align: left;
    border-left: 0;
  }

  .header__book-link {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    padding: 12px 0 !important;
    border: 0;
    border-bottom: 1px solid #edf2f5;
  }

  .header__nav a.header__book-link {
    min-height: auto;
  }

  .header__nav a.header__last-link {
    border-bottom: 0;
  }

  .header__cta {
    justify-content: center;
    min-height: 48px !important;
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    border-bottom: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero__slider {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__badges {
    min-height: 190px;
  }

  .badge {
    position: static;
    display: inline-grid;
    margin-right: 12px;
    vertical-align: top;
  }

  .news__layout {
    grid-template-columns: 1fr;
  }

  .footer-contact__inner,
  .footer__inner,
  .footer__service-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact__panel {
    min-height: auto;
    padding: 42px 0;
  }

  .footer-contact__panel + .footer-contact__panel {
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-left: 0;
  }

  .footer__service,
  .footer__news {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid #1c1c1c;
    border-left: 0;
  }

  .footer__brand {
    order: 3;
    padding-top: 34px;
    border-top: 1px solid #1c1c1c;
  }

  .footer__service {
    order: 1;
  }

  .footer__news {
    order: 2;
  }

  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-row {
    overflow-x: auto;
  }

  .book-row .archive-items {
    display: flex;
  }
}

@media (min-width: 768px) {
  .section__title {
    font-size: 44px;
  }

  .news .section__head {
    align-items: center;
  }
}

@media (max-width: 680px) {
  .header {
    margin: 8px 0 4px;
  }

  .header__inner {
    width: min(100% - 56px, var(--content-width));
  }

  .header__nav {
    right: 28px;
    left: 28px;
  }

  .hamburger__btn {
    right: 0 !important;
  }

  .header__logo img {
    width: 152px;
  }

  .hero {
    padding-top: 0;
  }

  .hero__slider,
  .section__inner,
  .service-gates__inner,
  .footer-contact__inner,
  .footer__inner {
    width: min(100% - 56px, var(--content-width));
  }

  .hero__slider--image {
    width: 100%;
  }

  .news .section__inner {
    width: min(100% - 56px, var(--content-width));
    padding: 0;
  }

  .books .section__inner {
    width: min(100% - 56px, var(--content-width));
    padding-left: 0;
  }

  .hero__dots {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }

  .hero__slider--image .hero__dots {
    margin-top: 14px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__title {
    font-size: clamp(34px, 10vw, 52px);
    white-space: normal;
  }

  .hero__lead {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.9;
    white-space: normal;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-height: auto;
  }

  .badge,
  .badge:nth-child(2),
  .badge:nth-child(3) {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 14px 8px;
    border-radius: 50%;
  }

  .badge span,
  .badge small {
    font-size: 14px;
  }

  .badge strong {
    font-size: 42px;
  }

  .badge em {
    margin-top: -3px;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .service-gates__inner,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-bottom: 56px;
  }

  .section__head {
    display: block;
  }

  .more {
    display: inline-flex;
    margin-top: 18px;
  }

  .news-card a,
  .news-card--feature a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-card--feature .news-card__body,
  .news-card--feature figure {
    grid-column: auto;
  }

  .news-card--feature figure {
    width: 100%;
    justify-self: stretch;
  }

  .news-card figure {
    order: -1;
    margin: 0;
    aspect-ratio: 16 / 9;
  }

  .news-card--feature img {
    object-fit: cover;
  }

  .news-card--feature h3 {
    font-size: 22px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .book-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .book-row .archive-items {
    display: flex;
    gap: 14px;
  }

  .book-row article {
    flex: 0 0 220px;
  }

  .book {
    width: 220px;
    min-height: 334px;
    padding: 58px 0 38px;
  }

  .book img {
    width: 150px;
    height: auto;
  }

  .section__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .interviews .subtitle {
    font-size: 24px;
  }

  .company-band {
    gap: 56px;
    padding-bottom: 56px;
  }

  .company-band__block {
    gap: 18px;
  }

  .company-band__item {
    aspect-ratio: 1200 / 792;
    min-height: 0;
  }

  .group-companies {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 2px;
  }

  .group-companies__label {
    font-size: 16px;
    padding: 10px 10px 9px 13px;
    font-weight: 600;
  }

  .group-companies__logos {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .group-logo img {
    width: auto;
    max-width: 100%;
    height: 60px;
  }

  .group-logo--group img,
  .group-logo--publishing img {
    height: 60px;
  }

  .philosophy {
    padding: 36px 0 56px;
  }

  .philosophy .page-message__inner,
  .philosophy .page-message__contents {
    width: min(100% - 56px, 1000px);
  }

  .philosophy .page-message__section-title {
    font-size: 2.5rem;
  }

  .philosophy__body {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.5555555556;
  }

  .philosophy .page-message__text1 {
    margin-bottom: 0.8em;
  }

  .philosophy .page-message__section-title:not(.philosophy__mission-title) {
    margin-top: 4.0625rem;
    margin-bottom: 2.9375rem;
    font-size: 2.5rem;
  }

  .philosophy .wp-block-spacer,
  .philosophy .pc-only.wp-block-spacer {
    height: 0 !important;
  }

  .philosophy .table_design03 {
    font-size: 1rem;
  }

  .philosophy .table_design03 th,
  .philosophy .table_design03 td {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  .philosophy .table_design03 th {
    padding-bottom: 6px;
    padding-left: 0;
  }

  .philosophy .table_design03 td {
    padding-top: 0;
    padding-left: 0;
  }

  .footer-contact__inner {
    padding: 34px 0;
  }

  .footer-contact__panel {
    padding: 34px 0;
  }

  .footer-contact h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .footer-contact p {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-contact a {
    min-height: 58px;
    font-size: 16px;
  }

  .footer__inner {
    padding: 44px 0;
    gap: 34px;
  }

  .footer__logo {
    width: min(100%, 285px);
  }

  .footer__service h2,
  .footer__news h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hamburger__btn[aria-expanded="true"] {
    visibility: hidden;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    top: 0 !important;
    bottom: auto;
    width: auto;
    height: auto;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header__nav a.header__panel-logo {
    width: 120px;
  }

  .header__nav a.header__book-link {
    align-items: flex-start;
    text-align: left;
  }

  .header__nav a:not(.header__book-link):not(.header__panel-logo) {
    font-size: 18px;
  }

  .header__book-link span {
    font-size: 18px;
  }

  .header__book-link small {
    font-size: 14px;
  }

  .header__nav a:hover,
  .header__nav a:focus-visible {
    text-decoration: none;
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo)::after {
    content: none;
  }

  .header__nav a.header__cta {
    justify-content: center;
    text-align: center;
  }

  .footer__service {
    padding-top: 0;
    border-top: 0;
  }
}

/* Tablet menu: use the same header balance as the SP panel. */
@media (min-width: 768px) and (max-width: 1024px) {
  .hamburger__btn[aria-expanded="true"] {
    visibility: hidden;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    top: 0 !important;
    bottom: auto;
    width: auto;
    height: auto;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header__nav a.header__panel-logo {
    width: 120px;
  }

  .header__nav a.header__book-link {
    align-items: flex-start;
    text-align: left;
  }

  .header__nav a:not(.header__book-link):not(.header__panel-logo) {
    font-size: 18px;
  }

  .header__book-link span {
    font-size: 18px;
  }

  .header__book-link small {
    font-size: 14px;
  }

  .header__nav a:hover,
  .header__nav a:focus-visible {
    text-decoration: none;
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo)::after {
    content: none;
  }

  .header__nav a.header__cta {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .header {
    margin: 4px 0 2px;
  }

  .header__inner {
    min-height: 68px;
  }

  .header__nav {
    margin-left: 18px;
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo) {
    padding-right: max(0px, calc(var(--header-link-pad, clamp(10px, 0.6vw, 14px)) - 1px));
    padding-left: max(0px, calc(var(--header-link-pad, clamp(10px, 0.6vw, 14px)) - 1px));
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo)::after {
    content: none;
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):hover,
  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo):focus-visible {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }

  .header__book-link,
  .header__nav a.header__book-link {
    min-height: 42px;
  }

  .header__book-link {
    padding: 2px 10px 3px !important;
  }

  .header__book-link small {
    gap: 3px;
    font-size: 11px;
    letter-spacing: -0.04em;
  }
}

@media (min-width: 1301px) {
  .header__inner {
    width: min(1280px, calc(100% - 80px));
  }

  .header__nav a:not(.header__book-link):not(.header__cta):not(.header__panel-logo) {
    letter-spacing: -0.015em;
  }
}

/* Limit PC image carousel width */
@media (min-width: 981px) {
  .hero__slider--image {
    width: 100%;
    max-width: 1480px;
    margin-right: auto;
    margin-left: auto;
  }
}



/* SP top-page spacing and group logo balance */
@media (max-width: 680px) {
  .header {
    margin: 0;
  }

  .header__inner {
    min-height: 56px;
  }

  .header__sp-cta {
    height: 35px;
  }

  .header__nav {
    top: 56px;
  }

  .hero {
    padding-top: 0;
  }

  .group-companies__logos {
    width: 100%;
    gap: 12px;
  }

  .group-logo {
    width: min(100%, 280px);
    min-height: 54px;
    justify-content: flex-start;
  }

  .group-logo img,
  .group-logo--group img,
  .group-logo--publishing img {
    width: 100%;
    height: 42px;
    object-fit: contain;
    object-position: left center;
  }
}


/* Hero carousel notes */
.hero__notes {
  position: absolute;
  right: 0;
  bottom: -48px;
  left: 50%;
  z-index: 3;
  display: block;
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0;
  padding: 0;
  color: #5f6f7a;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero__notes.is-visible {
  visibility: visible;
}

.hero__note {
  display: none;
}

.hero__note.is-visible {
  display: block;
}

.hero__notes p {
  margin: 0;
}

.hero__notes p + p {
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero__notes {
    bottom: -82px;
    width: min(100% - 56px, var(--content-width));
  }
}

@media (max-width: 680px) {
  .hero__notes {
    bottom: -58px;
    width: min(100% - 56px, var(--content-width));
    padding: 0;
    font-size: 10px;
    line-height: 1.34;
  }

  .hero__notes p + p {
    margin-top: 0;
  }
}

/* Philosophy responsive refinement */
@media (max-width: 980px) {
  .philosophy .page-message__contents {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .philosophy {
    padding: 28px 0 52px;
  }

  .philosophy .page-message__inner {
    width: calc(100% - 32px);
  }

  .philosophy .page-message__section-title {
    font-size: 2.15rem;
    line-height: 1.2;
  }

  .philosophy__body {
    margin-top: 1.8rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.8;
  }

  .philosophy .page-message__text1 {
    margin-bottom: 1rem;
    font-size: 0;
    font-weight: 600;
    line-height: 1.65;
  }

  .philosophy .page-message__text1 strong {
    display: none;
  }

  .philosophy .page-message__text1::before {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.5;
    white-space: pre-line;
    content: "顧客が享受する\A情報価値の最大化";
  }

  .philosophy .page-message__text1 + p {
    text-align: left !important;
  }

  .philosophy p {
    margin-bottom: 1.25em;
    font-weight: 500;
    line-height: 1.8;
  }

  .philosophy .page-message__section-title:not(.philosophy__mission-title) {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.3;
  }

  .philosophy .table_design03 {
    display: block;
    width: 100%;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.75;
  }

  .philosophy .table_design03 tbody {
    display: block;
  }

  .philosophy .table_design03 tr,
  .philosophy .table_design03 tr:first-child {
    display: block;
    padding: 18px 0;
    border-top: 0;
    border-bottom: 1px solid #d7e0e5;
  }

  .philosophy .table_design03 tr:last-child {
    border-bottom: 1px solid #d7e0e5 !important;
  }

  .philosophy .table_design03 tr:first-child {
    padding-top: 0;
  }

  .philosophy .table_design03 th,
  .philosophy .table_design03 td {
    display: block;
    width: 100%;
    padding: 0;
    overflow-wrap: anywhere;
  }

  .philosophy .table_design03 th {
    color: #0177B4;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
  }

  .philosophy .table_design03 th::after {
    display: none;
  }

  .philosophy .table_design03 td {
    margin-top: 7px;
    padding: 0;
    font-weight: 500;
  }

  .philosophy .table_design03 img {
    max-width: 100%;
    height: auto;
  }
}
