@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Base
  - Color
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
  - コンテンツ幅
  - 余白
  - header
  - footer
# Components
- アイコン
- セクションヘッダー
- 見出し
#Section
  - mv
  - intro
  - service
  - case
  - cta
  - 404
# Utilities
  - 印刷
	- Accessibility

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Color
--------------------------------------------- */
:root {
  --contrast-color: #222;
  --primary-color: #2a837d;
  --secondary-color: #ebcd51;
  --secondary-bg-color: #faf2d3;
  --accent-color: #d95e37;
}

/* Typography
--------------------------------------------- */
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

html {
  font-size: 100%;
}
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--contrast-color);
  font-size: 1rem;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", "Meiryo UI", "メイリオ", "Meiryo",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック体", " YuGothic", sans-serif;
  font-size: min(18 / 16 * 1rem, 18 * 1.5px);
  font-size: calc(18 / 16 * 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-block: var(--leading-trim) calc(var(--leading-trim) + 1.2em);
}

p,
li {
  line-height: 1.8;
  margin-block: var(--leading-trim);
}

em {
  font-style: normal;
}

@media (width < 48rem) {
  body {
    font-size: 1rem;
  }
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

a.underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: color-mix(in srgb, currentcolor, transparent 40%);
}

a:where(:visited) {
  color: inherit;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

:is(a, button):focus-visible {
  outline: 3px solid color-mix(in srgb, #000, transparent 40%);
  outline-offset: 5px;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*　コンテンツ幅
--------------------------------------------- */
:root {
  --num-site-inline: 20;
  --site-inline: 20px;
  --scroll-bar: 17px;
  padding-inline: var(--site-inline);
  --header-height: calc(80 / 16 * 1rem);
}

.content {
  max-width: min(1200 / 16 * 1rem, 1200 * 1.8px);
  margin-inline: auto;
}

.overflow {
  margin-inline: calc(var(--site-inline) * -1);
  padding-inline: var(--site-inline);
}

/*　余白
--------------------------------------------- */
:root {
  --space-xll: 180px;
  --space-xl: 120px;
  --space-l: 90px;
  --space-m: 60px;
  --space-s: 45px;
  --space-xs: 30px;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

.site-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  justify-content: space-between;
  z-index: 9999;
}
.h-bg {
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -10;
}
.h-logo {
  padding-left: 55px;
  margin: 0;
}

.h-logo__inner {
  display: flex;
  align-items: center;
  font-size: min(22 / 16 * 1rem, 22 * 1.5px);
}

.h-logo__line {
  border-left: 1px solid #000;
  height: 37px;
  display: block;
  margin-inline: 23px;
}
.h-right {
  display: flex;
  align-items: center;
  height: 100%;
}
.h-tel {
  display: flex;
  align-items: flex-end;
  font-size: calc(28 / 16 * 1rem);
  font-weight: bold;
  --icon-width: 30px;
  -webkit-margin-end: 36px;
  margin-inline-end: 36px;
  gap: 8px;
}

.h-btn {
  display: grid;
  justify-items: center;
  place-content: center;
  height: 100%;
  aspect-ratio: 1 / 1;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.h-btn.mail {
  background: var(--accent-color);
  --icon-width: 36px;
  font-size: var(--header-height);
}
.h-btn.mail:focus-visible {
  outline-offset: -3px;
}

.h-btn.mail span {
  font-size: 15%;
}

.h-btn.mail::before {
  margin-bottom: 6px;
}

.page-main {
  margin-top: var(--header-height);
}

@media (any-hover: hover) {
  .h-btn:hover {
    opacity: 0.6;
  }
}
@media (width < 75rem) {
  .h-logo {
    padding-left: var(--site-inline);
  }
  .h-tel {
    display: none;
  }
}

@media (width < 48rem) {
  :root {
    --header-height: clamp(4.375rem, 2.176rem + 8.5vw, 70px);
  }
  .h-logo {
    padding-left: var(--site-inline);
  }
  .h-btn {
    width: clamp(4.375rem, 2.176rem + 8.5vw, 6.25rem);
    font-size: clamp(0.625rem, 2.78vw, 1rem);
  }
  .h-logo img {
    width: clamp(1.875rem, -0.889rem + 12.29vw, 5rem);
  }
  .h-logo__line {
    margin-inline: 10px 8px;
  }
  .h-logo a {
    font-size: clamp(0.625rem, 2.78vw, 1rem);
    font-size: clamp(0.625rem, calc(12 / 360 * 100vw), 1rem);
  }
}

@media (width < 36rem) {
  .h-logo {
    padding-left: 8px;
  }
  .h-logo__line {
    height: 26px;
  }
}

/* footer
--------------------------------------------- */
.copyright {
  text-align: center;
  margin-top: var(--space-s);
}
.copyright * {
  font-size: calc(12 / 16 * 1rem);
}
.site-footer {
  padding-bottom: 20px;
  position: relative;
}

/* ページトップボタン
--------------------------------------------- */
.pagetop {
  position: absolute;
  right: var(--site-inline);
  right: 0;
  bottom: 20px;
  width: 50px;
  height: 50px;
}

.pagetop a {
  display: block;
  position: relative;
  z-index: 20;
}

.pagetop a::after {
  /* 矢印部分の背景色 */
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.pagetop img {
  width: 100%;
  height: 100%;
  -webkit-filter: invert(43%) sepia(33%) saturate(845%) hue-rotate(127deg)
    brightness(91%) contrast(82%);
  filter: invert(43%) sepia(33%) saturate(845%) hue-rotate(127deg)
    brightness(91%) contrast(82%);
}

@media (any-hover: hover) {
  .pagetop a:hover img {
    opacity: 0.6;
  }
}

@media (width < 48rem) {
  .pagetop {
    bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* 見出し
--------------------------------------------- */
.head {
  font-size: calc(42 / 16 * 1rem);
}
.head :is(h2, h3) {
  font-size: inherit;
}

.head .en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: calc(32 / 16 * 1rem);
  padding-bottom: 8px;
  text-transform: uppercase;
}

@media (width < 75rem) {
  .head {
    font-size: clamp(min(32 / 16 * 1rem, 32 * 1.5px), 42 / 992 * 100vw, 42px);
  }
  .head .en {
    font-size: clamp(min(28 / 16 * 1rem, 28 * 1.5px), 32 / 992 * 100vw, 32px);
  }
}

/* アイコン
--------------------------------------------- */

.tel::before {
  content: "";
  background-image: url("../images/ico-tel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  width: var(--icon-width, 48px);
  aspect-ratio: 1 / 1;
}

.tel-white::before {
  -webkit-filter: invert(100);
  filter: invert(100);
}

.mail::before {
  content: "";
  background-image: url("../images/ico-mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: var(--icon-width, 25px);
  aspect-ratio: 20 / 16;
}

.open-new::before {
  content: "";
  background-image: url("../images/ico-open_in_new.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 25px;
}
.open-new.white {
  -webkit-filter: invert(100);
  filter: invert(100);
}
/* セクションヘッダー
--------------------------------------------- */
.bg-sec-header {
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  color: #fff;
  min-height: calc(360 / 16 * 1rem);
  display: grid;
  place-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bg-sec-header .head {
  position: relative;
  z-index: 10;
}
.bg-sec-header .head :is(h2, h3) {
  margin-bottom: 0;
}
.service .head :is(h2, h3) {
  word-break: keep-all;
}
.bg-sec-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (width < 75rem) {
  .bg-sec-header {
    min-height: calc(223 / 16 * 1rem);
  }
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

/* mv
--------------------------------------------- */
.mv {
  height: clamp(
    calc(691 / 16 * 1rem),
    calc(100svh - var(--header-height)),
    calc(1080px - var(--header-height))
  );
  position: relative;
}

.mv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -10;
}

.mv__bg::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  position: absolute;
}

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

/* PC */
.mv__content {
  position: absolute;
  left: 44.53vw;
  top: 8.86vw;
  z-index: 10;
}
.mv__ttl {
  margin-block: 0;
}

.mv__ttl .line {
  display: inline-block;
  padding-inline: 0.333em;
  font-feature-settings: "palt";
  font-size: min(50 / 1920 * 100vw, 50px);
  line-height: 1.5;
  font-weight: bold;
  margin-block: 0;
  color: var(--accent-color);
  position: relative;
  opacity: 0;
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
  margin-top: 8px;
  -webkit-animation: mask 1s forwards;
  animation: mask 1s forwards;
}

.mv__ttl .line::after {
  content: "";
  width: 100%;
  height: 1lh;
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -10;
}

.mv .brackets {
  position: relative;
}

.mv .brackets::before {
  content: "「";
}
.mv .brackets::after {
  content: "」";
}

@-webkit-keyframes mask {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0% 100% 0% 0%);
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
    clip-path: inset(0% 0% 0% 0%);
  }
}

@keyframes mask {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0% 100% 0% 0%);
    clip-path: inset(0% 100% 0% 0%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
    clip-path: inset(0% 0% 0% 0%);
  }
}

.mv__ttl .big {
  margin-inline: 10px;
  width: min(75 / 1920 * 100vw, 75px);
  vertical-align: top;
  display: inline-block;
  line-height: 1;
  font-size: min(64 / 1920 * 100vw, 64px);
}

.mv__subttl {
  background: var(--accent-color);
  color: #fff;
  display: inline-block;
  font-size: min(32 / 1920 * 100vw, 32px);
  line-height: min(32 / 1920 * 100vw, 32px);
  padding-inline: min(21.65 / 1920 * 100vw, 21.65px);
  padding-block: min(10 / 1920 * 100vw, 10px);
  margin-block: 0;
  -webkit-animation: mask 1s forwards;
  animation: mask 1s forwards;
}

.mv__hgroup img {
  height: 32px;
  width: auto;
  display: inline-block;
  -webkit-filter: invert(100);
  filter: invert(100);
  vertical-align: text-top;
}

.mv__list {
  list-style-type: none;
  display: grid;
  gap: min(1.875vw, 36px);
  grid-template-columns: repeat(auto-fit, min(9.4vw, 180px));
  margin: 0;
  padding: 0;
  margin-top: 2rem;
}

.mv__list li {
  color: #fff;
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: min(24 / 1920 * 100vw, 24px);
  border-radius: 50%;
  background: var(--primary-color);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-block: 0;
}

.mv__list li::after {
  /* content: ""; */
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1 / 1;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: -10;
  border-radius: 50%;
  background: var(--primary-color);
}

.mv__list .big {
  font-size: calc(30 / 16 * 1rem);
  font-size: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  font-size: min(30 / 1920 * 100vw, 30px);
  margin-top: var(--leading-trim);
  font-weight: bold;
}

.mv__link {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.mv__b a {
  position: relative;
  width: min(300 / 16 * 1rem, 300 * 1.2px);
  max-width: 100%;
  display: block;
}
.mv__b a::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mv__b img {
  max-width: none;
  width: 100%;
}

.vrl {
  display: none;
}

@media (any-hover: hover) {
  .mv__b a:hover::after {
    opacity: 1;
  }
}

@media (width <= 75rem) {
  /* 1200px */
  .mv__content {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    top: 0;
    margin-block: auto;
    bottom: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .mv__list {
    grid-template-columns: repeat(
      4,
      min((100% - 30px) / 4, min(180 / 16 * 1rem, 180 * 1.6px))
    );
  }
  .mv__list li {
    max-width: 100%;
    font-size: min(18 / 360 * 100vw, 22px);
  }
  .mv__list .big {
    font-size: min(20 / 360 * 100vw, 26px);
  }

  .mv__ttl .line {
    font-size: min(50 / 1200 * 100vw, 50px);
  }

  .mv__ttl .big {
    width: min(75 / 1200 * 100vw, 75px);
    margin-inline: 10px 16px;
    font-size: min(75 / 1200 * 100vw, 75px);
    top: 0;
  }
  .mv__bg::after {
    opacity: 1;
  }
}

@media (width < 48rem) {
  /* 768px */

  .mv {
    height: auto;
    max-height: calc(100svh - var(--header-height));
    min-height: calc(527 / 16 * 1rem);
    padding-inline: 0;
  }

  .mv__inner {
    aspect-ratio: 16 / 24;
  }
  .mv__bg::after {
    opacity: 0;
  }

  .hor {
    display: none;
  }

  .vrl {
    display: block;
  }

  .mv__content {
    max-width: unset;
    bottom: unset;
    margin-block: unset;
    top: 8.86vw;
    height: 1000px;
    left: 0;
    width: 100%;
  }
  .mv__hgroup {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "palt";
    margin-left: auto;
    width: 100%;
    margin-right: calc(19 / 360 * 100vw);
  }
  .mv__subttl {
    display: none;
  }

  .mv__content .line {
    margin-top: 0;
    margin-right: 10px;
    line-height: 1;
    padding-block: 8px;
  }
  .mv__ttl {
    line-height: 1;
  }

  .mv__ttl .line {
    font-size: clamp(
      min(24 / 16 * 1rem, 24 * 1.5px),
      24 / 375 * 100vw,
      min(28 / 16 * 1rem, 28 * 1.5px)
    );
    animation: none;
    opacity: 1;
    clip-path: unset;
    /* max-width: 1.68em; */
  }

  .mv__ttl .big {
    margin-inline: 2px 4px;
    margin-inline: 6px 8px;
    margin-inline: 7px;
    transform: scale(1.2);
    font-family: monospace;
    font-size: inherit;
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
    width: auto;
  }

  .mv__ttl .line::after {
    height: 100%;
  }

  .mv__list {
    gap: 10px;
    grid-template-columns: repeat(
      2,
      min((100% - 10px) / 2, min(180 / 16 * 1rem, 180 * 1.6px))
    );
    justify-content: center;
    padding-inline: 5%;
  }
  .mv__list li {
    max-width: 100%;
    font-size: min(18 / 360 * 100vw, 22px);
  }

  .mv__list .big {
    font-size: clamp(
      min(20 / 16 * 1rem, 20 * 1.5px),
      20 / 360 * 100vw,
      min(26 / 16 * 1rem, 26 * 1.5px)
    );
  }

  .mv__link {
    gap: 10px;
    justify-content: center;
  }

  .vrl__ttl {
    margin-top: 2rem;
    text-align: center;
  }

  .vrl__ttl img {
    max-width: 100%;
    width: min(260 / 360 * 100vw, min(320 / 16 * 1rem, 320 * 1.5px));
    margin-inline: auto;
  }

  .vrl__ttl .sign {
    display: block;
    font-size: min(30 / 360 * 100vw, min(24 / 16 * 1rem, 24 * 1.5px));
    margin-top: 5px;
  }

  .vrl__ttl .big {
    font-size: min(30 / 360 * 100vw, min(32 / 16 * 1rem, 32 * 1.5px));
  }

  .mv .brackets {
    position: relative;
    display: inline-block;
    margin-inline: 0.5em 0.715em;
  }

  .mv .brackets::before {
    position: absolute;
    top: -1em;
    right: 0;
  }
  .mv .brackets::after {
    position: absolute;
    bottom: -1.15em;
    left: 0;
  }
  .mv__b {
    border: 1px solid #ccc;
  }
  .mv__b a {
    width: auto;
  }

  @-webkit-keyframes mask {
    from {
      opacity: 0;
      -webkit-clip-path: inset(0% 0% 100% 0%);
      clip-path: inset(0% 0% 100% 0%);
    }
    to {
      opacity: 1;
      -webkit-clip-path: inset(0% 0% 0% 0%);
      clip-path: inset(0% 0% 0% 0%);
    }
  }

  @keyframes mask {
    from {
      opacity: 0;
      -webkit-clip-path: inset(0% 0% 100% 0%);
      clip-path: inset(0% 0% 100% 0%);
    }
    to {
      opacity: 1;
      -webkit-clip-path: inset(0% 0% 0% 0%);
      clip-path: inset(0% 0% 0% 0%);
    }
  }
}

/* t-intro
--------------------------------------------- */
.t-intro__inner {
  padding-top: var(--space-xl);
}

.t-intro__ttl {
  font-size: calc(30 / 16 * 1rem);
  color: var(--primary-color);
}

.t-intro__content p + p {
  margin-top: 0;
}

.t-intro__content p {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.t-intro__content + .t-intro__content {
  padding-top: 50px;
}

@media (width <= 75rem) {
  .t-intro__inner {
    padding-top: var(--space-m);
  }
  .t-intro__ttl {
    font-size: clamp(24 / 16 * 1rem, 30 / 992 * 100vw, 30px);
    font-size: clamp(min(24 / 16 * 1rem, 24 * 1.8px), 30 / 992 * 100vw, 30px);
  }
}

.t-intro__problem {
  margin: 0;
  margin-top: 62px;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 60px;
}
.problem {
  --img-offset: 38px;
  -webkit-padding-end: var(--img-offset);
  padding-inline-end: var(--img-offset);
}

.problem__item {
  width: calc((100% - 120px) / 3);
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 0px 0px 7px rgb(238, 238, 238, 0.65);
  font-weight: bold;
  position: relative;
  font-size: calc(20 / 16 * 1rem);
  place-content: center;
  padding-block: 30px;
  padding-inline: 38px;
  word-break: keep-all;
  text-align: center;
  overflow-wrap: break-word;
  line-height: 1.6;
  margin-block: 0;
}

.problem__item::after {
  content: "";
  position: absolute;
  right: calc(var(--img-offset) * -1);
  bottom: -15px;
  display: block;
  background-position: right;
  width: 98px;
  height: 98px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
.problem__item:first-of-type:after {
  background-image: url(../images/image-problem-01.svg);
}
.problem__item:nth-of-type(2):after {
  background-image: url(../images/image-problem-02.svg);
}
.problem__item:last-of-type:after {
  background-image: url(../images/image-problem-03.svg);
}
.problem__next {
  display: grid;
  place-content: center;
  gap: 20px;
  margin-inline: auto;
  margin-top: calc(76 / 16 * 1rem);
}

.problem__next p {
  font-size: min(28 / 16 * 1rem, 28 * 1.5px);
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
}

.problem__next .small {
  font-size: 80%;
  display: block;
  padding-bottom: 4px;
}

.problem__next::before {
  content: "";
  display: block;
  background-image: url("../images/image-arrow.svg");
  width: 140px;
  height: 36px;
  margin-inline: auto;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: invert(79%) sepia(65%) saturate(414%) hue-rotate(358deg)
    brightness(96%) contrast(93%);
  filter: invert(79%) sepia(65%) saturate(414%) hue-rotate(358deg)
    brightness(96%) contrast(93%);
}

@media (width <= 75rem) {
  .problem__item {
    max-width: min(360 / 16 * 1rem, 100%);
    aspect-ratio: 360 / 165;
    font-size: calc(20 / 1200 * 100vw);
    font-size: max(1rem, 20 / 1200 * 100vw);
  }
  .problem__item::after {
    width: calc(98 / 1200 * 100vw);
  }
  .problem__next {
    --offset-top: 15px;
    --margin-top: 62px;
    margin-top: calc(var(--offset-top) + var(--margin-top));
  }
}

@media (width < 62rem) {
  .problem {
    flex-direction: column;
    align-items: center;
  }
  .problem__item {
    width: 100%;
    min-height: calc(165 / 16 * 1rem);
    font-size: min(20 / 16 * 1rem, 20 * 1.5px);
  }
  .problem__item::after {
    width: max(80px, 80 / 768 * 100vw);
  }
  .t-intro__content {
    max-width: 48rem;
    margin-inline: auto;
  }
}

@media (width < 48rem) {
  .problem__item {
    font-size: 1rem;
  }
  .problem__next {
    --margin-top: 38px;
  }
  .problem__next p {
    font-size: min(24 / 16 * 1rem, 24 * 1.5px);
  }
}

/* service
--------------------------------------------- */
.t-service__inner {
  margin-top: var(--space-xl);
}

.service-group {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  --offset-x: calc(
    (100vw - min(1200 / 16 * 1rem, 1200 * 1.8px) - var(--scroll-bar)) / 2
  );
  gap: 4vw;
  margin-top: var(--space-l);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-group:last-of-type .service-group__body {
  padding-bottom: 0;
}

.service-group__body {
  padding-block: 0 var(--space-m);
  position: relative;
  max-width: min(772 / 16 * 1rem, 772 * 1.8px);
}

.service-group__strong {
  font-weight: bold;
  line-height: 1.4;
  font-size: min(24 / 16 * 1rem, 24 * 1.5px);
  margin-top: 1em;
}

.service-group__strong .dots {
  color: var(--accent-color);
  position: relative;
}
.service-group__strong .dots .char {
  position: relative;
  display: inline-block;
  margin-top: 0.6em;
}
.service-group__strong .dots .char::before {
  content: "・";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin-inline: auto;
  text-align: center;
}

html:not([lang="ja"]) .service-group__strong .dots .char {
  display: none;
}

html:not([lang="ja"]) .service-group__strong .dots .alternative {
  all: initial !important;
  font: inherit !important;
  color: var(--accent-color) !important;
}

.service-group__link {
  max-width: calc(283 / 16 * 1rem);
  height: calc(51 / 16 * 1rem);
  margin-top: 26px;
}

.service-group__link a {
  display: grid;
  place-content: center;
  font-weight: bold;
  grid-template-columns: auto auto;
  gap: 20px;
  align-items: center;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  transition: opacity 0.4s;
}

@media (any-hover: hover) {
  .service-group__link a:hover {
    opacity: 0.6;
  }
}

@media (width < 48rem) {
  .service-group__strong .dots .char {
    margin-top: 0.3em;
  }
  .service-group__strong .dots .char::before {
    top: -0.85em;
    font-size: 0.666em;
  }
  .service-group__strong .sp {
    display: none;
  }
}

.service-group__list {
  margin-top: 1.25em;
}
.list01 {
  background: var(--secondary-bg-color);
  border-radius: 20px;
  padding-block: 30px;
  padding-inline: 30px;
}
.list01 :is(p, li) {
  line-height: 1.6;
}
.list01__title {
  margin-bottom: 0.333em;
}

.list01 .list01__title:not(:first-of-type) {
  margin-top: 1.333em;
}

.circle-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.circle-list li,
.circle-list-text {
  position: relative;
  -webkit-padding-start: 1.333em;
  padding-inline-start: 1.333em;
}

.circle-list li + li {
  margin-top: 0.666em;
}

.circle-list li::before,
.circle-list-text:before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 5px; /* 微調整 */
  top: 0.666em;
}

.service-group__catch {
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.4;
  margin-bottom: 1.25em;
  color: var(--primary-color);
  font-weight: bold;
}
.service-group__image {
  max-width: 500px;
  aspect-ratio: 500 / 354;
  width: calc(500 / 1920 * 100vw);
  flex-shrink: 0;
}

.service-group__image img {
  width: 100%;
  height: auto;
}

.service-group__image .in-box {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  display: grid;
  grid-template-rows: 1fr auto;
}
.service-group__image .in-box img {
  width: min(340 / 16 * 1rem, 68%);
  align-self: center;
  justify-self: center;
}
.service-group__image .in-box .text {
  background: #f9f9f9;
  font-size: 1rem;
  text-align: center;
  padding: 18px 20px;
  border-top: 1px solid #eee;
}

.service-group__ttl .ja {
  align-items: center;
  gap: 14px;
  position: relative;
}
.service-group__ttl {
  font-size: min(32 / 16 * 1rem, 32 * 1.5px);
  margin-bottom: 0.6em;
}
.service-group.reverse {
  flex-direction: row-reverse;
  -webkit-margin-end: var(--offset-x);
  margin-inline-end: var(--offset-x);
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  justify-self: flex-start;
}
.service-group.normal {
  -webkit-margin-start: var(--offset-x);
  margin-inline-start: var(--offset-x);
  -webkit-margin-end: calc(var(--site-inline) * -1);
  margin-inline-end: calc(var(--site-inline) * -1);
}
.service-group.reverse .service-group__image {
  order: -1;
}

@media (width < 75rem) {
  .service-group:is(.reverse, .normal) {
    margin-inline: 0;
  }
  .service-group.normal {
    grid-template-columns: 60% 1fr;
  }
  .service-group.reverse {
    grid-template-columns: 40% 1fr;
  }
  .service-group__image {
    width: 100%;
  }
  .service-group__ttl {
    font-size: clamp(min(26 / 16 * 1rem, 26 * 1.5px), 26 / 992 * 100vw, 26px);
  }
  .service-group__ttl .en {
    font-size: 1rem;
  }
  .service-group__catch {
    font-size: min(20 / 16 * 1rem, 20 * 1.8px);
  }
}

@media (width < 62rem) {
  .service-group {
    --offset-x: 0;
    margin-top: var(--space-m);
    max-width: 48rem;
    width: auto;
  }

  .service-group:is(.reverse, .normal) {
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .service-group__body {
    padding-block: 44px 68px;
  }
  .t-service .service-group:not(:first-of-type) {
    margin-top: 0;
  }
  .service-group__image {
    aspect-ratio: 750 / 311;
    max-width: none;
    height: 100%;
  }
  .service-group__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .service-group__image .in-box img {
    height: auto;
  }

  .service-group__image .in-box .text {
    display: none;
  }

  .service-group.normal .service-group__image {
    order: -1;
  }

  .service-group:is(.reverse, .normal) .service-group__body {
    padding-inline: 0;
  }
}

@media (width <48rem) {
  .list01 {
    padding-inline: 15px;
    padding-block: 20px;
  }
}

/* case
--------------------------------------------- */
.t-case {
  background: var(--primary-color);
  padding-block: var(--space-l) var(--space-xl);
  margin-top: var(--space-xll);
}
.t-case .head {
  color: #fff;
  text-align: center;
}

/* case-group */

.case-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px 30px;
}
.case-group + .case-group {
  margin-top: var(--space-m);
}

.case-group__head {
  --bg: #f0f0f0;
  padding-top: 45px;
}
.case-group__link {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  justify-content: flex-end;
}
.case-group__head img {
  margin-inline: auto;
}

.case-group .head {
  color: var(--contrast-color);
  font-weight: normal;
  font-size: calc(32 / 16 * 1rem);
}
.case-group .head .en {
  color: var(--primary-color);
  display: block;
  font-size: calc(30 / 16 * 1rem);
}

.case-group__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.case-group__list li {
  display: flex;
  gap: 10px;
}

.case-group__list li::before {
  content: "";
  background-image: url("../images/ico-checkmark.svg");
  width: calc(20 / 16 * 1rem);
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0.333em;
  flex-shrink: 0;
  -webkit-filter: invert(49%) sepia(6%) saturate(7%) hue-rotate(0deg)
    brightness(92%) contrast(88%);
  filter: invert(49%) sepia(6%) saturate(7%) hue-rotate(0deg) brightness(92%)
    contrast(88%);
}
.case_group__support li::before {
  -webkit-filter: invert(42%) sepia(45%) saturate(561%) hue-rotate(127deg)
    brightness(93%) contrast(90%);
  filter: invert(42%) sepia(45%) saturate(561%) hue-rotate(127deg)
    brightness(93%) contrast(90%);
}

.case-group__list li + li {
  margin-top: 0.8em;
}

.case-group__list .text a {
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-text-decoration-color: color-mix(
    in srgb,
    currentColor,
    transparent 40%
  );
  text-decoration-color: color-mix(in srgb, currentColor, transparent 40%);
}
.case-group__list .text a:focus-visible {
  outline-offset: 0px;
}

@media (any-hover: hover) {
  .case-group__list .text a:hover {
    text-decoration: none;
  }
}

/* case-block */
.case-block {
  background: var(--bg, var(--secondary-bg-color));
  position: relative;
  padding-inline: 14px;
  padding-bottom: 45px;
}
.case-block:not(.case_group__support)::after {
  content: "";
  position: absolute;
  inset-inline-end: -19px; /* 隙間が空くのを防ぐため */
  inset-block: 0;
  margin-block: auto;
  width: 20px;
  height: 40px;
  background-color: var(--bg, var(--secondary-bg-color));
  -webkit-clip-path: polygon(20px 50%, 0% 0%, 0% 40px);
  clip-path: polygon(20px 50%, 0% 0%, 0% 40px);
}

.case-block__ttl {
  background: var(--secondary-color);
  text-align: center;
  font-size: calc(24 / 16 * 1rem);
  padding-block: 20px;
  margin-inline: -14px;
}

@media (width < 75rem) {
  .case-group .head {
    font-size: min(28 / 16 * 1rem, 28 * 1.5px);
  }
  .case-group .head .en {
    font-size: min(24 / 16 * 1rem, 24 * 1.5px);
  }
}

@media (width < 62rem) {
  .t-case {
    margin-top: var(--space-l);
    padding-block: var(--space-m);
  }
  .case-group {
    max-width: 48rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 40px;
    margin-inline: auto;
  }
  .case-group + .case-group {
    margin-top: var(--space-s);
  }
  .case-group__link {
    grid-column: unset;
    grid-row: unset;
    margin-top: -20px;
  }

  .case-group__head img {
    aspect-ratio: 556 / 230;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .case-block {
    padding-inline: var(--site-inline);
  }
  .case-block:not(:last-of-type)::after {
    inset-inline: 50% 0;
    inset-block: initial;
    inset-block-end: -40px;
    transform: translateX(100%) rotate(90deg);
    transform-origin: left top;
  }
  .case-block__ttl {
    padding-block: 20px;
    margin-inline: calc(var(--site-inline) * -1);
    font-size: clamp(22 / 16 * 1rem, 24 / 992 * 100vw, 24px);
  }
}

/* 取引実績企業
--------------------------------------------- */
.achievements .swiper {
  width: 100%;
  height: auto;
}

.achievements .swiper-slide {
  height: auto;
}

.achievements .company-card {
  height: 100%;
}
.achievements-slides {
  position: relative;
  max-width: min(1420 / 16 * 1rem, 1490 * 1.8px);
  margin-inline: auto;
  margin-top: var(--space-xl);
}
.achievements-slides .swiper-pagination {
  position: relative;
  margin-top: var(--space-s);
  top: 100%;
  bottom: 0;
}
.achievements-slides .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  --swiper-pagination-bullet-horizontal-gap: 16px;
  opacity: 1;
  background: #ccc;
}

.achievements-slides .swiper-button-next.swiper-button-disabled,
.achievements-slides .swiper-button-prev.swiper-button-disabled {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
    saturate(7357%) hue-rotate(51deg) brightness(117%) contrast(60%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7357%)
    hue-rotate(51deg) brightness(117%) contrast(60%);
}

.achievements .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.achievements-slides .swiper-button-next,
.achievements-slides .swiper-button-prev {
  width: 82px;
  height: 82px;
}
.achievements-slides .swiper-button-next {
  inset-inline: unset;
  right: 0;
}
.achievements-slides .swiper-button-prev {
  inset-inline: unset;
  left: 0;
}

.achievements-slides .swiper-button-next:after,
.achievements-slides .swiper-button-prev:after {
  content: "";
  background-image: url(../images/ico-slide-arrow.svg);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: invert(42%) sepia(45%) saturate(561%) hue-rotate(127deg)
    brightness(93%) contrast(90%);
  filter: invert(42%) sepia(45%) saturate(561%) hue-rotate(127deg)
    brightness(93%) contrast(90%);
}

.achievements-slides .swiper-button-next:after {
  transform: scale(-1);
}

@media (width < 75rem) {
  .achievements-slides__bottom {
    position: relative;
    display: flex;
    margin-top: var(--space-m);
    justify-content: center;
    align-items: center;
  }
  .achievements-slides__bottom * {
    position: relative;
    inset: unset;
    margin-top: 0 !important;
  }
  .achievements-slides .swiper-pagination {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
  }
  .achievements-slides :is(.swiper-button-next, .swiper-button-prev) {
    top: 100%;
    width: 34px;
    height: 34px;
  }
  .achievements-slides .swiper-button-next {
    -webkit-margin-start: 40px;
    margin-inline-start: 40px;
  }
  .achievements-slides .swiper-button-prev {
    -webkit-margin-end: 40px;
    margin-inline-end: 40px;
  }
  .achievements .swiper-slide {
    width: 354px;
  }
}

@media (width < 62rem) {
  .achievements-slides {
    margin-top: 50px;
  }
}

@media (width < 36rem) {
  .achievements .swiper-slide {
    width: 354px;
    max-width: 100%;
  }
  .achievements .company-card {
    margin-inline: auto;
  }
  .achievements-slides__bottom {
    justify-content: space-between;
  }
  .achievements-slides .swiper-button-next {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
  .achievements-slides .swiper-button-prev {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

/* カンパニーカード */
.company-card {
  border: 3px solid var(--primary-color);
  max-width: min(354 / 16 * 1rem, 354 * 1.8px);
  padding: var(--space-xs) 20px;
}
.company-card__header {
  text-align: center;
  font-size: calc(14 / 16 * 1rem);
  padding-bottom: 16px;
}
.company-card__ttl {
  font-size: calc(24 / 16 * 1rem);
  font-weight: normal;
  margin-bottom: 6px;
}

.company-card__thumb {
  aspect-ratio: 300 / 185;
}

.company-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.company-card__content {
  margin-top: 20px;
}
.compnay-cord__list {
  margin: 0;
  padding: 0;
  margin-top: 20px;
  list-style-type: none;
  font-size: calc(14 / 16 * 1rem);
}
.compnay-cord__list li {
  display: flex;
  gap: 6px;
}
.compnay-cord__list li::before {
  content: "・";
}
/* カンパニーカード end */

@media (width < 75rem) {
  .company-card__ttl {
    font-size: min(22 / 16 * 1rem, 22 * 1.5px);
  }
}

/* cta
--------------------------------------------- */

.cta {
  margin-top: var(--space-m);
  background: var(--secondary-bg-color);
  border-radius: 40px;
  padding: 40px;
  color: #000;
}
.cta-btn-wrap {
  background: #f9f9f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-block: 20px;
  padding-inline: 20px;
  margin-top: 20px;
}

.cta__ttl {
  text-align: center;
  font-size: calc(42 / 16 * 1rem);
  word-break: keep-all;
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__ttl::before {
  content: "";
  background-image: url("../images/logo.png");
  width: calc(90 / 16 * 1rem);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  aspect-ratio: 89 / 37;
}
.cta__text {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: calc(20 / 16 * 1rem);
}

.cta-tel {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: flex-start;
}

.cta-tel__tel {
  font-size: calc(30 / 16 * 1rem);
  display: flex;
  gap: 10px;
  font-weight: bold;
}
.cta-tel__cap {
  font-size: calc(18 / 16 * 1rem);
  margin-left: calc(var(--icon-width, 48px) + 15px);
}

.cta-btn {
  max-width: calc(320 / 16 * 1rem);
  aspect-ratio: 370 / 80;
  width: 100%;
  --icon-width: 40px;
}

.cta-btn h3 {
  margin-bottom: 0;
  height: 100%;
}

.cta-btn a {
  padding-inline: 12px;
  font-size: min(26 / 16 * 1rem, 26 * 1.5px);
  display: grid;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  background: var(--accent-color);
  grid-template-columns: auto auto;
  gap: 10px;
}

.cta-btn__ttl {
  font-size: min(24 / 16 * 1rem, 24 * 1.5px);
  font-weight: bold;
  margin: 0;
}

@media (any-hover: hover) {
  .cta-btn a:hover {
    opacity: 0.6;
  }
}

@media (width <= 75rem) {
  .cta__text {
    font-weight: normal;
    margin-top: 6px;
  }
  .cta-btn-wrap {
    flex-direction: column;
    align-items: center;
  }
  .cta__ttl {
    font-size: min(28 / 16 * 1rem, 28 * 1.5px);
    padding-bottom: 15px;
  }
  .cta-btn {
    --icon-width: 36px;
  }
  .cta-tel__tel {
    --icon-width: min(36 / 16 * 1rem, 36 * 1.5px);
    font-size: clamp(min(26 / 16 * 1rem, 26 * 1.5px), 30 / 992 * 100vw, 30px);
    align-items: center;
  }
}

@media (width < 48rem) {
  .cta {
    padding: 20px;
  }
  .cta__ttl::before {
    width: clamp(70 / 16 * 1rem, 90 / 768 * 100vw, 90px);
  }
}

/* 404
--------------------------------------------- */
.page-404 {
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: var(--header-height) 1fr auto;
}

.page-404 main {
  grid-area: main;
  display: grid;
  place-content: center;
}

.page-404 header {
  grid-area: header;
}

.page-404 footer {
  grid-area: footer;
}
.btn-404 {
  max-width: calc(283 / 16 * 1rem);
  height: calc(51 / 16 * 1rem);
  margin-top: 26px;
}
.btn-404 a {
  display: grid;
  place-content: center;
  font-weight: bold;
  gap: 20px;
  align-items: center;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
}

@media (any-hover: hover) {
  .btn-404 a:hover {
    opacity: 0.6;
  }
}

/*--------------------------------------------------------------
# ユーティリティ
--------------------------------------------------------------*/

/* 印刷
--------------------------------------------- */
@media print {
  [data-aos] {
    opacity: 1 !important;
    transform: none;
  }

  .problem__item::after {
    display: none;
  }

  .mv__b a:not([tabindex="-1"])::before {
    content: " (" attr(href) ")";
    position: absolute;
    left: 0;
    top: calc(100% + 1lh);
    color: #000;
  }
  .service-group__link a {
    position: relative;
  }
  .service-group__link a::after {
    content: " (" attr(href) ")";
    position: absolute;
    left: 0;
    top: calc(100% + 1lh);
    color: #000;
  }
  .circle-list,
  .circle-list-text {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .u-print {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .site-header {
    display: none;
  }
}

/* アクセシビリティ
--------------------------------------------- */

.alternative {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

#first-archive[tabindex="-1"]:focus {
  outline: 0;
}
