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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  overflow: auto;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  height: 100%;
  min-height: 100%;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

ul:not(.wp-block-list) li,
ol:not(.wp-block-list) li {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

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

picture,
img {
  display: block;
}

svg {
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

.l-container {
  margin-right: auto;
  margin-left: auto;
}

img.c-image, .c-image img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}

.c-image {
  display: block;
}
img.c-image {
  display: block;
}

.c-movie video, .c-movie iframe {
  max-width: 100%;
  vertical-align: bottom;
}

.c-icon {
  display: block;
  width: var(--sz, 1.75rem);
  height: var(--sz, 1.75rem);
}
.c-icon svg {
  width: 100%;
  fill: var(--c-fill, currentColor);
  transition: fill 0.3s;
}

.c-heading--ta-c {
  text-align: center;
}
.c-heading__sub {
  color: var(--c-orange-dark);
  font-weight: 700;
  font-size: var(--fz-heading-s);
}
.c-heading__main {
  margin-top: 0.63em;
  color: var(--c-navy);
  font-weight: 700;
  font-size: var(--fz-heading-l);
}
.c-heading--fz-m .c-heading__main {
  font-size: var(--fz-heading-m);
}
.c-text, .p-company__table dl {
  font-size: var(--fz-text-m);
  line-height: 1.8;
  text-align: justify;
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.625rem);
}
.c-list li {
  display: flex;
  gap: 0.63em;
}
.c-list li::before {
  display: block;
  flex-shrink: 0;
  width: var(--sz-icon, 1.25em);
  height: var(--sz-icon, 1.25em);
  content: "";
}
.c-list--check li::before {
  background: url(../image/icon_circle_check.svg) center/contain no-repeat;
}
.c-list--circle li {
  counter-increment: list;
}
.c-list--circle li::before {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  translate: 0 0.25em;
  border-radius: 100%;
  background-color: var(--c-orange-dark);
  content: counter(list);
  color: var(--c-white);
  font-weight: 700;
}
.c-list--number li {
  counter-increment: list;
}
.c-list--number li::before {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  content: counter(list);
  color: var(--c-orange-dark);
  font-weight: 700;
  text-align: center;
}
.c-list--hyphen li::before {
  display: block;
  flex-shrink: 0;
  width: 0.8em;
  height: 2px;
  translate: 0 0.45em;
  background-color: var(--c-orange-dark);
  content: "";
  font-weight: 700;
  text-align: center;
}

.c-label-tag, .c-label-text .label {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  border: solid 1px var(--c-border, var(--c-orange-dark));
  background-color: var(--c-bg);
  color: var(--c-color);
  font-weight: 700;
}

.c-label-text {
  display: flex;
  gap: 0.63em;
  line-height: 1.5em;
}
.c-button {
  margin: 0;
  padding: 0;
  background: none;
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
  display: flex;
          appearance: none;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 2px var(--c-border);
  border-radius: 0.3125rem;
  background-color: var(--c-bg);
  color: var(--c-color);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.c-button__text {
  color: var(--c-color);
  transition: color 0.3s;
}
.c-button--primary {
  --c-color: var(--c-white);
  --c-bg: var(--c-navy);
  --c-border: var(--c-navy);
}
.c-button--secondary {
  --c-color: var(--c-navy);
  --c-bg: var(--c-white);
  --c-border: var(--c-navy);
}

.c-slash-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
.c-slash-text::before {
  display: block;
  content: "＼";
}
.c-slash-text::after {
  display: block;
  content: "／";
}

.c-slash-box {
  position: relative;
  border: 1px solid var(--c-orange-dark);
  background-color: var(--c-white);
  color: var(--c-navy);
  font-weight: 500;
  text-align: center;
}
.c-slash-box__slash {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sz-slash);
  height: var(--sz-slash);
  background-color: var(--c-orange-dark);
  content: "";
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}
.c-table thead {
  background-color: var(--c-orange-middle);
}
.c-table th + th {
  border-left: 2px solid var(--c-white);
}
.c-table th {
  padding: 0.2em;
}
.c-table td {
  padding: 0.2em;
  border: 2px solid var(--c-orange-middle);
}

