@charset "UTF-8";
:root {
  --gradient-main: linear-gradient(90deg, #00A6E3 0%, #15ADB2 99.23%);
  --gradient-main_2: linear-gradient(90deg, #1BDFE5 0%, #00B9FC 99.23%);
  --gradient-main_3: linear-gradient(90deg, #0097E3 0%, #15A2B2 100%);
  --gradient-main_4: linear-gradient(90deg, #00A6E3 0%, #15ADB2 99.23%);
  --blue: #0090C8;
  --green: #59A71D;
  --orange: #DD7928;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

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

:where(body) {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: none;
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ボタンの基本スタイル */
.c-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.2s;
  border-radius: 52px;
  overflow: hidden;
}
.c-button--download {
  border: 1px solid var(--green);
  background-color: var(--green);
}
.c-button--contact {
  border: 1px solid var(--orange);
  background-color: var(--orange);
}
.c-button__icon {
  color: #fff;
}
.c-button__text {
  font-family: "M PLUS Code Latin", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.c-heading {
  text-align: center;
  position: relative;
}
.c-heading__label {
  position: absolute;
  overflow: hidden;
}
.c-heading__title-en {
  position: relative;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  color: #000;
  transform: translateX(7px);
  letter-spacing: 0.06em;
}
.c-heading__title-en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 1px;
  background-color: var(--blue);
  width: 8px;
  height: 8px;
  left: -13px;
}
.c-heading__title-ja {
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.5;
}
.c-heading .js-section-heading-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EDF2F7;
}
.c-heading .js-section-heading-curtain--white {
  background-color: #fff;
}
.c-heading .js-section-heading-curtain--light-blue {
  background-color: #F2F5F7;
}

.c-loop {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  padding-bottom: 15px;
}
.c-loop__container {
  animation: infinity-scroll-left 18s infinite linear 1s both;
  display: flex;
  align-items: center;
  width: auto;
}
.c-loop__item {
  display: flex;
  justify-content: center;
  border-radius: 2px;
}

html {
  color: #333333;
  font-family: "M PLUS Code Latin", sans-serif;
  line-height: 1.5;
  font-weight: 500;
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a.is-disabled {
  pointer-events: none;
}

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

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopClone {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.l-footer__top {
  background-color: #EDF2F7;
}
.l-footer__top-wrapper {
  display: flex;
  align-items: center;
}
.l-footer__company-logo {
  display: block;
}
.l-footer__sns-logo-list {
  display: flex;
}
.l-footer__sns-logo-item {
  border-radius: 50%;
  background-color: #fff;
}
.l-footer__sns-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.l-footer__bottom {
  color: #fff;
  background-color: #222222;
}
.l-footer__copy {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.06em;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease;
}
.l-header.is-active {
  background-color: #fff;
}
.l-header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.l-header__nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.l-header__nav-link {
  position: relative;
  display: block;
  font-family: "M PLUS Code Latin", sans-serif;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 16px;
}
.l-header__nav-link-text {
  position: relative;
}
.l-header__nav-link-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #fff;
}
.l-header__button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.2s;
  border-radius: 52px;
  overflow: hidden;
}
.l-header__button--download {
  border: 1px solid var(--green);
  background-color: var(--green);
}
.l-header__button--contact {
  border: 1px solid var(--orange);
  background-color: var(--orange);
}
.l-header__button-icon {
  color: #fff;
}
.l-header__button-text {
  font-family: "M PLUS Code Latin", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.p-office-case {
  background-color: #24273C;
}
.p-office-case__heading {
  position: relative;
  z-index: 1;
}
.p-office-case__heading::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.p-office-case__heading-lead {
  font-family: "M PLUS Code Latin", sans-serif;
  display: block;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.p-office-case__heading-title-wrapper {
  position: relative;
  font-family: "M PLUS Code Latin", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  background: var(--gradient-main);
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
}
.p-office-case__heading-title-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background: var(--gradient-main);
}
.p-office-case__heading-main-title {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
.p-office-case__heading-sub-title {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
.p-office-case__label {
  -webkit-text-stroke: 1px #fff;
  color: rgba(0, 0, 0, 0);
}
.p-office-case__slide-modal {
  position: relative;
}
.p-office-case__slide-content {
  position: relative;
  overflow: hidden;
}
.p-office-case__slide-list .swiper-slide {
  height: auto;
}
.p-office-case__slide-item-outer {
  border-top: 1px solid #505263;
  border-bottom: 1px solid #505263;
  border-right: 1px solid #505263;
}
.p-office-case__slide-item-inner {
  background-color: #fff;
  padding: 12px 12px 24px 12px;
  height: 100%;
  border-radius: 2px;
}
.p-office-case__slide-item {
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.p-office-case__slide-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-office-case__slide-img-wrapper {
  position: relative;
}
.p-office-case__slide-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-office-case__slide-img-label {
  position: absolute;
  color: #fff;
  display: block;
  display: grid;
  justify-items: center;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.p-office-case__slide-img-label--renewal {
  background-color: var(--orange);
}
.p-office-case__slide-img-label--transfer {
  background-color: #59A71D;
}
.p-office-case__slide-img-label--new {
  background-color: var(--blue);
}
.p-office-case__slide-company {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.p-office-case__slide-company-place {
  flex-grow: 1;
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.p-office-case__slide-company-datas {
  display: flex;
  border-top: 1px dashed #DFDFDF;
  margin-top: 32px;
  padding-top: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.p-office-case__slide-company-data {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p-office-case__slide-company-data--employee, .p-office-case__slide-company-data--floor {
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.p-office-case__slide-company-data--space {
  -moz-column-gap: 2px;
  column-gap: 2px;
}
.p-office-case__slide-company-data img {
  width: 22px;
}
.p-office-case__slide-company-data span {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  color: var(--blue);
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.p-office-case__slide-controls {
  position: absolute;
  right: 70px;
  width: 95px;
}
.p-office-case__slide-controls .swiper-button-next,
.p-office-case__slide-controls .swiper-button-prev {
  z-index: 1;
  width: 36px;
  height: 36px;
  background-color: var(--blue);
  border-radius: 2px;
}
.p-office-case__slide-controls .swiper-button-next::after {
  content: "";
  -webkit-mask-image: url(/lp/office_iten_renewal/img/common/arrow_slider.svg);
  mask-image: url(/lp/office_iten_renewal/img/common/arrow_slider.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 13px;
  height: 6px;
  background-color: #fff;
}
.p-office-case__slide-controls .swiper-button-prev::after {
  content: "";
  -webkit-mask-image: url(/lp/office_iten_renewal/img/common/arrow_slider.svg);
  mask-image: url(/lp/office_iten_renewal/img/common/arrow_slider.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 13px;
  height: 6px;
  transform: scaleX(-1);
  background-color: #fff;
}
.p-office-case__slide-pagination {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  left: -60px;
  bottom: -4px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-office-case__slide-pagination .current {
  position: relative;
}
.p-office-case__slide-pagination .total {
  position: absolute;
}
.p-office-case__modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.15s;
}
.p-office-case__modal.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}
.p-office-case__modal-close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  z-index: 1;
  border: none;
  cursor: pointer;
  background: var(--gradient-main);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: -14px;
  right: -18px;
  z-index: 3;
}
.p-office-case__modal-close::before, .p-office-case__modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.p-office-case__modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-office-case__modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-office-case__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.p-office-case__modal-outer {
  position: relative;
}
.p-office-case__modal-inner {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
}
.p-office-case__modal-content {
  width: 100%;
  height: 100%;
}
.p-office-case__modal-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-office-case__modal-item {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  border-radius: 4px;
  overflow-y: auto;
}
.p-office-case__modal-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-office-case__modal-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-office-case__modal-item-inner {
  position: relative;
  background-color: #fff;
  border-radius: 2px;
}
.p-office-case__modal-company-wrapper {
  text-align: center;
}
.p-office-case__modal-company {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-office-case__modal-company-place {
  flex-grow: 1;
  font-family: "M PLUS Code Latin", sans-serif;
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-office-case__modal-img-wrapper {
  position: relative;
}
.p-office-case__modal-img-label {
  position: absolute;
  color: #fff;
  display: block;
  display: grid;
  justify-items: center;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding-top: 2px;
  padding-bottom: 3px;
}
.p-office-case__modal-img-label--renewal {
  width: 117px;
  background-color: var(--orange);
}
.p-office-case__modal-img-label--transfer {
  width: 61px;
  background-color: #59A71D;
}
.p-office-case__modal-img-label--new {
  width: 61px;
  background-color: var(--blue);
}
.p-office-case__modal-text {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.p-office-case__modal-company-datas {
  display: flex;
  border-top: 1px dashed #DFDFDF;
  margin-top: 16px;
  padding-top: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.p-office-case__modal-company-data {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p-office-case__modal-company-data--employee, .p-office-case__modal-company-data--floor {
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.p-office-case__modal-company-data--space {
  -moz-column-gap: 2px;
  column-gap: 2px;
}
.p-office-case__modal-company-data img {
  width: 22px;
}
.p-office-case__modal-company-data span {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.p-office-case .swiper-pagination {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  bottom: -33px;
}
.p-office-case .swiper-pagination-bullet {
  border-radius: 0;
  background: #9D9D9D;
  opacity: 1;
  border-radius: 1px;
  margin-inline: 0 !important;
}
.p-office-case .swiper-pagination-bullet-active {
  background: var(--gradient-main);
}
.p-office-case .swiper-slide-button-next,
.p-office-case .swiper-slide-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 22px;
  height: 32px;
}
.p-office-case .swiper-slide-button-next::after,
.p-office-case .swiper-slide-button-prev::after {
  content: "";
  background-image: url(/lp/office_iten_renewal/img/common/arrow_modal-slider.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 32px;
  height: 32px;
}
.p-office-case .swiper-slide-button-prev {
  transform: scaleX(-1);
}
.p-office-contact__wrapper iframe {
  overflow: hidden !important;
  overflow-y: hidden !important;
}

.p-office-cost {
  position: relative;
  overflow: hidden;
}
.p-office-cost__title-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.p-office-cost__title-logo {
  display: flex;
}
.p-office-cost__title-logo::before {
  content: "";
  flex: 0 0 auto;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: loop linear 40s infinite;
}
.p-office-cost__title-logo::after {
  content: "";
  flex: 0 0 auto;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: loopClone linear 40s -20s infinite;
}
.p-office-cost__inner {
  position: relative;
}
.p-office-cost__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/lp/office_iten_renewal/img/cost/cost_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-office-cost__text-contents {
  background-color: #15ADB2;
  color: #fff;
  border-radius: 4px;
}
.p-office-cost__label {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-office-cost__label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  margin: auto;
  border-radius: 1px;
  background-color: #fff;
}
.p-office-cost__title {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.p-office-cost__title--underline {
  background-image: repeating-linear-gradient(to right, #fff 0 2px, transparent 1px 4px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.p-office-cost__lead {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
}
.p-office-cost__button-group {
  display: flex;
}

.p-office-example {
  position: relative;
}
.p-office-example::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-office-example__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-office-example__label {
  position: relative;
  display: inline-block;
}
.p-office-example__label-inner {
  position: relative;
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
  line-height: 1.5;
}
.p-office-example__label-inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  background: #fff;
}
.p-office-example__label-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 2;
  background-color: #fff;
}
.p-office-example__label-text {
  position: relative;
  font-family: "M PLUS Code Latin", sans-serif;
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  z-index: 1;
  display: block;
  font-feature-settings: "palt";
}
.p-office-example__title-container {
  position: relative;
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  background: #24273C;
  overflow: hidden;
  position: relative;
  display: block;
}
.p-office-example__title-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 0;
  background-color: #24273C;
}
.p-office-example__title {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  color: #fff;
}
.p-office-example__title--lg {
  letter-spacing: 0.1em;
}
.p-office-example__title--sm {
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-office-example__title--highlight {
  font-weight: 700;
  background-image: repeating-linear-gradient(90deg, #00A6E3 0%, #15ADB2 99.23%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 3px;
}
.p-office-example__sp-img-after.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-office-example__sp-img-before.is-inactive {
  opacity: 0;
  pointer-events: none;
}
.p-office-example__button-group {
  display: flex;
}

.p-office-faq {
  /* ここまで調整用スタイル */
}
.p-office-faq__details + .p-office-faq__details {
  margin-top: 8px;
}
.p-office-faq__details.open .p-office-faq__summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.p-office-faq__details.open .p-office-faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.p-office-faq__details.open .p-office-faq__icon {
  transform: rotate(180deg);
}
.p-office-faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--gradient-main);
  border-radius: 2px;
}
.p-office-faq__summary::-webkit-details-marker {
  /* Safari-デフォルトの三角形を削除*/
  display: none;
}
.p-office-faq__question {
  display: flex;
  font-weight: 700;
  color: #fff;
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-office-faq__question span {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-office-faq__icon-container {
  border-left: 1px dashed #EDF2F7;
}
.p-office-faq__icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-office-faq__icon::before, .p-office-faq__icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-office-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.p-office-faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.p-office-faq__answer-content {
  overflow: hidden;
  /* padding・marginはここでは設定しない */
}
.p-office-faq__answer-inner {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #EDF2F7;
}
.p-office-faq__answer {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.p-office-faq__answer-link {
  color: var(--blue);
  text-decoration: underline;
}
.p-office-faq__button-group {
  display: flex;
}

.p-office-feature {
  overflow: hidden;
}
.p-office-feature__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-office-feature__heading-label-big {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
.p-office-feature__heading-title-en {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.06em;
  transform: translateX(7px);
}
.p-office-feature__heading-title-en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background-color: var(--blue);
}
.p-office-feature__heading-title-ja {
  position: relative;
  z-index: 1;
  font-family: "M PLUS Code Latin", sans-serif;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.1em;
}
.p-office-feature__heading-sub-title-inner {
  position: relative;
  font-family: "M PLUS Code Latin", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  background: var(--gradient-main);
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
}
.p-office-feature__heading-sub-title-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background: var(--gradient-main);
}
.p-office-feature__heading-sub-title {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
.p-office-feature__heading-sub-title--num {
  position: relative;
}
.p-office-feature__item {
  position: relative;
}
.p-office-feature__item-inner {
  background-color: #EDFBFF;
}
.p-office-feature__item-section-heading {
  display: flex;
  background: var(--gradient-main_4);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.p-office-feature__item-section-heading-num {
  flex-shrink: 0;
}
.p-office-feature__item-section-heading-lead {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.p-office-feature__item-section-lead {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.2;
}
.p-office-feature__item-img-content {
  position: relative;
  z-index: 0;
}
.p-office-feature__item-img-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  background: var(--gradient-main_4);
  z-index: -1;
}
.p-office-feature .js-feature-heading-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.p-office-feature .js-feature-heading-label {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-office-flow {
  background-color: #EDF2F7;
}
.p-office-flow__step-item {
  position: relative;
  width: 100%;
}
.p-office-flow__step-item:nth-of-type(1) .p-office-flow__step-item-label::after {
  display: none;
}
.p-office-flow__step-item-label {
  position: relative;
}
.p-office-flow__step-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-office-flow__step-item-inner {
  position: relative;
}
.p-office-flow__step-title {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.p-office-flow__step-text {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.p-office-flow__step-text--strong {
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.p-office-flow__button-group {
  display: flex;
}
.p-office-flow__step-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.2s;
  border-radius: 52px;
  overflow: hidden;
  border: 1px solid var(--orange);
  background-color: var(--orange);
  width: 180px;
  height: 40px;
}
.p-office-flow__step-button-icon {
  color: #fff;
  width: 17px;
  height: 17px;
}
.p-office-flow__step-button-text {
  font-family: "M PLUS Code Latin", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 13px;
}

.p-office-issues {
  position: relative;
}
.p-office-issues::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-office-issues__inner {
  z-index: 1;
}
.p-office-issues__heading {
  position: relative;
  text-align: center;
}
.p-office-issues__heading-label {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
.p-office-issues__heading-title-en {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-office-issues__heading-title-en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 1px;
  background-color: var(--blue);
}
.p-office-issues__heading-title-ja {
  position: relative;
  z-index: 1;
  font-family: "M PLUS Code Latin", sans-serif;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0.12em;
  transform: translateX(6px);
}
.p-office-issues__heading-title-ja--highlight {
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-office-issues__heading-title-ja--highlight-inner {
  position: relative;
  color: transparent;
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-office-issues__heading-title-ja--highlight-inner::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  right: 6px;
  margin: auto;
  border-radius: 50%;
  background: var(--gradient-main);
}
.p-office-issues .js-section-heading-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-office-issues .js-section-heading-curtain--light-blue {
  background-color: #F2F5F7;
}
.p-office-materials__inner {
  position: relative;
  overflow: hidden;
}
.p-office-materials__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-office-materials__container {
  position: relative;
  z-index: 1;
}
.p-office-materials__heading {
  color: #fff;
  text-align: center;
}
.p-office-materials__heading-title-en {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-office-materials__heading-title-en::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 2px;
  background-color: var(--blue);
  width: 8px;
  height: 8px;
  left: -13px;
}
.p-office-materials__heading-title-ja {
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.p-office-materials__heading-title-ja--lg {
  background: var(--gradient-main_2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.p-office-materials__link {
  display: block;
  width: 100%;
  height: 100%;
}

.p-office-mv__inner {
  position: relative;
}
.p-office-mv__container {
  position: absolute;
}
.p-office-mv__title-main-inner {
  position: relative;
  background: var(--gradient-main);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
}
.p-office-mv__title-main-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background: var(--gradient-main);
}
.p-office-mv__title-main-text {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 400;
  color: #fff;
  font-feature-settings: "palt";
}
.p-office-mv__title-sub {
  width: -moz-fit-content;
  width: fit-content;
}
.p-office-mv__title-sub-inner {
  position: relative;
  background: #24273C;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
}
.p-office-mv__title-sub-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background: #24273C;
}
.p-office-mv__title-sub-text {
  font-family: "M PLUS Code Latin", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
}
.p-office-mv__title-sub-text--strong {
  letter-spacing: 0.07em;
}
.p-office-mv__title-sub-text--strong-num {
  letter-spacing: 0.11em;
}
.p-office-mv__title-annotation {
  display: block;
}
.p-office-mv__title-annotation small {
  font-weight: 400;
  display: block;
  color: #fff;
  letter-spacing: 0.02em;
}
.p-office-mv__type-group {
  position: relative;
  display: flex;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px){
  .p-office-materials__item:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px){
  .c-button {
    width: 300px;
    height: 64px;
    margin-inline: auto;
  }
  .c-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    will-change: transform;
  }
  .c-button__icon {
    transition: color 0.3s ease;
  }
  .c-button__icon--download {
    width: 18px;
    height: 24px;
    margin-right: 10px;
  }
  .c-button__icon--contact {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .c-button__text {
    font-size: 16px;
    transition: color 0.3s ease;
  }
  .c-button__text--download {
    margin-right: -10px;
  }
  .c-heading__label--flow {
    top: -54px;
    left: 0;
    right: -5px;
    margin: auto;
    width: 473px;
  }
  .c-heading__label--faq {
    top: -53px;
    left: 7px;
    right: 0;
    margin: auto;
    width: 317px;
    height: 170px;
  }
  .c-heading__label--contact {
    top: max(-4.375vw, -56px);
    left: 2px;
    right: 0;
    margin: auto;
    width: min(63.984375vw, 819px);
    height: min(13.28125vw, 170px);
  }
  .c-heading__title-en--contact {
    transform: translateX(3px);
  }
  .c-heading__title-ja {
    font-feature-settings: "palt";
    margin-top: 22px;
    font-size: 44px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    transform: translateX(6px);
  }
  .c-loop {
    top: -45px;
  }
  .c-loop__container {
    -moz-column-gap: 6px;
    column-gap: 6px;
    padding-left: 6px;
  }
  .c-loop__item {
    width: max(17.1875vw, 220px);
    margin: 0 auto;
  }
  .c-loop__item img {
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.04);
  }
  .l-footer__top {
    padding-block: 40px;
    padding-left: 50px;
  }
  .l-footer__top-wrapper {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .l-footer__company-logo {
    width: 170px;
  }
  .l-footer__sns-logo-list {
    -moz-column-gap: 7px;
    column-gap: 7px;
  }
  .l-footer__sns-logo-item {
    width: 42px;
    height: 42px;
  }
  .l-footer__sns-logo-link img {
    width: 22px;
    height: 22px;
  }
  .l-footer__bottom {
    padding-block: 30px;
  }
  .l-footer__copy {
    font-size: 14px;
  }
  .p-office-case__modal-close {
    top: -14px;
    right: -18px;
    z-index: 3;
  }
  .p-office-case__modal-inner {
    width: min(50vw, 640px);
    padding-top: min(1.5625vw, 20px);
    padding-bottom: min(2.421875vw, 31px);
    padding-left: min(3.75vw, 48px);
    padding-right: min(3.75vw, 48px);
    height: min(43.359375vw, 555px);
  }
  .p-office-case__modal-company {
    font-size: 13px;
  }
  .p-office-case__modal-company-place {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1;
  }
  .p-office-case__modal-img-wrapper {
    margin-top: 25px;
  }
  .p-office-case__modal-img-label {
    bottom: 12px;
    left: 13px;
  }
  .p-office-case__modal-text {
    font-size: 15px;
    margin-top: 17px;
  }
  .p-office-case .swiper-slide-button-next {
    right: -55px;
  }
  .p-office-case .swiper-slide-button-prev {
    left: -55px;
  }
  .p-office-contact {
    border-top: 1px dashed #DFDFDF;
    margin-top: 109px;
    margin-inline: 20px;
  }
  .p-office-contact__inner {
    margin-inline: auto;
    max-width: 1000px;
    margin-top: 0;
    padding-top: 180px;
    padding-inline: 20px;
    padding-bottom: 146px;
  }
  .p-office-contact__wrapper {
    margin-top: 60px;
  }
  .p-office-cost__title-container {
    top: min(9.453125vw, 121px);
  }
  .p-office-cost__title-logo {
    height: 150px;
    width: 2400px;
  }
  .p-office-cost__title-logo::before {
    margin-left: 0px;
    background-image: url(/lp/office_iten_renewal/img/cost/cost_title_pc.svg);
  }
  .p-office-cost__title-logo::after {
    margin-left: 0px;
    background-image: url(/lp/office_iten_renewal/img/cost/cost_title_pc.svg);
  }
  .p-office-cost__inner {
    max-width: min(90.625vw, 1160px);
    margin-top: min(14.453125vw, 185px);
    margin-inline: auto;
    padding-inline: min(1.5625vw, 20px);
    padding-bottom: min(9.375vw, 120px);
  }
  .p-office-cost__inner::after {
    bottom: min(-5.546875vw, -71px);
    right: min(-7.03125vw, -90px);
    width: min(42.578125vw, 545px);
    height: min(42.578125vw, 545px);
  }
  .p-office-cost__container {
    display: flex;
  }
  .p-office-cost__img-contents {
    width: min(43.75vw, 560px);
  }
  .p-office-cost__text-contents {
    position: absolute;
    width: min(53.125vw, 680px);
    padding-top: min(3.90625vw, 50px);
    padding-bottom: min(5.234375vw, 67px);
    padding-left: min(5.625vw, 72px);
    padding-right: min(5.625vw, 72px);
    top: -111px;
    right: 20px;
  }
  .p-office-cost__label {
    transform: translateX(min(1.015625vw, 13px));
  }
  .p-office-cost__label::before {
    width: min(0.625vw, 8px);
    height: min(0.625vw, 8px);
  }
  .p-office-cost__title {
    font-size: min(2.5vw, 32px);
    margin-top: min(1.5625vw, 20px);
  }
  .p-office-cost__lead {
    font-feature-settings: "palt";
    margin-top: min(2.109375vw, 27px);
    font-size: min(1.171875vw, 15px);
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .p-office-cost__button-group {
    margin: 83px auto 0;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    max-width: 610px;
  }
  .p-office-example {
    padding-bottom: 238px;
    margin-bottom: -123px;
  }
  .p-office-example::before {
    top: -130px;
    background-image: url(/lp/office_iten_renewal/img/example/example_bg_pc.jpg);
  }
  .p-office-example__inner {
    padding-top: 85px;
    padding-inline: 20px;
  }
  .p-office-example__label-inner {
    padding: 7px 9px 9px 13px;
    line-height: 1;
    font-size: 32px;
  }
  .p-office-example__label-text {
    font-size: 22px;
    letter-spacing: 0.14em;
  }
  .p-office-example__title-wrapper {
    margin-top: 8px;
  }
  .p-office-example__title-container {
    padding: 5px 13px 7px 18px;
    line-height: 1;
    font-size: 32px;
  }
  .p-office-example__title-container + .p-office-example__title-container {
    margin-top: 5px;
  }
  .p-office-example__title {
    background: #24273C;
  }
  .p-office-example__title--lg {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.13em;
  }
  .p-office-example__title--sm {
    display: inline-block;
    margin-inline: -15px;
    font-size: 26px;
  }
  .p-office-example__pc-img-wrapper {
    margin: 53px auto 0;
    max-width: 960px;
  }
  .p-office-example__pc-img-title {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-family: "M PLUS Code Latin", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    transform: translateX(11px);
  }
  .p-office-example__pc-img-title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 2px;
    background-color: #fff;
    width: 8px;
    height: 8px;
    left: -17px;
  }
  .p-office-example__pc-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 15/8;
    overflow: hidden;
    border-radius: 4px;
    border: 4px solid #fff;
    margin: 0 auto;
  }
  .p-office-example__pc-img-after, .p-office-example__pc-img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .p-office-example__pc-img-after img, .p-office-example__pc-img-before img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .p-office-example__pc-img-before {
    z-index: 2;
    width: 100%;
    mask-image: linear-gradient(to right, black 0%, black var(--slider-pos, 50%), transparent var(--slider-pos, 50%));
    -webkit-mask-image: linear-gradient(to right, black 0%, black var(--slider-pos, 50%), transparent var(--slider-pos, 50%));
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
  }
  .p-office-example__pc-img-after {
    z-index: 1;
  }
  .p-office-example__pc-img-label {
    position: absolute;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 1;
    color: var(--blue);
    border-radius: 2px;
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    bottom: 9px;
    width: 77px;
    display: flex;
    justify-content: center;
  }
  .p-office-example__pc-img-label--before {
    background-color: #fff;
    left: 10px;
  }
  .p-office-example__pc-img-label--after {
    background-color: #FFFB00;
    left: auto;
    right: 10px;
  }
  .p-office-example__pc-img-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #fff;
    z-index: 3;
    cursor: pointer;
    transition: background 0.3s;
  }
  .p-office-example__pc-img-slider-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -28px;
    margin: auto;
    width: 60px;
    height: 60px;
    background-image: url(/lp/office_iten_renewal/img/common/slide_button.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-office-example__button-group {
    margin: 87px auto 0;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    max-width: 610px;
  }
  .p-office-faq {
    margin-inline: auto;
    padding-top: 148px;
    max-width: 1000px;
    padding-inline: 20px;
  }
  .p-office-faq__container {
    margin-top: 59px;
  }
  .p-office-faq__summary {
    padding: 19px 25px 20px 24px;
  }
  .p-office-faq__question {
    font-size: 18px;
    align-items: center;
  }
  .p-office-faq__question span {
    font-size: 36px;
    margin-right: 17px;
  }
  .p-office-faq__icon-container {
    padding-block: 6px;
    padding-left: 24px;
  }
  .p-office-faq__answer-inner {
    padding: 24px 64px 24px 69px;
  }
  .p-office-faq__answer {
    font-size: 16px;
  }
  .p-office-faq__answer-link {
    transition: opacity 0.3s ease;
  }
  .p-office-faq__button-group {
    margin: 50px auto 0;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    max-width: 610px;
  }
  .p-office-feature {
    padding-top: 154px;
  }
  .p-office-feature__inner {
    padding-inline: 20px;
  }
  .p-office-feature__heading-label-big {
    top: -56px;
    width: 724px;
  }
  .p-office-feature__heading-title-en {
    transform: translateX(7px);
  }
  .p-office-feature__heading-title-ja {
    font-size: 32px;
    margin-top: 26px;
    transform: translateX(4px);
  }
  .p-office-feature__heading-sub-wrapper {
    margin-top: 19px;
  }
  .p-office-feature__heading-sub-title-inner {
    padding: 0px 22px 2px 24px;
    line-height: 1;
  }
  .p-office-feature__heading-sub-title {
    top: -6px;
    font-size: 52px;
  }
  .p-office-feature__heading-sub-title--num {
    top: 6px;
    font-size: 80px;
  }
  .p-office-feature__list {
    margin-top: 120px;
  }
  .p-office-feature__item:nth-child(even) {
    margin-right: min(1.875vw, 24px);
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-inner {
    flex-direction: row-reverse;
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-text-content {
    width: min(41.71875vw, 534px);
    padding-right: min(3.4375vw, 44px);
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-section-heading {
    -moz-column-gap: min(1.875vw, 24px);
    column-gap: min(1.875vw, 24px);
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-img-content {
    right: min(-0.3125vw, -4px);
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-img-content::before {
    top: min(3.203125vw, 41px);
    right: min(1.875vw, 24px);
  }
  .p-office-feature__item:nth-child(odd) {
    margin-left: min(1.875vw, 24px);
  }
  .p-office-feature__item:nth-child(odd) .p-office-feature__item-img-content {
    left: min(-0.3125vw, -4px);
  }
  .p-office-feature__item:nth-child(odd) .p-office-feature__item-img-content::before {
    top: min(3.203125vw, 41px);
    left: min(1.875vw, 24px);
  }
  .p-office-feature__item:nth-child(odd) .p-office-feature__item-text-content {
    width: min(41.71875vw, 534px);
    padding-left: min(3.4375vw, 44px);
  }
  .p-office-feature__item:nth-of-type(2) .p-office-feature__item-img-content::before {
    height: calc(100% - min(1.328125vw, 17px));
  }
  .p-office-feature__item:nth-of-type(3) .p-office-feature__item-section-heading {
    -moz-column-gap: min(1.796875vw, 23px);
    column-gap: min(1.796875vw, 23px);
  }
  .p-office-feature__item + .p-office-feature__item {
    margin-top: min(11.25vw, 144px);
  }
  .p-office-feature__item-inner {
    display: flex;
    justify-content: center;
    -moz-column-gap: min(4.84375vw, 62px);
    column-gap: min(4.84375vw, 62px);
    max-width: min(101.5625vw, 1300px);
    margin-inline: auto;
  }
  .p-office-feature__item-text-content {
    padding-top: min(5.859375vw, 75px);
    padding-bottom: min(5.9375vw, 76px);
  }
  .p-office-feature__item-section-heading {
    -moz-column-gap: min(2.65625vw, 34px);
    column-gap: min(2.65625vw, 34px);
    padding-bottom: min(2.421875vw, 31px);
    background-size: 100% 1px;
  }
  .p-office-feature__item-section-heading-num--01 {
    width: min(7.34375vw, 94px);
  }
  .p-office-feature__item-section-heading-num--02 {
    width: min(9.0625vw, 116px);
  }
  .p-office-feature__item-section-heading-num--03 {
    width: min(9.21875vw, 118px);
  }
  .p-office-feature__item-section-heading-num--04 {
    width: min(9.375vw, 120px);
  }
  .p-office-feature__item-section-heading-lead {
    font-size: min(1.953125vw, 25px);
  }
  .p-office-feature__item-section-lead {
    margin-top: min(2.1875vw, 28px);
    font-size: min(1.25vw, 16px);
  }
  .p-office-feature__item-img-content {
    width: min(48.4375vw, 620px);
    top: min(-3.125vw, -40px);
  }
  .p-office-feature__item-img-content::before {
    height: calc(100% - min(2.109375vw, 27px));
  }
  .p-office-flow__inner {
    padding-top: 154px;
    padding-bottom: 112px;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .p-office-flow__container-inner {
    margin-top: 68px;
  }
  .p-office-flow__container-inner--second {
    margin-top: 71px;
  }
  .p-office-flow__step-list {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-office-flow__step-list .p-office-flow__step-item:nth-of-type(4) {
    margin-top: 66px;
  }
  .p-office-flow__step-list .p-office-flow__step-item:nth-of-type(5) {
    margin-top: 66px;
  }
  .p-office-flow__step-item {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
  }
  .p-office-flow__step-item:nth-of-type(1) .p-office-flow__step-item-inner, .p-office-flow__step-item:nth-of-type(4) .p-office-flow__step-item-inner {
    padding-right: 38px;
  }
  .p-office-flow__step-item:nth-of-type(1) .p-office-flow__step-item-inner::after, .p-office-flow__step-item:nth-of-type(4) .p-office-flow__step-item-inner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #ccc, #ccc 2px, transparent 2px, transparent 4px);
    position: absolute;
    top: 0;
    right: 9px;
  }
  .p-office-flow__step-item:nth-of-type(2) .p-office-flow__step-item-inner {
    padding-inline: 19px;
  }
  .p-office-flow__step-item:nth-of-type(2) .p-office-flow__step-item-inner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #ccc, #ccc 2px, transparent 2px, transparent 4px);
    position: absolute;
    top: 0;
    right: -11px;
  }
  .p-office-flow__step-item:nth-of-type(3) .p-office-flow__step-item-inner {
    padding-left: 38px;
  }
  .p-office-flow__step-item-label::before {
    height: 100%;
  }
  .p-office-flow__step-item-inner {
    margin-top: 32px;
  }
  .p-office-flow__step-details {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
  .p-office-flow__step-title {
    margin-top: 24px;
    font-size: 22px;
  }
  .p-office-flow__step-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }
  .p-office-flow__step-text--strong {
    font-size: 15px;
  }
  .p-office-flow__step-label--second {
    display: block;
    width: 84%;
  }
  .p-office-flow__step-item-img {
    position: absolute;
    top: 0;
    top: min(-4.0625vw, -52px);
    right: 16px;
    width: 80%;
  }
  .p-office-flow__button-group {
    margin: 103px auto 0;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
    column-gap: 10px;
    max-width: 610px;
  }
  .p-office-flow__step-button-wrapper {
    margin: 30px auto 0;
  }
  .p-office-flow__step-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    will-change: transform;
  }
  .p-office-flow__step-button-icon {
    margin-right: 8px;
    transition: color 0.3s ease;
  }
  .p-office-flow__step-button-text {
    transition: color 0.3s ease;
  }
  .p-office-issues::after {
    background-image: url(/lp/office_iten_renewal/img/issues/issues_bg_pc.png);
  }
  .p-office-issues {
    margin-top: 128px;
  }
  .p-office-issues__inner {
    margin-bottom: 64px;
    margin: 63px auto 0;
    padding-bottom: 82px;
    padding-inline: 20px;
  }
  .p-office-issues__heading-label {
    top: -45px;
    width: 579px;
  }
  .p-office-issues__heading-title-en {
    font-size: 14px;
    transform: translateX(5px);
  }
  .p-office-issues__heading-title-ja {
    margin-top: 33px;
    font-size: 32px;
    line-height: 1;
  }
  .p-office-issues__heading-title-ja--highlight {
    font-size: 48px;
    letter-spacing: 0.12em;
  }
  .p-office-issues__heading-title-ja--highlight-inner::before {
    top: -4px;
  }
  .p-office-issues__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 48px;
  }
  .p-office-issues__img-contents {
    position: relative;
    z-index: 0;
    width: min(85vw, 1088px);
    margin: 47px auto 0;
    transform: translateX(5px);
  }
  .p-office-materials {
    max-width: 1160px;
    margin: 104px auto 0;
    padding-inline: 20px;
  }
  .p-office-materials__inner {
    margin-bottom: 64px;
  }
  .p-office-materials__container {
    padding: 46px 80px 54px;
  }
  .p-office-materials__heading-title-en {
    font-size: 14px;
    transform: translateX(5px);
  }
  .p-office-materials__heading-title-ja {
    margin-top: 15px;
    font-size: 24px;
    line-height: 1;
  }
  .p-office-materials__heading-title-ja--lg {
    font-size: 36px;
  }
  .p-office-materials__list {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-top: 41px;
    margin-bottom: 38px;
  }
  .p-office-materials__item {
    transition: opacity 0.3s ease;
  }
  .p-office-mv__img img {
    height: 756px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-office-mv__img-decoration {
    display: block;
    position: absolute;
    bottom: 0;
  }
  .p-office-mv__container {
    display: flex;
    align-items: flex-end;
    right: 0;
    left: 0;
    margin: auto;
    bottom: min(3.125vw, 40px);
    max-width: min(104.6875vw, 1340px);
    padding-left: min(6.25vw, 80px);
  }
  .p-office-mv__title-main {
    position: relative;
    top: min(-1.25vw, -16px);
  }
  .p-office-mv__title-main-inner {
    padding-top: min(0.390625vw, 5px);
    padding-bottom: min(0.390625vw, 5px);
    padding-left: min(1.484375vw, 19px);
    padding-right: min(2.8125vw, 36px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
  }
  .p-office-mv__title-main-inner + .p-office-mv__title-main-inner {
    margin-top: 5px;
  }
  .p-office-mv__title-main-inner--bottom {
    padding-top: min(0.390625vw, 5px);
    padding-bottom: min(0.390625vw, 5px);
    padding-left: min(1.484375vw, 19px);
    padding-right: min(2.109375vw, 27px);
  }
  .p-office-mv__title-main-text {
    line-height: 1.3;
    font-size: min(3.90625vw, 50px);
    letter-spacing: 0.14em;
  }
  .p-office-mv__title-main-text--small {
    font-size: min(2.5vw, 32px);
    letter-spacing: 0.14em;
  }
  .p-office-mv__title-main-text--bottom {
    letter-spacing: 0.12em;
  }
  .p-office-mv__title-main-text--small-bottom {
    letter-spacing: 0.1em;
  }
  .p-office-mv__title-sub {
    margin-top: min(0.9375vw, 12px);
  }
  .p-office-mv__title-sub-inner {
    padding-top: min(0.546875vw, 7px);
    padding-bottom: min(0.3125vw, 4px);
    padding-left: min(1.71875vw, 22px);
    padding-right: min(2.65625vw, 34px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
  }
  .p-office-mv__title-sub-text {
    line-height: 1;
    font-size: min(1.5625vw, 20px);
  }
  .p-office-mv__title-sub-text--bottom {
    padding-left: min(0.3125vw, 4px);
  }
  .p-office-mv__title-sub-text--strong {
    font-size: min(2.5vw, 32px);
  }
  .p-office-mv__title-sub-text--strong-num {
    font-size: min(2.8125vw, 36px);
  }
  .p-office-mv__title-annotation {
    margin-top: min(0.390625vw, 5px);
    padding-right: min(1.5625vw, 20px);
  }
  .p-office-mv__title-annotation small {
    text-align: right;
    font-size: min(0.859375vw, 11px);
  }
  .p-office-mv__type-group {
    -moz-column-gap: min(0.625vw, 8px);
    column-gap: min(0.625vw, 8px);
    left: max(-16.875vw, -216px);
    bottom: min(1.5625vw, 20px);
  }
  .p-office-mv__type-group img {
    width: min(6.875vw, 88px);
  }
  .u-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px){
  .p-office-example__pc-img-slider-handle::before {
    cursor: pointer;
  }
}
@media screen and (min-width: 1025px){
  .l-header__container {
    align-items: center;
  }
  .l-header__container-bg {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, rgba(102, 102, 102, 0) 100%);
    opacity: 0.45;
  }
  .l-header__container-bg.is-active {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .l-header__nav--sp {
    display: none;
  }
  .l-header__nav--pc {
    display: flex;
    -moz-column-gap: 46px;
    column-gap: 46px;
    padding-right: 41px;
  }
  .l-header__nav-logo {
    width: 200px;
    padding-block: 30px;
  }
  .l-header__nav-logo img {
    width: 120px;
  }
  .l-header__nav-list {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    -moz-column-gap: 39px;
    column-gap: 39px;
  }
  .l-header__nav-link {
    font-weight: 600;
    width: calc(100% + 13px);
    display: block;
    line-height: 1.5;
    transition: color 0.3s ease;
  }
  .l-header__nav-link.is-active {
    color: #000;
  }
  .l-header__nav-link-text::after {
    right: -15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .l-header__nav-link-text.is-active::after {
    background-color: #000;
  }
  .l-header__button-container {
    display: flex;
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .l-header__button {
    width: 180px;
    height: 40px;
  }
  .l-header__button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    will-change: transform;
  }
  .l-header__button-icon {
    transition: color 0.3s ease;
  }
  .l-header__button-icon--download {
    width: 13px;
    height: 18px;
    margin-right: 10px;
  }
  .l-header__button-icon--contact {
    width: 17px;
    height: 17px;
    margin-right: 8px;
  }
  .l-header__button-text {
    font-size: 13px;
    transition: color 0.3s ease;
  }
  .l-header__button-text--download {
    margin-right: -10px;
  }
  .l-header__hamburger {
    display: none;
  }
  .p-office-case__inner {
    padding-top: 100px;
    padding-bottom: 110px;
  }
  .p-office-case__heading {
    width: 545px;
    padding-left: min(7.8048780488vw, 80px);
    margin-top: 13px;
  }
  .p-office-case__heading::after {
    background-image: url(/lp/office_iten_renewal/img/case/case_title_pc.svg);
    background-size: contain;
    width: 430px;
    height: 170px;
    top: 7px;
    left: 600px;
    bottom: 0;
    margin: auto;
  }
  .p-office-case__heading.under-pc {
    display: none;
  }
  .p-office-case__heading.over-pc {
    display: block;
  }
  .p-office-case__heading-lead {
    margin-bottom: 7px;
    font-size: min(2.1875vw, 28px);
    line-height: 1.8;
  }
  .p-office-case__heading-title-wrapper {
    padding: 2px 10px 5px 13px;
    line-height: 1.4;
  }
  .p-office-case__heading-main-title {
    font-size: min(4.0975609756vw, 42px);
  }
  .p-office-case__heading-sub-title {
    font-size: min(3.0243902439vw, 31px);
  }
  .p-office-case__slide-modal {
    margin: 46px auto 0;
  }
  .p-office-case__slide-content {
    width: 100%;
  }
  .p-office-case__slide-item-outer {
    padding: 24px;
    cursor: pointer;
  }
  .p-office-case__slide-item-inner {
    padding: 11px 11px 24px 11px;
  }
  .p-office-case__slide-info {
    padding-inline: 12px;
  }
  .p-office-case__slide-img-wrapper {
    aspect-ratio: 301/182;
    overflow: hidden;
  }
  .p-office-case__slide-img-wrapper img {
    transition: transform 0.5s ease;
  }
  .p-office-case__slide-img-label {
    left: min(0.625vw, 8px);
    bottom: min(0.625vw, 8px);
    padding-top: max(0.234375vw, 3px);
    padding-bottom: max(0.3125vw, 4px);
    font-size: min(1.09375vw, 14px);
  }
  .p-office-case__slide-img-label--renewal {
    width: min(9.140625vw, 117px);
  }
  .p-office-case__slide-img-label--transfer {
    width: min(4.765625vw, 61px);
  }
  .p-office-case__slide-img-label--new {
    width: min(4.765625vw, 61px);
  }
  .p-office-case__slide-company {
    font-size: 13px;
    margin-top: 16px;
  }
  .p-office-case__slide-company-place {
    font-size: 18px;
  }
  .p-office-case__slide-company-datas {
    margin-top: 32px;
  }
  .p-office-case__slide-controls {
    top: -61px;
  }
  .p-office-case__slide-controls .swiper-button-next,
  .p-office-case__slide-controls .swiper-button-prev {
    transition: background-color 0.3s ease;
  }
  .p-office-case__slide-controls .swiper-button-next::after {
    transition: background-color 0.3s ease;
  }
  .p-office-case__slide-controls .swiper-button-prev::after {
    transition: background-color 0.3s ease;
  }
  .p-office-case__slide-pagination {
    font-size: 16px;
    bottom: -4px;
    left: -63px;
  }
  .p-office-case__slide-pagination .current {
    left: -3px;
  }
  .p-office-case__slide-pagination .total {
    right: -25px;
  }
  .p-office-contact__wrapper iframe {
    height: 920px;
  }
}
@media screen and (max-width: 1024px){
  .c-button__text {
    font-size: 15px;
  }
  .l-header__container {
    align-items: flex-end;
  }
  .l-header__container-bg {
    display: none;
  }
  .l-header__nav--sp {
    position: fixed;
    background-color: #24273C;
    width: 100%;
    height: 100%;
    left: 0;
    padding-top: 111px;
    padding-bottom: 100px;
    top: -100%;
    transition: transform 0.5s;
    overflow-y: auto;
  }
  .l-header__nav--sp.open {
    transform: translateY(100%);
  }
  .l-header__nav--pc {
    display: none;
  }
  .l-header__nav-logo {
    width: 143px;
    padding-top: 21px;
    padding-bottom: 22px;
  }
  .l-header__nav-logo img {
    width: 89px;
  }
  .l-header__nav-list {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
  }
  .l-header__nav-item:first-child {
    padding-top: 0;
  }
  .l-header__nav-link {
    font-weight: 500;
    line-height: 1.2;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .l-header__nav-link-text {
    left: -8px;
  }
  .l-header__nav-link-text::after {
    right: -17px;
  }
  .l-header__button-container {
    width: 100%;
    max-width: 319px;
    height: 56px;
    margin: 48px auto 0;
  }
  .l-header__button + .l-header__button {
    margin-top: 20px;
  }
  .l-header__button-icon--download {
    width: 17px;
    height: 22px;
    margin-right: 10px;
  }
  .l-header__button-icon--contact {
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }
  .l-header__button-text {
    font-size: 15px;
  }
  .l-header__hamburger {
    position: relative;
    display: block;
    background-color: #24273C;
    width: 70px;
    height: 62px;
    left: -4px;
  }
  .l-header__hamburger.open {
    background: var(--gradient-main);
  }
  .l-header__hamburger-icon {
    position: relative;
    display: block;
    width: 43%;
    height: 2px;
    background-color: #fff;
    border-radius: 12px;
    margin: 0 auto;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  .l-header__hamburger-icon::before, .l-header__hamburger-icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 12px;
    margin: 0 auto;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  .l-header__hamburger-icon::before {
    top: -8px;
  }
  .l-header__hamburger-icon::after {
    top: 8px;
  }
  .l-header__hamburger-icon.open {
    background: transparent;
  }
  .l-header__hamburger-icon.open::before {
    transform: rotate(45deg);
    top: 0;
  }
  .l-header__hamburger-icon.open::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .p-office-case__inner {
    padding-top: 52px;
    padding-bottom: 128px;
    overflow: hidden;
  }
  .p-office-case__heading {
    width: max(30.17578125vw, 309px);
    padding-left: max(2.34375vw, 24px);
    margin-top: 7px;
  }
  .p-office-case__heading::after {
    background-image: url(/lp/office_iten_renewal/img/case/case_title_sp.svg);
    background-size: 100% auto;
    width: min(55.2vw, 207px);
    height: min(21.3333333333vw, 80px);
    bottom: -58px;
    left: min(41.6vw, 156px);
    margin: auto;
  }
  .p-office-case__heading.under-pc {
    display: block;
  }
  .p-office-case__heading.over-pc {
    display: none;
  }
  .p-office-case__heading-lead {
    margin-bottom: 5px;
    font-size: min(5.3333333333vw, 20px);
    line-height: 1.7;
  }
  .p-office-case__heading-title-wrapper {
    padding: 5px 8px 4px 10px;
    line-height: 1.1;
  }
  .p-office-case__heading-title-wrapper + .p-office-case__heading-title-wrapper {
    margin-top: 5px;
  }
  .p-office-case__heading-main-title {
    font-size: max(3.125vw, 32px);
  }
  .p-office-case__heading-sub-title {
    font-size: max(2.34375vw, 24px);
    display: inline-block;
  }
  .p-office-case__slide-modal {
    margin-top: 64px;
  }
  .p-office-case__slide-item-outer {
    padding: 19px 13px 20px;
  }
  .p-office-case__slide-item-inner {
    padding: 12px 12px 20px 12px;
  }
  .p-office-case__slide-img-label {
    left: min(2.1333333333vw, 8px);
    bottom: min(2.1333333333vw, 8px);
    padding-top: max(0.8vw, 3px);
    padding-bottom: max(1.0666666667vw, 4px);
    font-size: min(3.7333333333vw, 14px);
  }
  .p-office-case__slide-img-label--renewal {
    width: min(31.2vw, 117px);
  }
  .p-office-case__slide-img-label--transfer {
    width: min(16.2666666667vw, 61px);
  }
  .p-office-case__slide-img-label--new {
    width: min(16.2666666667vw, 61px);
  }
  .p-office-case__slide-company {
    font-size: 12px;
    margin-top: 20px;
    padding-inline: 5px;
  }
  .p-office-case__slide-company-place {
    font-size: 17px;
    padding-inline: 5px;
  }
  .p-office-case__slide-company-datas {
    margin-top: 36px;
    padding-inline: 12px;
  }
  .p-office-case__slide-controls {
    bottom: -53px;
    right: 27px;
  }
  .p-office-case__slide-pagination .current {
    left: -3px;
  }
  .p-office-case__slide-pagination .total {
    right: -24px;
  }
  .p-office-contact__wrapper iframe {
    height: 1410px;
  }
}
@media screen and (max-width: 767px){
  .c-button--download-materials {
    margin-top: 33px;
  }
  .c-button--contact-materials {
    margin-top: 47px;
  }
  .c-button {
    width: 100%;
    max-width: 280px;
    height: 56px;
    margin-inline: auto;
  }
  .c-button__icon--download {
    width: 17px;
    height: 22px;
    margin-right: 10px;
  }
  .c-button__icon--contact {
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }
  .c-heading__label--flow {
    top: -8px;
    left: 5px;
    right: 0;
    margin: auto;
    width: 230px;
  }
  .c-heading__label--faq {
    top: -10px;
    left: 7px;
    right: 0;
    margin: auto;
    width: 160px;
  }
  .c-heading__label--contact {
    top: max(-2.4vw, -9px);
    left: min(-6.4vw, -24px);
    right: 0;
    margin: auto;
    width: max(104.2666666667vw, 391px);
  }
  .c-heading__title-ja {
    margin-top: 7px;
    font-size: 30px;
    letter-spacing: 0.1em;
    transform: translateX(1px);
  }
  .c-loop {
    top: -30px;
  }
  .c-loop__container {
    -moz-column-gap: 4px;
    column-gap: 4px;
    padding-left: 4px;
  }
  .c-loop__item {
    width: max(45.3333333333vw, 170px);
    margin: 0 auto;
  }
  .l-footer__top {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .l-footer__top-wrapper {
    justify-content: center;
    flex-direction: column;
    row-gap: 25px;
  }
  .l-footer__company-logo {
    width: 120px;
  }
  .l-footer__sns-logo-list {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
  .l-footer__sns-logo-item {
    width: 48px;
    height: 48px;
  }
  .l-footer__sns-logo-link img {
    width: 25px;
    height: 25px;
  }
  .l-footer__bottom {
    padding-block: 34px;
  }
  .l-footer__copy {
    font-size: 12px;
  }
  .p-office-case__modal-inner {
    width: min(80vw, 300px);
    height: min(107.2vw, 402px);
    padding-top: max(5.3333333333vw, 20px);
    padding-bottom: max(6.4vw, 24px);
    padding-left: max(5.3333333333vw, 20px);
    padding-right: max(5.3333333333vw, 20px);
  }
  .p-office-case__modal-company {
    font-size: 12px;
  }
  .p-office-case__modal-company-place {
    font-size: 19px;
    margin-top: 5px;
    line-height: 1.5;
  }
  .p-office-case__modal-img-wrapper {
    margin-top: 21px;
  }
  .p-office-case__modal-img-label {
    bottom: 8px;
    left: 8px;
  }
  .p-office-case__modal-text {
    font-size: 14px;
    margin-top: 20px;
  }
  .p-office-case .swiper-slide-button-next {
    right: -19px;
  }
  .p-office-case .swiper-slide-button-prev {
    left: -19px;
  }
  .p-office-contact__inner {
    margin-top: 0px;
    padding-top: 119px;
    padding-inline: 19px;
    padding-bottom: 100px;
    overflow: hidden;
  }
  .p-office-contact__wrapper {
    margin-top: 40px;
  }
  .p-office-cost {
    margin-top: 68px;
  }
  .p-office-cost__title-logo {
    height: 80px;
    width: 1284px;
  }
  .p-office-cost__title-logo::before {
    background-image: url(/lp/office_iten_renewal/img/cost/cost_title_sp.svg);
  }
  .p-office-cost__title-logo::after {
    background-image: url(/lp/office_iten_renewal/img/cost/cost_title_sp.svg);
  }
  .p-office-cost__inner {
    padding-inline: 20px;
    padding-bottom: 90px;
    margin-top: -27px;
  }
  .p-office-cost__inner::after {
    bottom: 12px;
    right: -10px;
    width: 287px;
    height: 287px;
  }
  .p-office-cost__img-contents {
    position: relative;
    right: -10px;
  }
  .p-office-cost__text-contents {
    position: relative;
    padding: 34px 31px 39px 28px;
    top: -7vw;
    left: -10px;
  }
  .p-office-cost__label {
    transform: translateX(13px);
  }
  .p-office-cost__label::before {
    width: 8px;
    height: 8px;
  }
  .p-office-cost__title {
    font-size: 24px;
    margin-top: 10px;
  }
  .p-office-cost__title--underline {
    padding-bottom: 4px;
  }
  .p-office-cost__lead {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-office-cost__button-group {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 40px;
  }
  .p-office-example {
    padding-bottom: 120px;
  }
  .p-office-example::before {
    top: -40px;
    background-image: url(/lp/office_iten_renewal/img/example/example_bg_sp.jpg);
  }
  .p-office-example__inner {
    padding-top: 69px;
    padding-inline: 10px;
  }
  .p-office-example__label-inner {
    padding: 2px 9px 2px 9px;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0.16em;
  }
  .p-office-example__title-wrapper {
    margin-top: 14px;
  }
  .p-office-example__title-container {
    padding: 8px 5px 9px 10px;
    line-height: 1.1;
    font-size: 24px;
  }
  .p-office-example__title-container + .p-office-example__title-container {
    margin-top: 5px;
  }
  .p-office-example__title--lg {
    font-size: 24px;
  }
  .p-office-example__title--sm {
    display: inline-block;
    margin-inline: -8px;
    font-size: 16px;
  }
  .p-office-example__title--bottom {
    letter-spacing: 0.15em;
  }
  .p-office-example__sp-img-wrapper {
    margin: 28px auto 0;
    max-width: 1000px;
  }
  .p-office-example__sp-img-title {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-family: "M PLUS Code Latin", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-bottom: 11px;
    transform: translateX(5px);
  }
  .p-office-example__sp-img-title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 2px;
    background-color: #fff;
    width: 8px;
    height: 8px;
    left: -14px;
  }
  .p-office-example__sp-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #fff;
    margin: 0 auto;
  }
  .p-office-example__sp-img-container.after {
    border-color: #FFFB00;
  }
  .p-office-example__sp-img-before, .p-office-example__sp-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
  }
  .p-office-example__sp-img-after {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .p-office-example__sp-img-before {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
  }
  .p-office-example__sp-img-change-control {
    display: flex;
    justify-content: center;
    margin-top: 23px;
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
  .p-office-example__sp-img-change-btn {
    position: relative;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    width: 100%;
    max-width: 110px;
    padding-block: 5px;
    border-radius: 2px;
  }
  .p-office-example__sp-img-change-btn--before {
    background-color: #fff;
  }
  .p-office-example__sp-img-change-btn--after {
    background-color: #FFFB00;
  }
  .p-office-example__sp-img-change-btn-icon {
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 12px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  .p-office-example__sp-img-change-btn-icon--before {
    background-color: #fff;
  }
  .p-office-example__sp-img-change-btn-icon--after {
    background-color: #FFFB00;
  }
  .p-office-example__button-group {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 47px;
  }
  .p-office-faq {
    margin-top: 49px;
    padding-top: 50px;
    padding-inline: 20px;
  }
  .p-office-faq__container {
    margin-top: 60px;
  }
  .p-office-faq__summary {
    padding: 16px 23px 16px 19px;
  }
  .p-office-faq__question {
    font-size: 16px;
    padding-right: 10px;
  }
  .p-office-faq__question span {
    font-size: 32px;
    margin-right: 11px;
    margin-top: -5px;
  }
  .p-office-faq__icon-container {
    padding-block: 16px;
    padding-left: 22px;
  }
  .p-office-faq__answer-inner {
    padding: 24px 24px 24px 24px;
  }
  .p-office-faq__answer {
    font-size: 14px;
  }
  .p-office-faq__button-group {
    flex-direction: column;
    row-gap: 24px;
    margin-top: 40px;
  }
  .p-office-feature {
    padding-top: 90px;
    margin-top: -40px;
  }
  .p-office-feature__heading-label-big {
    top: -15px;
    width: min(92.2666666667vw, 346px);
  }
  .p-office-feature__heading-title-ja {
    font-size: 20px;
    margin-top: 22px;
  }
  .p-office-feature__heading-sub-wrapper {
    margin-top: 18px;
  }
  .p-office-feature__heading-sub-title-inner {
    padding: 5px 15px 4px 18px;
    line-height: 1.1;
  }
  .p-office-feature__heading-sub-title {
    top: -4px;
    font-size: 36px;
  }
  .p-office-feature__heading-sub-title--num {
    top: 1px;
    font-size: 54px;
  }
  .p-office-feature__list {
    margin-top: 50px;
  }
  .p-office-feature__item:nth-child(even) {
    margin-left: 20px;
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-img-content {
    right: 24px;
  }
  .p-office-feature__item:nth-child(even) .p-office-feature__item-img-content::before {
    right: 20px;
  }
  .p-office-feature__item:nth-child(odd) {
    margin-right: 20px;
  }
  .p-office-feature__item:nth-child(odd) .p-office-feature__item-img-content::before {
    left: 20px;
  }
  .p-office-feature__item:nth-of-type(4) .p-office-feature__item-section-heading {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .p-office-feature__item + .p-office-feature__item {
    margin-top: 67px;
  }
  .p-office-feature__item-inner {
    padding-top: 40px;
    padding-inline: 24px;
    padding-bottom: 20px;
  }
  .p-office-feature__item-section-heading {
    padding-bottom: 24px;
    -moz-column-gap: 18px;
    column-gap: 18px;
    background-size: 100% 2px;
  }
  .p-office-feature__item-section-heading-num--01 {
    width: 59px;
  }
  .p-office-feature__item-section-heading-num--02 {
    width: 72px;
  }
  .p-office-feature__item-section-heading-num--03 {
    width: 74px;
  }
  .p-office-feature__item-section-heading-num--04 {
    width: 75px;
  }
  .p-office-feature__item-section-heading-lead {
    font-size: 17px;
    transform: translateY(-3px);
  }
  .p-office-feature__item-section-lead {
    margin-top: 24px;
    font-size: 15px;
  }
  .p-office-feature__item-img-content {
    width: calc(100% + 24px);
    margin-top: 33px;
  }
  .p-office-feature__item-img-content::before {
    top: 19px;
  }
  .p-office-flow__inner {
    padding-top: 81px;
    padding-bottom: 80px;
    padding-inline: 20px;
  }
  .p-office-flow__wrapper {
    display: flex;
    -moz-column-gap: 18px;
    column-gap: 18px;
    padding-inline: 20px;
  }
  .p-office-flow__container {
    margin-top: 62px;
  }
  .p-office-flow__step-list {
    display: flex;
    flex-direction: column;
  }
  .p-office-flow__step-item {
    display: grid;
    grid-template-columns: 1fr auto;
    -moz-column-gap: 18px;
    column-gap: 18px;
  }
  .p-office-flow__step-item:nth-of-type(1) .p-office-flow__step-item-inner {
    padding-top: 0;
  }
  .p-office-flow__step-item:nth-of-type(1) .p-office-flow__step-item-label::before {
    background-image: url(/lp/office_iten_renewal/img/flow/flow_step1_sp.png);
    top: 0;
  }
  .p-office-flow__step-item:nth-of-type(2) .p-office-flow__step-item-label::before {
    background-image: url(/lp/office_iten_renewal/img/flow/flow_step2_sp.png);
  }
  .p-office-flow__step-item:nth-of-type(3) .p-office-flow__step-item-label::before {
    background-image: url(/lp/office_iten_renewal/img/flow/flow_step3_sp.png);
  }
  .p-office-flow__step-item:nth-of-type(3) .p-office-flow__step-item-inner {
    padding-top: 49px;
  }
  .p-office-flow__step-item:nth-of-type(4) .p-office-flow__step-item-label::before {
    background-image: url(/lp/office_iten_renewal/img/flow/flow_step4_sp.png);
  }
  .p-office-flow__step-item:nth-of-type(5) .p-office-flow__step-item-label::before {
    background-image: url(/lp/office_iten_renewal/img/flow/flow_step5_sp.png);
  }
  .p-office-flow__step-item:nth-of-type(5) .p-office-flow__step-item-inner {
    padding-bottom: 115px;
  }
  .p-office-flow__step-item:nth-of-type(6) {
    position: relative;
    top: -66px;
    left: 5px;
    -moz-column-gap: 0;
    column-gap: 0;
    width: calc(100% - 10px);
  }
  .p-office-flow__step-item-label {
    width: max(10.6666666667vw, 40px);
  }
  .p-office-flow__step-item-label::before {
    height: calc(100% + min(6.9333333333vw, 26px));
    top: 22px;
  }
  .p-office-flow__step-item-label::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/lp/office_iten_renewal/img/flow/flow_arrow.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .p-office-flow__step-item-inner {
    padding-top: 56px;
  }
  .p-office-flow__step-title {
    margin-top: 22px;
    font-size: 20px;
  }
  .p-office-flow__step-text {
    margin-top: 12px;
    font-size: 14px;
    padding-inline: 12px;
  }
  .p-office-flow__step-text--strong {
    font-size: 14px;
  }
  .p-office-flow__step-item-img {
    width: 74.4vw;
    max-width: 500px;
    margin-inline: auto;
  }
  .p-office-flow__button-group {
    margin-top: -28px;
  }
  .p-office-flow__button-group {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-office-flow__step-button-wrapper {
    margin-top: 20px;
  }
  .p-office-flow__step-button {
    margin-inline: auto;
  }
  .p-office-flow__step-button-icon {
    margin-right: 8px;
  }
  .p-office-issues::after {
    background-image: url(/lp/office_iten_renewal/img/issues/issues_bg_sp.png);
  }
  .p-office-issues {
    margin-top: 113px;
  }
  .p-office-issues__inner {
    margin-top: 56px;
    padding-bottom: 90px;
  }
  .p-office-issues__container {
    padding-left: 11px;
    padding-right: 17px;
  }
  .p-office-issues__heading-label {
    top: -7px;
    left: -4px;
    width: 275px;
  }
  .p-office-issues__heading-title-en {
    font-size: 14px;
    transform: translateX(9px);
  }
  .p-office-issues__heading-title-ja {
    margin-top: 32px;
    font-size: 20px;
  }
  .p-office-issues__heading-title-ja--highlight {
    font-size: 42px;
  }
  .p-office-issues__heading-title-ja--highlight-inner::before {
    top: -6px;
  }
  .p-office-issues__img-contents {
    max-width: 450px;
    margin: 39px auto 0;
    transform: translateX(4px);
  }
  .p-office-materials {
    margin: 40px auto 0;
    padding-inline: 15px;
  }
  .p-office-materials__container {
    padding: max(3.3203125vw, 34px) max(2.1484375vw, 22px) max(3.90625vw, 40px);
  }
  .p-office-materials__heading-title-en {
    font-size: 14px;
    transform: translateX(9px);
  }
  .p-office-materials__heading-title-ja {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.5;
    transform: translateX(7px);
  }
  .p-office-materials__heading-title-ja--lg {
    font-size: 22px;
  }
  .p-office-materials__list {
    max-width: 350px;
    margin-inline: auto;
    margin-top: 21px;
  }
  .p-office-materials__item + .p-office-materials__item {
    margin-top: 12px;
  }
  .p-office-mv__img-decoration {
    display: none;
  }
  .p-office-mv__container {
    bottom: min(9.8666666667vw, 37px);
    right: 0;
    left: 0;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-office-mv__title-main-inner {
    padding-top: min(0.8vw, 3px);
    padding-bottom: min(1.8666666667vw, 7px);
    padding-left: min(3.7333333333vw, 14px);
    padding-right: min(5.6vw, 21px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  }
  .p-office-mv__title-main-inner + .p-office-mv__title-main-inner {
    margin-top: 4px;
  }
  .p-office-mv__title-main-inner--center {
    padding-top: min(0.8vw, 3px);
    padding-bottom: min(1.8666666667vw, 7px);
    padding-left: min(3.7333333333vw, 14px);
    padding-right: min(7.7333333333vw, 29px);
  }
  .p-office-mv__title-main-inner--bottom {
    padding-top: min(1.6vw, 6px);
    padding-bottom: min(1.3333333333vw, 5px);
    padding-left: min(3.4666666667vw, 13px);
    padding-right: min(6.6666666667vw, 25px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
  }
  .p-office-mv__title-main-text {
    line-height: 1.3;
    font-size: min(8.5333333333vw, 32px);
    letter-spacing: 0.12em;
  }
  .p-office-mv__title-main-text--small {
    line-height: 1.3;
    font-size: min(5.3333333333vw, 20px);
    letter-spacing: 0.12em;
  }
  .p-office-mv__title-sub {
    margin-top: min(4vw, 15px);
  }
  .p-office-mv__title-sub-inner {
    padding-top: min(2.4vw, 9px);
    padding-bottom: min(1.6vw, 6px);
    padding-left: min(3.4666666667vw, 13px);
    padding-right: min(9.0666666667vw, 34px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
  }
  .p-office-mv__title-sub-text {
    line-height: 1.2;
    font-size: min(3.4666666667vw, 13px);
  }
  .p-office-mv__title-sub-text--bottom {
    padding-left: min(0.8vw, 3px);
  }
  .p-office-mv__title-sub-text--strong {
    line-height: 1;
    font-size: min(6.4vw, 24px);
  }
  .p-office-mv__title-sub-text--strong-num {
    font-size: min(7.4666666667vw, 28px);
  }
  .p-office-mv__title-annotation {
    margin-top: 5px;
  }
  .p-office-mv__title-annotation small {
    font-size: 10px;
    line-height: 1;
  }
  .p-office-mv__type-group {
    left: min(2.6666666667vw, 10px);
    margin-top: min(6.6666666667vw, 25px);
  }
  .p-office-mv__type-group img {
    width: min(17.0666666667vw, 64px);
    margin-left: min(-1.8666666667vw, -7px);
  }
  .u-pc {
    display: none !important;
  }
}
@media (hover: hover) and (pointer: fine){
  .c-button:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
  .c-button:hover .c-button__icon--download {
    color: var(--green);
  }
  .c-button:hover .c-button__icon--contact {
    color: var(--orange);
  }
  .c-button:hover .c-button__text--download {
    color: var(--green);
  }
  .c-button:hover .c-button__text--contact {
    color: var(--orange);
  }
  .l-header__nav-item:hover .l-header__nav-link-text::after {
    transform: translateY(3px);
  }
  .l-header__button:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
  .l-header__button:hover .l-header__button-icon--download {
    color: var(--green);
  }
  .l-header__button:hover .l-header__button-icon--contact {
    color: var(--orange);
  }
  .l-header__button:hover .l-header__button-text--download {
    color: var(--green);
  }
  .l-header__button:hover .l-header__button-text--contact {
    color: var(--orange);
  }
  .p-office-case__slide-item-outer:hover .p-office-case__slide-img-wrapper img {
    transform: scale(1.05);
  }
  .p-office-case__slide-controls .swiper-button-next:hover,
  .p-office-case__slide-controls .swiper-button-prev:hover {
    background-color: #fff;
  }
  .p-office-case__slide-controls .swiper-button-next:hover::after, .p-office-case__slide-controls .swiper-button-next:hover::after,
  .p-office-case__slide-controls .swiper-button-prev:hover::after,
  .p-office-case__slide-controls .swiper-button-prev:hover::after {
    background-color: var(--blue);
  }
  .p-office-faq__answer-link:hover {
    opacity: 0.8;
  }
  .p-office-flow__step-button:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
  .p-office-flow__step-button:hover .p-office-flow__step-button-icon {
    color: var(--orange);
  }
  .p-office-flow__step-button:hover .p-office-flow__step-button-text {
    color: var(--orange);
  }
}