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

:where(html) {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(body) {
  min-height: 100vh;
}

:where(ul[role=list], ol[role=list]) {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:where(a[class]) {
  display: block;
  text-decoration: none;
  color: inherit;
}

:where(img, picture) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(svg) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

:where(input, button, textarea, select) {
  font-family: inherit;
  font-size: inherit;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  color: inherit;
}

:where(button) {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

:where(address) {
  font-style: normal;
}

:where(dialog) {
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  position: static;
  background: transparent;
  font: inherit;
  color: inherit;
}

:where(fieldset) {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

:where(legend) {
  margin: 0;
  padding: 0;
}

:where(summary)::-webkit-details-marker {
  display: none;
}

:root {
  --duration: 0.45s;
  --base-width: 375;
  --vw: 100vw / var(--base-width);
  --black: #000;
  --black-70: #00000070;
  --black-30: #00000030;
  --red: #d80011;
  --gray: #d9d9d9;
  --dark-gray: #aaa;
}

@media (min-width: 744px) {
  :root {
    --base-width: 1166;
  }
}
@media (min-width: 1024px) {
  :root {
    --base-width: 1366;
  }
}
@media (min-width: 1366px) {
  :root {
    --vw: 1px * (1366 / 1366);
  }
}
html:not([lang=ja]) {
  word-break: break-word;
}

body {
  min-width: 320px;
  background-color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5625;
  color: var(--black);
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}
@media all and (min-width: 744px) {
  body {
    min-width: auto;
  }
}
@media (min-width: 744px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

* {
  letter-spacing: 0.05em;
}

/**
 * l-breadcrumb
 */
.l-breadcrumb ul {
  display: flex;
  padding: 0.625rem 0;
  flex-wrap: wrap;
}
.l-breadcrumb li {
  font-size: 0.75rem;
}
.l-breadcrumb li + li {
  display: flex;
}
.l-breadcrumb li + li::before {
  content: "＞";
  display: inline-block;
  padding: 0 0.1875rem 0 0.375rem;
}
.l-breadcrumb li > span {
  color: var(--black-70);
}

@media all and (min-width: 744px) {
  .l-breadcrumb li {
    font-size: 0.875rem;
  }
}
/**
 * l-container
 */
.l-container {
  overflow-x: clip;
  position: relative;
}

/**
 * l-footer
 */
.l-footer {
  margin-top: -1px;
  overflow: clip;
  position: relative;
  z-index: 1;
  color: white;
}

.l-footer__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.l-footer__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.l-footer__inner {
  padding-bottom: 55vw;
}

.l-footer__nav {
  position: relative;
  z-index: 1;
}

.l-footer__nav-item {
  max-width: 13.4375rem;
}

.l-footer__nav-link {
  display: grid;
  padding: 0.5rem 0;
  grid-template-columns: 1fr auto;
  gap: 0.625rem;
}
.l-footer__nav-link:focus-visible .l-footer__nav-arrow {
  animation: btn-arrow-slide 0.3s ease forwards;
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover .l-footer__nav-arrow {
    animation: btn-arrow-slide 0.3s ease forwards;
  }
}

.l-footer__nav-txt {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.l-footer__nav-ico {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.125rem;
  overflow: clip;
  place-items: center;
  background: var(--red);
}

.l-footer__nav-arrow {
  width: 0.5rem;
  height: 0.375rem;
  color: white;
}

.l-footer__info {
  position: absolute;
  right: 1.875rem;
  bottom: 0.625rem;
  z-index: 1;
}

.l-footer__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.l-footer__logo-link {
  width: 7.9375rem;
}
.l-footer__logo-link path:not(.-red) {
  fill: white;
}

.l-footer__copyright {
  position: relative;
  z-index: 1;
  font-size: 0.625rem;
  text-align: right;
}

@media all and (min-width: 744px) {
  .l-footer__inner {
    padding-bottom: 55vw;
  }
}
@media all and (min-width: 1024px) {
  .l-footer__inner {
    padding-top: 15.625rem;
    padding-bottom: 25vw;
  }
  .l-footer__nav-item {
    max-width: 12.5rem;
  }
  .l-footer__nav-link {
    display: grid;
    padding: 0.9375rem 0;
    grid-template-columns: 1fr auto;
    gap: 0.625rem;
  }
  .l-footer__nav-txt {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
  .l-footer__nav-ico {
    width: 0.9375rem;
    height: 0.9375rem;
  }
  .l-footer__nav-arrow {
    width: 0.4375rem;
    height: 0.3125rem;
  }
  .l-footer__info {
    right: 1.875rem;
    bottom: 1.25rem;
  }
  .l-footer__logo-link {
    width: 17.8125rem;
  }
  .l-footer__copyright {
    font-size: 0.75rem;
  }
}
@media all and (min-width: 1280px) {
  .l-footer__info {
    bottom: 3.125rem;
  }
  .l-footer__copyright {
    margin-top: 0.75rem;
  }
}
@media all and (min-width: 1366px) {
  .l-footer__inner {
    padding-bottom: 33vw;
  }
}
@media all and (min-width: 1536px) {
  .l-footer__inner {
    padding-bottom: 40vw;
  }
}
@keyframes nav-ico-slide {
  0% {
    transform: translateX(0);
  }
  49.9% {
    transform: translateX(120%);
  }
  50% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * l-header
 */
.l-header {
  width: 100%;
  height: 3.75rem;
  padding: 0.9375rem 0 0 1.875rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: white;
}

.l-header__logo-link {
  width: 8.4375rem;
}

@media all and (min-width: 744px) {
  .l-header {
    padding: 0.8125rem 0 0 1.875rem;
  }
  .l-header__logo-link {
    width: 9.375rem;
  }
}
/**
 * Front Page用
 */
.l-header.is-front-top {
  padding-top: 1.5625rem;
  background: transparent;
  transition: opacity var(--duration), visibility var(--duration);
}
.l-header.is-front-top .l-nav-hamburger {
  top: 1.125rem;
}
.l-header.is-front-top .l-nav-hamburger__icon::before, .l-header.is-front-top .l-nav-hamburger__icon::after {
  background: white;
}
.l-header.is-front-top .l-header__logo-link path {
  fill: white;
}
.l-header.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration);
}
.l-header.is-hide.is-show {
  opacity: 1;
  visibility: visible;
}

/**
 * l-loading
 */
.l-loading {
  display: grid;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  place-items: center;
}
.l-loading::before {
  content: "";
  width: 100%;
  height: 150%;
  position: absolute;
  top: 0;
  left: 0;
  transition: translate calc(var(--duration) * 1.5) ease-in-out;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 100%);
}
.l-loading.is-loaded::before {
  translate: 0 -130%;
}
.l-loading.is-loaded .l-loading__logo {
  visibility: hidden;
  opacity: 0;
}

.l-loading__logo {
  width: 7.5rem;
  transition: opacity var(--duration), visibility var(--duration);
  position: relative;
  z-index: 1;
}

@media all and (min-width: 744px) {
  .l-loading__logo {
    width: 10rem;
  }
}
/**
 * l-nav
 */
.l-nav {
  display: block;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  translate: 100% 0;
  transition: opacity var(--duration), visibility var(--duration), translate var(--duration);
  background: var(--red);
  color: white;
}
.l-nav.is-open {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

.l-nav__list {
  padding: 6.25rem 1.875rem;
}

.l-nav__list-item + .l-nav__list-item {
  margin-top: 0.625rem;
}

.l-nav__list-link {
  padding: 0.625rem 0;
  width: -moz-fit-content;
  width: fit-content;
}
.l-nav__list-link:focus-visible .l-nav__list-txt > span {
  translate: 0 -200%;
}
.l-nav__list-link:focus-visible .l-nav__list-txt::after {
  translate: 0 0;
}
@media (any-hover: hover) {
  .l-nav__list-link:hover .l-nav__list-txt > span {
    translate: 0 -200%;
  }
  .l-nav__list-link:hover .l-nav__list-txt::after {
    translate: 0 0;
  }
}

.l-nav__list-txt {
  position: relative;
  overflow: clip;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.l-nav__list-txt > span, .l-nav__list-txt::after {
  font-size: inherit;
  letter-spacing: inherit;
  transition: translate var(--duration);
  display: inline-block;
}
.l-nav__list-txt::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  translate: 0 100%;
}

@media all and (min-width: 744px) {
  .l-nav {
    display: grid;
    width: 20rem;
    height: 100vh;
    place-items: center;
  }
  .l-nav__list {
    padding: 3.125rem;
  }
  .l-nav__list-item + .l-nav__list-item {
    margin-top: 0.625rem;
  }
  .l-nav__list-link {
    padding: 0.9375rem 0;
  }
  .l-nav__list-txt {
    font-size: 1.25rem;
  }
}
/**
 * l-nav-hamburger
 */
.l-nav-hamburger {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  position: absolute;
  top: 0.5625rem;
  right: 1.25rem;
  z-index: 2;
}
.l-nav-hamburger.is-open .l-nav-hamburger__icon {
  background: transparent;
}
.l-nav-hamburger.is-open .l-nav-hamburger__icon::before, .l-nav-hamburger.is-open .l-nav-hamburger__icon::after {
  top: 0;
  background: white;
}
.l-nav-hamburger.is-open .l-nav-hamburger__icon::before {
  transform: skewX(18deg) rotate(35deg);
}
.l-nav-hamburger.is-open .l-nav-hamburger__icon::after {
  transform: skewX(-18deg) rotate(-35deg);
}

.l-nav-hamburger__icon {
  width: 1.25rem;
  height: 0.1875rem;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transition: all var(--duration);
  background: transparent;
}
.l-nav-hamburger__icon::before, .l-nav-hamburger__icon::after {
  content: "";
  width: inherit;
  height: inherit;
  position: absolute;
  left: 0;
  transform: skewX(-18deg) rotate(-18deg);
  transition: inherit;
  background: var(--red);
}
.l-nav-hamburger__icon::before {
  top: -0.25rem;
}
.l-nav-hamburger__icon::after {
  top: 0.25rem;
}

@media all and (min-width: 744px) {
  .l-nav-hamburger {
    width: 3.125rem;
    height: 3.125rem;
    top: 0.25rem;
    right: 1.25rem;
  }
  .l-nav-hamburger__icon {
    width: 1.875rem;
    height: 0.25rem;
  }
  .l-nav-hamburger__icon::before {
    top: -0.3125rem;
  }
  .l-nav-hamburger__icon::after {
    top: 0.3125rem;
  }
}
/**
 * l-nav-overlay
 */
.l-nav-overlay {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity var(--duration), visibility var(--duration);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.l-nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

/**
 * l-page-top
 */
.l-page-top {
  opacity: 0;
  position: fixed;
  right: 0.9375rem;
  bottom: 1.875rem;
  transition: opacity var(--duration);
  color: var(--black);
}
.l-page-top.is-show {
  opacity: 1;
}
.l-page-top.is-stop {
  position: absolute;
}

.l-page-top__link {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  border-radius: 50%;
  background: white;
}
.l-page-top__link::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid;
  border-right: 0.125rem solid;
  position: absolute;
  top: calc(50% + 0.125rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media all and (min-width: 744px) {
  .l-page-top {
    right: 1.875rem;
  }
  .l-page-top__link {
    width: 3.125rem;
    height: 3.125rem;
  }
}
/**
 * l-scroll-nav
 */
.l-scroll-nav {
  width: 5.8125rem;
  padding: 0 0.3125rem 0.3125rem 0;
  position: fixed;
  right: 1.875rem;
  bottom: 2.8125rem;
  z-index: 3;
  transform-origin: right bottom;
  rotate: 90deg;
  transition: opacity var(--duration), visibility var(--duration);
  text-align: right;
}
.l-scroll-nav.is-hide {
  visibility: hidden;
  opacity: 0;
}

.l-scroll-nav__bar {
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
}

.l-scroll-nav__cirlce {
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  position: absolute;
  top: -0.125rem;
  left: 0;
  animation: scroll-nav-sp 2.1s infinite ease-in-out;
  background: var(--red);
}

.l-scroll-nav__txt {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: white;
}

@media all and (min-width: 744px) {
  .l-scroll-nav {
    width: 8.75rem;
    padding: 0 0.1875rem 0.5rem 0;
    right: 2.1875rem;
    bottom: calc(50% - 3.75rem);
    translate: 0 50%;
  }
  .l-scroll-nav__cirlce {
    animation: scroll-nav-pc 2.1s infinite ease-in-out;
  }
}
@keyframes scroll-nav-sp {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(5.625rem);
  }
}
@keyframes scroll-nav-pc {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(8.4375rem);
  }
}
/**
 * l-sub-bg
 */
.l-sub-bg {
  height: 100vh;
  inset: 0;
  position: fixed;
  z-index: -1;
  pointer-events: none;
}
.l-sub-bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/**
 * l-sub-kv
 */
.l-sub-kv {
  position: relative;
}

.l-sub-kv__inner {
  padding-top: 8.125rem;
  padding-bottom: 3.4375rem;
  position: relative;
  z-index: 1;
}

.l-sub-kv__en {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.l-sub-kv__ja {
  font-size: 2.25rem;
  letter-spacing: 0.12em;
}

.l-sub-kv__bg img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media all and (min-width: 744px) {
  .l-sub-kv__inner {
    padding-bottom: 5.9375rem;
  }
  .l-sub-kv__ja {
    margin-top: 1.5625rem;
    font-size: 3.4375rem;
  }
}
/**
 * アニメーションのためのスタイル
 */
[data-anime=fadeIn] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: var(--duration);
}
[data-anime=fadeIn].is-found {
  opacity: 1;
}

[data-anime=clipInUp] {
  overflow: clip;
}
[data-anime=clipInUp] > * {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: transform calc(var(--duration) * 2);
}
[data-anime=clipInUp].is-found > * {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

[data-anime=fadeInUp] {
  opacity: 0;
  translate: 0 1.875rem;
  transition-property: opacity, translate;
  transition-duration: var(--duration);
}
[data-anime=fadeInUp].is-found {
  opacity: 1;
  translate: 0;
}

[data-anime=fadeInDown] {
  opacity: 0;
  translate: 0 -1.875rem;
  transition-property: opacity, translate;
  transition-duration: var(--duration);
}
[data-anime=fadeInDown].is-found {
  opacity: 1;
  translate: 0;
}

[data-anime=fadeInLeft] {
  opacity: 0;
  translate: -1.875rem 0;
  transition-property: opacity, translate;
  transition-duration: var(--duration);
}
[data-anime=fadeInLeft].is-found {
  opacity: 1;
  translate: 0;
}

[data-anime=fadeInRight] {
  opacity: 0;
  translate: -1.875rem 0;
  transition-property: opacity, translate;
  transition-duration: var(--duration);
}
[data-anime=fadeInRight].is-found {
  opacity: 1;
  translate: 0;
}

[data-anime][data-anime-duration="0.1"] {
  transition-duration: 0.1s;
}
[data-anime][data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
[data-anime][data-anime-duration="0.2"] {
  transition-duration: 0.2s;
}
[data-anime][data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
[data-anime][data-anime-duration="0.3"] {
  transition-duration: 0.3s;
}
[data-anime][data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
[data-anime][data-anime-duration="0.4"] {
  transition-duration: 0.4s;
}
[data-anime][data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
[data-anime][data-anime-duration="0.5"] {
  transition-duration: 0.5s;
}
[data-anime][data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
[data-anime][data-anime-duration="0.6"] {
  transition-duration: 0.6s;
}
[data-anime][data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
[data-anime][data-anime-duration="0.7"] {
  transition-duration: 0.7s;
}
[data-anime][data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
[data-anime][data-anime-duration="0.8"] {
  transition-duration: 0.8s;
}
[data-anime][data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
[data-anime][data-anime-duration="0.9"] {
  transition-duration: 0.9s;
}
[data-anime][data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
[data-anime][data-anime-duration="1"] {
  transition-duration: 1s;
}
[data-anime][data-anime-delay="1"] {
  transition-delay: 1s;
}
[data-anime][data-anime-duration="1.1"] {
  transition-duration: 1.1s;
}
[data-anime][data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
[data-anime][data-anime-duration="1.2"] {
  transition-duration: 1.2s;
}
[data-anime][data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
[data-anime][data-anime-duration="1.3"] {
  transition-duration: 1.3s;
}
[data-anime][data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
[data-anime][data-anime-duration="1.4"] {
  transition-duration: 1.4s;
}
[data-anime][data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
[data-anime][data-anime-duration="1.5"] {
  transition-duration: 1.5s;
}
[data-anime][data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
[data-anime][data-anime-duration="1.6"] {
  transition-duration: 1.6s;
}
[data-anime][data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
[data-anime][data-anime-duration="1.7"] {
  transition-duration: 1.7s;
}
[data-anime][data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
[data-anime][data-anime-duration="1.8"] {
  transition-duration: 1.8s;
}
[data-anime][data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
[data-anime][data-anime-duration="1.9"] {
  transition-duration: 1.9s;
}
[data-anime][data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
[data-anime][data-anime-duration="2"] {
  transition-duration: 2s;
}
[data-anime][data-anime-delay="2"] {
  transition-delay: 2s;
}
[data-anime][data-anime-duration="2.1"] {
  transition-duration: 2.1s;
}
[data-anime][data-anime-delay="2.1"] {
  transition-delay: 2.1s;
}
[data-anime][data-anime-duration="2.2"] {
  transition-duration: 2.2s;
}
[data-anime][data-anime-delay="2.2"] {
  transition-delay: 2.2s;
}
[data-anime][data-anime-duration="2.3"] {
  transition-duration: 2.3s;
}
[data-anime][data-anime-delay="2.3"] {
  transition-delay: 2.3s;
}
[data-anime][data-anime-duration="2.4"] {
  transition-duration: 2.4s;
}
[data-anime][data-anime-delay="2.4"] {
  transition-delay: 2.4s;
}
[data-anime][data-anime-duration="2.5"] {
  transition-duration: 2.5s;
}
[data-anime][data-anime-delay="2.5"] {
  transition-delay: 2.5s;
}
[data-anime][data-anime-duration="2.6"] {
  transition-duration: 2.6s;
}
[data-anime][data-anime-delay="2.6"] {
  transition-delay: 2.6s;
}
[data-anime][data-anime-duration="2.7"] {
  transition-duration: 2.7s;
}
[data-anime][data-anime-delay="2.7"] {
  transition-delay: 2.7s;
}
[data-anime][data-anime-duration="2.8"] {
  transition-duration: 2.8s;
}
[data-anime][data-anime-delay="2.8"] {
  transition-delay: 2.8s;
}
[data-anime][data-anime-duration="2.9"] {
  transition-duration: 2.9s;
}
[data-anime][data-anime-delay="2.9"] {
  transition-delay: 2.9s;
}
[data-anime][data-anime-duration="3"] {
  transition-duration: 3s;
}
[data-anime][data-anime-delay="3"] {
  transition-delay: 3s;
}

@media all and not (min-width: 744px) {
  [data-anime] {
    transition-delay: 0s;
  }
}
/**
 * c-archive1
 * お客様の声リスト
 */
.c-archive1__article + .c-archive1__article {
  margin-top: 1.875rem;
}

.c-archive1__link:focus-visible .c-btn2__arrow {
  animation: btn-arrow-slide 0.3s ease forwards;
}
@media (any-hover: hover) {
  .c-archive1__link:hover .c-btn2__arrow {
    animation: btn-arrow-slide 0.3s ease forwards;
  }
}

.c-archive1__img {
  border-radius: 0.3125rem;
  overflow: clip;
}

.c-archive1__case {
  margin-top: 0.9375rem;
  font-size: 0.625rem;
}

.c-archive1__title {
  margin-top: 0.3125rem;
  overflow: hidden;
  font-size: 1.375rem;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-archive1__name {
  margin-top: 0.5rem;
  line-height: 1.375;
}

.c-archive1__sub {
  font-size: 0.75rem;
  line-height: 1.25;
}

.c-archive1__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.25rem 0 0 auto;
}

@media all and (min-width: 744px) {
  .c-archive1 {
    display: flex;
    flex-wrap: wrap;
    gap: 3.125rem;
  }
  .c-archive1__article {
    width: calc(50% - 1.5625rem);
  }
  .c-archive1__article + .c-archive1__article {
    margin-top: 0;
  }
  .c-archive1__case {
    margin-top: 1.25rem;
  }
  .c-archive1__title {
    margin-top: 1.25rem;
    overflow: visible;
    font-size: 1.375rem;
    white-space: normal;
    text-overflow: visible;
  }
  .c-archive1__name {
    margin-top: 1.5625rem;
  }
  .c-archive1__sub {
    margin-top: 0.3125rem;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .c-archive1 {
    gap: 1.875rem;
  }
  .c-archive1__article {
    width: calc(50% - 0.9375rem);
  }
}
.c-archive1.-archive .c-archive1__article + .c-archive1__article {
  margin-top: 3.125rem;
}
.c-archive1.-archive .c-archive1__title {
  overflow: visible;
  font-size: 1.25rem;
  line-height: 1.25;
  white-space: normal;
}

@media all and (min-width: 744px) {
  .c-archive1.-archive .c-archive1__article + .c-archive1__article {
    margin-top: 0;
  }
  .c-archive1.-archive .c-archive1__title {
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }
}
/**
 * c-archive2
 * お客様の声個別ページのリスト
 */
.c-archive2 .splide-progress {
  width: 5rem;
  height: 0.4375rem;
  margin-top: 1.875rem;
  margin-inline: auto;
  background: var(--gray);
}
.c-archive2 .splide-progress__bar {
  display: block;
  width: 0;
  height: 0.4375rem;
  transition: width var(--duration);
  background: var(--red);
}

.c-archive2__img {
  border-radius: 0.3125rem;
  overflow: clip;
}

.c-archive2__case {
  margin-top: 1.5625rem;
  font-size: 0.625rem;
}

.c-archive2__title {
  margin-top: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.c-archive2__name {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.c-archive2__sub {
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

@media all and (min-width: 744px) {
  .c-archive2 .splide__list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .c-archive2__case {
    margin-top: 0.9375rem;
    font-size: 0.625rem;
  }
  .c-archive2__title {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
  .c-archive2__name {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
  .c-archive2__sub {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .c-archive2 .splide__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.25rem;
  }
}
/**
 * c-btn1
 * 通常ボタン
 */
.c-btn1__link {
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15.9375rem;
  min-height: 3.4375rem;
  padding: 0 0.625rem 0 1.25rem;
  border-radius: 0.3125rem;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 0.9375rem;
  background: var(--black);
  color: white;
}
.c-btn1__link:focus-visible .c-btn1__arrow {
  animation: btn-arrow-slide 0.3s ease forwards;
}
@media (any-hover: hover) {
  .c-btn1__link:hover .c-btn1__arrow {
    animation: btn-arrow-slide 0.3s ease forwards;
  }
}

.c-btn1__txt {
  font-size: 0.875rem;
}

.c-btn1__ico {
  display: grid;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 0.3125rem;
  overflow: clip;
  place-items: center;
  background: var(--red);
}

.c-btn1__arrow {
  width: 1.0625rem;
  height: 0.75rem;
}

@media all and (min-width: 744px) {
  .c-btn1__link {
    min-height: 5rem;
    padding: 0 0.9375rem 0 1.875rem;
    gap: 5.625rem;
  }
  .c-btn1__txt {
    font-size: 0.8125rem;
  }
  .c-btn1__ico {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media all and (min-width: 744px) {
  .c-btn1.-pc-large .c-btn1__link {
    min-width: 25.625rem;
    min-height: 6.25rem;
  }
  .c-btn1.-pc-large .c-btn1__txt {
    text-align: right;
  }
}
/**
 * c-btn2
 * 小さいボタン
 */
.c-btn2__link {
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.5rem;
  min-height: 2.1875rem;
  padding: 0 1.25rem;
  border-radius: 0.3125rem;
  overflow: clip;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 0.9375rem;
  background: var(--black);
  color: white;
}
.c-btn2__link:focus-visible .c-btn2__arrow {
  animation: btn-arrow-slide 0.3s ease forwards;
}
@media (any-hover: hover) {
  .c-btn2__link:hover .c-btn2__arrow {
    animation: btn-arrow-slide 0.3s ease forwards;
  }
}

.c-btn2__txt {
  font-size: 0.75rem;
}

.c-btn2__arrow {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--red);
}

@media all and (min-width: 744px) {
  .c-btn2__link {
    display: grid;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 6.5625rem;
    min-height: 1.875rem;
    padding: 0 0.9375rem 0 1.25rem;
  }
  .c-btn2__txt {
    font-size: 0.625rem;
  }
  .c-btn2__arrow {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--red);
  }
}
@keyframes btn-arrow-slide {
  0% {
    transform: translateX(0);
  }
  49.9% {
    transform: translateX(200%);
  }
  50% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * c-cv1
 * CV
 */
.c-cv1 {
  position: relative;
  z-index: 2;
  background: var(--dark-gray);
}

.c-cv1__inner {
  padding-top: 3.4375rem;
  padding-bottom: 2.5rem;
}

.c-cv1__btn {
  margin-top: 1.5625rem;
}

@media all and (min-width: 1024px) {
  .c-cv1__inner {
    padding-top: 12.5rem;
    padding-bottom: 0;
  }
  .c-cv1__container {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 9.6875rem;
  }
  .c-cv1__btn {
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}
/**
 * c-form1
 * フォームのスタイル
 */
.c-form1 input[type=text],
.c-form1 input[type=number],
.c-form1 input[type=email],
.c-form1 input[type=password],
.c-form1 input[type=tel],
.c-form1 input[type=date],
.c-form1 textarea {
  display: block;
  width: 100%;
  padding: 0.5em;
  border: 1px solid #aaa;
  border-radius: 0;
  font-size: 16px;
  -webkit-appearance: none;
}
.c-form1 input[type=text]::-moz-placeholder, .c-form1 input[type=number]::-moz-placeholder, .c-form1 input[type=email]::-moz-placeholder, .c-form1 input[type=password]::-moz-placeholder, .c-form1 input[type=tel]::-moz-placeholder, .c-form1 input[type=date]::-moz-placeholder, .c-form1 textarea::-moz-placeholder {
  color: #ccc;
}
.c-form1 input[type=text]::placeholder,
.c-form1 input[type=number]::placeholder,
.c-form1 input[type=email]::placeholder,
.c-form1 input[type=password]::placeholder,
.c-form1 input[type=tel]::placeholder,
.c-form1 input[type=date]::placeholder,
.c-form1 textarea::placeholder {
  color: #ccc;
}
.c-form1 textarea {
  min-height: 12em;
}
.c-form1 label:has(> input[type=checkbox]) {
  display: flex;
  padding-right: 1em;
  padding-left: 1.8em;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.c-form1 label:has(> input[type=checkbox])::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #aaa;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.c-form1 label:has(> input[type=checkbox])::after {
  content: "";
  display: block;
  opacity: 0;
  width: 0.5em;
  height: 0.8em;
  border-right: 0.15em solid var(--black);
  border-bottom: 0.15em solid var(--black);
  position: absolute;
  top: 0.3em;
  left: 0.35em;
  transform: rotate(45deg);
  transition: opacity 0.3s;
}
.c-form1 label:has(> input[type=checkbox]:checked)::after {
  opacity: 1;
}
.c-form1 label:has(> input[type=checkbox]:focus)::before {
  outline: 2px solid -webkit-focus-ring-color;
  outline: 2px solid #39f;
  outline-offset: 2px;
}
.c-form1 input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.c-form1 input[type=submit],
.c-form1 input[type=button] {
  display: grid;
  width: 100%;
  max-width: 15rem;
  min-height: 3.75rem;
  border: none;
  border-radius: 0.3125rem;
  place-items: center;
  transition: opacity var(--duration);
  background: var(--red);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none;
  color: white;
}
.c-form1 input[type=submit]:focus-visible,
.c-form1 input[type=button]:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .c-form1 input[type=submit]:hover,
  .c-form1 input[type=button]:hover {
    opacity: 0.7;
  }
}

.c-form1__fieldset + .c-form1__fieldset {
  margin-top: 1.5625rem;
}

.c-form1__legend {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 0.625rem;
}

.c-form1__required {
  padding: 0 0.3125rem 0.0625rem;
  background: var(--red);
  font-size: 0.625rem;
  color: white;
}

.c-form1__inputs {
  margin-top: 0.5rem;
}

.c-form1__request {
  margin-top: 1.875rem;
}
.c-form1__request label:has(> input[type=checkbox])::before {
  background: #aaa;
}

.c-form1__agree {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.8125rem;
  margin-inline: auto;
  font-size: 0.875rem;
}

.c-form1__btns {
  margin-top: 0.9375rem;
}
.c-form1__btns input {
  margin-inline: auto;
}
.c-form1__btns input + input {
  margin-top: 0.625rem;
}

@media all and (min-width: 744px) {
  .c-form1 textarea {
    min-height: 15em;
  }
  .c-form1 input[type=submit],
  .c-form1 input[type=button] {
    max-width: 18.75rem;
    min-height: 5rem;
  }
  .c-form1__fieldset + .c-form1__fieldset {
    margin-top: 2.1875rem;
  }
  .c-form1__request {
    margin-top: 2.1875rem;
    font-size: 1.25rem;
  }
  .c-form1__agree {
    font-size: 1rem;
  }
  .c-form1__btns {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
  }
  .c-form1__btns input {
    margin-inline: 0;
  }
  .c-form1__btns input + input {
    margin-top: 0;
  }
}
/**
 * c-head1
 * 見出し
 */
.c-head1__en {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.c-head1__ja {
  font-size: 2rem;
  margin-top: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.c-head1__ja.-mt-narrow {
  margin-top: 0.625rem;
}
.c-head1__ja.-small {
  margin-top: 1.25rem;
  font-size: 1.75rem;
  line-height: 1.3;
}
.c-head1__ja.-smaller {
  margin-top: 0.625rem;
  font-size: 1.625rem;
}

.c-head1__txt {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

@media all and (min-width: 744px) {
  .c-head1__en {
    font-size: 0.875rem;
  }
  .c-head1__ja {
    margin-top: 1.875rem;
    font-size: 3.4375rem;
  }
  .c-head1__ja.-small {
    margin-top: 1.5625rem;
    font-size: 2.375rem;
    line-height: 1.5;
  }
  .c-head1__ja.-pc-small, .c-head1__ja.-smaller {
    font-size: 2.5rem;
  }
  .c-head1__ja.-smaller {
    margin-top: 1.875rem;
  }
  .c-head1__txt {
    margin-top: 0.3125rem;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .c-head1__ja {
    font-size: 2.375rem;
  }
  .c-head1__ja.-small {
    font-size: 1.625rem;
  }
  .c-head1__ja.-pc-small {
    font-size: 1.75rem;
  }
}
/**
 * c-ico
 * SVGアイコン
 */
.c-ico::before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  transition: var(--duration);
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.c-ico.-arrow1::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 17 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 4.95801C1.08579 4.95801 0.75 5.29379 0.75 5.70801C0.75 6.12222 1.08579 6.45801 1.5 6.45801V5.70801V4.95801ZM16.0303 6.23834C16.3232 5.94544 16.3232 5.47057 16.0303 5.17768L11.2574 0.404707C10.9645 0.111814 10.4896 0.111814 10.1967 0.404707C9.90381 0.6976 9.90381 1.17247 10.1967 1.46537L14.4393 5.70801L10.1967 9.95065C9.90381 10.2435 9.90381 10.7184 10.1967 11.0113C10.4896 11.3042 10.9645 11.3042 11.2574 11.0113L16.0303 6.23834ZM1.5 5.70801V6.45801H15.5V5.70801V4.95801H1.5V5.70801Z" fill="black"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 17 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 4.95801C1.08579 4.95801 0.75 5.29379 0.75 5.70801C0.75 6.12222 1.08579 6.45801 1.5 6.45801V5.70801V4.95801ZM16.0303 6.23834C16.3232 5.94544 16.3232 5.47057 16.0303 5.17768L11.2574 0.404707C10.9645 0.111814 10.4896 0.111814 10.1967 0.404707C9.90381 0.6976 9.90381 1.17247 10.1967 1.46537L14.4393 5.70801L10.1967 9.95065C9.90381 10.2435 9.90381 10.7184 10.1967 11.0113C10.4896 11.3042 10.9645 11.3042 11.2574 11.0113L16.0303 6.23834ZM1.5 5.70801V6.45801H15.5V5.70801V4.95801H1.5V5.70801Z" fill="black"/></svg>');
}
.c-ico.-check1::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.4536 1.56543L5.08154 7.99902L0.463379 3.90918L1.45752 2.78613L5.08838 6.00098L11.4673 0.43457L12.4536 1.56543Z" fill="black"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.4536 1.56543L5.08154 7.99902L0.463379 3.90918L1.45752 2.78613L5.08838 6.00098L11.4673 0.43457L12.4536 1.56543Z" fill="black"/></svg>');
}

/**
 * c-links1
 * 下層ページのリンク
 */
.c-links1 {
  background: white;
}

.c-links1__inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.c-links1__list-item + .c-links1__list-item {
  margin-top: 1.25rem;
}

.c-links1__list-link {
  display: grid;
  min-height: 6.25rem;
  padding: 1.25rem 0.9375rem 1.25rem 1.875rem;
  border-radius: 0.3125rem;
  align-items: center;
  grid-template-columns: 1fr auto;
  background: var(--black);
}
.c-links1__list-link:focus-visible .c-links1__list-arrow {
  animation: btn-arrow-slide 0.3s ease forwards;
}
@media (any-hover: hover) {
  .c-links1__list-link:hover .c-links1__list-arrow {
    animation: btn-arrow-slide 0.3s ease forwards;
  }
}

.c-links1__list-en {
  font-size: 0.875rem;
}

.c-links1__list-ja {
  display: block;
  font-size: 1.25rem;
}

.c-links1__list-ico {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.3125rem;
  overflow: clip;
  place-items: center;
  background: var(--red);
}

.c-links1__list-arrow {
  width: 1.0625rem;
  height: 0.75rem;
  color: white;
}

@media all and (min-width: 744px) {
  .c-links1__inner {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
  .c-links1__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .c-links1__list:has(> .c-links1__list-item:only-child) {
    display: block;
  }
  .c-links1__list:has(> .c-links1__list-item:only-child) .c-links1__list-item {
    max-width: 33.9375rem;
    margin-inline: auto;
  }
  .c-links1__list:has(> .c-links1__list-item:first-child:nth-last-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-links1__list-item + .c-links1__list-item {
    margin-top: 0;
  }
  .c-links1__list-link {
    min-height: 9.375rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.3125rem;
  }
  .c-links1__list-en {
    font-size: 1rem;
  }
  .c-links1__list-ja {
    font-size: 1.5rem;
  }
  .c-links1__list-ico {
    display: grid;
    width: 1.5625rem;
    height: 1.5625rem;
    border-radius: 0.3125rem;
    overflow: clip;
    place-items: center;
    background: var(--red);
  }
  .c-links1__list-arrow {
    width: 0.875rem;
    height: 0.625rem;
  }
}
@keyframes links-arrow-slide {
  0% {
    transform: translateX(0);
  }
  49.9% {
    transform: translateX(200%);
  }
  50% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * c-pager1
 * 一覧用ページャー
 */
.c-pager1 {
  margin-top: 3.125rem;
}

.c-pager1__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
.c-pager1__list a,
.c-pager1__list span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid;
  border-radius: 50%;
  place-items: center;
  font-size: 0.875rem;
  text-decoration: none;
}
.c-pager1__list .between,
.c-pager1__list .first,
.c-pager1__list .prev,
.c-pager1__list .next,
.c-pager1__list .last {
  width: 1.25rem;
  border: none;
}
.c-pager1__list .current {
  background: var(--black);
  color: white;
}

@media all and (min-width: 744px) {
  .c-pager1 {
    margin-top: 5rem;
  }
  .c-pager1__list {
    gap: 1.25rem;
  }
}
/**
 * c-pager2
 * 一覧用ページャー
 */
.c-pager2 {
  display: grid;
  margin-top: 3.125rem;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.625rem 1.25rem;
}
.c-pager2 a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem;
  font-size: 0.875rem;
}

.c-pager2__prev {
  margin-inline: auto 0;
  text-align: right;
}

.c-pager2__back a {
  display: grid;
  place-items: center;
  background: var(--black);
  color: white;
}

@media all and (min-width: 744px) {
  .c-pager2 {
    margin-top: 5rem;
    gap: 1.875rem;
  }
  .c-pager2 a {
    padding: 0.625rem 1.875rem;
    font-size: 1rem;
  }
}
/**
 * c-single1
 * お客様の声個別まるごと
 */
.c-single1 {
  background: white;
}

.c-single1__inner {
  padding-top: 4.6875rem;
}

.c-single1__en {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}

.c-single1__ja {
  margin-top: 1.25rem;
  font-size: 1.625rem;
  line-height: 1.3461538462;
}

.c-single1__img {
  margin: 1.5625rem -1.875rem 0;
}

.c-single1__name {
  margin-top: 1.5625rem;
  line-height: 1.875;
}

.c-single1__sub {
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

.c-single1__txt {
  margin-top: 2.5rem;
  line-height: 1.75;
}
.c-single1__txt + .c-single1__txt {
  margin-top: 1.5625rem;
}

.c-single1__dl {
  margin-top: 3.4375rem;
  padding: 1.5625rem 1.25rem 1.25rem;
  background: var(--black);
}

.c-single1__dt {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 1.5625rem 0.3125rem;
  border-bottom: 1px solid white;
  font-size: 1.25rem;
  text-align: center;
}

.c-single1__dd {
  margin-top: 0.625rem;
}

.c-single1__list {
  font-size: 0.875rem;
  line-height: 1.7857142857;
}

.c-single1__list-item {
  padding-left: 0.9375rem;
  position: relative;
}
.c-single1__list-item::before {
  content: "・";
  position: absolute;
  top: 0.0625rem;
  left: 0;
}
.c-single1__list-item + .c-single1__list-item {
  margin-top: 0.625rem;
}

.c-single1__approach {
  margin-top: 3.75rem;
}

.c-single1__approach-set {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  position: relative;
}
.c-single1__approach-set.-result {
  padding-top: 4.0625rem;
}
.c-single1__approach-set.-result::before {
  background: #ffd3d6;
}
.c-single1__approach-set.-result::after {
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 5rem;
  height: 1.5625rem;
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  background: #f4f4f4;
}
.c-single1__approach-set::before {
  content: "";
  width: calc(100% + 3.75rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -1.875rem;
  background: #f4f4f4;
}

.c-single1__approach-head {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  text-align: center;
}

.c-single1__approach-list {
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
}

.c-single1__approach-item {
  padding-left: 0.9375rem;
  position: relative;
  font-size: 0.875rem;
}
.c-single1__approach-item + .c-single1__approach-item {
  margin-top: 0.3125rem;
}
.c-single1__approach-item::before {
  content: "・";
  position: absolute;
  top: 0.0625rem;
  left: 0;
}

.c-single1__archive {
  margin: 7.5rem -1.875rem 0;
}

@media all and (min-width: 744px) {
  .c-single1__inner {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
  .c-single1__container {
    max-width: 62.5rem;
    margin-inline: auto;
  }
  .c-single1__en {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
  }
  .c-single1__ja {
    margin-top: 1.5625rem;
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .c-single1__img {
    margin: 1.5625rem 0 0;
  }
  .c-single1__name {
    margin-top: 1.875rem;
  }
  .c-single1__sub {
    margin-top: 0.3125rem;
    margin-bottom: 1.875rem;
  }
  .c-single1__txt {
    line-height: 2;
  }
  .c-single1__txt + .c-single1__txt {
    margin-top: 0;
  }
  .c-single1__dl {
    display: grid;
    margin-top: 4.6875rem;
    padding: 1.25rem 0;
    grid-template-columns: auto 1fr;
  }
  .c-single1__dt {
    display: grid;
    width: 14.375rem;
    margin-inline: 0;
    padding: 0;
    border-right: 1px solid white;
    border-bottom: none;
    place-items: center;
  }
  .c-single1__dd {
    margin-top: 0;
    padding-right: 1.875rem;
    padding-left: 2.5rem;
  }
  .c-single1__list {
    font-size: 1rem;
    line-height: 2.4375;
  }
  .c-single1__list-item {
    padding-left: 1.25rem;
  }
  .c-single1__list-item + .c-single1__list-item {
    margin-top: 0.1875rem;
  }
  .c-single1__approach {
    display: grid;
    margin-top: 5rem;
    grid-template-columns: 1fr calc(50% + 1.5625rem);
  }
  .c-single1__approach-set {
    padding-top: 1.875rem;
    padding-bottom: 2.8125rem;
  }
  .c-single1__approach-set.-result {
    padding: 1.875rem 0 2.8125rem 5rem;
  }
  .c-single1__approach-set.-result::before {
    right: auto;
    left: 0;
  }
  .c-single1__approach-set.-result::after {
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    width: 3.125rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    translate: 0;
  }
  .c-single1__approach-set::before {
    content: "";
    width: 9999px;
    top: 0;
    right: 0;
    left: auto;
  }
  .c-single1__approach-list {
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
  }
  .c-single1__approach-item {
    padding-left: 0.9375rem;
    position: relative;
    font-size: 1.125rem;
  }
  .c-single1__approach-item + .c-single1__approach-item {
    margin-top: 0.3125rem;
  }
  .c-single1__archive {
    margin: 5rem 0 0;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .c-single1__dt {
    width: 8.75rem;
  }
  .c-single1__dd {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .c-single1__approach {
    grid-template-columns: 1fr calc(50% + 1.5625rem);
  }
  .c-single1__approach-set.-result {
    padding: 1.875rem 0 2.8125rem 3.75rem;
  }
  .c-single1__approach-set.-result::after {
    width: 2.5rem;
  }
}
/**
 * Layout
 */
.u-inner {
  padding-right: calc(30 / 16 * 1rem);
  padding-left: calc(30 / 16 * 1rem);
}
@media all and (min-width: 744px) {
  .u-inner {
    padding-right: calc(30 / 16 * 1rem);
    padding-left: calc(30 / 16 * 1rem);
  }
}
@media all and (min-width: 1024px) {
  .u-inner {
    width: 100%;
    margin-inline: auto;
    max-width: calc(1166 / 16 * 1rem);
    padding-right: calc(30 / 16 * 1rem);
    padding-left: calc(30 / 16 * 1rem);
  }
}

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

@media all and (min-width: 744px) {
  .u-hidden-md {
    display: none !important;
  }
}

@media all and not (min-width: 744px) {
  .u-hidden-max-md {
    display: none !important;
  }
}

.u-alpha {
  transition: opacity var(--duration);
}
.u-alpha:focus-visible {
  opacity: 0.7;
}
@media (any-hover: hover) {
  .u-alpha:hover {
    opacity: 0.7;
  }
}

/**
 * Typography
 */
.u-font-bold {
  font-weight: 700;
}

.u-font-black {
  font-weight: 900;
}

.u-font-en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  line-height: 1;
  font-style: normal;
}

.u-text-black {
  color: var(--black);
}

.u-text-gray {
  color: var(--gray);
}

.u-text-red {
  color: var(--red);
}

.u-text-white {
  color: white;
}

.u-leading-trim {
  margin-block: calc((1em - 1lh) / 2);
}
.u-leading-trim[lang=en] {
  margin-block: calc((1cap - 1lh) / 2);
}

/**
 * p-index-wrapper
 */
.p-index-wrapper {
  position: relative;
}

.p-index-wrapper__border {
  width: 100%;
  height: 100svh;
  border: 10px solid white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.p-index-wrapper__bg,
.p-index-wrapper__cover {
  height: 100vh;
  inset: 0;
  position: fixed;
  z-index: 0;
  pointer-events: none;
}
.p-index-wrapper__bg img,
.p-index-wrapper__cover img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-index-wrapper__bg.is-fixed,
.p-index-wrapper__cover.is-fixed {
  position: fixed;
  transform: translateZ(0);
  will-change: transform;
}

.p-index-wrapper__cover {
  z-index: 1;
}

/**
 * p-index-kv
 */
.p-index-kv {
  height: 100svh;
  position: relative;
  z-index: 1;
}

.p-index-kv__container {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  translate: -50% -50%;
  text-align: center;
  color: white;
}

.p-index-kv__logo {
  width: 3.375rem;
  margin-inline: auto;
}

.p-index-kv__copy {
  margin-top: 0.9375rem;
  font-size: 2.6875rem;
  line-height: 0.8837209302;
  letter-spacing: 0;
}

.p-index-kv__txt {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

@media all and (min-width: 744px) {
  .p-index-kv__container {
    display: grid;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 5.625rem;
    grid-template-columns: auto 1fr;
    gap: 0 2.1875rem;
  }
  .p-index-kv__logo {
    width: 6.875rem;
    margin-inline: 0;
    grid-area: 1/1/3/2;
  }
  .p-index-kv__copy {
    margin-top: 0;
    grid-area: 1/2/2/3;
    font-size: 4rem;
    line-height: 1;
    white-space: nowrap;
  }
  .p-index-kv__txt {
    margin-top: 0;
    grid-area: 2/2/3/3;
    font-size: 1.25rem;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-index-kv__container {
    gap: 0 1.5625rem;
  }
  .p-index-kv__logo {
    width: 6.25rem;
  }
  .p-index-kv__copy {
    font-size: 3rem;
  }
  .p-index-kv__txt {
    font-size: 1.125rem;
  }
}
/**
 * p-index-about
 */
.p-index-about {
  position: relative;
  z-index: 0;
}

.p-index-about__inner {
  padding-top: 5rem;
  padding-bottom: 18.75rem;
}

.p-index-about__txts {
  margin-top: 2.8125rem;
}

.p-index-about__txt {
  line-height: 1.4375;
}
.p-index-about__txt + .p-index-about__txt {
  margin-top: 1.75rem;
}

.p-index-about__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.75rem;
  margin-inline: auto;
}

@media all and (min-width: 744px) {
  .p-index-about__inner {
    padding-top: 33.75rem;
    padding-bottom: 18.75rem;
  }
  .p-index-about__container {
    display: grid;
    grid-template-columns: 25rem 1fr;
    gap: 0 2.5rem;
  }
  .p-index-about__txts {
    margin-top: 2.8125rem;
  }
  .p-index-about__txt {
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
  .p-index-about__txt + .p-index-about__txt {
    margin-top: 2.5rem;
  }
  .p-index-about__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 6.25rem;
    margin-inline: auto;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-index-about__container {
    grid-template-columns: 17.5rem 1fr;
    gap: 0 1.875rem;
  }
}
/**
 * p-index-profile
 */
.p-index-profile {
  position: relative;
  z-index: 2;
}
.p-index-profile::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0) 100%);
}

.p-index-profile__inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 1;
}

.p-index-profile__img {
  width: 12.5rem;
  margin-top: 1.875rem;
  margin-inline: auto;
}

.p-index-profile__profile {
  margin-top: 2.8125rem;
}

.p-index-profile__role {
  font-size: 0.875rem;
}

.p-index-profile__name {
  font-size: 2rem;
}

.p-index-profile__txts {
  margin-top: 0.625rem;
}

.p-index-profile__txt + .p-index-profile__txt {
  margin-top: 1.5625rem;
}

.p-index-profile__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.4375rem;
  margin-inline: auto;
}

@media all and (min-width: 744px) {
  .p-index-profile__inner {
    padding-top: 20.625rem;
    padding-bottom: 6.25rem;
  }
  .p-index-profile__container {
    display: grid;
    max-width: 61.75rem;
    margin-inline: auto;
    grid-template-columns: 1fr auto;
    gap: 0 3.125rem;
  }
  .p-index-profile__head {
    grid-area: 1/1/2/3;
  }
  .p-index-profile__img {
    width: 20.75rem;
    margin-top: 1.5625rem;
    margin-inline: 0;
    grid-area: 3/2/4/3;
  }
  .p-index-profile__profile {
    margin-top: 1.875rem;
    grid-area: 2/1/3/3;
  }
  .p-index-profile__role {
    font-size: 0.9375rem;
  }
  .p-index-profile__name {
    font-size: 3.125rem;
  }
  .p-index-profile__txts {
    margin-top: 1.5625rem;
  }
  .p-index-profile__txt {
    grid-area: 3/1/4/2;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
  .p-index-profile__txt + .p-index-profile__txt {
    margin-top: 0;
  }
  .p-index-profile__btn {
    margin-top: 5rem;
    grid-area: 4/1/5/3;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-index-profile__container {
    gap: 0 1.875rem;
  }
  .p-index-profile__img {
    width: 15rem;
  }
}
/**
 * p-index-message
 */
.p-index-message {
  padding-top: 14.0625rem;
  padding-bottom: 16.25rem;
  position: relative;
  z-index: 2;
}

.p-index-message__txt {
  font-size: 2.875rem;
  line-height: 1.3;
  text-align: center;
}

@media all and (min-width: 744px) {
  .p-index-message {
    padding-top: 17.1875rem;
    padding-bottom: 31.25rem;
  }
  .p-index-message__txt {
    font-size: 3.75rem;
  }
}
/**
 * p-index-issue
 */
.p-index-issue {
  position: relative;
  z-index: 2;
}
.p-index-issue::before {
  content: "";
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
}

.p-index-issue__inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 1;
}

.p-index-issue__wrapper {
  margin-top: 1.875rem;
  padding-bottom: 6.25rem;
}

.p-index-issue__sec {
  padding: 2.1875rem 1.25rem 1.875rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.3125rem;
  background: white;
}

.p-index-issue__num {
  position: relative;
  font-size: 1.625rem;
}
.p-index-issue__num::before {
  content: "";
  width: 0.3125rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1.25rem;
  background: var(--red);
}

.p-index-issue__sec-head {
  margin-top: 0.3125rem;
  font-size: 1.75rem;
}

.p-index-issue__img {
  width: 6.875rem;
  margin-top: 0.625rem;
  margin-inline: auto;
}

.p-index-issue__txts {
  margin-top: 1.5625rem;
}

.p-index-issue__lead {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.p-index-issue__list {
  margin-top: 1.25rem;
}

.p-index-issue__list-item {
  padding-left: 0.9375rem;
  position: relative;
  font-size: 0.875rem;
}
.p-index-issue__list-item + .p-index-issue__list-item {
  margin-top: 0.1875rem;
}
.p-index-issue__list-item::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  position: absolute;
  top: 0.4375rem;
  left: 0;
  background: var(--red);
}

@media all and (min-width: 744px) {
  .p-index-issue__inner {
    padding-top: 13.125rem;
    padding-bottom: 11.875rem;
  }
  .p-index-issue__wrapper {
    margin-top: 1.875rem;
    padding-bottom: 50vh;
  }
  .p-index-issue__sec {
    padding: 1.25rem 1.25rem 1.875rem;
  }
  .p-index-issue__hgroup {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 0 1.25rem;
  }
  .p-index-issue__num {
    font-size: 3.75rem;
  }
  .p-index-issue__num::before {
    width: 0.3125rem;
    left: -1.25rem;
  }
  .p-index-issue__sec-head {
    margin-top: 0;
    font-size: 2.8125rem;
  }
  .p-index-issue__container {
    display: flex;
    margin-top: 1.5625rem;
    padding-right: 5.9375rem;
    padding-left: 5.9375rem;
    flex-direction: row-reverse;
    gap: 0 1.875rem;
  }
  .p-index-issue__img {
    width: 14.375rem;
    margin-top: -3.75rem;
    margin-inline: 0;
  }
  .p-index-issue__txts {
    margin-top: 0;
    flex: 1;
  }
  .p-index-issue__lead {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .p-index-issue__list {
    margin-top: 1.25rem;
  }
  .p-index-issue__list-item {
    padding-left: 0.9375rem;
    font-size: 1rem;
  }
  .p-index-issue__list-item + .p-index-issue__list-item {
    margin-top: 0.625rem;
  }
  .p-index-issue__list-item::before {
    top: 0.625rem;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-index-issue__num {
    font-size: 2.625rem;
  }
  .p-index-issue__sec-head {
    font-size: 2rem;
  }
  .p-index-issue__container {
    padding-right: 1.875rem;
    padding-left: 4.375rem;
  }
  .p-index-issue__img {
    width: 12.5rem;
  }
}
/**
 * p-index-message2
 */
.p-index-message2 {
  position: relative;
  z-index: 2;
  overflow: clip;
  height: 36.7dvw;
}
.p-index-message2 img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.9;
}

/**
 * p-index-service
 */
.p-index-service {
  position: relative;
  z-index: 2;
}
.p-index-service::before {
  content: "";
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
}

.p-index-service__inner {
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.p-index-service__btn {
  margin-top: 3.125rem;
}

.p-index-service__content {
  margin-top: 3.125rem;
}

.p-index-service__sec {
  padding-bottom: 1.875rem;
  position: relative;
}
.p-index-service__sec::before {
  content: "";
  width: 1px;
  height: calc(100% - 1.5625rem);
  position: absolute;
  top: 1.5625rem;
  left: 0.625rem;
  background: var(--red);
}

.p-index-service__num {
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.8125rem;
  height: 1.5625rem;
  padding: 0.125rem 0.625rem 0;
  border: 1px solid var(--red);
  border-radius: calc(infinity * 1px);
  position: relative;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  font-size: 0.625rem;
  line-height: 1;
}
.p-index-service__num::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  translate: 0 -0.0625rem;
  background: var(--red);
}

.p-index-service__sec-head {
  margin-top: 1.5625rem;
  padding-left: 1.875rem;
  font-size: 1.75rem;
  line-height: 1.1;
}

.p-index-service__sec-sub {
  font-size: 1.5rem;
}

.p-index-service__list {
  margin-top: 1.25rem;
  padding-left: 1.875rem;
}

.p-index-service__list-item {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0 0.3125rem;
}
.p-index-service__list-item + .p-index-service__list-item {
  margin-top: 0.625rem;
}

.p-index-service__list-ico {
  display: grid;
  width: 0.9375rem;
  height: 0.9375rem;
  place-items: center;
  background: var(--red);
}

.p-index-service__list-check {
  width: 0.6875rem;
  height: 0.375rem;
  color: white;
}

.p-index-service__sec-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5625rem 0 0 auto;
}

@media all and (min-width: 744px) {
  .p-index-service__inner {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
  .p-index-service__container {
    display: grid;
    grid-template-columns: 1fr 32.8125rem;
    gap: 0 3.125rem;
  }
  .p-index-service__btn {
    margin-top: 3.125rem;
  }
  .p-index-service__content {
    margin-top: 3.125rem;
  }
  .p-index-service__sec {
    padding-bottom: 5.625rem;
  }
  .p-index-service__sec::before {
    left: 0.9375rem;
  }
  .p-index-service__sec-head {
    margin-top: 3.125rem;
    padding-left: 5rem;
    font-size: 2.375rem;
  }
  .p-index-service__sec-sub {
    font-size: 1.875rem;
  }
  .p-index-service__list {
    margin-top: 1.875rem;
    padding-left: 5rem;
  }
  .p-index-service__list-item {
    gap: 0 0.75rem;
    font-size: 1.125rem;
  }
  .p-index-service__list-item + .p-index-service__list-item {
    margin-top: 0.625rem;
  }
  .p-index-service__list-ico {
    width: 1rem;
    height: 1rem;
  }
  .p-index-service__list-check {
    width: 0.6875rem;
    height: 0.375rem;
    color: white;
  }
  .p-index-service__sec-btn {
    margin: 1.5625rem 7.8125rem 0 auto;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-index-service__container {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.875rem;
  }
  .p-index-service__sec::before {
    left: 0.625rem;
  }
  .p-index-service__sec-head {
    padding-left: 1.875rem;
    font-size: 1.625rem;
  }
  .p-index-service__sec-sub {
    font-size: 1.375rem;
  }
  .p-index-service__list {
    margin-top: 1.875rem;
    padding-left: 1.875rem;
  }
  .p-index-service__list-item {
    gap: 0 0.375rem;
    font-size: 1rem;
  }
  .p-index-service__list-item + .p-index-service__list-item {
    margin-top: 0.625rem;
  }
  .p-index-service__list-ico {
    width: 1rem;
    height: 1rem;
  }
  .p-index-service__list-check {
    width: 0.6875rem;
    height: 0.375rem;
    color: white;
  }
  .p-index-service__sec-btn {
    margin: 1.5625rem 0 0 auto;
  }
}
/**
 * p-index-case-studies
 */
.p-index-case-studies {
  position: relative;
  z-index: 2;
  background: white;
}

.p-index-case-studies__inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}

.p-index-case-studies__archive {
  margin-top: 1.25rem;
}

.p-index-case-studies__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.875rem;
  margin-inline: auto;
}

@media all and (min-width: 744px) {
  .p-index-case-studies__inner {
    padding-top: 9.375rem;
    padding-bottom: 12.5rem;
  }
  .p-index-case-studies__archive {
    margin-top: 3.125rem;
  }
  .p-index-case-studies__btn {
    margin-top: 3.125rem;
  }
}
/**
 * p-about-message
 */
.p-about-message {
  position: relative;
  background: white;
}

.p-about-message__inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-about-message__imgs {
  width: 12.5rem;
  margin-inline: auto;
  position: relative;
}

.p-about-message__deco {
  width: 11.25rem;
  position: absolute;
  right: -4.0625rem;
  bottom: -1.25rem;
}

.p-about-message__txts {
  margin-top: 4.0625rem;
}

.p-about-message__head {
  font-size: 2rem;
}

.p-about-message__txt {
  margin-top: 2.1875rem;
}
.p-about-message__txt + .p-about-message__txt {
  margin-top: 1.5625rem;
}

.p-about-message__role {
  margin-top: 2.1875rem;
  font-size: 0.9375rem;
  text-align: right;
}

.p-about-message__name {
  font-size: 1.875rem;
  text-align: right;
}

.p-about-message__bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media all and (min-width: 744px) {
  .p-about-message__inner {
    padding-top: 10.625rem;
    padding-bottom: 19.375rem;
  }
  .p-about-message__container {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: start;
    gap: 0 5rem;
  }
  .p-about-message__imgs {
    width: 26.25rem;
    margin-inline: 0;
  }
  .p-about-message__deco {
    width: 16.875rem;
    right: -5.3125rem;
    bottom: -2.8125rem;
  }
  .p-about-message__txts {
    margin-top: 0;
    flex: 1;
  }
  .p-about-message__head {
    font-size: 3rem;
  }
  .p-about-message__txt {
    margin-top: 3.75rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
  .p-about-message__txt + .p-about-message__txt {
    margin-top: 1.875rem;
  }
  .p-about-message__role {
    margin-top: 3.125rem;
    text-align: left;
  }
  .p-about-message__name {
    text-align: left;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-about-message__inner {
    padding-bottom: 11.875rem;
  }
  .p-about-message__container {
    gap: 0 1.875rem;
  }
  .p-about-message__imgs {
    width: 15.625rem;
  }
  .p-about-message__deco {
    width: 10rem;
    right: -3.125rem;
    bottom: -1.875rem;
  }
  .p-about-message__head {
    font-size: 2.5rem;
  }
}
/**
 * .p-about-philosophy
 */
.p-about-philosophy {
  position: relative;
}
.p-about-philosophy::before {
  content: "";
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
}
.p-about-philosophy::after {
  content: "";
  clip-path: polygon(0 37%, 100% 0, 100% 100%, 0% 100%);
  width: 100%;
  height: 100%;
  height: 19.6875rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
}

.p-about-philosophy__inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 1;
}

.p-about-philosophy__sec {
  margin-top: 2.1875rem;
}
.p-about-philosophy__sec + .p-about-philosophy__sec {
  margin-top: 0;
}
.p-about-philosophy__sec:not(:last-of-type) {
  position: relative;
}
.p-about-philosophy__sec:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0.625rem;
  background: var(--red);
}

.p-about-philosophy__sec-head {
  padding: 0.5rem 1.5625rem 0.75rem;
  background: var(--red);
}

.p-about-philosophy__sec-en {
  position: relative;
  font-size: 1.375rem;
}
.p-about-philosophy__sec-en::before {
  content: "";
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: -0.9375rem;
  background: white;
}

.p-about-philosophy__sec-ja {
  display: block;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

.p-about-philosophy__container {
  padding: 2.8125rem 0 3.125rem 1.5625rem;
}

.p-about-philosophy__lead-en {
  font-size: 2.25rem;
  line-height: 1.1944444444;
}
.p-about-philosophy__lead-en + .p-about-philosophy__lead {
  margin-top: 0.625rem;
}

.p-about-philosophy__lead {
  font-size: 1.75rem;
}

.p-about-philosophy__txts {
  margin-top: 1.25rem;
}

.p-about-philosophy__txt {
  line-height: 1.75;
}
.p-about-philosophy__txt + .p-about-philosophy__txt {
  margin-top: 0.9375rem;
}

.p-about-philosophy__figure {
  max-width: 18.125rem;
  margin-top: 3.125rem;
  margin-inline: auto;
}

.p-about-philosophy__list {
  margin-top: 1.875rem;
}

.p-about-philosophy__list-item {
  display: grid;
  width: 11.875rem;
  margin-inline: auto;
  padding-bottom: 0.3125rem;
  border: 1px solid var(--red);
  border-radius: 50%;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
  aspect-ratio: 1/1;
}
.p-about-philosophy__list-item + .p-about-philosophy__list-item {
  margin-top: -1.25rem;
}

.p-about-philosophy__list-head {
  padding-left: 0.5em;
  align-self: end;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}

.p-about-philosophy__list-txt {
  align-self: start;
  font-size: 0.75rem;
  line-height: 1.3333333333;
}

@media all and not (min-width: 744px) {
  .p-about-philosophy__lead.-sp-center {
    text-align: center;
  }
}
@media all and (min-width: 744px) {
  .p-about-philosophy::after {
    clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
    height: 32.5rem;
    background: white;
  }
  .p-about-philosophy__inner {
    padding-top: 12.5rem;
    padding-bottom: 8.75rem;
  }
  .p-about-philosophy__sec {
    margin-top: 5rem;
  }
  .p-about-philosophy__sec:not(:last-of-type)::before {
    left: 1.25rem;
  }
  .p-about-philosophy__sec-head {
    padding: 0.3125rem 1.75rem 0.5rem;
  }
  .p-about-philosophy__sec-en {
    position: relative;
    font-size: 1.25rem;
  }
  .p-about-philosophy__sec-en::before {
    top: 0.75rem;
    left: -0.9375rem;
  }
  .p-about-philosophy__sec-ja {
    display: inline;
    font-size: 1rem;
    line-height: 1;
  }
  .p-about-philosophy__container {
    padding: 6.25rem 0 10.9375rem 5rem;
  }
  .p-about-philosophy__container:has(.p-about-philosophy__txts) {
    display: grid;
    grid-template-columns: 26.875rem 1fr;
  }
  .p-about-philosophy__lead-en {
    font-size: 3.125rem;
    line-height: 0.96;
  }
  .p-about-philosophy__lead-en + .p-about-philosophy__lead {
    margin-top: 1.875rem;
  }
  .p-about-philosophy__lead {
    font-size: 1.875rem;
  }
  .p-about-philosophy__txts {
    margin-top: 0;
  }
  .p-about-philosophy__txt {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
  .p-about-philosophy__txt + .p-about-philosophy__txt {
    margin-top: 1.875rem;
  }
  .p-about-philosophy__figure {
    max-width: 62.875rem;
  }
  .p-about-philosophy__list {
    display: flex;
    max-width: 46.875rem;
    margin-top: 2.1875rem;
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
    translate: -2.5rem 0;
  }
  .p-about-philosophy__list-item {
    display: block;
    width: 16.5rem;
    margin: 0 -0.9375rem;
    padding-top: 4.0625rem;
    padding-bottom: 0;
  }
  .p-about-philosophy__list-item + .p-about-philosophy__list-item {
    margin-top: 0;
  }
  .p-about-philosophy__list-item:nth-of-type(n + 4) {
    margin-top: -3.125rem;
  }
  .p-about-philosophy__list-head {
    font-size: 2.25rem;
  }
  .p-about-philosophy__list-txt {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1024px) ) {
  .p-about-philosophy__container {
    padding: 3.75rem 0 6.875rem 3.125rem;
  }
  .p-about-philosophy__container:has(.p-about-philosophy__txts) {
    display: grid;
    grid-template-columns: 16.25rem 1fr;
  }
  .p-about-philosophy__lead-en {
    font-size: 2.25rem;
  }
  .p-about-philosophy__lead {
    font-size: 1.375rem;
  }
  .p-about-philosophy__list {
    max-width: 31.25rem;
    translate: -1.25rem 0;
  }
  .p-about-philosophy__list-item + .p-about-philosophy__list-item {
    margin-top: 0;
  }
  .p-about-philosophy__list-item:nth-of-type(n + 3) {
    margin-top: -1.25rem;
  }
  .p-about-philosophy__list-item:nth-of-type(n + 5) {
    margin-top: -2.8125rem;
  }
  .p-about-philosophy__list-head {
    font-size: 2.25rem;
  }
  .p-about-philosophy__list-txt {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
/**
 * .p-about-company
 */
.p-about-company__inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}

.p-about-company__head {
  font-size: 1.75rem;
  text-align: center;
}

.p-about-company__dl {
  margin-top: 2.1875rem;
}

.p-about-company__set {
  padding: 1.5625rem 0;
  border-top: 1px dotted white;
  line-height: 1.25;
}
.p-about-company__set:last-of-type {
  padding-bottom: 0;
}

.p-about-company__dt.-justify {
  width: 3em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.p-about-company__dd {
  margin-top: 0.625rem;
}

@media all and (min-width: 744px) {
  .p-about-company__inner {
    padding-top: 6.25rem;
    padding-bottom: 19.375rem;
  }
  .p-about-company__head {
    font-size: 2rem;
  }
  .p-about-company__dl {
    max-width: 42.5rem;
    margin-top: 3.125rem;
    margin-inline: auto;
  }
  .p-about-company__set {
    display: grid;
    padding: 1.875rem 0;
    grid-template-columns: 10rem 1fr;
  }
  .p-about-company__dd {
    margin-top: 0;
  }
}
.p-service-coverage-wrapper {
  overflow: clip;
}

/**
 * p-service-coverage
 */
.p-service-coverage__inner {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  position: relative;
  z-index: 1;
}

.p-service-coverage__figure {
  margin: -1.875rem -0.625rem 0;
  position: relative;
}
.p-service-coverage__figure::before {
  content: "";
  width: 999%;
  height: 300%;
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: -1;
  rotate: -32deg;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.5);
}

.p-service-coverage__lead {
  margin: 2.8125rem -1em 0;
  margin-top: 2.8125rem;
  font-size: 2.0625rem;
  line-height: 1.2121212121;
  text-align: center;
}

@media all and (min-width: 744px) {
  .p-service-coverage__inner {
    padding-top: 3.125rem;
    padding-bottom: 12.5rem;
    position: relative;
    z-index: 1;
  }
  .p-service-coverage__container {
    position: relative;
  }
  .p-service-coverage__figure {
    width: 45.625rem;
    margin: -6.25rem 0 0 -0.9375rem;
  }
  .p-service-coverage__figure::before {
    top: 60%;
    z-index: -1;
  }
  .p-service-coverage__lead {
    margin: 2.8125rem 0 0;
    position: absolute;
    right: 0;
    bottom: 3.125rem;
    font-size: 2.8125rem;
    line-height: 1.3333333333;
    text-align: left;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1280px) ) {
  .p-service-coverage__inner {
    padding-top: 3.125rem;
    padding-bottom: 18.75rem;
    position: relative;
    z-index: 1;
  }
  .p-service-coverage__lead {
    bottom: -9.375rem;
  }
}
/**
 * p-service-service
 */
.p-service-service {
  position: relative;
}
.p-service-service::before {
  content: "";
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #d9d9d9;
}
.p-service-service + .p-service-service::after {
  content: "";
  width: calc(100% - 3.75rem);
  height: 1px;
  position: absolute;
  top: 0;
  left: 1.875rem;
  z-index: 1;
  background: #c8c9ca;
}

.p-service-service__inner {
  padding-top: 3.4375rem;
  padding-bottom: 3.75rem;
  position: relative;
  z-index: 1;
}

.p-service-service__container {
  display: grid;
  grid-template-columns: 1fr 9.375rem;
}

.p-service-service__list {
  margin-top: 1.875rem;
}

.p-service-service__list-item {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0 0.5rem;
}
.p-service-service__list-item + .p-service-service__list-item {
  margin-top: 0.3125rem;
}

.p-service-service__list-ico {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  background: var(--red);
}

.p-service-service__list-check {
  width: 0.875rem;
  height: 0.5rem;
  color: white;
}

.p-service-service__img {
  margin-top: 1.875rem;
}
.p-service-service__img.-mt-none {
  margin-top: 0;
}

.p-service-service__cards {
  margin-top: 1.875rem;
}

.p-service-service__sec {
  padding: 1.25rem 1.25rem 1.5625rem;
  border-radius: 0.3125rem;
  background: var(--black);
}
.p-service-service__sec + .p-service-service__sec {
  margin-top: 0.625rem;
}

.p-service-service__sec-head {
  font-size: 1.5rem;
}

.p-service-service__sec-list {
  margin-top: 0.3125rem;
}

.p-service-service__sec-item {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0 0.1875rem;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
.p-service-service__sec-item::before {
  content: "・";
  display: grid;
  width: 1em;
  place-items: center;
}

.p-service-service__sec-txt {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.p-service-service__desc {
  margin-top: 3.75rem;
  margin-right: -1em;
  line-height: 1.625;
}

.p-service-service__lead {
  margin-top: 1.875rem;
}

.p-service-service__txt {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
}
.p-service-service__txt + .p-service-service__txt {
  margin-top: 0.9375rem;
}

.p-service-service__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.75rem;
  margin-inline: auto;
}

@media all and not (min-width: 744px) {
  .p-service-service__img.-sp-mt-none {
    margin-top: 0;
  }
  .p-service-service__sec-head.-sp-center {
    text-align: center;
  }
}
@media all and (min-width: 744px) {
  .p-service-service + .p-service-service::after {
    max-width: 1106px;
    left: 50%;
    translate: -50% 0;
  }
  .p-service-service:has(.p-service-service__btn) .p-service-service__inner {
    padding-bottom: 6.25rem;
  }
  .p-service-service__inner {
    padding-top: 12.8125rem;
    padding-bottom: 12.5rem;
  }
  .p-service-service__container {
    align-items: start;
    grid-template-columns: 1fr 18.75rem;
  }
  .p-service-service__list {
    display: flex;
    margin-top: 2.8125rem;
    gap: 3.75rem;
  }
  .p-service-service__list-item {
    gap: 0 0.5rem;
    font-size: 1.375rem;
  }
  .p-service-service__list-item + .p-service-service__list-item {
    margin-top: 0;
  }
  .p-service-service__list-check {
    width: 0.875rem;
    height: 0.5rem;
    color: white;
  }
  .p-service-service__img {
    margin: -10rem -1.875rem 0 0;
  }
  .p-service-service__cards {
    display: grid;
    margin-top: 2.8125rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .p-service-service__cards.-pc-col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-service-service__cards.-pc-col4 .p-service-service__sec-head {
    font-size: 1.5rem;
  }
  .p-service-service__sec {
    padding: 1.875rem 1.875rem 1.5625rem;
  }
  .p-service-service__sec + .p-service-service__sec {
    margin-top: 0;
  }
  .p-service-service__sec-head {
    font-size: 1.75rem;
    text-align: center;
  }
  .p-service-service__sec-list {
    margin-top: 0.75rem;
  }
  .p-service-service__sec-item {
    gap: 0 0.1875rem;
    font-size: 1rem;
    line-height: 1.6875;
  }
  .p-service-service__sec-item::before {
    content: "・";
    display: grid;
    width: 1em;
    place-items: center;
  }
  .p-service-service__sec-txt {
    margin-top: 0.3125rem;
  }
  .p-service-service__desc {
    margin-top: 3.4375rem;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 1.6666666667;
    text-align: center;
  }
  .p-service-service__desc.-pc-small {
    margin-top: 2.8125rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .p-service-service__lead {
    margin-top: 2.8125rem;
    font-size: 1.375rem;
  }
  .p-service-service__txt {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
  .p-service-service__txt + .p-service-service__txt {
    margin-top: 1.25rem;
  }
  .p-service-service__btn {
    margin-top: 13.75rem;
  }
}
@media all and (min-width: 744px) and ( not (min-width: 1280px) ) {
  .p-service-service__inner {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
  }
  .p-service-service__container {
    grid-template-columns: 1fr 12.5rem;
  }
  .p-service-service__list {
    display: block;
  }
  .p-service-service__img {
    margin: -5rem 0 0 0;
  }
  .p-service-service__cards {
    gap: 0.625rem;
  }
  .p-service-service__cards.-pc-col4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-service-service__sec {
    padding: 1.875rem 0.9375rem 1.5625rem;
  }
  .p-service-service__sec + .p-service-service__sec {
    margin-top: 0;
  }
  .p-service-service__sec-head {
    font-size: 1.75rem;
    text-align: center;
  }
  .p-service-service__btn {
    margin-top: 7.5rem;
  }
}
/**
 * p-service-process
 */
.p-service-process {
  background: white;
}

.p-service-process__inner {
  padding-top: 4.6875rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.p-service-process__lead {
  margin-top: 2.1875rem;
  font-size: 1.375rem;
  line-height: 1.2727272727;
}

.p-service-process__container {
  margin-top: 3.75rem;
}

.p-service-process__item {
  max-width: 15.9375rem;
  margin-inline: auto;
  padding: 2.1875rem 0 0;
  position: relative;
}
.p-service-process__item + .p-service-process__item {
  margin-top: 5.3125rem;
}

.p-service-process__num {
  display: grid;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  place-items: center;
  background: var(--red);
  font-size: 1.0625rem;
}

.p-service-process__img {
  max-width: 15rem;
  margin-inline: auto;
}

.p-service-process__item-head {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  text-align: center;
}

.p-service-process__txt {
  max-width: 13.75rem;
  margin-top: 0.3125rem;
  margin-inline: auto;
  font-size: 0.875rem;
}

.p-service-process__arrow {
  width: 1.375rem;
  position: absolute;
  top: -4.375rem;
  left: calc(50% - 0.6875rem);
  rotate: 90deg;
}

@media all and (min-width: 744px) {
  .p-service-process__inner {
    padding-top: 9.375rem;
    padding-bottom: 9.0625rem;
  }
  .p-service-process__lead {
    margin-top: 3.75rem;
    font-size: 2.25rem;
    line-height: 1.3333333333;
    text-align: center;
  }
  .p-service-process__container {
    display: grid;
    margin-top: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2.8125rem;
  }
  .p-service-process__item {
    max-width: 15.9375rem;
    margin-inline: 0;
    padding: 4.0625rem 0 0;
  }
  .p-service-process__item + .p-service-process__item {
    margin-top: 0;
  }
  .p-service-process__item-head {
    margin-top: 0.9375rem;
  }
  .p-service-process__txt {
    max-width: none;
    margin-top: 0.9375rem;
  }
  .p-service-process__arrow {
    width: 1.375rem;
    top: calc(50% - 0.9375rem);
    left: -2.1875rem;
    rotate: 0deg;
  }
}
/**
 * p-case-studies-main
 */
.p-case-studies-main {
  background: white;
}

.p-case-studies-main__inner {
  padding-top: 4.6875rem;
  padding-bottom: 5rem;
}

.p-case-studies-main__head {
  font-size: 1.75rem;
  line-height: 1.3571428571;
  text-align: center;
}

.p-case-studies-main__archive {
  margin-top: 1.875rem;
}

@media all and (min-width: 744px) {
  .p-case-studies-main__inner {
    padding-top: 9.0625rem;
    padding-bottom: 4.375rem;
  }
  .p-case-studies-main__head {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
  }
  .p-case-studies-main__archive {
    margin-top: 3.125rem;
  }
}
/**
 * p-contact-main
 */
.p-contact-main {
  background: white;
}
.p-contact-main .wpcf7-spinner {
  display: none;
}

.p-contact-main__inner {
  padding-top: 8.75rem;
  padding-bottom: 5rem;
}

.p-contact-main__form {
  margin-top: 4.375rem;
}

@media all and (min-width: 744px) {
  .p-contact-main__inner {
    padding-bottom: 9.375rem;
  }
  .p-contact-main__form {
    max-width: 56.25rem;
    margin-top: 4.6875rem;
    margin-inline: auto;
  }
}
/**
 * p-notfound-main
 */
.p-notfound-main {
  position: relative;
  background: white;
}

.p-notfound-main__inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-notfound-main__txt {
  margin-top: 2.1875rem;
}

.p-notfound-main__btn {
  margin-top: 2.1875rem;
}

@media all and (min-width: 744px) {
  .p-notfound-main__inner {
    padding-top: 10.625rem;
    padding-bottom: 19.375rem;
  }
  .p-notfound-main__txt {
    margin-top: 3.75rem;
    font-size: 0.9375rem;
  }
  .p-notfound-main__btn {
    margin-top: 3.75rem;
  }
}