.p-footer-cta {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1187e8 0%, #022b49 69.71%);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.16, 0.84, 0.2, 0.99);
}
.p-footer-cta::before {
  display: block;
  position: absolute;
  background: url(../image/bg_airplane.png) right/contain no-repeat;
  content: "";
}
.p-footer-cta::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 34.375rem;
  height: 9.375rem;
  background: url(../image/bg_building.png) bottom/contain no-repeat;
  content: "";
}
.p-footer-cta__wrapper {
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.p-footer-cta__title {
  border-bottom: 1px dashed var(--c-white);
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.p-footer-cta__tel {
  filter: grayscale(1) brightness(100);
}
.p-footer-cta__button {
  --c-bg: var(--c-orange-dark);
  --c-color: var(--c-white);
  --c-border: var(--c-orange-dark);
}

.l-footer__foot,
.l-footer__nav,
.l-footer__widgetArea {
  padding: 0;
}

.w-footer.-col1 {
  padding: 0;
}
.w-footer.-col1 .w-footer__box {
  padding: 0;
}

.l-footer__nav {
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.5;
}
.l-footer__nav a {
  padding: 0;
  font-size: 1rem;
  text-decoration: none;
}

.p-footer__logo {
  display: block;
}
.p-footer__address {
  margin-top: 0.75em;
  line-height: 1.8;
}
.p-footer__address address {
  font-style: normal;
}
.p-footer .copyright {
  margin-top: 1em;
}

.p-fix-cta {
  visibility: hidden;
  z-index: 10;
  position: fixed;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.2, 0.99), visibility 0.8s cubic-bezier(0.16, 0.84, 0.2, 0.99);
}
.p-fix-cta__button {
  --c-bg: var(--c-navy);
}
.p-fix-cta a {
  border-radius: 0;
}
.is-scrolled .p-fix-cta {
  visibility: visible;
  opacity: 1;
}
/* ========================================================
  Text
 ======================================================== */
.u-nb {
  display: inline-block;
}

/* ========================================================
  font-weight
======================================================== */
.u-fw--n {
  font-weight: normal;
}
.u-fw--b {
  font-weight: bold;
}
.u-fw--br {
  font-weight: bolder;
}
.u-fw--l {
  font-weight: light;
}
.u-fw--lr {
  font-weight: lighter;
}
.u-fw--100 {
  font-weight: 100;
}
.u-fw--200 {
  font-weight: 200;
}
.u-fw--300 {
  font-weight: 300;
}
.u-fw--400 {
  font-weight: 400;
}
.u-fw--500 {
  font-weight: 500;
}
.u-fw--600 {
  font-weight: 600;
}
.u-fw--700 {
  font-weight: 700;
}
.u-fw--800 {
  font-weight: 800;
}
.u-fw--900 {
  font-weight: 900;
}

/* ========================================================
  text-align
======================================================== */
.u-ta--l {
  text-align: left;
}
.u-ta--r {
  text-align: right;
}
.u-ta--c {
  text-align: center;
}
.u-ta--j {
  text-align: justify;
}

/* ========================================================
  line-height
======================================================== */
.u-lh--1 {
  line-height: 1;
}
.u-lh--11 {
  line-height: 1.1;
}
.u-lh--12 {
  line-height: 1.2;
}
.u-lh--13 {
  line-height: 1.3;
}
.u-lh--14 {
  line-height: 1.4;
}
.u-lh--15 {
  line-height: 1.5;
}
.u-lh--16 {
  line-height: 1.6;
}
.u-lh--17 {
  line-height: 1.7;
}
.u-lh--18 {
  line-height: 1.8;
}
.u-lh--19 {
  line-height: 1.9;
}

/* ========================================================
  text-transform
======================================================== */
.u-tt--c {
  text-transform: capitalize;
}
.u-tt--u {
  text-transform: uppercase;
}
.u-tt--l {
  text-transform: lowercase;
}

/* ========================================================
  text-transform
======================================================== */

.u-c--section {
  color: var(--c-section);
}

.u-hidden {
  width: 0px;
  height: 0px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}

:root {
  --c-white: #fff;
  --c-orange-dark: #e67e22;
  --c-orange-middle: #ffcfa8;
  --c-orange-light: #ffefe2;
  --c-navy: #022b49;
  --c-blue: #1571da;
  --c-graige: #f3eee1;
  --c-gray: #c9c9c9;
  --color_htag: var(--c-orange-dark);
}

.p-header__logo {
  display: block;
}
.p-header__nav ul {
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.5;
}
.p-header__nav a {
  text-decoration: none;
}

.p-fv {
  z-index: 0;
  position: relative;
  overflow: hidden;
  background-color: #fffdf7;
}
.p-fv::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scale: 1.3;
  background: linear-gradient(144.12deg, #b3dcff 28.32%, #c0e2fe 31.39%, #c7e5fd 33.03%, #daedfb 37.15%, #fffdf7 42.66%);
  content: "";
  filter: blur(30px);
}
.p-fv__copy {
  color: var(--c-navy);
}
.p-fv__copy-title {
  font-weight: 700;
  line-height: 1.4;
}
.p-fv__copy-text {
  font-weight: 500;
}
.p-fv__visual {
  position: relative;
}
.p-fv__visual-airplane {
  position: absolute;
  scale: 0.95;
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 0.84, 0.2, 0.99), opacity 1.5s cubic-bezier(0.16, 0.84, 0.2, 0.99);
  transition-delay: 0.5s, 0.5s;
}
.p-fv__visual-airplane img {
  width: 100%;
}
.p-fv__visual-city {
  transition: opacity 0.8s ease-in;
  transition-delay: 1.1s;
}
.p-fv__visual-city-before {
  opacity: 1;
}
.p-fv__visual-city-after {
  opacity: 0;
}
.p-fv__copy-title em {
  color: #888;
  transition: color 1.5s cubic-bezier(0.16, 0.84, 0.2, 0.99);
  transition-delay: 1.1s;
}
.p-fv.is-animated .p-fv__visual-airplane {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.p-fv.is-animated .p-fv__visual-city-before {
  opacity: 0;
}
.p-fv.is-animated .p-fv__visual-city-after {
  opacity: 1;
}
.p-fv.is-animated .p-fv__copy-title em {
  color: var(--c-orange-dark);
}

.p-about__graph {
  margin-right: auto;
  margin-left: auto;
}
.p-about__graph img {
  width: 100%;
}

.c-flow-item {
  display: flex;
  flex-direction: column;
}
.c-flow-item__wrapper {
  flex-grow: 1;
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: var(--c-bg, var(--c-orange-light));
}
.c-flow-item__wrapper > *:first-child {
  margin-top: 0;
}
.c-flow-item__part {
  background-color: var(--c-part-bg, var(--c-white));
}
.c-flow-item__part + .c-flow-item__part {
  position: relative;
  margin-top: 2.75rem;
}
.c-flow-item__part + .c-flow-item__part::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: -0.5rem;
  translate: -50% -100%;
  background: url(../image/icon_double_arrow.svg) center/contain no-repeat;
  content: "";
}
.c-flow-item__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1.25rem;
  background-color: var(--c-title-bg, var(--c-orange-dark));
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.81em;
  text-align: center;
}
.c-flow-item__image {
  margin-right: auto;
  margin-left: auto;
}
.c-flow-item__copy {
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.c-flow-item__label-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9375rem;
  gap: 0.3125rem;
  text-align: center;
}
.c-flow-item__label-text + .c-flow-item__label-text {
  margin-top: 0.625rem;
}
.c-flow-item__label-text .label {
  padding: 0 0.83em;
  border: 1px solid var(--c-orange-dark);
  font-weight: 700;
  line-height: 1.83em;
}
.c-flow-item--em {
  --c-bg: var(--c-orange-middle);
}

