body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: block;
}

.u-mobile {
  display: none;
}

/* リキッドレイアウト対応 */

html {
  font-size: 16px;
}

/* 固定ヘッダー分を差し引いた位置へ # アンカーでスクロールする */

html {
  scroll-padding-top: 5rem;
}

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

* {
  min-height: 0vw;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

/* Set core body defaults */

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

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

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

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */

a {
  -webkit-text-decoration: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease-in;
}

a:hover {
  opacity: 0.7;
}

a[href^="tel:"] {
  pointer-events: none;
}

.section {
  padding: 6.25rem 0;
}

.section-title {
  color: rgba(127, 170, 130, 0.4);
  font-family: "Josefin Sans", sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.text-center {
  text-align: center;
}

.section-sub-title {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: -1.25rem;
}

.section-title--white {
  color: rgba(255, 255, 255, 0.4);
}

.section-sub-title--white {
  color: #ffffff;
}

.section-title--green {
  color: #022e33;
}

.js-text__char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.js-text__char-inner {
  color: inherit;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.section-btn__link {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  padding: 2.5rem 7.5rem 2.5rem 0;
  position: relative;
  touch-action: manipulation;
  width: -moz-fit-content;
  width: fit-content;
}

.section-btn__link:hover {
  opacity: 1;
}

.section-btn__link::before {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0.0625rem solid #ffffff;
  border-radius: 50%;
  content: "";
  height: 6.25rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform 0.25s ease;
  width: 6.25rem;
}

.section-btn__link::after {
  background: url(../images/common/arrow-white.svg) no-repeat center center/cover;
  content: "";
  height: 2.625rem;
  position: absolute;
  right: 1.8125rem;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform 0.25s ease;
  width: 2.625rem;
}

.section-btn__link:hover::before {
  transform: translateY(-50%) scale(1.08);
}

.section-btn__link:hover::after {
  transform: translateY(-50%) scale(1.08);
}

.section-btn__link:active::before {
  transform: translateY(-50%) scale(1.08);
}

.section-btn__link:active::after {
  transform: translateY(-50%) scale(1.08);
}

.section-btn__text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-btn-green {
  color: #022e33;
}

.section-btn-green::before {
  background-color: rgba(2, 46, 51, 0.2);
  border-color: #022e33;
}

.section-btn-green::after {
  background: url(../images/common/arrow-green.svg) no-repeat center center/cover;
}

.section-btn__text--green {
  color: #022e33;
}

.lower-section-head {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
}

.lower-section-head__title {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 1.25rem;
  position: relative;
}

.lower-section-head__title::before {
  background-color: #00b8db;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0.125rem;
  width: 0.1875rem;
}

.lower-section-text {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.site-footer {
  background-color: #156c82;
  padding-top: 6.25rem;
}

.site-footer__head {
  display: flex;
  justify-content: space-between;
}

.site-footer__logo img {
  height: 9.625rem;
  width: 12rem;
}

.site-footer__to-top {
  display: block;
  margin-top: -2.5rem;
  position: relative;
}

.site-footer__to-top::before {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0.0625rem solid #ffffff;
  border-radius: 50%;
  content: "";
  height: 6.25rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 6.25rem;
}

.site-footer__to-top::after {
  background: url(../images/common/arrow-white.svg) no-repeat center center/cover;
  content: "";
  height: 2.625rem;
  position: absolute;
  right: 1.8125rem;
  top: 3.125rem;
  transform: translateY(-50%) rotate(-90deg);
  width: 2.625rem;
}

.site-footer__nav-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2.8125rem;
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__group-wrap {
  display: flex;
  gap: 4.375rem;
}

.site-footer__group-title {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-footer__group-list {
  padding-left: 1.875rem;
}

.site-footer__group-list li + li {
  margin-top: 0.375rem;
}

.site-footer__group-list a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 1.25rem;
  position: relative;
}

.site-footer__group-list a::before {
  background-color: #d3a333;
  border-radius: 50%;
  content: "";
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
}

.site-footer__simple-list {
  margin-left: 5rem;
}

.site-footer__simple-list li + li {
  margin-top: 1.25rem;
}

.site-footer__simple-list a {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-footer__policy {
  margin-left: auto;
}

.site-footer__policy a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-footer__bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  margin-top: 6.25rem;
  padding-bottom: 1.875rem;
  padding-top: 1.875rem;
}

.site-footer__bottom p {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.site-header {
  background-color: transparent;
  height: 5rem;
  left: 0;
  position: fixed;
  top: 0;
  transition: background-color 0.35s ease;
  width: 100%;
  z-index: 100;
}

.site-header:has(.site-header__nav-item--mega:hover) {
  background-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-header-past-mv {
  background-color: #fff;
  box-shadow: 0 0.25rem 0.625rem rgba(54, 66, 84, 0.1);
}

.site-header.is-header-past-mv:has(.site-header__nav-item--mega:hover) {
  background-color: #fff;
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 86.125rem;
  padding: 0 1.25rem;
}

.site-header__logo img {
  height: 3.75rem;
  margin-top: -0.9375rem;
  width: 13.125rem;
}

.site-header__hamburger {
  display: none;
}

.site-header__hamburger-line {
  background-color: #022e33;
  border-radius: 0.0625rem;
  display: block;
  height: 0.125rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  width: 1.5rem;
}

.site-header__hamburger-line + .site-header__hamburger-line {
  margin-top: 0.375rem;
}

body.is-drawer-open .site-header__hamburger-line:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

body.is-drawer-open .site-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

body.is-drawer-open .site-header__hamburger-line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.site-header__right {
  align-items: center;
  display: flex;
  height: inherit;
}

.site-header__nav {
  height: inherit;
}

.site-header__nav-list {
  align-items: center;
  display: flex;
  height: inherit;
}

.site-header__nav-item + .site-header__nav-item {
  margin-left: 1.875rem;
}

.site-header__nav-item {
  height: inherit;
}

.site-header__nav-item a {
  align-items: center;
  color: #022e33;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  height: inherit;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.42;
  text-align: center;
}

.site-header__contact {
  align-items: center;
  background-color: #329eac;
  display: inline-flex;
  justify-content: center;
  margin-left: 3.125rem;
  min-height: 3.75rem;
  padding: 1.25rem;
}

.site-header__contact span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-header__contact img {
  height: 0.8125rem;
  margin-left: 0.625rem;
  width: 1rem;
}

.site-header__nav-item--mega {
  position: relative;
}

.site-header__mega-caret {
  display: block;
  height: 1.1875rem;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translate(-50%, -100%);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  visibility: hidden;
  width: 1.375rem;
  z-index: 101;
}

.site-header__mega-caret::before {
  border-bottom: 1.1875rem solid #ffffff;
  border-left: 0.6875rem solid transparent;
  border-right: 0.6875rem solid transparent;
  content: "";
  display: block;
  filter: drop-shadow(0 -0.5rem 0.75rem rgba(54, 66, 84, 0.35));
  height: 0;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 0;
}

.site-header__nav-item--mega:hover .site-header__mega-caret {
  opacity: 1;
  transform: translate(-50%, -100%);
  visibility: visible;
}

.site-header__mega {
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.625rem rgba(54, 66, 84, 0.1);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 5rem;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  visibility: hidden;
  z-index: 102;
}

.site-header__nav-item--mega:hover .site-header__mega {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-header__mega-inner {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 72.25rem;
  padding: 3.125rem 6rem;
  position: relative;
}

.site-header__mega-layout {
  align-items: flex-start;
  display: flex;
}

.site-header__mega-layout--about > .site-header__mega-card + .site-header__mega-card {
  margin-left: 2rem;
}

.site-header__mega-card--feature + .site-header__mega-grid {
  margin-left: 2rem;
}

.site-header__mega-grid {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 39.5rem;
}

.site-header__mega-row {
  display: flex;
}

.site-header__mega-row .site-header__mega-card + .site-header__mega-card {
  margin-left: 2rem;
}

.site-header__mega-row + .site-header__mega-row {
  margin-top: 2rem;
}

.site-header__mega-card {
  -webkit-text-decoration: none;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.site-header__mega-card::before {
  background: linear-gradient(0deg, #022e33 0%, rgba(2, 46, 51, 0) 100%);
  bottom: 0;
  content: "";
  height: 5rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.site-header__mega-card-media {
  display: block;
  overflow: hidden;
  position: relative;
}

.site-header__mega-card--feature .site-header__mega-card-media {
  height: 24.5rem;
  width: 18.75rem;
}

.site-header__mega-card--sub .site-header__mega-card-media {
  height: 11.25rem;
  width: 18.75rem;
}

.site-header__mega-card-img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-header__mega-card-label {
  bottom: 0.875rem;
  left: 0.75rem;
  position: absolute;
  z-index: 2;
}

.site-header__mega-card-text {
  color: #ffffff;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}

.site-header__mega-card:focus-visible {
  outline: 0.125rem solid #329eac;
  outline-offset: 0.125rem;
}

.site-header__drawer {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.3s ease;
  visibility: hidden;
  z-index: 150;
}

body.is-drawer-open .site-header__drawer {
  pointer-events: auto;
  visibility: visible;
}

.site-header__drawer-overlay {
  background-color: rgba(2, 46, 51, 0.45);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
}

body.is-drawer-open .site-header__drawer-overlay {
  opacity: 1;
}

.site-header__drawer-panel {
  background-color: #ffffff;
  box-shadow: -0.25rem 0 1.5rem rgba(2, 46, 51, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 22.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.5rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  width: 88vw;
}

body.is-drawer-open .site-header__drawer-panel {
  transform: translateX(0);
}

.site-header__drawer-nav {
  flex: 1 1 auto;
}

.site-header__drawer-list {
  margin: 0;
  padding: 0;
}

.site-header__drawer-link {
  -webkit-text-decoration: none;
  border-radius: 0.25rem;
  color: #022e33;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0.875rem 0.75rem;
  text-decoration: none;
}

.site-header__drawer-sub-link {
  color: #022e33;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0.5rem 0 0.5rem 1.875rem;
  position: relative;
}

.site-header__drawer-sub-link::before {
  background-color: #d3a333;
  border-radius: 50%;
  content: "";
  height: 0.625rem;
  left: 0.625rem;
  position: absolute;
  top: 0.875rem;
  width: 0.625rem;
}

.site-header__drawer-foot {
  padding: 1.875rem 0;
}

.site-header__drawer-contact {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #329eac;
  display: flex;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
}

.site-header__drawer-contact-text {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.site-header__drawer-contact-icon {
  height: 0.8125rem;
  margin-left: 0.625rem;
  width: 1rem;
}

.not-found-main {
  overflow-x: hidden;
}

.not-found__inner {
  max-width: 45rem;
}

.not-found__display {
  color: rgba(127, 170, 130, 0.35);
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}

.not-found__note {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
  margin-top: 1.75rem;
}

.not-found__btn {
  margin-top: 2.5rem;
}

.advisory-main {
  overflow-x: hidden;
}

.advisory-section-title {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.advisory-hero {
  background-color: #e3f0f3;
  overflow: hidden;
  padding: 4.625rem 0 5rem;
  position: relative;
}

.advisory-hero::before {
  background: url(../images/consulting/hero-arrows.svg) no-repeat center center/cover;
  content: "";
  height: 30.3125rem;
  left: calc(50% + 9.875rem);
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 35.125rem;
}

.advisory-hero__inner {
  position: relative;
  z-index: 1;
}

.advisory-hero__title {
  color: #022e33;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.advisory-hero__lead-block {
  margin-top: 3.125rem;
}

.advisory-hero__catch {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0;
}

.advisory-hero__text {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.advisory-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.advisory-hero__btn {
  border-radius: 62.4375rem;
  display: block;
  max-width: 19.25rem;
  padding: 1.375rem 3.4375rem 1.375rem 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.advisory-hero__btn--primary::before {
  background: url(../images/common/icon-contact.svg) no-repeat center center/cover;
  content: "";
  height: 1.375rem;
  position: absolute;
  right: 2.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
}

.advisory-hero__btn--outline::before {
  background: url(../images/common/icon-contact-blue.svg) no-repeat center center/cover;
  content: "";
  height: 2.1875rem;
  position: absolute;
  right: 2.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1875rem;
}

.advisory-hero__btn + .advisory-hero__btn {
  margin-left: 1.25rem;
}

.advisory-hero__btn--primary {
  background-color: #156c82;
  border: 0.0625rem solid #156c82;
}

.advisory-hero__btn--outline {
  background-color: #fff;
  border: 0.0625rem solid #e3f0f3;
}

.advisory-hero__btn-label {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.advisory-hero__btn--outline .advisory-hero__btn-label {
  color: #156c82;
}

.advisory-hero__btn-icon--teal {
  background-color: rgba(21, 108, 130, 0.12);
}

.advisory-worries {
  background-color: #fff;
}

.advisory-worries__grid {
  grid-gap: 1.25rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}

.advisory-worry-card {
  align-items: center;
  background-color: #edf5ed;
  border: 0.0625rem solid #f0f0f0;
  box-sizing: border-box;
  display: flex;
  min-height: 5.625rem;
  padding: 1.5rem 1rem 1.5rem 0.8125rem;
}

.advisory-worry-card__icon {
  display: block;
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
}

.advisory-worry-card__text {
  color: #4a5565;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.0195em;
  line-height: 1.2;
  margin: 0 0 0 1rem;
}

.advisory-cta-band-wrapper {
  margin: 6.875rem 0 6.25rem;
}

.advisory-cta-band {
  background: linear-gradient(180deg, #058798 0%, #27c6db 100%);
  margin-top: 3.75rem;
  padding: 2.5rem 0;
  position: relative;
}

/*.advisory-cta-band::before {
  background: url(../images/consulting/cta.webp) no-repeat center center/cover;
  bottom: 0;
  content: "";
  height: 20rem;
  position: absolute;
  right: 9.375rem;
  width: 16.375rem;
}*/

.common-consulting .advisory-cta-band::before {
  right: 0.75rem;
}

.common-consulting .advisory-cta-band {
  margin-top: 3.75rem;
}

.advisory-cta-band__tagline {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.advisory-cta-band__copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advisory-cta-band__body {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 1.625rem;
  text-align: center;
}

.advisory-cta-band .advisory-hero__btn--outline {
  margin: 0 auto;
}

.advisory-cta-band__media {
  flex-shrink: 0;
  margin: 0;
  max-width: 42%;
  width: 16.375rem;
}

.advisory-cta-band__media-placeholder {
  aspect-ratio: 262/320;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 0.5rem;
  width: 100%;
}

.advisory-cta-band--secondary {
  padding: 3rem 0 4rem;
}

.advisory-cta-band--secondary .advisory-cta-band__body {
  margin-top: 1rem;
}

.advisory-reasons {
  background-color: #edf5ed;
}

.advisory-reasons__role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-right: 2rem;
  margin-top: 0.8125rem;
}

.advisory-reasons__role-item {
  border: 0.0625rem solid #156c82;
  color: #156c82;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding: 0.5625rem 1.25rem;
}

.advisory-compare__table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.advisory-compare__table {
  border-collapse: collapse;
  min-width: 31.25rem;
  width: 100%;
}

.advisory-compare__th {
  border-bottom: 0.0625rem solid #156c82;
  color: #022e33;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding: 1rem 0.75rem;
  text-align: center;
}

.advisory-compare__th--item {
  width: 8.75rem;
}

.advisory-compare__th--weature {
  background-color: #eff5f6;
  color: #156c82;
  width: 32rem;
}

.advisory-compare__rowhead {
  border-bottom: 0.0625rem solid #eee;
  color: #022e33;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding: 0.875rem 0.75rem;
  text-align: left;
  text-align: center;
}

.advisory-compare__td {
  border-bottom: 0.0625rem solid #eee;
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.advisory-compare__td--muted {
  color: #a0a0a0;
}

.advisory-compare__td--accent {
  background-color: #eff5f6;
  color: #156c82;
  font-weight: 700;
}

.advisory-flow {
  background-color: #edf5ed;
}

.advisory-flow__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3.75rem;
  position: relative;
}

.advisory-flow-step {
  box-sizing: border-box;
  flex: 0 0 calc(100% / 6 - 0.5rem);
  max-width: 12.5rem;
  position: relative;
  text-align: center;
}

.advisory-flow__steps::before {
  background: repeating-linear-gradient(90deg, #156c82 0, #156c82 0.125rem, transparent 0.125rem, transparent 0.3125rem);
  content: "";
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 3rem;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
}

.advisory-flow-step__badge {
  align-items: center;
  background-color: #41a4a0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 6.25rem;
  justify-content: center;
  margin: 0 auto;
  padding-top: 0.625rem;
  position: relative;
  width: 6.25rem;
  z-index: 1;
}

.advisory-flow-step__badge-label {
  color: #fff;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.advisory-flow-step__badge-num {
  color: #fff;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 0.3125rem;
}

.advisory-flow-step__title {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 1.25rem;
}

.advisory-flow-step__desc {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 1rem;
}

.advisory-results .common-consulting__cases {
  margin-right: calc(50% - 50vw) !important;
}

.advisory-results .common-consulting__cases {
  width: 100vw;
}

.advisory-results .common-consulting__cases-empty {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.375rem;
  padding-bottom: 2.5rem;
}

.advisory-results__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}

.advisory-result-card {
  background-color: #edf5ed;
  border: 0.0625rem solid #fff;
  box-sizing: border-box;
  padding: 1.25rem;
  width: calc((100% - 2.5rem) / 3);
}

.advisory-result-card--dim {
  background-color: rgba(237, 245, 237, 0.5);
}

.advisory-result-card__row {
  align-items: flex-start;
  display: flex;
  gap: 1.8125rem;
}

.advisory-result-card__thumb {
  background-color: #ccc;
  flex-shrink: 0;
  height: 10.625rem;
  max-width: 45%;
  width: 15.625rem;
}

.advisory-result-card__meta {
  flex: 1;
  min-width: 0;
}

.advisory-result-card__title {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.advisory-result-card__client {
  color: #156c82;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 1.875rem;
}

.advisory-result-card__excerpt {
  color: #022e33;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 1rem;
}

.advisory-result-card__excerpt--bold {
  font-weight: 700;
}

.advisory-results__pager {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.advisory-results__dot {
  background-color: #c5d5d8;
  border-radius: 50%;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
}

.advisory-results__dot + .advisory-results__dot {
  margin-left: 0.5rem;
}

.advisory-results__dot--active {
  background-color: #156c82;
}

.advisory-results__foot {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.advisory-faq {
  border-top: 0.0625rem solid #ccddcd;
}

.advisory-faq .common-consulting__faq {
  margin: 2.5rem auto 0;
  max-width: 54.375rem;
}

.advisory-guide__band {
  background: linear-gradient(180deg, #022d32 0%, #058798 100%);
  overflow: hidden;
  padding: 5rem 0 6.25rem;
  position: relative;
}

.advisory-guide__band .advisory-hero__btn--primary {
  margin-top: 2.125rem;
}

.advisory-guide__band::before {
  aspect-ratio: 687/803;
  background: url(../images/strengths/bg-strengths.webp) no-repeat center center/cover;
  content: "";
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  width: 42.9375rem;
}

.advisory-guide__inner {
  position: relative;
  z-index: 1;
}

.advisory-guide__heading {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.advisory-guide__card {
  align-items: flex-start;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  max-width: 62.5rem;
  padding: 3.125rem 2.5rem;
}

.advisory-guide__card-copy {
  flex: 1;
  min-width: 15rem;
}

.advisory-guide__card-title {
  color: #101828;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.0029em;
  line-height: 1.35;
  margin: 0;
}

.advisory-guide__card-text {
  color: #4a5565;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.0195em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 1.25rem;
}

.advisory-guide__card-btn {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #156c82;
  border-radius: 62.4375rem;
  display: inline-flex;
  gap: 1.1875rem;
  justify-content: center;
  margin-top: 1.75rem;
  min-height: 4.0625rem;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
}

.advisory-guide__card-btn-text {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.advisory-guide__card-btn-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  height: 2.1875rem;
  position: relative;
  width: 2.1875rem;
}

.advisory-guide__card-btn-icon::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M4 12h14M14 6l6 6-6 6'/%3E%3C/svg%3E")
    no-repeat center center/contain;
  content: "";
  height: 0.6875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 0.875rem;
}

.advisory-guide__card-visual {
  background-color: #ccc;
  max-width: 100%;
  min-height: 13.1875rem;
  width: 26.8125rem;
}

.common-consulting {
  overflow-x: clip;
}

.common-consulting__shell {
  padding-bottom: 0;
  padding-top: 0;
}

.common-consulting__grid {
  align-items: flex-start;
  display: flex;
  gap: 0;
}

.common-consulting__aside {
  flex: 0 0 20.625rem;
  max-width: 100%;
  position: sticky;
  top: 6.25rem;
  width: 20.625rem;
}

.common-consulting__nav {
  background-color: #ffffff;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 1.25rem;
}

.common-consulting__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.common-consulting__nav-item + .common-consulting__nav-item {
  margin-top: 1.25rem;
}

.common-consulting__nav-link {
  align-items: center;
  color: #cccccc;
  display: flex;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 0.625rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.common-consulting__nav-link::before {
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 0.625rem;
  width: 0.625rem;
}

.common-consulting__nav-item--active .common-consulting__nav-link {
  color: #022e33;
}

.common-consulting__nav-item--active .common-consulting__nav-link::before {
  background-color: #d3a333;
}

.common-consulting__main {
  flex: 1;
  max-width: 61.875rem;
  min-width: 0;
}

.common-consulting__sections > * + * {
  margin-top: 7.5rem;
}

.common-consulting__block-head {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
}

.common-consulting__rule {
  background-color: #00b8db;
  flex-shrink: 0;
  height: 2.125rem;
  margin-top: 0.125rem;
  width: 0.1875rem;
}

.common-consulting__heading {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.common-consulting__service-list {
  margin-top: 3.125rem;
}

.common-consulting__service + .common-consulting__service {
  margin-top: 5rem;
}

.common-consulting__service-media {
  width: 100%;
}

.common-consulting__service-img {
  -o-object-fit: cover;
  aspect-ratio: 870/280;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.common-consulting__service-body {
  margin-top: 1.875rem;
}

.common-consulting__text {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.common-consulting__text span {
  color: #156c82;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.common-consulting__flow-list {
  margin: 3.125rem 0 0;
}

.common-consulting__flow-row {
  align-items: flex-start;
  display: flex;
  gap: 2.875rem;
}

.common-consulting__flow-row + .common-consulting__flow-row {
  margin-top: 1.875rem;
}

.common-consulting__flow-badge {
  -webkit-clip-path: polygon(100% 0, 100% 74%, 52% 100%, 0 74%, 0 0);
  align-items: center;
  clip-path: polygon(100% 0, 100% 74%, 52% 100%, 0 74%, 0 0);
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: 2.5rem 0.75rem;
  position: relative;
  width: 13.125rem;
}

.common-consulting__flow-badge--01 {
  background-color: #022e34;
}

.common-consulting__flow-badge--02 {
  background-color: #035964;
}

.common-consulting__flow-badge--03 {
  background-color: #00b8db;
}

.common-consulting__flow-badge--04 {
  background-color: #4bccbe;
}

.common-consulting__flow-badge--05 {
  background-color: #a0c4c0;
}

.common-consulting__flow-en {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.common-consulting__flow-no {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.25rem;
}

.common-consulting__flow-content {
  flex: 1;
  min-width: 0;
}

.common-consulting__flow-title {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.common-consulting__flow-text {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2rem;
}

.common-consulting__flow-text-block {
  margin-top: 2rem;
}

.common-consulting__flow-text-block .common-consulting__text + .common-consulting__text {
  margin-top: 1rem;
}

.common-consulting__cases {
  margin-top: 3.125rem;
  width: 70vw;
}

.common-consulting__cases-list {
  margin-top: 0.375rem;
  padding-bottom: 2.5rem;
}

.common-consulting__cases-empty {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.375rem;
  padding-bottom: 2.5rem;
}

.common-consulting__cases-foot {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
  margin-top: 4.375rem;
}

.common-consulting__cases-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.common-consulting__mid-cta {
  background: linear-gradient(180deg, #058798 0%, #27c6db 152.38%);
  box-sizing: border-box;
  min-height: 17.9375rem;
  overflow: hidden;
  padding: 5.75rem 1.5rem 2.5rem;
  position: relative;
}

.common-consulting__mid-cta-label {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 3.3125rem;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.common-consulting__mid-cta-inner {
  align-items: flex-end;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 33.625rem;
}

.common-consulting__mid-cta-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.common-consulting__mid-cta-text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.common-consulting__mid-cta-btn {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #ffffff;
  border-radius: 36.0625rem;
  box-sizing: border-box;
  display: inline-flex;
  gap: 1.1875rem;
  justify-content: center;
  min-height: 4.0625rem;
  padding: 0.75rem 2rem;
  text-decoration: none;
}

.common-consulting__mid-cta-btn-text {
  color: #156c82;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.common-consulting__mid-cta-photo {
  bottom: 0;
  max-width: 38%;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 16.375rem;
}

.common-consulting__mid-cta-img {
  -o-object-fit: cover;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.common-consulting__faq {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 3.125rem;
}

.common-consulting__faq-item {
  border-radius: 0.625rem;
  contain: layout paint;
}

.common-consulting__faq-q {
  align-items: center;
  background: #f0f0f0;
  border: 0;
  border-radius: 0.625rem;
  cursor: pointer;
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  text-align: left;
  width: 100%;
}

.common-consulting__faq-icon {
  align-items: center;
  background-color: #156c82;
  border-radius: 1.125rem;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 2.25rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 0.125rem;
  padding-top: 0.125rem;
  width: 2.25rem;
}

.common-consulting__faq-qtext {
  color: #022e33;
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  min-width: 0;
}

.common-consulting__faq-toggle {
  flex-shrink: 0;
  height: 1rem;
  position: relative;
  width: 1rem;
}

.common-consulting__faq-toggle::before {
  background-color: #007086;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
}

.common-consulting__faq-toggle::after {
  background-color: #007086;
  content: "";
  height: 1rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  width: 0.125rem;
}

.common-consulting__faq-item.is-open .common-consulting__faq-toggle::after {
  opacity: 0;
}

.common-consulting__faq-a {
  display: flex;
  gap: 1.5rem;
  padding: 1.375rem 1.5rem 0;
  will-change: height;
}

.common-consulting__faq-a[hidden] {
  display: none;
}

.common-consulting__faq-aicon {
  align-items: center;
  background-color: #d6a935;
  border-radius: 1.125rem;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 2.25rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 0.125rem;
  padding-top: 0.125rem;
  width: 2.25rem;
}

.common-consulting__faq-abody {
  flex: 1;
  min-width: 0;
}

.common-consulting__faq-atext {
  color: #022e33;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

.common-consulting__faq-atext + .common-consulting__faq-atext {
  margin-top: 0.5rem;
}

.common-consulting__consider {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

.common-consulting__consider-lead {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.common-consulting__consider-body {
  margin-top: 2rem;
}

.common-consulting__consider-body .common-consulting__text + .common-consulting__text {
  margin-top: 1rem;
}

.common-consulting__consider-sub {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.common-consulting__bullets {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.common-consulting__bullet {
  align-items: flex-start;
  display: flex;
  gap: 0;
}

.common-consulting__bullet + .common-consulting__bullet {
  margin-top: 0.75rem;
}

.common-consulting__bullet-mark {
  color: #000000;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.common-consulting__bullet-text {
  color: #022e33;
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.common-consulting__profile {
  background-color: #edf5ed;
  overflow: hidden;
  padding: 3.125rem 2.5rem;
  position: relative;
}

.common-consulting__profile::before {
  background: url(../images/consulting/polygon-w.webp) no-repeat center center/cover;
  bottom: -3.6875rem;
  content: "";
  height: 20rem;
  position: absolute;
  right: -2.75rem;
  width: 19.9375rem;
}

.common-consulting__profile-heading {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.common-consulting__profile-layout {
  align-items: flex-start;
  display: flex;
  gap: 2.25rem;
  margin-top: 1.875rem;
  position: relative;
}

.common-consulting__profile-visual {
  flex-shrink: 0;
  max-width: 100%;
  width: 25.875rem;
}

.common-consulting__profile-photo {
  background-color: #cccccc;
  width: 100%;
}

.common-consulting__profile-img {
  -o-object-fit: cover;
  display: block;
  height: 18.8125rem;
  object-fit: cover;
  width: 100%;
}

.common-consulting__profile-name {
  color: #a9a9a9;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.3125rem;
}

.common-consulting__profile-text {
  flex: 1;
  max-width: 20rem;
  min-width: 0;
}

.common-consulting__profile-text .common-consulting__text + .common-consulting__text {
  margin-top: 1rem;
}

.common-consulting__profile-deco {
  bottom: 1.5rem;
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
}

.common-consulting__profile-w {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 6.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.blog-archive-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive-categories__link {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #156c82;
  box-sizing: border-box;
  color: #156c82;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.25rem 1.875rem;
  text-decoration: none;
}

.blog-archive-categories__link.is-active {
  background-color: #156c82;
  border-color: #156c82;
  color: #fff;
}

.blog-archive-posts__inner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

.top-blog__item {
  display: flex;
}

.top-blog__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.top-blog__card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-archive__empty {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 5rem 0 0;
  text-align: center;
}

.blog-archive__pager {
  margin-top: 5rem;
  width: 100%;
}

.blog-archive__pager-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-archive__pager-inner .page-numbers {
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #156c82;
  color: #156c82;
  display: inline-flex;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  height: 2.75rem;
  justify-content: center;
  line-height: 1;
  padding: 0 0.5rem;
  width: 2.75rem;
}

.blog-archive__pager-inner .page-numbers.current {
  background-color: #156c82;
  border-color: #156c82;
  color: #fff;
  font-weight: 700;
}

.blog-archive__pager-inner .page-numbers.dots {
  background: transparent;
  border: none;
  color: #022e33;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  min-width: auto;
  padding: 0 0.25rem;
}

.blog-archive__pager-inner .page-numbers.prev,
.blog-archive__pager-inner .page-numbers.next {
  background-color: #ffffff;
  border-color: #156c82;
  color: #156c82;
  height: 2.75rem;
  padding: 0;
  width: 2.75rem;
}

.blog-archive__pager-icon {
  display: block;
  height: 0.75rem;
  width: 0.4375rem;
}

.blog-single__title {
  color: #022e33;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.blog-single__thumb {
  margin: 0 auto;
  margin-top: 2.5rem;
  overflow: hidden;
  width: 80%;
}

.blog-single__image {
  -o-object-fit: cover;
  aspect-ratio: 960/640;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-single__content {
  margin-top: 3.75rem;
}

.blog-single__content p {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding-bottom: 1.25rem;
}

.blog-single__content a {
  -webkit-text-decoration: underline;
  color: #156c82;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: inherit;
  text-decoration: underline;
}

.blog-single__content img {
  padding-bottom: 2.5rem;
}

.blog-single__content h2 {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
}

.blog-single__content h2::before {
  background-color: #136c82;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.25rem;
}

.blog-single__content h3 {
  border-bottom: 0.0625rem solid #022e33;
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
}

.blog-single__content ul {
  margin-left: 1.25rem;
  padding-bottom: 1.25rem;
}

.blog-single__content li {
  color: #022e33;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  list-style: disc;
}

div#toc_container {
  margin: 0 auto 3.75rem;
  padding: 1.25rem 1.875rem;
}

div#toc_container p.toc_title {
  font-size: 1.25rem;
}

div#toc_container a {
  font-size: 1.125rem;
}

.blog-single__related {
  background-color: #edf5ed;
}

.blog-single__related .top-blog__list {
  margin-top: 2.5rem;
}

.blog-single__related-empty {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2.5rem;
}

.blog-single__related-btn {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
}

.page-breadcrumb {
  margin-top: 5rem;
  padding: 1.125rem 0;
}

.page-breadcrumb__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-breadcrumb__item {
  margin: 0;
  padding: 0;
}

.page-breadcrumb__item + .page-breadcrumb__item {
  margin-left: 0.5rem;
}

.page-breadcrumb__link {
  -webkit-text-decoration: none;
  color: #022e33;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.page-breadcrumb__link:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.page-breadcrumb__sep {
  color: #022e33;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.page-breadcrumb__current {
  color: #022e33;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.company-body__inner {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

.company-message__layout {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  width: 100%;
}

.company-message__photo {
  margin-left: calc(50% - 50vw);
  margin-right: auto;
  width: 49vw;
}

.company-message__photo-placeholder {
  -webkit-clip-path: polygon(0 0, 100% 0, 79.01% 100%, 0 100%);
  aspect-ratio: 705/653;
  clip-path: polygon(0 0, 100% 0, 79.01% 100%, 0 100%);
  height: 40.8125rem;
  width: 100%;
}

.company-message__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 5.875rem;
}

.company-message__lead {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  width: 100%;
}

.company-message__body {
  margin-top: 2rem;
}

.company-message__sign {
  align-items: flex-end;
  display: flex;
  gap: 2.25rem;
  justify-content: flex-end;
  margin-top: 2rem;
  width: 100%;
}

.company-message__role {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.company-message__sign-name {
  align-items: flex-end;
  display: flex;
}

.company-message__sign-parts {
  align-items: flex-end;
  display: flex;
}

.company-message__sign-img {
  display: block;
  height: 2.125rem;
  width: auto;
}

.company-message__sign-img:last-child {
  margin-left: 1.875rem;
}

.company-mvv__blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.125rem;
  width: 100%;
}

.company-mvv__row {
  align-items: center;
  border-radius: 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  padding: 1.5rem 0;
  width: 100%;
}

.company-mvv__row--mission {
  background-color: #edf5ed;
}

.company-mvv__row--vision {
  background-color: #ffffff;
  border: 0.1875rem solid #edf5ed;
}

.company-mvv__row--value {
  align-items: flex-start;
  background-color: #edf5ed;
}

.company-mvv__label {
  color: #022e33;
  flex: 0 0 12.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

.company-mvv__text {
  color: #022e33;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.company-mvv__text p {
  color: #022e33;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.company-mvv__text--single {
  flex: 1;
  min-width: 0;
  white-space: normal;
}

.company-value {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.company-value__item {
  border-top: 0.0625rem solid #cccccc;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding-bottom: 0.9375rem;
  padding-top: 0.9375rem;
}

.company-value__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.company-value__en {
  -webkit-background-clip: text;
  background-clip: text;
  background-position: center;
  background-size: cover;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  height: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.company-value__en--a {
  background-image: url(../images/company/value-gradient-a.webp);
}

.company-value__en--b {
  background-image: url(../images/company/value-gradient-b.webp);
}

.company-value__ja {
  color: #022e33;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: -0.3125rem;
}

.company-value__desc {
  color: #022e33;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0.9375rem 0 0;
}

.company-outline {
  margin-top: 3.125rem;
}

.company-outline__block:not(:first-child) {
  margin-top: 2rem;
}

.company-outline__row {
  align-items: center;
  color: #022e33;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  gap: 1rem;
  letter-spacing: 0.02em;
  padding-bottom: 1.5rem;
  position: relative;
}

.company-outline__row::after {
  background-image: url(../images/company/line-sep-start.svg), url(../images/company/line-sep-rest.svg);
  background-position:
    left center,
    12.25rem center;
  background-repeat: no-repeat, repeat-x;
  background-size:
    12.25rem 0.125rem,
    auto 0.125rem;
  bottom: 0;
  content: "";
  display: block;
  height: 0.125rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.company-outline__row--multiline {
  align-items: flex-start;
}

.company-outline__dt {
  color: #022e33;
  flex: 0 0 11.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

.company-outline__dd {
  color: #022e33;
  flex: 1 1 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
  min-width: 0;
}

.company-outline__dd p {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0;
}

.company-outline__dd p + p {
  margin-top: 0.25rem;
}

.company-map {
  margin-top: 7.5rem;
}

.company-map__frame {
  margin-top: 3.125rem;
}

.company-map__frame iframe {
  -o-object-fit: cover;
  aspect-ratio: 1440/372;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.consulting-areas {
  min-height: 99.125rem;
  overflow-x: hidden;
}

.consulting-areas__title {
  color: #022e33;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0 auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.consulting-areas__title::before,
.consulting-areas__title::after {
  content: "";
  height: 3.4375rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
}

.consulting-areas__title::before {
  background: url(../images/consulting/deco-bracket-left.svg) no-repeat center center/cover;
  left: -2.625rem;
}

.consulting-areas__title::after {
  background: url(../images/consulting/deco-bracket-right.svg) no-repeat center center/cover;
  right: -2.625rem;
  transform: translateY(-50%) rotate(180deg);
}

.consulting-areas__stage {
  margin: 0 auto;
  margin-top: 4.8125rem;
  max-width: 90rem;
  position: relative;
  width: 100%;
}

.consulting-areas__diagram {
  left: 50%;
  max-width: 75rem;
  position: absolute;
  top: 3.0625rem;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
}

.consulting-areas__photo {
  overflow: hidden;
  position: absolute;
}

.consulting-areas__photo--hand .consulting-areas__img,
.consulting-areas__photo--leader .consulting-areas__img,
.consulting-areas__photo--sky .consulting-areas__img {
  transform-origin: center center;
  will-change: transform;
}

.consulting-areas__photo--leader {
  aspect-ratio: 642/436;
  left: 0;
  max-width: 40.125rem;
  top: 9.5rem;
  width: 100%;
}

.consulting-areas__photo--leader .consulting-areas__img {
  -o-object-fit: cover;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.consulting-areas__photo--sky {
  aspect-ratio: 417/621;
  max-width: 26.0625rem;
  right: 0;
  top: 0;
  width: 100%;
}

.consulting-areas__photo--sky .consulting-areas__img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.consulting-areas__photo--hand {
  aspect-ratio: 678/460;
  max-width: 42.375rem;
  right: 7.5rem;
  top: 50rem;
  width: 100%;
}

.consulting-areas__photo--hand .consulting-areas__img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.consulting-detail {
  background-color: #edf5ed;
}

.consulting-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.consulting-detail__body {
  margin-top: 2rem;
}

.consulting-detail__cards {
  grid-gap: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.75rem;
}

.consulting-card a {
  display: block;
}

.consulting-card a:hover {
  opacity: 1;
}

.consulting-card a:hover .consulting-card__media::after {
  opacity: 1;
}

.consulting-card__media {
  overflow: hidden;
  position: relative;
}

.consulting-card__media::before {
  background: linear-gradient(0deg, #022e33 0%, rgba(2, 46, 51, 0) 100%);
  bottom: 0;
  content: "";
  height: 5rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.consulting-card__media::after {
  background: rgba(2, 46, 51, 0.5);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.consulting-card__image {
  -o-object-fit: cover;
  aspect-ratio: 384/310;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.consulting-card__label {
  bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  left: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: absolute;
  z-index: 1;
}

.consulting-card__caption {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.875rem;
}

.contact-form-section__lead {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 3rem;
}

.contact-form__row {
  align-items: flex-start;
  border-bottom: 0.0625rem solid #d0d5d8;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-bottom: 1.75rem;
  padding-top: 1.75rem;
}

.contact-form__label-wrap {
  align-items: center;
  display: flex;
  flex: 0 0 13.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form__label {
  color: #022e33;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.contact-form__badge {
  background-color: #176c84;
  color: #ffffff;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 0.125rem 0.5rem;
}

.contact-form__field {
  flex: 1;
  min-width: 12.5rem;
}

.contact-form__control {
  background-color: #ffffff;
  border: 0.0625rem solid #c8ced1;
  border-radius: 0.125rem;
  box-sizing: border-box;
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
  padding: 0.875rem 1rem;
  width: 100%;
}

.contact-form__control::-moz-placeholder {
  color: #9aa3a7;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.contact-form__control::placeholder {
  color: #9aa3a7;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.contact-form__field textarea.contact-form__control {
  display: block;
  min-height: 12.5rem;
  resize: vertical;
}

.contact-form__foot {
  background-color: #e8ecee;
  box-sizing: border-box;
  margin-top: 3rem;
  padding: 2.5rem 2rem 0;
}

.contact-form__foot-lead {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}

.contact-form__policy-link {
  -webkit-text-decoration: underline;
  color: #329eac;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.contact-form__accept-wrap {
  margin: 1.5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-form__accept-wrap .wpcf7-list-item {
  margin: 0;
}

.contact-form__accept-wrap label {
  align-items: flex-start;
  color: #022e33;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.contact-form__accept-wrap input[type="checkbox"] {
  accent-color: #022e33;
  flex-shrink: 0;
  height: 1.25rem;
  left: 0;
  margin: 0.125rem 0 0;
  position: absolute;
  width: 1.25rem;
}

.contact-form__submit.wpcf7-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #022e33;
  border: none;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.25rem;
  max-width: 18.75rem;
  padding: 1.25rem 0;
  position: relative;
  text-align: center;
  transition: opacity 0.2s ease;
  width: 100%;
}

.contact-form__submit.wpcf7-submit:hover {
  opacity: 0.92;
}

.contact-form .wpcf7-response-output {
  border: 0.0625rem solid #d0d5d8;
  color: #022e33;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
}

.contact-form .wpcf7-spinner {
  margin-top: 1rem;
}

.fund-business {
  padding-bottom: 0;
  padding-top: 6.25rem;
}

.fund-business__blocks {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3.125rem;
}

.fund-business__media {
  width: 100%;
}

.fund-business__media img {
  -o-object-fit: cover;
  aspect-ratio: 1200/280;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fund-business__body {
  margin-top: 1.875rem;
}

.fund-portfolio {
  margin-top: 1.25rem;
}

.fund-portfolio__intro {
  margin-top: 3.125rem;
}

.fund-portfolio__grid {
  grid-gap: 3.5rem 1.5rem;
  display: grid;
  gap: 3.5rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 3.125rem 0 0;
}

.fund-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  overflow: hidden;
}

.fund-card__thumb img {
  -o-object-fit: cover;
  aspect-ratio: 384/256;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fund-card__body {
  padding: 0 1.25rem 1.25rem;
}

.fund-card__title {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.fund-card__text {
  color: #022e33;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 1rem;
}

.page-fv {
  background-color: #e3f0f3;
  min-height: 23.75rem;
  overflow: hidden;
  position: relative;
}

.page-fv::before {
  background: url(../images/consulting/hero-arrows.svg) no-repeat center center/cover;
  content: "";
  height: 30.3125rem;
  left: calc(50% + 9.875rem);
  position: absolute;
  top: 0;
  width: 35.125rem;
}

.page-fv__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 4.625rem;
}

.page-fv__content {
  flex: 1;
  max-width: 40.625rem;
}

.page-fv__title {
  color: #022e33;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.page-fv__copy {
  margin-top: 3.125rem;
}

.page-fv__catch {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.page-fv__catch--accent {
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
}

.page-fv__lead {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.page-fv__lead--medium {
  font-weight: 500;
}

.page-fv__text {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.page-fv__copy--stack-tight .page-fv__text + .page-fv__text {
  margin-top: 0;
}

.page-fv__copy--stack-md .page-fv__text + .page-fv__text {
  margin-top: 1rem;
}

.page-fv__copy--stack-lg .page-fv__text + .page-fv__text {
  margin-top: 1.5rem;
}

.privacy-body__title {
  color: #022e33;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.privacy-section-head {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
}

.privacy-block__text,
.privacy-block__texts {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.privacy-block__texts {
  margin-bottom: 5rem;
}

.privacy-block + .privacy-block {
  margin-top: 3.75rem;
}

.strengths-page__message {
  background: linear-gradient(180deg, #022d32 0%, #058798 100%);
  overflow: hidden;
  padding: 7.5rem 0;
  position: relative;
}

.strengths-page__message::before {
  aspect-ratio: 687/803;
  background: url(../images/strengths/bg-strengths.webp) no-repeat center center/cover;
  content: "";
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  width: 42.9375rem;
}

.strengths-page__message-inner {
  position: relative;
}

.strengths-page__message-body {
  margin-top: 2.5rem;
}

.strengths-page__message-title {
  color: #fff;
  font-size: 3.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.strengths-page__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.strengths-page__why-text {
  margin-top: 2.5rem;
}

.strengths-page__why-text span {
  -webkit-box-decoration-break: clone;
  background: linear-gradient(transparent 60%, #cbe6ea 60%);
  box-decoration-break: clone;
  color: #006d8c;
  font-weight: 700;
}

.strengths-page__section-title + .strengths-page__text {
  margin-top: 2.75rem;
}

.strengths-page__issue-list {
  border-radius: 0.625rem;
  margin-top: 2.5rem;
  overflow: hidden;
}

.strengths-page__issue-item {
  align-items: center;
  background-color: #f0f0f0;
  display: flex;
  padding: 1rem 1.5rem;
}

.strengths-page__issue-label {
  border-right: 0.0625rem solid #156c82;
  color: #022e33;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  min-width: 10.625rem;
}

.strengths-page__issue-value {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-left: 1.5rem;
}

.strengths-page__role {
  background-color: #edf5ed;
}

.strengths-page__role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.strengths-page__role-item {
  background-color: #ffffff;
  padding: 2rem;
  position: relative;
}

.strengths-page__role-item:not(:first-child)::before {
  background-color: #156c82;
  content: "";
  height: 63%;
  left: -2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
}

.strengths-page__role-head {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.strengths-page__role-label {
  color: #d3a333;
  font-family: "Pinyon Script", cursive;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.strengths-page__role-title {
  color: #101828;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.strengths-page__role-text {
  color: #4a5565;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-right: 2rem;
  margin-top: 1.25rem;
}

.strengths-page__position-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.strengths-page__position-img {
  max-width: 41.25rem;
  width: 100%;
}

.strengths-page__feature {
  background-color: #edf5ed;
}

.strengths-page__point-list {
  margin-top: 5rem;
}

.strengths-page__point-item {
  align-items: center;
  display: flex;
}

.strengths-page__point-item + .strengths-page__point-item {
  border-top: 0.0625rem solid #ccddcd;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.strengths-page__point-label-inner {
  margin-left: 0.9375rem;
}

.strengths-page__point-label {
  max-width: 23rem;
  width: 100%;
}

.strengths-page__point-label img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.strengths-page__point-title {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.strengths-page__point-text {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2.1875rem;
}

.strengths-page__mission {
  padding: 10rem 0;
  position: relative;
}

.strengths-page__mission::before {
  background: url(../images/consulting/polygon-w.webp) no-repeat center center/cover;
  content: "";
  height: 36.625rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36.625rem;
  z-index: -1;
}

.strengths-page__mission-title {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.strengths-page__mission-title span {
  -webkit-box-decoration-break: clone;
  background: linear-gradient(transparent 70%, #cbe6ea 70%);
  box-decoration-break: clone;
  color: #006d8c;
  font-weight: 700;
}

.strengths-page__cta {
  background-color: #e8f0f3;
  padding: 5rem 0;
}

.strengths-page__cta-text {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.team-members {
  padding: 6.25rem 0;
}

.team-members__grid {
  grid-gap: 2.5rem;
  align-items: stretch;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-members__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  min-height: 0;
  padding: 0;
}

.team-members__link,
.team-members__trigger {
  -webkit-text-decoration: none;
  color: inherit;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.6875rem;
  margin: 0;
  min-height: 0;
  padding: 0;
  text-decoration: none;
}

.team-members__trigger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

.team-members__empty {
  color: #022e33;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

.team-members__meta {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.team-members__visual {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.team-members__img {
  -o-object-fit: cover;
  aspect-ratio: 270/333;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-members__role {
  color: #a9a9a9;
  flex-shrink: 0;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.team-members__name {
  color: #022e33;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  margin-top: auto;
  padding-top: 1.25rem;
}

.team-single__body {
  padding: 0 0 6.25rem;
}

.team-single__inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.team-single__visual {
  margin: 0 auto;
  max-width: 20rem;
  width: 100%;
}

.team-single__visual-inner {
  margin-left: auto;
  margin-right: auto;
}

.team-single__content {
  width: 100%;
}

.team-single__detail {
  color: #022e33;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: 100%;
}

.team-single__back {
  margin-top: 1.5rem;
}

.team-single__back-link {
  -webkit-text-decoration: underline;
  color: #058798;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.team-single__back-link:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

body.is-team-modal-open {
  overflow: hidden;
}

.team-modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 1.5rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  visibility: hidden;
  z-index: 1000;
}

.team-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.team-modal[hidden] {
  display: none !important;
}

.team-modal__backdrop {
  background: rgba(2, 46, 51, 0.7);
  border: none;
  bottom: 0;
  cursor: pointer;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.team-modal__panel {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 1.5rem 3rem rgba(2, 46, 51, 0.18);
  max-height: min(90vh, 45rem);
  max-width: 63.125rem;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(0.5rem);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  width: 100%;
  z-index: 1;
}

.team-modal.is-open .team-modal__panel {
  opacity: 1;
  transform: translateY(0);
}

.team-modal__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #156c82;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  transition: opacity 0.2s ease;
  width: 2.75rem;
  z-index: 2;
}

.team-modal__close:hover {
  opacity: 0.7;
}

.team-modal__close-line {
  background: #fff;
  height: 0.1875rem;
  left: 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 1.5rem;
}

.team-modal__close-line--a {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-modal__close-line--b {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.inner.team-modal__inner {
  max-height: min(90vh, 45rem);
  overflow-y: auto;
  padding: 2.5rem;
}

.team-modal__row {
  align-items: flex-start;
  display: flex;
  gap: 1.875rem;
}

.team-modal__visual {
  max-width: 27.8125rem;
  width: 100%;
}

.team-modal__photo {
  -o-object-fit: cover;
  aspect-ratio: 275/378;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.team-modal__body {
  flex: 1;
  min-width: 0;
}

.team-modal__role {
  color: #a9a9a9;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding-right: 1.875rem;
}

.team-modal__role.is-empty {
  display: none;
}

.team-modal__name {
  color: #022e33;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 1.25rem;
}

.team-modal__role.is-empty + .team-modal__name {
  margin-top: 0;
}

.team-modal__detail {
  word-wrap: break-word;
  color: #022e33;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.85;
  margin-top: 2.5rem;
  white-space: pre-wrap;
}

.team-modal__detail.is-empty {
  display: none;
}

.works-archive__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.works-archive__filter {
  width: 100%;
}

.works-archive-filter__form {
  width: 100%;
}

.works-archive-filter__box {
  background-color: #edf5ed;
  border-radius: 1.25rem;
  box-sizing: border-box;
  padding: 2.5rem 3.75rem;
}

.works-archive-filter__field + .works-archive-filter__field {
  margin-top: 3.75rem;
}

.works-archive-filter__label {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}

.works-archive-filter__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.works-archive-filter__choice {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 0.875rem;
}

.works-archive-filter__input {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 0.0625rem;
  margin: -0.0625rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.0625rem;
}

.works-archive-filter__box-ui {
  background-color: #ffffff;
  border: 0.125rem solid #cccccc;
  box-sizing: border-box;
  display: block;
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
}

.works-archive-filter__box-ui--square {
  border-radius: 0.1875rem;
  position: relative;
}

.works-archive-filter__box-ui--round {
  border-radius: 50%;
  position: relative;
}

.works-archive-filter__input:focus-visible + .works-archive-filter__box-ui {
  outline: 0.125rem solid #156c82;
  outline-offset: 0.125rem;
}

.works-archive-filter__input:checked + .works-archive-filter__box-ui--square {
  background-color: #156c82;
  border-color: #156c82;
}

.works-archive-filter__input:checked + .works-archive-filter__box-ui--square::after {
  border-bottom: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  box-sizing: border-box;
  content: "";
  height: 0.625rem;
  left: 0.3125rem;
  position: absolute;
  top: 0.125rem;
  transform: rotate(45deg);
  width: 0.3125rem;
}

.works-archive-filter__input:checked + .works-archive-filter__box-ui--round {
  background-color: #156c82;
  border-color: #156c82;
}

.works-archive-filter__input:checked + .works-archive-filter__box-ui--round::after {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  height: 0.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}

.works-archive-filter__text {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
}

.works-archive-filter__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3.75rem;
}

.works-archive-filter__submit {
  align-items: center;
  background-color: #156c82;
  border: none;
  border-radius: 36.09375rem;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  max-width: 100%;
  min-height: 4.0625rem;
  padding: 1.1875rem 0.75rem;
  transition: opacity 0.2s ease;
  width: 19.25rem;
}

.works-archive-filter__submit:hover {
  opacity: 0.92;
}

.works-archive-filter__reset {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #ffffff;
  border: 0.0625rem solid #156c82;
  border-radius: 36.09375rem;
  color: #156c82;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  max-width: 100%;
  min-height: 4.0625rem;
  padding: 1.1875rem 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: 19.25rem;
}

.works-archive-filter__reset:hover {
  opacity: 0.92;
}

.works-archive__list {
  margin: 7.5rem auto 0;
  max-width: 66.625rem;
  padding: 0 1.25rem;
  width: 100%;
}

.works-archive__list .top-works__item {
  background-color: #fff;
  border: 0.0625rem solid #ccddcd;
}

.works-archive__list .top-works__item-link {
  transition: background-color 0.4s ease;
}

.works-archive__list .top-works__item-link:hover {
  background-color: #ccddcd;
}

.works-related__list.works-archive__list {
  margin-top: 3.75rem;
}

.works-archive__empty {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 5rem 0 0;
  text-align: center;
}

.works-archive__pager {
  margin-top: 5rem;
  width: 100%;
}

.works-archive__pager-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.works-archive__pager-inner .page-numbers {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #ffffff;
  border: 0.0625rem solid #156c82;
  box-sizing: border-box;
  color: #156c82;
  display: inline-flex;
  font-family: "Josefin Sans", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.5rem;
  text-decoration: none;
}

.works-archive__pager-inner .page-numbers.current {
  background-color: #156c82;
  border-color: #156c82;
  color: #ffffff;
  font-weight: 700;
}

.works-archive__pager-inner .page-numbers.dots {
  background: transparent;
  border: none;
  color: #022e33;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.75rem;
  min-width: auto;
  padding: 0 0.25rem;
}

.works-archive__pager-inner .page-numbers.prev,
.works-archive__pager-inner .page-numbers.next {
  background-color: #ffffff;
  border-color: #156c82;
  color: #156c82;
  height: 2.75rem;
  padding: 0;
  width: 2.75rem;
}

.works-archive__pager-icon {
  display: block;
  height: 0.75rem;
  width: 0.4375rem;
}

.works-single__article {
  padding: 3.125rem 0 6.25rem;
}

.works-single__title {
  color: #022e33;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}

.works-single__hero {
  align-items: flex-start;
  border-bottom: 0.0625rem solid #cccccc;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 3.375rem;
  margin-top: 3.125rem;
  padding-bottom: 1.875rem;
  width: 100%;
}

.works-single__hero-thumb {
  flex: 0 0 29.375rem;
  max-width: 100%;
  overflow: hidden;
}

.works-single__hero-thumb--placeholder {
  aspect-ratio: 470/300;
  min-height: 12.5rem;
}

.works-single__hero-img {
  -o-object-fit: cover;
  aspect-ratio: 470/300;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.works-single__hero-aside {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.works-single__client {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}

.works-single__meta {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}

.works-single__meta-row {
  align-items: center;
  border-bottom: 0.0625rem solid #cccccc;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
  padding: 0 1.25rem 0.9375rem;
}

.works-single__meta-row + .works-single__meta-row {
  margin-top: 0.9375rem;
}

.works-single__meta-label {
  color: #022e33;
  flex: 0 0 5.25rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.works-single__meta-value {
  align-items: center;
  display: flex;
  justify-content: center;
}

.works-single__meta-value--plain {
  color: #022e33;
  font-size: 1rem;
  font-weight: 500;
  justify-content: flex-start;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.works-single__pill {
  align-items: center;
  box-sizing: border-box;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  min-width: 6.875rem;
  padding: 0.5rem 1.25rem;
}

.works-single__pill--industry {
  background-color: #d3a333;
  background-color: var(--works-pill-bg, #d3a333);
}

.works-single__pill--support {
  background-color: #156c82;
}

.works-single__lead {
  margin-top: 1.875rem;
}

.works-single__lead p {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.works-single__wide {
  width: 100%;
}

.works-single__wide-img {
  -o-object-fit: cover;
  aspect-ratio: 1200/280;
  background-color: #cccccc;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.works-single__toc {
  background-color: #f8f8f8;
  border-radius: 1.25rem;
  box-sizing: border-box;
  margin-top: 3.75rem;
  padding: 2rem;
  width: 100%;
}

.works-single__toc-title {
  color: #022e33;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5rem;
  margin: 0;
}

.works-single__toc-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.works-single__toc-item {
  margin: 0;
  padding: 0;
}

.works-single__toc-item + .works-single__toc-item {
  margin-top: 0.5rem;
}

.works-single__toc-link {
  -webkit-text-decoration: none;
  color: #156c82;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5rem;
  text-decoration: none;
}

.works-single__toc-link:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.works-single__body {
  margin-top: 3.75rem;
}

.works-single__body h2 {
  background-color: #ebf6f6;
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  margin: 1.25rem 0 1rem;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.works-single__body h2::after {
  background-color: #156c82;
  bottom: 0;
  content: "";
  height: 0.25rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.works-single__body p {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding-bottom: 1.25rem;
}

.works-single__body ul,
.works-single__body ol {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 1rem 0 0;
  padding-left: 1.5rem;
}

.works-single__body a {
  -webkit-text-decoration: underline;
  color: #156c82;
  text-decoration: underline;
}

.works-single__body img {
  height: auto;
  max-width: 100%;
}

.works-related {
  background-color: #edf5ed;
}

.works-related__head {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
}

.works-related__line {
  background-color: #329eac;
  display: block;
  flex-shrink: 0;
  margin-top: 0.25rem;
  min-height: 2.125rem;
  width: 0.1875rem;
}

.works-related__title {
  color: #022e33;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.works-related__grid {
  grid-gap: 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.works-related__badge-wrap {
  align-items: center;
  display: flex;
  left: -0.0625rem;
  position: absolute;
  top: -0.5rem;
  z-index: 1;
}

.works-related__badge {
  align-items: center;
  background-color: #156c82;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
}

.works-related__badge-deco {
  display: block;
  margin-left: -0.25rem;
  margin-top: -1.375rem;
  transform: rotate(-141deg);
}

.works-related__btn {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
}

.top-mv {
  background: linear-gradient(130deg, rgba(2, 45, 50, 0.08), rgba(5, 135, 152, 0.2));
  height: 100dvh;
  min-height: 46.5625rem;
  position: relative;
}

.top-mv::before {
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.top-mv__inner {
  left: 50%;
  max-width: 75rem;
  padding: 0 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.top-mv__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-mv__bg-video {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-mv__lead {
  color: #022e33;
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.top-mv__lead--free {
  align-items: center;
  display: flex;
}

.top-mv__lead--free span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

.top-mv__lead--free img {
  align-items: center;
  display: inline-block;
  display: flex;
  margin-left: -1.375rem;
  width: 26.75rem;
}

.top-mv__lead-image {
  display: inline-block;
  margin-right: 1rem;
  max-width: 17.625rem;
  width: 100%;
}

.top-mv__lead + .top-mv__lead {
  margin-top: -1.125rem;
}

.top-mv__description {
  color: #242b36;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2.5rem;
}

.top-message {
  background: linear-gradient(180deg, #022d32 0%, #058798 100%);
  padding: 7.5rem 0;
}

.top-message__inner {
  margin: 0 auto;
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
}

.top-message__heading {
  align-items: center;
  display: flex;
}

.top-message__heading-main {
  color: #ffffff;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.15625rem;
  line-height: 1.2;
}

.top-message__heading-accent {
  -webkit-background-clip: text;
  background: linear-gradient(96deg, #329eac 0%, #86ab7f 100%);
  background-clip: text;
  color: transparent;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.15625rem;
  line-height: 1.2;
}

.top-message__heading-accent.js-text--split {
  -webkit-background-clip: unset;
  background: none;
  background-clip: border-box;
  background-clip: initial;
}

.top-message__heading-accent .js-text__char-inner {
  -webkit-background-clip: text;
  background: linear-gradient(96deg, #329eac 0%, #86ab7f 100%);
  background-clip: text;
  color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.top-message__text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 2.5rem;
}

.top-message__title {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Josefin Sans", sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 8.125rem;
  text-align: right;
}

.top-message__btn {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-top: 11.25rem;
}

.top-message__value-wrap {
  margin-top: -15.3125rem;
  max-width: 57.1875rem;
  min-height: 52rem;
  position: relative;
}

.top-message__value-canvas {
  margin-left: auto;
  margin-right: auto;
  max-width: 57.1875rem;
  min-height: 52rem;
  position: relative;
  width: 100%;
}

.top-message__value-bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-message__value-hex {
  height: 20rem;
  position: absolute;
  width: 17.3125rem;
}

.top-message__value-hex--top-right {
  left: 29.125rem;
  top: 0;
}

.top-message__value-hex--top-left {
  left: 10.625rem;
  top: 0;
}

.top-message__value-hex--middle-left {
  left: 1.375rem;
  top: 16rem;
}

.top-message__value-hex--middle-right {
  left: 38.5rem;
  top: 15.9375rem;
}

.top-message__value-hex--bottom-left {
  left: 10.5625rem;
  top: 32rem;
}

.top-message__value-hex--bottom-right {
  left: 29.0625rem;
  top: 32rem;
}

.top-message__value-center {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 6.90625rem;
  font-weight: 700;
  left: 15.8125rem;
  letter-spacing: 0.05em;
  line-height: 2;
  position: absolute;
  text-align: center;
  top: 4.4375rem;
  width: 7.125rem;
}

.top-message__value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.top-message__value-item {
  position: absolute;
  text-align: center;
}

.top-message__value-item--challenge {
  left: 32.5rem;
  top: 4.4375rem;
  width: 10.3125rem;
}

.top-message__value-item--law {
  left: 42.125rem;
  top: 20.375rem;
  width: 10.1875rem;
}

.top-message__value-item--strategy {
  left: 32.5625rem;
  top: 37.3125rem;
  width: 10.1875rem;
}

.top-message__value-item--longterm {
  left: 11.5625rem;
  top: 37.3125rem;
  width: 15.3125rem;
}

.top-message__value-item--oneteam {
  left: 3.25rem;
  top: 20.5rem;
  width: 13.5625rem;
}

.top-message__value-en {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.top-message__value-en--law {
  line-height: 1;
}

.top-message__value-ja {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.875rem;
  text-align: center;
}

.top-service__copy {
  color: #022e33;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 3.125rem;
  text-align: center;
}

.top-service__lead {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 2rem;
  text-align: center;
}

.top-service__list {
  display: flex;
  gap: 5.25rem;
  margin-top: 3.75rem;
}

.top-service__item-image {
  max-width: 21.5rem;
}

.top-service__item-image img {
  -o-object-fit: cover;
  aspect-ratio: 344/221;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-service__item-title {
  color: #022e33;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.625rem;
}

.top-service__item-point-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.top-service__item-point {
  -webkit-text-decoration: underline;
  color: #022e33;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
  text-decoration: underline;
}

.top-service__item-point::before {
  background-color: #d3a333;
  border-radius: 50%;
  content: "";
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: 0.5625rem;
  width: 0.625rem;
}

.top-fund {
  position: relative;
}

.top-fund::before {
  aspect-ratio: 1200/690;
  background: url(../images/top/fund-bg.webp) no-repeat center center/cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 83.3333%;
}

.top-fund::after {
  background: linear-gradient(90deg, rgba(2, 46, 51, 0.82), rgba(2, 46, 51, 0.82));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 83.3333%;
}

.top-fund__inner {
  position: relative;
  z-index: 1;
}

.top-fund__copy {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 3.125rem;
}

.top-fund__lead {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.375rem;
}

.top-fund__btn {
  margin-top: 4.375rem;
}

.top-works {
  overflow-x: hidden;
  position: relative;
}

.top-works::before {
  background-color: #ccddcd;
  border-radius: 2.5rem 0 0 2.5rem;
  content: "";
  height: 73%;
  position: absolute;
  right: 0;
  top: 9.5rem;
  width: 91.6667%;
  z-index: -1;
}

.top-works__inner {
  margin: 0 auto;
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
}

.top-works__head {
  margin: 0 auto;
  max-width: 65rem;
}

.top-works__lead {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.375rem;
}

.top-works__item {
  background-color: #e6efe6;
  border: 0.0625rem solid #ffffff;
}

.top-works__item-link {
  display: block;
  height: 100%;
  padding: 1.25rem;
}

.top-works__item-link:hover {
  opacity: 1;
}

.top-works__item-link:hover .top-works__item-image img {
  transform: scale(1.1);
}

.top-works__item-image {
  max-width: 15.625rem;
  overflow: hidden;
}

.top-works__item-image img {
  -o-object-fit: cover;
  aspect-ratio: 250/170;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.top-works__item-inner {
  display: flex;
  gap: 1.75rem;
  justify-content: space-between;
}

.top-works__item-head {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 100%;
}

.top-works__item-title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #022e33;
  display: -webkit-box;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-works__item-client {
  color: #156c82;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.top-works__item-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #022e33;
  display: -webkit-box;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-works__slider-wrap {
  margin-top: 3.75rem;
  position: relative;
}

.top-works__swiper {
  margin-left: 6.875rem !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: visible !important;
}

.top-works__swiper {
  width: 100vw;
}

.top-works__nav-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
}

.top-works__nav {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  height: 3.75rem;
  padding: 0;
  position: absolute;
  top: 5.5625rem;
  width: 3.75rem;
  z-index: 2;
}

.top-works__nav--prev {
  left: 0;
}

.top-works__nav--next {
  right: 0;
}

.top-works__nav img {
  height: 100%;
  width: 100%;
}

.top-works__dots {
  bottom: 0 !important;
}

.top-works__dots {
  text-align: center;
}

.top-works__dots .swiper-pagination-bullet {
  margin: 0 0.375rem !important;
}

.top-works__dots .swiper-pagination-bullet {
  background-color: #cacaca;
  height: 0.9375rem;
  opacity: 1;
  width: 0.9375rem;
}

.top-works__dots .swiper-pagination-bullet-active {
  background-color: #022e33;
}

.top-works__btn {
  display: flex;
  justify-content: center;
  padding: 3.75rem 0 6.25rem;
}

.top-about {
  background-color: #f0f0f0;
}

.top-about__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.75rem;
}

.top-about__item {
  overflow: hidden;
}

.top-about__item a {
  display: block;
  position: relative;
}

.top-about__item a:hover {
  opacity: 1;
}

.top-about__item a:hover::before {
  opacity: 0;
}

.top-about__item a:hover::after {
  opacity: 1;
}

.top-about__item a:hover .top-about__item-link::before {
  transform: translateY(-50%) scale(1.08);
}

.top-about__item a:hover .top-about__item-link::after {
  transform: translateY(-50%) scale(1.08);
}

.top-about__item a::before {
  background: linear-gradient(0deg, #022e33 0%, rgba(2, 46, 51, 0) 100%);
  bottom: 0;
  content: "";
  height: 8.125rem;
  left: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.top-about__item a::after {
  background: rgba(2, 46, 51, 0.5);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.top-about__item--large {
  width: 100%;
}

.top-about__item--large + .top-about__item--large {
  margin-top: 0.625rem;
}

.top-about__item--small {
  margin-top: 0.625rem;
  width: calc((100% - 0.625rem) / 2);
}

.top-about__item--small + .top-about__item--small {
  margin-left: 0.625rem;
}

.top-about__item--large .top-about__item-image img {
  -o-object-fit: cover;
  aspect-ratio: 1200/301;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-about__item--small .top-about__item-image img {
  -o-object-fit: cover;
  aspect-ratio: 595/301;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-about__item-link {
  bottom: 3.8125rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  left: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: absolute;
  z-index: 2;
}

.top-about__item-link::before {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0.0625rem solid #ffffff;
  border-radius: 50%;
  content: "";
  height: 6.25rem;
  position: absolute;
  right: -7.5rem;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
  width: 6.25rem;
}

.top-about__item-link::after {
  background: url(../images/common/arrow-white.svg) no-repeat center center/cover;
  content: "";
  height: 2.625rem;
  position: absolute;
  right: -5.6875rem;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
  width: 2.625rem;
}

.top-blog__lead {
  color: #022e33;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.375rem;
}

.top-blog__list {
  grid-gap: 3.4375rem 1.5rem;
  display: grid;
  gap: 3.4375rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.75rem;
}

.top-blog__card {
  display: block;
}

.top-blog__card:hover {
  opacity: 1;
}

.top-blog__card-thumb {
  overflow: hidden;
  width: 100%;
}

.top-blog__card-image {
  -o-object-fit: cover;
  aspect-ratio: 384/230;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.top-blog__card:hover .top-blog__card-image {
  transform: scale(1.1);
}

.top-blog__card-body {
  margin-top: 1.125rem;
  padding: 0 1.25rem;
}

.top-blog__card-text {
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  color: #022e33;
  display: -webkit-box;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 1rem;
  overflow: hidden;
}

.top-blog__meta {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.top-blog__category {
  background-color: #d3a333;
  border-radius: 62.4375rem;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.3125rem 0.9375rem;
}

.top-blog__date {
  border-left: 0.0625rem solid #cacaca;
  color: #cacaca;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-left: 0.75rem;
}

.top-blog__btn {
  display: flex;
  justify-content: center;
  margin: 4.375rem auto 0;
}

.top-contact {
  position: relative;
}

.top-contact::before {
  background: linear-gradient(90deg, rgba(2, 46, 51, 0.82), rgba(2, 46, 51, 0.82));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.top-contact::after {
  background: url(../images/common/contact-bg.webp) no-repeat center center/cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-contact__inner {
  position: relative;
  z-index: 1;
}

.top-contact__lead {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.375rem;
  text-align: center;
}

.top-contact__btn {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

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

@media (prefers-reduced-motion: no-preference) {
  html.js-scroll-anim .js-text.js-text--split .js-text__char-inner {
    transform: translateY(110%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0 * 0.045s);
    transition-delay: calc(var(--char-index, 0) * 0.045s);
  }

  html.js-scroll-anim .js-text.js-text--split.is-inview .js-text__char-inner {
    transform: translateY(0);
  }

  html.js-scroll-anim .section-sub-title:not(.is-inview) {
    opacity: 0;
    transform: translateY(0.75rem);
    transition:
      opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js-scroll-anim .section-sub-title.is-inview {
    opacity: 1;
    transform: translateY(0);
  }

  html.js-scroll-anim .top-message:not(.is-inview) .top-message__reveal {
    opacity: 0;
    transform: translateY(0.875rem);
  }

  html.js-scroll-anim .top-message.is-inview .top-message__reveal {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0 * 0.09s);
    transition-delay: calc(var(--reveal-order, 0) * 0.09s);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__drawer,
  .site-header__drawer-overlay,
  .site-header__drawer-panel,
  .site-header__hamburger-line,
  .site-header__mega,
  .site-header__mega-caret {
    transition-duration: 0.01ms;
  }

  .team-modal,
  .team-modal__panel {
    transition: none;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}

@media (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }

  .u-mobile {
    display: block;
  }

  html {
    font-size: 16px;
  }

  html {
    scroll-padding-top: 3.125rem;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .section {
    padding: 3.75rem 0;
  }

  .inner {
    max-width: 37.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-sub-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 0;
  }

  .section-btn__link {
    min-height: 3rem;
    padding: 1.5rem 5.25rem 1.5rem 0;
  }

  .section-btn__link::before {
    height: 4.5rem;
    width: 4.5rem;
  }

  .section-btn__link::after {
    height: 1.875rem;
    right: 1.3125rem;
    width: 1.875rem;
  }

  .section-btn__text {
    font-size: 1rem;
  }

  .lower-section-head__title {
    font-size: 1.5rem;
  }

  .site-footer {
    padding-top: 3.75rem;
  }

  .site-footer__head {
    display: block;
  }

  .site-footer__logo img {
    height: 6.875rem;
    width: 8.625rem;
  }

  .site-footer__to-top {
    margin-top: -4.375rem;
  }

  .site-footer__to-top::before {
    height: 4.5rem;
    width: 4.5rem;
  }

  .site-footer__to-top::after {
    height: 1.875rem;
    right: 1.3125rem;
    top: 2.25rem;
    width: 1.875rem;
  }

  .site-footer__nav-wrap {
    display: block;
    margin-top: 6.25rem;
  }

  .site-footer__group {
    gap: 0.9375rem;
  }

  .site-footer__group-wrap {
    flex-direction: column;
    gap: 1.25rem;
  }

  .site-footer__group-title {
    border-bottom: 0.0625rem solid #ffffff;
    font-size: 1.125rem;
    padding-bottom: 1.25rem;
  }

  .site-footer__group-list {
    padding-left: 0;
  }

  .site-footer__group-list li + li {
    margin-top: 1.25rem;
  }

  .site-footer__simple-list {
    margin-left: 0;
    margin-top: 1.75rem;
  }

  .site-footer__simple-list a {
    font-size: 1.25rem;
  }

  .site-footer__policy {
    margin-left: 0;
    margin-top: 1.75rem;
  }

  .site-footer__bottom {
    margin-top: 3.75rem;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
  }

  .site-footer__bottom p {
    font-size: 0.75rem;
  }

  .site-header {
    height: 3.125rem;
  }

  .site-header__inner {
    padding: 0 0.9375rem;
  }

  .site-header__logo img {
    height: 2.625rem;
    margin-top: 0;
    width: 9.375rem;
  }

  .site-header__hamburger {
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 2.75rem;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    width: 2.75rem;
    z-index: 160;
  }

  .site-header__right {
    display: none;
  }

  .site-header__mega-caret {
    display: none !important;
  }

  .site-header__mega {
    display: none;
  }

  .not-found__display {
    font-size: 3.5rem;
  }

  .not-found__note {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }

  .not-found__btn {
    margin-top: 2rem;
  }

  .advisory-section-title {
    font-size: 1.375rem;
  }

  .advisory-hero {
    padding: 3rem 0 3.5rem;
  }

  .advisory-hero::before {
    height: 15.125rem;
    left: auto;
    opacity: 0.55;
    right: 0;
    width: 17.5rem;
  }

  .advisory-hero__title {
    font-size: 1.75rem;
  }

  .advisory-hero__lead-block {
    margin-top: 2rem;
  }

  .advisory-hero__catch {
    font-size: 1.375rem;
  }

  .advisory-hero__text {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .advisory-hero__btn + .advisory-hero__btn {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .advisory-hero__btn-label {
    font-size: 1.25rem;
  }

  .advisory-worries__grid {
    gap: 1rem;
    grid-template-columns: 1fr;
    margin: 2rem 0 0;
  }

  .advisory-worry-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .advisory-worry-card__text {
    font-size: 1rem;
  }

  .advisory-cta-band-wrapper {
    margin: 3.75rem 0;
  }

  .advisory-cta-band::before {
    display: none;
  }

  .advisory-cta-band__tagline {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .advisory-cta-band__body {
    font-size: 1rem;
  }

  .advisory-cta-band__media {
    max-width: 12.5rem;
    width: 100%;
  }

  .advisory-compare__th--weature {
    width: auto;
  }

  .advisory-flow__steps {
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
  }

  .advisory-flow-step {
    flex: none;
    max-width: 17.5rem;
  }

  .advisory-flow-step + .advisory-flow-step {
    margin-top: 1.75rem;
  }

  .advisory-flow__steps::before {
    display: none;
  }

  .advisory-results .common-consulting__cases {
    margin-right: 0 !important;
  }

  .advisory-results .common-consulting__cases {
    width: 100%;
  }

  .advisory-results__list {
    flex-direction: column;
    margin-top: 2rem;
  }

  .advisory-result-card {
    width: 100%;
  }

  .advisory-guide__band {
    padding: 3.5rem 0 4.5rem;
  }

  .advisory-guide__heading {
    font-size: 1.375rem;
  }

  .advisory-guide__card {
    padding: 2rem 1.5rem;
  }

  .advisory-guide__card-visual {
    width: 100%;
  }

  .common-consulting__aside {
    display: none;
  }

  .common-consulting__sections > * + * {
    margin-top: 5rem;
  }

  .common-consulting__heading {
    font-size: 1.5rem;
  }

  .common-consulting__service + .common-consulting__service {
    margin-top: 3.75rem;
  }

  .common-consulting__flow-list {
    margin-top: 1.875rem;
  }

  .common-consulting__flow-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .common-consulting__flow-row + .common-consulting__flow-row {
    margin-top: 2.5rem;
  }

  .common-consulting__flow-badge {
    margin: 0 auto;
    min-height: auto;
    padding: 1.875rem;
    width: 10rem;
  }

  .common-consulting__flow-en {
    font-size: 1rem;
  }

  .common-consulting__flow-no {
    font-size: 2.5rem;
  }

  .common-consulting__flow-title {
    font-size: 1.25rem;
  }

  .common-consulting__flow-text {
    margin-top: 1.25rem;
  }

  .common-consulting__cases {
    width: 100%;
  }

  .common-consulting__cases-foot {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .common-consulting__mid-cta-inner {
    align-items: center;
    flex-direction: column;
  }

  .common-consulting__mid-cta-photo {
    margin-top: 1.5rem;
    max-width: 12.5rem;
    position: static;
  }

  .common-consulting__faq-q {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .common-consulting__faq-a {
    gap: 0.75rem;
    padding: 1.25rem 1rem 0;
  }

  .common-consulting__consider-lead {
    font-size: 1.25rem;
  }

  .common-consulting__consider-body {
    margin-top: 1.25rem;
  }

  .common-consulting__profile {
    padding: 1.875rem 1.25rem;
  }

  .common-consulting__profile-heading {
    font-size: 1.25rem;
  }

  .common-consulting__profile-layout {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .common-consulting__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .blog-archive-categories__link {
    padding: 0.875rem 1.875rem;
  }

  .blog-archive__pager {
    margin-top: 3.75rem;
  }

  .blog-single__title {
    font-size: 1.625rem;
  }

  .blog-single__thumb {
    margin-top: 1.75rem;
  }

  .blog-single__content {
    margin-top: 2.5rem;
  }

  .blog-single__content p {
    line-height: 1.6;
  }

  div#toc_container {
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    width: 100%;
  }

  div#toc_container p.toc_title + ul.toc_list li {
    line-height: 1.6;
  }

  .page-breadcrumb {
    margin-top: 3.125rem;
  }

  .company-body__inner {
    gap: 3.75rem;
  }

  .company-message__layout {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 2rem;
  }

  .company-message__photo {
    margin: 0 auto;
    width: 80%;
  }

  .company-message__photo-placeholder {
    -o-object-fit: cover;
    aspect-ratio: 500/340;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .company-message__content {
    margin-top: 0;
  }

  .company-message__lead {
    font-size: 1.125rem;
  }

  .company-message__body {
    margin-top: 1.25rem;
  }

  .company-mvv__blocks {
    margin-top: 2rem;
  }

  .company-mvv__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem;
  }

  .company-mvv__label {
    flex: 0 0 auto;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }

  .company-value__en {
    height: 100%;
    min-height: 3.25rem;
  }

  .company-outline {
    margin-top: 2rem;
  }

  .company-outline__block {
    border-bottom: 0.125rem solid #cccccc;
  }

  .company-outline__block:not(:first-child) {
    margin-top: 1.25rem;
  }

  .company-outline__row {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 1.25rem;
  }

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

  .company-outline__dt {
    flex: 0 0 auto;
  }

  .company-outline__dd {
    flex: 1 1 auto;
  }

  .company-map {
    margin-top: 3.75rem;
  }

  .company-map__frame {
    margin-top: 2rem;
  }

  .company-map__frame iframe {
    aspect-ratio: 375/240;
  }

  .consulting-areas {
    min-height: 60.625rem;
  }

  .consulting-areas__title {
    font-size: 1.25rem;
  }

  .consulting-areas__title::before {
    left: -0.75rem;
  }

  .consulting-areas__title::after {
    right: -0.75rem;
  }

  .consulting-areas__stage {
    margin-top: 2.5rem;
  }

  .consulting-areas__diagram {
    left: 32%;
    top: 1.25rem;
    width: 68%;
  }

  .consulting-areas__photo--leader {
    max-width: 20.0625rem;
    top: 20.75rem;
  }

  .consulting-areas__photo--sky {
    max-width: 13.0625rem;
    top: 0rem;
  }

  .consulting-areas__photo--hand {
    max-width: 21.1875rem;
    right: 0;
    top: 36rem;
  }

  .consulting-detail__inner {
    gap: 2.5rem;
  }

  .consulting-detail__cards {
    gap: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .consulting-card__label {
    font-size: 1.125rem;
  }

  .consulting-card__caption {
    margin-top: 1.25rem;
  }

  .contact-form-section__lead {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .contact-form__label-wrap {
    flex: 1 1 auto;
  }

  .contact-form__label {
    font-size: 0.9375rem;
  }

  .contact-form__field {
    min-width: 0;
    width: 100%;
  }

  .contact-form__control {
    font-size: 0.9375rem;
    padding: 0.75rem 0.875rem;
  }

  .contact-form__control::-moz-placeholder {
    font-size: 0.9375rem;
  }

  .contact-form__control::placeholder {
    font-size: 0.9375rem;
  }

  .contact-form__foot {
    margin-top: 2rem;
    padding: 1.75rem 1.25rem 0;
  }

  .contact-form__foot-lead {
    font-size: 0.875rem;
  }

  .contact-form__accept-wrap {
    margin-top: 1.25rem;
  }

  .contact-form__accept-wrap label {
    font-size: 0.875rem;
  }

  .contact-form__submit.wpcf7-submit {
    font-size: 1rem;
    margin-top: 1.75rem;
    max-width: none;
    padding: 1.125rem 1.5rem 1.125rem 1.5rem;
  }

  .fund-business {
    padding-top: 3.75rem;
  }

  .fund-business__blocks {
    gap: 2.5rem;
  }

  .fund-business__media img {
    aspect-ratio: 1200/700;
  }

  .fund-portfolio {
    margin-top: 0;
  }

  .fund-portfolio__intro {
    margin-top: 1.875rem;
  }

  .fund-portfolio__grid {
    gap: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 2.5rem 0 0;
  }

  .fund-card__body {
    padding: 0;
  }

  .page-fv::before {
    left: auto;
    opacity: 0.6;
    right: 0;
  }

  .page-fv__inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .page-fv__title {
    font-size: 1.75rem;
  }

  .page-fv__copy {
    margin-top: 2rem;
  }

  .page-fv__catch {
    font-size: 1.375rem;
  }

  .page-fv__lead {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .page-fv__text {
    font-size: 1rem;
  }

  .page-fv__copy--stack-md .page-fv__text + .page-fv__text {
    margin-top: 0.75rem;
  }

  .page-fv__copy--stack-lg .page-fv__text + .page-fv__text {
    margin-top: 1rem;
  }

  .privacy-body__title {
    font-size: 1.875rem;
  }

  .privacy-block__text,
  .privacy-block__texts {
    margin-top: 1.25rem;
  }

  .privacy-block__texts {
    margin-bottom: 2.5rem;
  }

  .privacy-block + .privacy-block {
    margin-top: 1.875rem;
  }

  .strengths-page__message {
    padding: 5rem 0;
  }

  .strengths-page__message::before {
    width: 21.875rem;
  }

  .strengths-page__message-title {
    font-size: 2.125rem;
  }

  .strengths-page__why-text {
    margin-top: 1.875rem;
  }

  .strengths-page__issue-list {
    margin-top: 1.875rem;
  }

  .strengths-page__issue-item {
    padding: 0.625rem 0.9375rem;
  }

  .strengths-page__issue-label {
    font-size: 0.875rem;
    min-width: 6.875rem;
  }

  .strengths-page__issue-value {
    font-size: 0.875rem;
    margin-left: 0.9375rem;
  }

  .strengths-page__role-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }

  .strengths-page__role-item {
    padding: 1.25rem;
  }

  .strengths-page__role-item:not(:last-child) {
    border-bottom: 0.0625rem solid #156c82;
  }

  .strengths-page__role-item:not(:first-child)::before {
    display: none;
  }

  .strengths-page__role-label {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .strengths-page__role-title {
    font-size: 1.25rem;
  }

  .strengths-page__role-text {
    margin-right: 0;
  }

  .strengths-page__position-inner {
    flex-direction: column;
  }

  .strengths-page__position-img {
    margin-top: 1.25rem;
    max-width: 100%;
  }

  .strengths-page__point-list {
    margin-top: 1.875rem;
  }

  .strengths-page__point-item {
    flex-direction: column;
  }

  .strengths-page__point-label-inner {
    margin-left: 0;
    margin-top: 1.25rem;
  }

  .strengths-page__point-label {
    margin: 0 auto;
    max-width: 80%;
  }

  .strengths-page__point-title {
    font-size: 1.25rem;
  }

  .strengths-page__point-text {
    margin-top: 1.25rem;
  }

  .strengths-page__mission-title {
    font-size: 1.25rem;
  }

  .strengths-page__cta {
    padding: 3.75rem 0;
  }

  .strengths-page__cta-text {
    font-size: 1.125rem;
  }

  .team-members {
    padding: 3.75rem 0;
  }

  .team-members__grid {
    gap: 1.5rem 0.9375rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-members__role {
    font-size: 1rem;
  }

  .team-members__name {
    font-size: 1.25rem;
    padding-top: 0.625rem;
  }

  .team-single__body {
    padding: 0 0 3.75rem;
  }

  .team-modal {
    padding: 1.25rem 0.625rem;
  }

  .team-modal__panel {
    border-radius: 1.25rem;
  }

  .team-modal__close {
    right: 0.625rem;
    top: 0.625rem;
  }

  .inner.team-modal__inner {
    padding: 1.25rem 0.9375rem;
  }

  .team-modal__row {
    flex-direction: column;
    gap: 0.625rem;
  }

  .team-modal__visual {
    max-width: 80%;
  }

  .team-modal__role {
    font-size: 1rem;
    padding-right: 0;
  }

  .team-modal__name {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  .team-modal__detail {
    line-height: 1.6;
    margin-top: 1.25rem;
  }

  .works-archive-filter__box {
    padding: 1.25rem;
  }

  .works-archive-filter__field + .works-archive-filter__field {
    margin-top: 1.875rem;
  }

  .works-archive-filter__list {
    gap: 1rem 1.25rem;
    margin-top: 1rem;
  }

  .works-archive-filter__text {
    font-size: 1rem;
    white-space: normal;
  }

  .works-archive-filter__actions {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }

  .works-archive-filter__submit {
    font-size: 1.125rem;
    min-height: auto;
    padding: 1.25rem 0.75rem;
  }

  .works-archive-filter__reset {
    font-size: 1.125rem;
    min-height: auto;
    padding: 1.25rem 0.75rem;
  }

  .works-archive__list {
    margin-top: 3.75rem;
    padding: 0;
  }

  .works-related__list.works-archive__list {
    margin-top: 1.875rem;
  }

  .works-archive__pager {
    margin-top: 3rem;
  }

  .works-single__article {
    padding: 2.5rem 0 3.75rem;
  }

  .works-single__title {
    font-size: 1.625rem;
  }

  .works-single__hero {
    border-bottom: none;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.875rem;
    padding-bottom: 0;
  }

  .works-single__hero-thumb {
    flex: 1 1 auto;
    width: 100%;
  }

  .works-single__client {
    font-size: 1.375rem;
  }

  .works-single__meta {
    width: 100%;
  }

  .works-single__meta-row {
    padding: 0 0 0.625rem;
  }

  .works-single__toc {
    margin-top: 1.875rem;
  }

  .works-single__body h2 {
    padding: 0.75rem;
  }

  .works-related__title {
    font-size: 1.375rem;
  }

  .works-related__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .top-mv {
    min-height: auto;
    padding-bottom: 4.5rem;
    padding-top: 8.125rem;
  }

  .top-mv__inner {
    padding: 0 0.9375rem;
  }

  .top-mv__lead {
    font-size: 8vw;
  }

  .top-mv__lead--free img {
    margin-left: 0;
    width: 40vw;
  }

  .top-mv__lead-image {
    margin-right: 0.625rem;
    max-width: 33vw;
  }

  .top-mv__lead + .top-mv__lead {
    margin-top: 0;
  }

  .top-mv__description {
    font-size: 4vw;
    margin-top: 2.25rem;
  }

  .top-message {
    padding: 3.75rem 0;
  }

  .top-message__inner {
    padding: 0 0.9375rem;
  }

  .top-message__heading {
    display: block;
  }

  .top-message__heading-main {
    font-size: 2.125rem;
  }

  .top-message__heading-accent {
    font-size: 2.125rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .top-message__text {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
  }

  .top-message__title {
    font-size: 2.5rem;
    margin-top: 4rem;
    text-align: left;
  }

  .top-message__value-wrap-inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .top-message__btn {
    margin-top: 2.5rem;
  }

  .top-message__value-wrap {
    margin-top: 1.5rem;
    min-height: 0;
    overflow-x: hidden;
    width: 100%;
  }

  .top-message__value-canvas {
    height: 52rem;
    left: 50%;
    margin-bottom: calc((min(1, calc((100vw - 30px) / 915px)) - 1) * 832px);
    min-height: 52rem;
    transform: translateX(-50%) scale(min(1, calc((100vw - 30px) / 915px)));
    transform-origin: top center;
    width: 57.1875rem;
  }

  .top-message__value-en {
    font-size: 1.125rem;
  }

  .top-message__value-ja {
    font-size: 1.75rem;
    margin-top: 0.3125rem;
  }

  .top-service__copy {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    text-align: left;
  }

  .top-service__lead {
    margin-top: 0.75rem;
    text-align: left;
  }

  .top-service__list {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 2.5rem;
  }

  .top-service__item-image {
    max-width: 100%;
  }

  .top-service__item-title {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }

  .top-service__item-point-list {
    margin-top: 0.625rem;
  }

  .top-fund::before {
    width: 100%;
  }

  .top-fund::after {
    width: 100%;
  }

  .top-fund__copy {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  .top-fund__lead {
    margin-top: 0.875rem;
  }

  .top-fund__btn {
    margin-top: 2.5rem;
  }

  .top-works {
    background-color: #ccddcd;
    padding: 3.75rem 0;
  }

  .top-works::before {
    display: none;
  }

  .top-works__inner {
    max-width: 37.5rem;
    padding: 0 0.9375rem;
  }

  .top-works__item {
    width: 100%;
  }

  .top-works__item-image {
    max-width: 100%;
  }

  .top-works__item-image img {
    aspect-ratio: 250/150;
  }

  .top-works__item-inner {
    flex-direction: column;
    gap: 0.625rem;
  }

  .top-works__item-head {
    display: block;
    padding: 0 0.625rem;
  }

  .top-works__item-title {
    font-size: 1.125rem;
  }

  .top-works__item-client {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .top-works__item-text {
    margin-top: 0.5rem;
    padding: 0 0.625rem;
  }

  .top-works__slider-wrap {
    margin-top: 1.5rem;
  }

  .top-works__swiper {
    margin-left: 0 !important;
  }

  .top-works__swiper {
    width: 100%;
  }

  .top-works__nav {
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
  }

  .top-works__nav--prev {
    left: -0.9375rem;
  }

  .top-works__nav--next {
    right: -0.9375rem;
  }

  .top-works__dots {
    bottom: 1.125rem !important;
  }

  .top-works__dots .swiper-pagination-bullet {
    height: 0.625rem;
    width: 0.625rem;
  }

  .top-works__btn {
    background-color: #ccddcd;
    padding: 2.5rem 0 3.75rem;
  }

  .top-about__list {
    margin-top: 1.875rem;
  }

  .top-about__item--small {
    width: 100%;
  }

  .top-about__item--small + .top-about__item--small {
    margin-left: 0;
  }

  .top-about__item--large .top-about__item-image img {
    aspect-ratio: 595/301;
  }

  .top-about__item-link {
    bottom: 1.25rem;
    font-size: 1rem;
    left: 1.25rem;
  }

  .top-about__item-link::before {
    height: 3.125rem;
    right: -3.75rem;
    width: 3.125rem;
  }

  .top-about__item-link::after {
    height: 1.25rem;
    right: -2.8125rem;
    width: 1.25rem;
  }

  .top-blog__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .top-blog__card-body {
    margin-top: 0.625rem;
    padding: 0;
  }

  .top-blog__card-text {
    font-size: 1rem;
  }

  .top-contact__btn {
    margin-top: 2.5rem;
  }

  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/*# sourceMappingURL=style.css.map */

.company-map__item {
  margin: 0 0 6.25rem 0;
}

.company-map__item .lower-section-head__title {
  margin: 0 0 3.125rem 0;
}

.company-map__lead {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.site-footer__policy {
  color: #fff;
}

.site-footer__snslink {
  display: flex;
  gap: 10px;
  margin: 10px 0 0 0;
}

.site-footer__sns {
  width: 30px;
}