.p-value__define {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid var(--c-orange-dark);
  background-color: var(--c-white);
}
.p-value__define-text {
  --c-color: var(--c-white);
  --c-bg: var(--c-orange-dark);
  --c-border: var(--c-bg);
}
.p-value__flow-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-value__flow-connector {
  z-index: 1;
  position: relative;
  text-align: center;
  white-space: nowrap;
  --c-bg: var(--c-orange-dark);
  --c-color: var(--c-white);
}
.p-value__graph {
  margin-right: auto;
  margin-left: auto;
}
.p-value__graph img {
  width: 100%;
}

.p-flow {
  background-color: var(--c-graige);
}
.p-flow__list-01-item {
  --c-bg: var(--c-white);
}
.p-flow__list-01-count {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-flow__list-01-count .number {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--c-orange-dark);
  color: var(--c-white);
  font-weight: 700;
}
.p-flow__list-01-count::before {
  display: block;
  background-color: var(--c-orange-dark);
  content: "";
}
.p-flow__list-01-count::after {
  display: block;
  background-color: var(--c-orange-dark);
  content: "";
}
.p-flow__list-01-item:first-of-type .p-flow__list-01-count::before {
  background-color: transparent;
}
.p-flow__list-01-item:last-of-type .p-flow__list-01-count::after {
  background-color: transparent;
}
.p-flow__button {
  margin-right: auto;
  margin-left: auto;
}

.p-intro {
  position: relative;
}
.p-intro::before {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90vw;
  background-color: var(--c-graige);
  content: "";
}
.p-intro__text-author {
  text-align: right;
}

.p-company__table dl {
  position: relative;
  border-top: 2px solid var(--c-gray);
}
.p-company__table dl::before {
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  background-color: var(--c-orange-dark);
  content: "";
}
.p-company__table dt {
  font-weight: 700;
}
.p-company__graph {
  margin-right: auto;
  margin-left: auto;
}
.p-company__graph img {
  width: 100%;
}

.p-news {
  background-color: var(--c-graige);
}
.p-news__inner {
  background-color: var(--c-white);
}
.p-news__list-item {
  display: flex;
  border-bottom: 2px solid var(--c-gray);
  color: var(--c-navy);
  font-weight: 500;
}
.p-news__list-cover {
  width: 100%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-news__list-category {
  --c-bg: var(--c-orange-dark);
  --c-color: var(--c-white);
  line-height: 1.78em;
}
.p-news__print {
  margin-right: auto;
  margin-left: auto;
}

.c-page-header {
  position: relative;
}
.c-page-header::before {
  display: block;
  position: absolute;
  right: 1.875rem;
  bottom: 0;
  width: 34.375rem;
  height: 9.375rem;
  background: url(../image/bg_building.png) center/contain no-repeat;
  content: "";
}
.c-page-header__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(90deg, #085DA4 0%, #022B49 69.71%);
  color: var(--c-white);
}
.c-page-header__inner {
  width: 100%;
}
.c-page-header__title-main {
  font-weight: 700;
  line-height: 1.2;
}
.c-page-header__title-sub {
  margin-top: 0.89em;
  font-weight: 500;
  line-height: 1.8;
}

.post_content > h2 {
  margin-left: 0;
}

.post_content h2 {
  margin-top: 3em;
  margin-bottom: 1em;
}

.p-consulting-lead__title {
  color: var(--c-navy);
  font-weight: 700;
}

.p-consulting-case {
  background-color: var(--c-graige);
}
.p-consulting-case__inner {
  background-color: var(--c-white);
}

.p-consulting-flow__item + .p-consulting-flow__item {
  position: relative;
}
.p-consulting-flow__item + .p-consulting-flow__item::before {
  display: block;
  z-index: 1;
  position: absolute;
  left: 50%;
  width: 1.75rem;
  height: 1.75rem;
  background: url(../image/icon_double_arrow.svg) center/contain no-repeat;
  content: "";
}
.p-consulting-flow__header {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0.625rem;
  background-color: var(--c-graige);
}
.p-consulting-flow__header-count {
  --c-bg: var(--c-orange-dark);
  position: absolute;
  top: 0;
  translate: 0 -50%;
  --c-color: var(--c-white);
}
.p-consulting-flow__header-title {
  color: var(--c-navy);
  font-weight: 700;
}
.p-consulting-flow__header-text {
  margin-top: 0.56em;
}
.p-consulting-flow__body {
  border: 4px solid var(--c-graige);
}
.p-consulting-flow__body h4 {
  color: var(--c-navy);
  font-weight: 700;
}
.p-consulting-flow__body h4 + * {
  margin-top: 0.8em;
}

.p-consulting-strategy {
  background-color: var(--c-graige);
}
.p-consulting-strategy__list-item {
  --c-bg: var(--c-white);
}
.p-consulting-strategy__list-item .c-label-tag {
  --c-color: var(--c-orange-dark);
  padding: 0 0.25em;
  line-height: 1.2;
}
.p-consulting-strategy__list-item .c-flow-item__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 0.2em 1em;
  gap: 0.4em;
  translate: 0 50%;
}
.p-consulting-strategy__list-item .c-flow-item__wrapper {
  padding-top: 2.5rem;
}
.p-consulting-strategy__list-item .c-flow-item__wrapper > * + * {
  margin-top: 1.25rem;
}
.p-consulting-strategy__list-item .c-flow-item__wrapper h4 {
  color: var(--c-navy);
  font-weight: 700;
}
.p-consulting-strategy__list-item .c-flow-item__wrapper a {
  display: flex;
  gap: 0.2em;
  color: var(--c-orange-dark);
  font-weight: 700;
  text-decoration: none;
}
.p-consulting-strategy__list-item .c-flow-item__wrapper a .c-icon {
  flex-shrink: 0;
  --c-fill: #111;
  --sz: 1.2em;
}

.top #content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.p-header__cta {
  --c-bg: var(--c-orange-dark);
  --c-border: var(--c-orange-dark);
  --c-color: var(--c-white);
}

.c-gnav > .menu-item > a {
  padding: 0;
}

.c-gnav > li:hover > a::after,
.c-gnav > .-current > a::after {
  display: none;
}

.c-gnav > li:hover > a,
.c-gnav > .-current > a,
.c-gnav > .current_page_item:hover > a {
  color: var(--c-orange-dark);
}

#fix_header .w-header.pc_ {
  margin-left: 3.125rem;
}

.p-breadcrumb__item:first-of-type {
  color: var(--c-blue);
}

.p-breadcrumb__text {
  font-weight: 700;
}
.page-template-page-consulting .l-content {
  max-width: none;
  padding: 0;
}

.p-spMenu__nav {
  margin-top: 0;
}

.wpcf7-form p + p {
  margin-top: 1em;
}

.wpcf7-form label {
  font-weight: 700;
  line-height: 1.8;
}

.wpcf7-form .c-label-tag {
  --c-bg: var(--c-orange-dark);
  --c-color: var(--c-white);
  margin-left: 0.4em;
  font-size: 70%;
}

.wpcf7-form label .required {
  margin-left: 0.8em;
  padding: 0 0.4em;
}

.wpcf7-form-control {
  width: 100%;
  margin-top: 0.3125rem;
  border-radius: 5px;
  background-color: transparent;
}

.wpcf7-submit {
  display: block;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  padding: 1em;
  background-color: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
}

@media screen and (min-width: 600px){
  .l-footer__nav a {
    padding: 0 1em;
    border-right: none;
  }
  .l-footer__nav li:first-child a {
    border-left: none;
  }
  .p-breadcrumb__list {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 800px){
  .l-container {
    max-width: 75rem;
  }
  .l-container--l {
    max-width: 81.25rem;
  }
  .l-container--none {
    max-width: none;
  }
  .c-section__wrapper {
    padding: 4.375rem 3.125rem;
  }
  .c-button {
    padding: 0.9375rem 1.875rem;
    gap: 0.9375rem;
  }
  .c-button--sz-header {
    padding: 0.9375rem 1.875rem;
  }
  .c-button--sz-medium {
    min-width: 18.75rem;
    height: 3.75rem;
    gap: 1.25rem;
  }
  .c-button--sz-large {
    min-width: 25rem;
    height: 5rem;
    gap: 1.25rem;
  }
  .c-slash-box {
    padding: 1.25rem 1.875rem;
    --sz-slash: 4.6875rem;
    line-height: 2;
  }
  .c-slash-box__slash {
    padding-top: 0.6875rem;
    padding-left: 0.8125rem;
  }
  .c-scroll {
    overflow: visible;
  }
  .c-table {
    font-size: 0.875rem;
  }
  .c-table th, .c-table td {
    padding: 1.2em 1em;
  }
  .p-footer-cta::before {
    top: -1.25rem;
    right: calc(50vw + 395px);
    width: 30.9375rem;
    height: 29.375rem;
  }
  .p-footer-cta::after {
    right: calc(50vw - 395px - 356px);
    width: 34.75rem;
    height: 11.875rem;
  }
  .p-footer-cta__wrapper {
    width: 100%;
    max-width: 49.375rem;
    padding: 2.875rem 3.125rem 3.5rem;
  }
  .p-footer-cta__title {
    padding-bottom: 0.625rem;
    font-size: 2rem;
  }
  .p-footer-cta__box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
  .p-footer-cta__tel {
    width: 16.875rem;
  }
  .l-footer__nav {
    justify-content: flex-end;
  }
  .l-footer__nav a {
    padding: 0 1em;
  }
  .p-footer__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 4rem 3.125rem;
    gap: 2.9vw;
  }
  .p-footer__logo {
    width: 11.25rem;
  }
  .p-footer__address {
    font-size: 1rem;
  }
  .p-footer .copyright {
    font-size: 0.75rem;
    text-align: left;
  }
  .p-fix-cta {
    top: 40%;
    translate: 0 -50%;
    writing-mode: tb;
  }
  .p-fix-cta a {
    padding: 1.875rem 1.25rem;
    letter-spacing: 0.2em;
  }
  .p-fixBtnWrap {
    padding-bottom: calc(env(safe-area-inset-bottom) * 0.5) !important;
  }
  .u-sp {
    display: none;
  }
  .u-tb {
    display: block;
  }
  :root {
    --fz-text-m: 1rem;
    --fz-heading-s: 1.25rem;
    --fz-heading-m: 1.5rem;
    --fz-heading-l: 2rem;
  }
  body {
    font-size: 1rem;
  }
  .p-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.75rem;
    padding: 0 1.875rem;
  }
  .p-header__logo {
    width: 11.25rem;
  }
  .p-header__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.125rem;
  }
  .p-header__nav {
    font-size: 0.9375rem;
  }
  .p-header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .p-header__nav li.current {
    color: var(--c-orange-dark);
  }
  .p-header__switch {
    display: none;
  }
  .p-fv {
    height: 53.1vw;
  }
  .p-fv::after {
    background: linear-gradient(144.12deg, #b3dcff 33.32%, #c0e2fe 36.39%, #c7e5fd 38.03%, #daedfb 42.15%, #fffdf7 47.66%);
  }
  .p-fv__wrapper {
    padding: 0;
  }
  .p-fv__visual {
    width: 100%;
    margin-left: auto;
  }
  .p-fv__copy {
    display: flex;
    position: absolute;
    top: 50%;
    left: 16.1vw;
    flex-direction: column;
    justify-content: center;
    width: min(25.625rem, 29.3vw);
    height: 100%;
    translate: -50% -50%;
  }
  .p-fv__copy-title {
    font-size: min(3.125rem, 3.6vw);
  }
  .p-fv__copy-text {
    margin-top: min(2.5rem, 2.9vw);
    padding-right: 2em;
    font-size: min(1.125rem, 1.3vw);
  }
  .p-fv__visual-airplane {
    top: -4.7vw;
    left: 8.1vw;
    width: 119vw;
    height: 71.4vw;
    transform: translate3d(-6.25rem, 12.5rem, 0);
  }
  .p-fv__visual-city {
    position: absolute;
    top: -7.6vw;
    left: 8.1vw;
    width: 119vw;
    height: 71.4vw;
    transform-origin: right bottom;
    scale: 0.95;
  }
  .p-fv__visual-city img {
    width: 100%;
  }
  .p-about__lead {
    margin-top: 3.75rem;
    text-align: center;
  }
  .p-about__flow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: 3.75rem;
    gap: 1.125rem;
    font-size: 0.875rem;
  }
  .p-about__flow-item {
    flex-shrink: 0;
  }
  .p-about__graph {
    width: 100%;
    margin-top: 3.75rem;
  }
  .c-flow-item__wrapper {
    padding: 1.875rem;
  }
  .c-flow-item__wrapper:has(.c-flow-item__title) {
    padding-top: 2.8125rem;
  }
  .c-flow-item__part {
    padding: 1.25rem 0.9375rem;
  }
  .c-flow-item__title {
    margin-top: calc(-1.25rem - 0.905em);
  }
  .c-flow-item__image {
    width: 100%;
    max-width: 6.25rem;
    margin-top: 1.875rem;
  }
  .c-flow-item__copy {
    margin-top: 1.25rem;
    font-size: var(--fz-text-m);
  }
  .c-flow-item__label-text {
    font-size: 0.75rem;
  }
  .p-value__wrapper {
    padding-top: 0;
  }
  .p-value__define {
    display: flex;
    z-index: 1;
    position: relative;
    margin-top: 1.875rem;
    padding: 1.25rem 1.875rem;
    gap: 1.25rem;
  }
  .p-value__flow-item {
    width: 100%;
    max-width: 24.375rem;
  }
  .p-value__flow-item-image {
    width: 7.5rem;
  }
  .p-value__flow-item-list {
    margin-top: 1.25rem;
  }
  .p-value__graph {
    width: 50rem;
    margin-top: 1.875rem;
  }
  .p-flow__wrapper {
    padding-bottom: 2.5rem;
  }
  .p-flow__list-01 {
    display: flex;
    margin-top: 3.75rem;
    gap: 0.875rem;
  }
  .p-flow__list-01-item {
    width: 100%;
  }
  .p-flow__list-01 .c-flow-item__wrapper {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .p-flow__list-01-count {
    margin-bottom: 0.9375rem;
  }
  .p-flow__list-01-count .number {
    width: 2.375rem;
    height: 2.375rem;
  }
  .p-flow__list-01-count::before {
    width: calc(50% + 0.4375rem);
    height: 1px;
    margin-left: -0.4375rem;
  }
  .p-flow__list-01-count::after {
    width: calc(50% + 0.4375rem);
    height: 1px;
    margin-right: -0.4375rem;
  }
  .p-flow__title-02 {
    margin-top: 3.75rem;
  }
  .p-flow__list-02 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.875rem;
    gap: 4.875rem;
  }
  .p-flow__list-02-item {
    width: 100%;
  }
  .p-flow__list-02-item + .p-flow__list-02-item {
    position: relative;
  }
  .p-flow__list-02-item + .p-flow__list-02-item::before {
    display: block;
    position: absolute;
    top: 50%;
    left: -3.3125rem;
    width: 1.75rem;
    height: 1.75rem;
    translate: 0 -50%;
    background: url(../image/icon_plus_orange.svg) center/contain no-repeat;
    content: "";
  }
  .p-flow__button {
    z-index: 1;
    position: relative;
    translate: 0 2.5rem;
  }
  .p-intro::before {
    height: 15.625rem;
  }
  .p-intro__wrapper {
    padding-top: 8.75rem;
  }
  .p-intro__message {
    display: flex;
    justify-content: space-between;
    gap: 2.9vw;
  }
  .p-intro__caption {
    width: 33.75rem;
  }
  .p-intro__text {
    margin-top: 1.875rem;
  }
  .p-intro__text-author {
    margin-top: 1.875rem;
  }
  .p-intro__image {
    width: 28.125rem;
  }
  .p-company__wrapper {
    padding-top: 5.625rem;
  }
  .p-company__summary {
    display: flex;
    justify-content: space-between;
    margin-top: 3.125rem;
    gap: 5.7vw;
  }
  .p-company__image {
    margin-left: -10rem;
  }
  .p-company__caption {
    flex-grow: 1;
    flex-shrink: 0;
    width: 55.5555555556%;
  }
  .p-company__table dl {
    display: flex;
    min-height: 5rem;
    padding: 1.25rem 0;
  }
  .p-company__table dl::before {
    width: 8.75rem;
  }
  .p-company__table dt {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 8.75rem;
    padding-left: 0.9375rem;
  }
  .p-company__table dd {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding-left: 0.9375rem;
  }
  .p-company__belief {
    background-color: var(--c-graige);
  }
  .p-company__graph {
    width: 50rem;
    margin-top: 5.625rem;
  }
  .p-news__inner {
    padding: 3.75rem 6.25rem;
  }
  .p-news__title {
    margin-bottom: -1.5rem;
    margin-left: 3.125rem;
  }
  .p-news__list-cover {
    display: flex;
    align-items: center;
    padding: 1.25rem 0.625rem;
    gap: 1.5rem;
  }
  .p-news__list-category {
    font-size: 1.125rem;
  }
  .p-news__print {
    margin-top: 3.125rem;
  }
  .c-page-header__wrapper {
    min-height: 12.5rem;
  }
  .c-page-header__inner {
    display: flex;
    align-items: center;
    margin-top: -0.3125rem;
  }
  .c-page-header__inner::before {
    margin-bottom: -1.875rem;
    translate: 0 -0.625rem;
  }
  .c-page-header__title {
    padding: 0.9375rem 1.875rem 0.9375rem;
  }
  .c-page-header__title-main {
    font-size: var(--fz-heading-l);
  }
  .c-page-header__title-sub {
    font-size: 1.125rem;
  }
  .p-consulting-lead__title {
    font-size: 1.25rem;
  }
  .p-consulting-lead__text {
    margin-top: 1.875rem;
  }
  .p-consulting-lead__box {
    display: flex;
    gap: 6.4vw;
  }
  .p-consulting-case__inner {
    margin-top: -0.9375rem;
    padding: 5rem 2.5rem 4rem;
  }
  .p-consulting-case__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    gap: 1.25rem 1.875rem;
    font-size: 1.125rem;
    --sz-icon: 2.5rem;
    font-weight: 700;
  }
  .p-consulting-case__list li::before {
    translate: 0 -0.5em;
  }
  .p-consulting-flow__list {
    margin-top: 3.75rem;
  }
  .p-consulting-flow__item + .p-consulting-flow__item {
    margin-top: 4rem;
  }
  .p-consulting-flow__item + .p-consulting-flow__item::before {
    top: -3rem;
    width: 1.75rem;
    height: 1.75rem;
  }
  .p-consulting-flow__header {
    padding: 1.875rem 8.125rem;
  }
  .p-consulting-flow__header-icon {
    width: 4rem;
  }
  .p-consulting-flow__header-count {
    left: 1.25rem;
  }
  .p-consulting-flow__header-title {
    font-size: var(--fz-heading-m);
  }
  .p-consulting-flow__header-text {
    margin-top: 1.125rem;
  }
  .p-consulting-flow__body {
    padding: 1.875rem 8.125rem;
    line-height: 1.8;
  }
  .p-consulting-flow__body > * + * {
    margin-top: 1.8em;
  }
  .p-consulting-strategy__list {
    display: flex;
    justify-content: center;
    margin-top: 6.25rem;
    margin-right: -3.125rem;
    margin-left: -3.125rem;
    gap: 1.875rem;
  }
  .p-consulting-strategy__list-item {
    width: 100%;
  }
  .p-consulting-strategy .c-flow-item__title {
    font-size: 1.25rem;
  }
  .u-col {
    display: flex;
    gap: 2.9vw;
  }
  .p-breadcrumb {
    margin-top: 1.25rem;
    margin-bottom: 1.875rem;
  }
  .wpcf7-form label {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 799.98px){
  .c-section__wrapper {
    padding: 3.125rem 1.25rem;
  }
  .c-button {
    width: 100%;
    padding: 0.9375rem 1.875rem;
    gap: 0.9375rem;
    font-size: 0.875rem;
  }
  .c-button--sz-header {
    padding: 0.9375rem 1.875rem;
  }
  .c-button--sz-medium {
    height: 3.75rem;
    gap: 1.25rem;
  }
  .c-button--sz-large {
    height: 3.75rem;
    gap: 0.9375rem;
  }
  .c-slash-box {
    padding: 1.25rem 1.875rem;
    --sz-slash: 3.125rem;
    line-height: 2;
  }
  .c-slash-box__slash {
    padding-top: 0.34375rem;
    padding-left: 0.40625rem;
  }
  .c-scroll {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    overflow: auto;
  }
  .c-scroll > * {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .c-table {
    font-size: 0.75rem;
  }
  .p-footer-cta {
    padding: 1.25rem 0.625rem;
  }
  .p-footer-cta::before {
    top: -1.25rem;
    right: 17.5rem;
    width: 7.5rem;
    height: 12.5rem;
  }
  .p-footer-cta::after {
    display: none;
  }
  .p-footer-cta__wrapper {
    padding: 1.25rem 0.625rem;
  }
  .p-footer-cta__title {
    padding-bottom: 0.625rem;
    font-size: 1.125rem;
  }
  .p-footer-cta__box {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    gap: 0.9375rem;
  }
  .p-footer-cta__tel {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .p-footer-cta__button {
    height: 2.25rem;
    padding: 1em;
    --sz: 1em;
  }
  .l-footer__nav {
    flex-direction: column;
    padding: 0;
    gap: 1em;
  }
  .p-footer__wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding: 1.875rem 1.25rem;
    gap: 1.875rem;
  }
  .p-footer__logo {
    width: 8.75rem;
  }
  .p-fix-cta {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
  }
  .p-fix-cta a {
    height: 3rem;
    padding: 0.9375rem 0.625rem;
  }
  body {
    padding-bottom: 4rem;
    font-size: 0.875rem;
  }
  .p-fixBtnWrap {
    padding-bottom: 3rem !important;
  }
  .u-sp {
    display: block;
  }
  .u-tb {
    display: none;
  }
  :root {
    --fz-text-m: 0.875rem;
    --fz-heading-s: 1rem;
    --fz-heading-m: 1.25rem;
    --fz-heading-l: 1.5rem;
  }
  html {
    font-size: 4.575vw;
  }
  .p-fv__visual {
    height: 90vw;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
  .p-fv__copy-title {
    font-size: 7.7vw;
  }
  .p-fv__copy-text {
    margin-top: 1em;
    font-size: 3.8vw;
  }
  .p-fv__visual-airplane {
    top: 5.9vw;
    left: 0;
    width: 45vw;
    transform: translate3d(-3.125rem, 6.25rem, 0);
  }
  .p-fv__visual-city {
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-fv__visual-city img {
    width: 175%;
    max-width: none;
    translate: -20% 0;
  }
  .p-about__lead {
    margin-top: 2.5rem;
  }
  .p-about__flow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    min-width: 50rem;
    margin-top: 2.5rem;
    gap: 0.9375rem;
    font-size: 0.875rem;
  }
  .p-about__flow-item {
    flex-shrink: 0;
  }
  .p-about__graph {
    width: 43.125rem;
    margin-top: 2.5rem;
  }
  .c-flow-item__wrapper {
    padding: 1.25rem;
  }
  .c-flow-item__part {
    padding: 1.25rem 0.625rem;
  }
  .c-flow-item__title {
    margin-top: calc(-1.25rem - 0.905em);
    font-size: 0.875rem;
  }
  .c-flow-item__image {
    width: 100%;
    max-width: 3.75rem;
    margin-top: 1.875rem;
  }
  .c-flow-item__copy {
    margin-top: 1.25em;
    font-size: var(--fz-text-m);
  }
  .c-flow-item__label-text {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
  }
  .p-value__define {
    display: flex;
    flex-direction: column;
    margin-top: 1.875rem;
    padding: 1.25rem 1.5rem;
    gap: 0.5rem;
  }
  .p-value__flow-list {
    min-width: 50rem;
  }
  .p-value__graph {
    width: 36.25rem;
    margin-top: 1.25rem;
  }
  .p-flow__wrapper {
    padding-bottom: 1.25rem;
  }
  .p-flow__list-01 {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 0.875rem;
  }
  .p-flow__list-01-item {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .p-flow__list-01-count {
    flex-direction: column;
    margin-right: 0.625rem;
  }
  .p-flow__list-01-count .number {
    width: 2rem;
    height: 2rem;
  }
  .p-flow__list-01-count::before {
    width: 1px;
    height: calc(50% + 0.4375rem);
    margin-top: -0.4375rem;
  }
  .p-flow__list-01-count::after {
    width: 1px;
    height: calc(50% + 0.4375rem);
    margin-bottom: -0.4375rem;
  }
  .p-flow__title-02 {
    margin-top: 3.75rem;
  }
  .p-flow__list-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
  .p-flow__list-02-item {
    width: 100%;
  }
  .p-flow__list-02-item + .p-flow__list-02-item {
    position: relative;
  }
  .p-flow__list-02-item + .p-flow__list-02-item::before {
    display: block;
    z-index: 1;
    position: absolute;
    top: -1.875rem;
    left: 50%;
    width: 1.25rem;
    height: 1.25rem;
    translate: -50% 0;
    background: url(../image/icon_plus_orange.svg) center/contain no-repeat;
    content: "";
  }
  .p-flow__button {
    z-index: 1;
    position: relative;
    translate: 0 2.5rem;
  }
  .p-flow__list-01 p {
    text-align: center;
  }
  .p-intro::before {
    height: 60%;
  }
  .p-intro__wrapper {
    padding-top: 6.25rem;
  }
  .p-intro__message {
    margin-top: 2.5rem;
  }
  .p-intro__text {
    margin-top: 1.875rem;
  }
  .p-intro__text-author {
    margin-top: 1.875rem;
  }
  .p-intro__image {
    margin-top: 1.875rem;
  }
  .p-company__image {
    margin-top: 2.5rem;
  }
  .p-company__caption {
    margin-top: 2.5rem;
  }
  .p-company__table dl {
    padding: 0.625rem 0;
  }
  .p-company__table dl::before {
    width: 8em;
  }
  .p-company__table dd {
    line-height: 1.6;
  }
  .p-company__graph {
    width: 100%;
    margin-top: 2.5rem;
  }
  .p-news__inner {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    padding: 2.5rem 0.9375rem;
  }
  .p-news__title {
    margin-bottom: -0.5em;
  }
  .p-news__list-cover {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.25rem 0.625rem;
    gap: 0.625rem 0.3125rem;
  }
  .p-news__list-category {
    font-size: 0.75rem;
  }
  .p-news__list-title {
    width: 100%;
  }
  .p-news__print {
    margin-top: 1.875rem;
  }
  .c-page-header::before {
    right: 0;
    bottom: 0;
    width: 75%;
    height: 100%;
    background-position: bottom center;
  }
  .c-page-header__inner {
    padding: 0;
  }
  .c-page-header__inner::before {
    width: 40vw;
    height: 40vw;
    margin-bottom: -0.625rem;
    margin-left: 0.625rem;
    translate: 0 -0.625rem;
  }
  .c-page-header__title {
    padding: 0.9375rem;
  }
  .c-page-header__title-main {
    font-size: var(--fz-heading-m);
  }
  .c-page-header__title-sub {
    font-size: 0.75rem;
  }
  .p-consulting-lead__title {
    font-size: 1rem;
    line-height: 1.4;
  }
  .p-consulting-lead__text {
    margin-top: 1em;
  }
  .p-consulting-lead__image {
    margin-top: 2.5rem;
  }
  .p-consulting-case__inner {
    margin-top: -1.25rem;
    padding: 1.875rem 1.25rem;
    padding-top: 2.5rem;
  }
  .p-consulting-case__list {
    --sz-icon: 1.5em;
  }
  .p-consulting-flow__list {
    margin-top: 2.5rem;
  }
  .p-consulting-flow__item + .p-consulting-flow__item {
    margin-top: 1.875rem;
  }
  .p-consulting-flow__item + .p-consulting-flow__item::before {
    top: -1.5rem;
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-consulting-flow__header {
    padding: 1.25rem 1.25rem 0.625rem;
  }
  .p-consulting-flow__header-count {
    left: 0.625rem;
    padding: 0.2em 0.4em;
    font-size: 0.75rem;
  }
  .p-consulting-flow__header-icon {
    flex-shrink: 0;
    width: 3.125rem;
  }
  .p-consulting-flow__header-text {
    font-size: 0.625rem;
  }
  .p-consulting-flow__body {
    padding: 1.25rem;
    line-height: 1.8;
  }
  .p-consulting-flow__body > * + * {
    margin-top: 1.8em;
  }
  .p-consulting-strategy__list-item + .p-consulting-strategy__list-item {
    margin-top: 2.5rem;
  }
  .p-consulting-strategy__list {
    margin-top: 2.5rem;
  }
  .u-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .c-page-header .p-breadcrumb {
    padding: 1.25rem;
  }
  .c-page-header .p-breadcrumb__list {
    padding: 0;
  }
}

@media (hover: none){
  a:active {
    color: var(--c-orange-dark);
  }
  .c-button:active {
    color: currentColor;
  }
  .c-button--primary:active {
    --c-color: var(--c-orange-dark);
  }
  .c-button--primary:active .c-icon {
    --c-fill: var(--c-color);
  }
  .c-button--secondary:active {
    --c-color: var(--c-white);
    --c-bg: var(--c-navy);
  }
  .c-button--secondary:active .c-icon {
    --c-fill: var(--c-color);
  }
  .p-footer-cta:active {
    opacity: 0.9;
  }
  .p-footer-cta__button:active {
    --c-color: var(--c-white);
  }
  .l-footer__nav a:active {
    text-decoration: none;
  }
  .p-news__list-cover:active {
    color: currentColor;
    opacity: 0.4;
  }
  .p-header__cta:active {
    --c-color: var(--c-white);
  }
}

@media (hover){
  a:hover {
    color: var(--c-orange-dark);
  }
  .c-button:hover {
    color: currentColor;
  }
  .c-button--primary:hover {
    --c-color: var(--c-orange-dark);
  }
  .c-button--primary:hover .c-icon {
    --c-fill: var(--c-color);
  }
  .c-button--secondary:hover {
    --c-color: var(--c-white);
    --c-bg: var(--c-navy);
  }
  .c-button--secondary:hover .c-icon {
    --c-fill: var(--c-color);
  }
  .p-footer-cta:hover {
    opacity: 0.9;
  }
  .p-footer-cta__button:hover {
    --c-color: var(--c-white);
  }
  .l-footer__nav a:hover {
    text-decoration: none;
  }
  .p-news__list-cover:hover {
    color: currentColor;
    opacity: 0.4;
  }
  .p-header__cta:hover {
    --c-color: var(--c-white);
  }
}