@charset "UTF-8";
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
:root {
  /* サイトカラー */
  --color-primary: #BD0E76;
  --color-secondary: #1F8D53;
  --color-tertiary: #51AFF8;
  --color-quaternary:#FFE640;
  --color-text: #000000;
  --color-bg: #F7F7F7;
  /* font */
  --font-base: "M PLUS 1", "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "Yu Mincho", "游明朝", "Noto Serif JP", serif;
  --font-en: "Outfit", serif;
  --font-size13: clamp(0.688rem, 0.598rem + 0.45vw, 0.813rem);
  --font-size14: clamp(0.75rem, 0.661rem + 0.45vw, 0.875rem);
  --font-size15: clamp(0.813rem, 0.723rem + 0.45vw, 0.938rem);
  --font-size18: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
  /* header */
  --header-height-sm: 64px;
  --header-height-md: 88px;
  --header-height-lg: 110px;
  /* inner */
  --inner-max-width-sm: 880px;
  --inner-max-width-md: 1080px;
  --inner-max-width-lg: 1240px;
  --inner-max-width-xl: 1360px;
  /* carousel */
  --carousel-gap: 3rem;
  --carousel-duration: 50s;
  /* padding */
  --padding-md: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
  --padding-lg: clamp(7.5rem, 7.143rem + 1.79vw, 8.75rem);
}

/*======================
  reset
======================*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

svg,
img,
picture {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/*=======================
  breakpoints
=======================*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*=======================
  scroll animation
=======================*/
/*=======================
  carousel (infinite loop)
=======================*/
@-webkit-keyframes carousel-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes carousel-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*=======================
  fv
=======================*/
@-webkit-keyframes fv-deco-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fv-deco-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fv-deco-sway {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes fv-deco-sway {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes fv-deco-sway02 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes fv-deco-sway02 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
html.js .fv__illust.deco-bottom02 {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.fv__illust.deco-bottom02 > img {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.fv__illust.deco-bottom02.is-animated {
  -webkit-animation: fv-deco-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
          animation: fv-deco-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.fv__illust.deco-bottom02.is-animated > img {
  -webkit-animation: fv-deco-sway 1.8s ease-in-out 0.9s infinite;
          animation: fv-deco-sway 1.8s ease-in-out 0.9s infinite;
}

html.js .fv__sub-title .svg-light {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  transform-box: fill-box;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.fv__sub-title .svg-light__sway {
  transform-box: fill-box;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.fv__sub-title.is-animated .svg-light {
  -webkit-animation: fv-deco-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
          animation: fv-deco-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.fv__sub-title.is-animated .svg-light__sway {
  -webkit-animation: fv-deco-sway02 1.8s ease-in-out 0.9s infinite;
          animation: fv-deco-sway02 1.8s ease-in-out 0.9s infinite;
}

@media (prefers-reduced-motion: reduce) {
  html.js .fv__illust.deco-bottom02,
  html.js .fv__sub-title .svg-light {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .fv__illust.deco-bottom02.is-animated,
  .fv__illust.deco-bottom02.is-animated > img,
  .fv__sub-title.is-animated .svg-light,
  .fv__sub-title.is-animated .svg-light__sway {
    -webkit-animation: none;
            animation: none;
  }
}
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  base
======================*/
* {
  min-height: 0vw;
  /* Safari clamp関数対策 */
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
  scroll-padding-top: var(--header-height-md);
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: var(--header-height-lg);
  }
}

body {
  background-color: transparent;
  padding-top: var(--header-height-md);
}
@media screen and (min-width: 768px) {
  body {
    padding-top: var(--header-height-lg);
  }
}
body {
  color: var(--color-text);
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-autospace: normal;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  body a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*======================
  svg
======================*/
.svg,
.svg-defs {
  display: none;
  position: relative;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.svg-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon-arrow {
  width: 1.125rem;
  height: 1.125rem;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  header
======================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height-md);
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: var(--header-height-lg);
  }
}
.l-header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
     -moz-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
          column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
  /* 16 - 32 */
  width: 100%;
  height: 100%;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: 2.2%;
  }
}
.l-header__logo {
  display: block;
  width: 5rem;
  aspect-ratio: 120/90;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: clamp(5rem, 3.571rem + 2.98vw, 6.25rem);
    /* 100 - 100 */
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
     -moz-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
          column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
  /* 16 - 32 */
}
.l-header__nav-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
       -moz-column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
            column-gap: clamp(1rem, -0.143rem + 2.38vw, 2rem);
    /* 16 - 32 */
    font-size: clamp(0.813rem, 0.67rem + 0.3vw, 0.938rem);
    /* 13 - 15 */
    font-weight: 600;
  }
}
.l-header__nav-link {
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-link:hover {
    color: var(--color-secondary);
  }
}
.l-header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    padding: 0.5rem 1.375rem 0.5rem 1.125rem;
    background-color: #06C755;
    border-radius: calc(infinity * 1px);
    -webkit-box-shadow: 0px 5px 0px 0px rgb(37, 169, 95);
            box-shadow: 0px 5px 0px 0px rgb(37, 169, 95);
    font-size: clamp(0.813rem, 0.67rem + 0.3vw, 0.938rem);
    /* 13 - 15 */
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__cta:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.l-header__cta .icon-line {
  width: clamp(2rem, 1.429rem + 1.19vw, 2.5rem);
  /* 32 - 40 */
  aspect-ratio: 1/1;
}
.l-header__cta .text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-navbtn {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-color: #25A95F;
  border-radius: 4px;
  border: none;
  text-align: center;
  cursor: pointer;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-navbtn {
    display: none;
  }
}
.l-navbtn.is-active .m-top {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
  background: #fff;
}
.l-navbtn.is-active .m-middle {
  display: none;
}
.l-navbtn.is-active .m-bottom {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  background: #fff;
}
.l-navbtn__bar {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.l-navbtn__bar.m-top {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
}
.l-navbtn__bar.m-middle {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-navbtn__bar.m-bottom {
  -webkit-transform: translate(-50%, calc(-50% + 6px));
          transform: translate(-50%, calc(-50% + 6px));
}

.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 30rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 996;
}
.l-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-nav__inner {
  margin-left: auto;
  height: 100svh;
}
.l-nav__wrap {
  width: 100%;
  height: 100%;
  padding: 6.25rem 1rem;
  background-color: var(--color-bg-tertiary);
}
@media screen and (min-width: 768px) {
  .l-nav__wrap {
    padding: 5rem 1.5rem;
  }
}
.l-nav__link {
  display: block;
  padding: 1.25rem 0.625rem;
  border-bottom: 1px solid #E0E0E0;
  letter-spacing: 0;
}
.l-nav__cta-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}
.l-nav__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  padding: 0.5rem 1.375rem 0.5rem 1.125rem;
  background-color: #06C755;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 0px 5px 0px 0px rgb(37, 169, 95);
          box-shadow: 0px 5px 0px 0px rgb(37, 169, 95);
  font-size: clamp(0.813rem, 0.67rem + 0.3vw, 0.938rem);
  /* 13 - 15 */
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-nav__cta {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__cta:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.l-nav__cta .icon-line {
  width: clamp(2rem, 1.429rem + 1.19vw, 2.5rem);
  /* 32 - 40 */
  aspect-ratio: 1/1;
}
.l-nav__cta .text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*======================
  footer
======================*/
.l-footer {
  position: relative;
  padding-top: 6.25rem;
  background-color: #70C0FF;
}
.l-footer__top {
  position: absolute;
  right: 1.5rem;
  bottom: 12%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  font-family: var(--font-en);
  font-weight: 600;
}
.l-footer__top .icon-arrow-up {
  width: 1.125rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__top {
    right: 2.5rem;
  }
}
.l-footer__info {
  margin-block: 3rem 7.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    margin-block: 3rem 5rem;
  }
}
.l-footer__logo {
  display: block;
  width: 8.75rem;
  height: auto;
  margin-inline: auto;
}
.l-footer__info-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__info-address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-footer__info-address .item {
  position: relative;
  padding-left: 1.25rem;
  white-space: nowrap;
}
.l-footer__info-address .item::before {
  content: "";
  background-image: url(../img/icon_map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0.25rem;
  left: 0;
}
.l-footer__info-license {
  margin-top: 1.25rem;
}
.l-footer__info-link {
  display: inline-block;
  margin-top: 1.25rem;
  border-bottom: 1px solid var(--color-text);
}
.l-footer__info-link .icon-window {
  display: inline-block;
  width: 1rem;
  height: auto;
}
.l-footer__deco {
  background-image: url(../img/bg_footer.svg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
  width: 200%;
  height: auto;
  aspect-ratio: 1440/113;
}
@media screen and (min-width: 600px) {
  .l-footer__deco {
    width: 100%;
  }
}
.l-footer_copyright {
  background-color: #fff;
  padding: 1rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.75rem;
  text-align: center;
  color: #9E9E9E;
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
  position: relative;
  overflow-x: clip;
}

/*=======================
  container
=======================*/
.l-container {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-inline: 5.5%;
    max-width: var(--inner-max-width-md);
  }
}

.l-container--sm {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container--sm {
    padding-inline: 5.5%;
    max-width: var(--inner-max-width-sm);
  }
}

.l-container--lg {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .l-container--lg {
    padding-inline: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .l-container--lg {
    max-width: var(--inner-max-width-lg);
  }
}

/*=======================
  cta
=======================*/
.l-cta {
  position: relative;
  background-color: #fff;
  border-radius: 1.25rem;
  border: 3px solid var(--color-text);
  padding: 4.5rem max(2.2%, 1rem) 10rem max(2.2%, 1rem);
}
@media screen and (min-width: 600px) {
  .l-cta {
    padding: 4.5rem max(2.2%, 1rem) 3.5rem max(2.2%, 1rem);
  }
}
.l-cta::before {
  content: "";
  background-image: url("../img/title_head_b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4.75rem;
  aspect-ratio: 76/36;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-cta .deco-top::before, .l-cta .deco-top::after,
.l-cta .deco-bottom::before,
.l-cta .deco-bottom::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 2px solid var(--color-text);
  position: absolute;
}
.l-cta .deco-top::before {
  top: 16px;
  left: 16px;
}
.l-cta .deco-top::after {
  top: 16px;
  right: 16px;
}
.l-cta .deco-bottom::before {
  bottom: 16px;
  left: 16px;
}
.l-cta .deco-bottom::after {
  bottom: 16px;
  right: 16px;
}
.l-cta__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 29.7%;
  min-width: 12.5rem;
  aspect-ratio: 336/300;
  margin-inline: auto;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .l-cta__img {
    max-width: 20.0625rem;
    aspect-ratio: 336/429;
    left: 75%;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 768px) {
  .l-cta__img {
    top: 45%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 81%;
  }
}
.l-cta__title {
  position: relative;
  width: 100%;
  max-width: 17.5rem;
  aspect-ratio: 374/69;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-cta__title {
    width: 35.6%;
    max-width: 23.375rem;
    min-width: 17.5rem;
  }
}
.l-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .l-cta__inner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-cta__inner {
    gap: 0.625rem 1rem;
    width: 91.7%;
    margin-inline: auto;
  }
}
.l-cta__item {
  position: relative;
  background-color: var(--color-bg);
  padding: 2rem 6%;
  border-radius: 0.625rem;
}
.l-cta__item.item-tel .color {
  color: var(--color-primary);
}
.l-cta__item.item-tel .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
.l-cta__item.item-tel .tel-icon {
  width: clamp(1.75rem, 0.893rem + 1.79vw, 2.5rem);
  /* 28 - 40 */
  aspect-ratio: 1/1;
}
.l-cta__item.item-tel .tel-num {
  font-family: var(--font-en);
  font-size: clamp(1.438rem, 1.214rem + 1.12vw, 1.75rem);
  /* 23 - 28 */
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-cta__item.item-tel .tel-num {
    font-size: clamp(1.75rem, 0.893rem + 1.79vw, 2.5rem);
    /* 28 - 40 */
  }
}
.l-cta__item-time {
  margin-top: 0.25rem;
  font-size: clamp(0.75rem, 0.607rem + 0.3vw, 0.875rem);
  /* 12 - 14 */
  text-align: center;
}
.l-cta__item.item-line .color {
  color: var(--color-secondary);
}
.l-cta__item-head {
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
  /* 18 - 20 */
  font-weight: 700;
  text-align: center;
}

.l-cta.solution-cta {
  background-color: var(--color-secondary);
  border: none;
  padding-bottom: 2.5rem;
  z-index: 10;
}
.l-cta.solution-cta::before {
  content: "";
  background-image: url("../img/title_head.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4.75rem;
  aspect-ratio: 76/36;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-cta.solution-cta .l-cta__inner {
  margin-top: 8.75rem;
}
@media screen and (min-width: 600px) {
  .l-cta.solution-cta .l-cta__inner {
    margin-top: 1rem;
  }
}
.l-cta.solution-cta .solution-cta__illust {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  max-width: 6.25rem;
  aspect-ratio: 182/259;
}
@media screen and (min-width: 600px) {
  .l-cta.solution-cta .solution-cta__illust {
    width: 33.6%;
    max-width: 6.875rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 768px) {
  .l-cta.solution-cta .solution-cta__illust {
    max-width: 11.25rem;
  }
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*======================
  btn
======================*/
.c-cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 0.25rem;
  background-color: var(--color-primary);
  border-radius: calc(infinity * 1px);
  padding: 0.625rem 1.25rem 0.625rem 1.375rem;
  min-height: 4rem;
  -webkit-box-shadow: 0px 6px 0px 0px rgb(159, 10, 98);
          box-shadow: 0px 6px 0px 0px rgb(159, 10, 98);
  color: #fff;
  line-height: 1.3;
}
.c-cta-btn .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.25rem;
}
.c-cta-btn .sub {
  display: inline-block;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  padding: 0.0625rem 0.375rem 0.125rem 0.375rem;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.c-cta-btn .icon-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1rem;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: #25A95F;
  border-radius: calc(infinity * 1px);
  padding: 0.625rem 1.25rem 0.625rem 1.5rem;
  min-height: 4rem;
  -webkit-box-shadow: 0px 6px 0px 0px rgb(47, 118, 81);
          box-shadow: 0px 6px 0px 0px rgb(47, 118, 81);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-btn {
    min-width: 13.75rem;
    font-size: 0.9375rem;
  }
}
.c-btn .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem 0.375rem;
}
@media screen and (min-width: 600px) {
  .c-btn .head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .c-btn .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .c-btn .head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn .name {
  background-color: #fff;
  color: #25A95F;
  border-radius: calc(infinity * 1px);
  padding: 0.0625rem 0.375rem 0.125rem 0.375rem;
  font-size: 0.75rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-btn.primary {
  background-color: var(--color-primary);
  -webkit-box-shadow: 0px 6px 0px 0px rgb(159, 14, 118);
          box-shadow: 0px 6px 0px 0px rgb(159, 14, 118);
}
.c-btn.primary .name {
  color: var(--color-primary);
}

/*=======================
  head
=======================*/
.c-title {
  margin-bottom: clamp(2rem, 1.714rem + 1.43vw, 3rem);
  /* 32 - 48 */
  font-size: clamp(1.75rem, 1.536rem + 1.07vw, 2.5rem);
  /* 28 - 40 */
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.c-title .color {
  color: var(--color-primary);
}
.c-title .sp-only {
  display: block;
}
@media screen and (min-width: 390px) {
  .c-title .sp-only {
    display: none;
  }
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
.u-fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

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

.u-color-bg {
  background-color: var(--color-bg);
}

.u-color-bg-secondary {
  background-color: var(--color-bg-secondary);
}

.u-color-bg-tertiary {
  background-color: var(--color-bg-tertiary);
}

.u-mt-16 {
  margin-top: 1rem;
}

.u-mt-24 {
  margin-top: 1.5rem;
}

.u-mt-32 {
  margin-top: 2rem;
}

.u-mt-40 {
  margin-top: 2.5rem;
}

.u-mt-56 {
  margin-top: 3.5rem;
}

.u-mt-64 {
  margin-top: 4rem;
}

.u-mt-80 {
  margin-top: 5rem;
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*====================================================
*
*	Home
*
====================================================*/
/* ---  fv  --- */
.fv {
  position: relative;
  overflow-x: clip;
}
.fv::after {
  content: "";
  background-image: url(../img/fv_foot_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 767/151;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .fv::after {
    background-image: url(../img/fv_foot.svg);
    aspect-ratio: 1440/146;
  }
}
.fv__inner {
  position: relative;
  padding-block: clamp(1.875rem, 0.354rem + 7.61vw, 4rem) 19.7vw;
  /* 30 - 64 */
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-block: clamp(2rem, -0.286rem + 4.76vw, 4rem) 7.6vw;
    /* 32 - 64 */
  }
}
@media screen and (min-width: 1440px) {
  .fv__inner {
    max-width: 107.5rem;
    margin-inline: auto;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-bottom: 6vw;
}
.fv__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(20rem, 9.262rem + 53.69vw, 35rem);
  /* 320 - 560 */
  background-color: #70C0FF;
}
@media screen and (min-width: 768px) {
  .fv__bg::before {
    height: clamp(18.125rem, 13.625rem + 9.38vw, 22.063rem);
    /* 290 - 353 */
  }
}
@media screen and (min-width: 1920px) {
  .fv__bg::before {
    height: 18.75rem;
  }
}
.fv__bg::after {
  content: "";
  background-image: url(../img/bg_fv.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 101%;
  aspect-ratio: 1440/87;
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fv__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-areas: "title ." "title text" "title text" "service01 text" "service01 service03" "service02 service03" "service02 service04" ". service04";
  gap: 0.25rem;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 11.7vw;
}
@media screen and (min-width: 600px) {
  .fv__list {
    gap: 0.625rem;
    width: 83.9%;
  }
}
@media screen and (min-width: 768px) {
  .fv__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "title service01 text" "service02 service03 service04";
    width: 83.3%;
    max-width: 56.25rem;
    padding-bottom: 0;
  }
}
.fv__item {
  position: relative;
}
.fv__item:nth-of-type(1) {
  grid-area: title;
}
.fv__item:nth-of-type(2) {
  grid-area: service01;
}
@media screen and (min-width: 768px) {
  .fv__item:nth-of-type(2) {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
.fv__item:nth-of-type(2) .illust {
  top: -1rem;
  left: -34%;
  width: 57%;
  max-width: 10.4375rem;
  aspect-ratio: 167/152;
}
@media screen and (min-width: 768px) {
  .fv__item:nth-of-type(2) .illust {
    top: -2.5rem;
    left: -23%;
  }
}
.fv__item:nth-of-type(3) {
  grid-area: text;
}
.fv__item:nth-of-type(4) {
  grid-area: service02;
}
.fv__item:nth-of-type(4) .illust {
  bottom: -2rem;
  left: -17.9%;
  width: 39%;
  max-width: 7.3125rem;
  aspect-ratio: 117/119;
}
@media screen and (min-width: 768px) {
  .fv__item:nth-of-type(4) .illust {
    left: -17.9%;
    top: -1.5rem;
    bottom: auto;
  }
}
.fv__item:nth-of-type(5) {
  grid-area: service03;
}
.fv__item:nth-of-type(5) .illust {
  top: -1rem;
  right: -6%;
  width: 36.5%;
  max-width: 6.6875rem;
  aspect-ratio: 107/82;
}
@media screen and (min-width: 768px) {
  .fv__item:nth-of-type(5) .illust {
    left: -12.9%;
    right: auto;
  }
}
.fv__item:nth-of-type(6) {
  grid-area: service04;
}
.fv__item:nth-of-type(6) .illust {
  top: -1.875rem;
  right: -4%;
  width: 36.9%;
  max-width: 6.75rem;
  aspect-ratio: 108/98;
}
@media screen and (min-width: 768px) {
  .fv__item:nth-of-type(6) .illust {
    left: -8.6%;
    right: auto;
  }
}
.fv__sub-title {
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 100%;
  aspect-ratio: 356/168;
}
@media screen and (min-width: 768px) {
  .fv__sub-title {
    bottom: 0;
    left: calc(clamp(2.25rem, -2.321rem + 9.52vw, 6.25rem) * -1);
    /* -36 - 100 */
    width: 121.5%;
    max-width: 22.25rem;
  }
}
.fv__text .label {
  padding: 0 1rem;
  max-width: 15.625rem;
  margin-inline: auto;
  background-color: var(--color-quaternary);
  border-radius: 0.5rem;
  border: 3px solid var(--color-text);
  padding-bottom: 0.125rem;
  font-size: clamp(1rem, 0.284rem + 3.58vw, 2rem);
  /* 16 - 32 */
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__text .label {
    max-width: 14rem;
    font-size: clamp(1.125rem, 0.411rem + 1.49vw, 1.75rem);
    /* 18 - 28 */
  }
}
.fv__text .label:not(:first-of-type) {
  margin-top: 0.25rem;
}
.fv__text .text-img {
  margin-block: 0.5rem;
  max-width: 15.625rem;
  margin-inline: auto;
  font-size: 100%;
}
@media screen and (min-width: 768px) {
  .fv__text .text-img {
    max-width: 14rem;
  }
}
.fv__service {
  position: relative;
  display: grid;
  place-items: center;
  place-content: center;
  background-image: url(../img/bg_green.jpg);
  background-size: 16px;
  background-repeat: repeat;
  background-position: center;
  padding: 1rem 6px;
  height: 100%;
  border-radius: 0.625rem;
  border: 3px solid var(--color-text);
  font-size: clamp(1.125rem, 0.051rem + 5.37vw, 2.625rem);
  /* 18 - 40 */
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .fv__service {
    padding: 1rem 6.8%;
    height: auto;
    font-size: clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem);
    /* 24 - 40 */
    text-align: center;
  }
}
.fv__service .illust {
  position: absolute;
}
.fv__attention {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__attention {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    text-align: center;
  }
}
.fv__logo {
  width: 88.6%;
  max-width: 38.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__logo {
    width: 75.6%;
    max-width: 51.0625rem;
    margin-top: 2.5rem;
  }
}
.fv__deco {
  position: absolute;
  width: 4.1%;
  max-width: 1.875rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__deco {
    width: 7.5%;
    max-width: 1.375rem;
  }
}
.fv__deco.deco-top02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__deco.deco-top02 {
    display: block;
    right: 0;
    top: -0.625rem;
  }
}
.fv__deco.deco-top03 {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__deco.deco-top03 {
    display: block;
    right: 2rem;
    bottom: 1rem;
  }
}
.fv__deco.deco-top04 {
  display: block;
  right: 8%;
  bottom: 57.6vw;
}
@media screen and (min-width: 768px) {
  .fv__deco.deco-top04 {
    display: none;
  }
}
.fv__deco.deco-top05 {
  display: block;
  left: 24%;
  bottom: 74vw;
}
@media screen and (min-width: 768px) {
  .fv__deco.deco-top05 {
    display: none;
  }
}
.fv__deco.deco-top06 {
  display: block;
  left: 42%;
  top: max(18.5%, 7.5rem);
}
@media screen and (min-width: 768px) {
  .fv__deco.deco-top06 {
    display: none;
  }
}
.fv__illust {
  position: absolute;
  z-index: 10;
}
.fv__illust.deco-top01 {
  left: 0;
  top: 52%;
  width: 14.1%;
  max-width: 6.75rem;
}
@media screen and (min-width: 768px) {
  .fv__illust.deco-top01 {
    left: auto;
    right: 3%;
    top: 1rem;
    max-width: none;
    width: clamp(7.5rem, -4.214rem + 24.4vw, 17.75rem);
    /*120 - 284*/
  }
}
.fv__illust.deco-bottom01 {
  left: -14%;
  bottom: 1.5rem;
  width: 40.4%;
  max-width: 19.375rem;
}
@media screen and (min-width: 768px) {
  .fv__illust.deco-bottom01 {
    left: -8%;
    width: 26.6%;
    max-width: 23.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .fv__illust.deco-bottom01 {
    left: -5.4%;
  }
}
.fv__illust.deco-bottom02 {
  right: 0.5rem;
  bottom: 0.625rem;
  width: 24.8%;
  max-width: 11.875rem;
}
@media screen and (min-width: 768px) {
  .fv__illust.deco-bottom02 {
    right: -1.25rem;
    bottom: 2rem;
    width: 18.5%;
    max-width: 16.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .fv__illust.deco-bottom02 {
    right: 1rem;
  }
}

/* ---  intro  --- */
.intro {
  background-color: #fff;
  padding-top: calc(5rem + 14.2vw);
  padding-bottom: calc(9.375rem + 15.5vw);
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .intro {
    padding-top: clamp(4rem, 1.429rem + 5.36vw, 6.25rem);
    /* 64 - 100 */
    padding-bottom: clamp(4rem, 2.857rem + 2.38vw, 5rem);
    /* 64 - 80 */
    margin-bottom: 0;
  }
}
.intro__inner {
  position: relative;
  display: grid;
  place-items: center;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .intro__inner {
    background-color: transparent;
    background-image: url(../img/bg_intro_sp.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/bg_intro_md.svg);
    aspect-ratio: 1080/674;
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .intro__inner {
    background-image: url(../img/bg_intro.svg);
    aspect-ratio: 1080/522;
  }
}
.intro__inner::before {
  content: "";
  background-color: #f4f4f4;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .intro__inner::before {
    display: none;
  }
}
.intro__bg::before {
  content: "";
  background-image: url(../img/bg_intro_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: 768/109;
  position: absolute;
  top: -14.2vw;
  left: 0;
}
.intro__bg::after {
  content: "";
  background-image: url(../img/bg_intro_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  aspect-ratio: 768/119;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: absolute;
  bottom: -15.5vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .intro__bg {
    display: none;
  }
}
.intro__illust {
  position: absolute;
  z-index: 10;
}
.intro__illust.deco-bottom01 {
  width: 60%;
  min-width: 15rem;
  max-width: 18.75rem;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .intro__illust.deco-bottom01 {
    width: 46.9%;
    min-width: 18.75rem;
    max-width: 22.5rem;
  }
}
@media screen and (min-width: 768px) {
  .intro__illust.deco-bottom01 {
    width: 18.5%;
    min-width: 0;
    max-width: 12.5rem;
    left: -7%;
    top: auto;
    bottom: 2.5rem;
    -webkit-transform: none;
            transform: none;
  }
}
.intro__illust.deco-bottom02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .intro__illust.deco-bottom02 {
    display: block;
    width: 18.5%;
    max-width: 12.5rem;
    right: -7%;
    bottom: 2.5rem;
  }
}
.intro__title {
  position: relative;
  z-index: 10;
  font-size: clamp(1.5rem, 1.142rem + 1.79vw, 2rem);
  /* 24 - 32 */
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .intro__title {
    font-size: clamp(1.5rem, 0.929rem + 1.19vw, 2rem);
    /* 24 - 32 */
  }
}
.intro__title .color {
  display: inline-block;
  margin-inline: 0.375rem 0.5rem;
  font-size: clamp(1.75rem, 1.303rem + 2.24vw, 2.375rem);
  /* 28 - 38 */
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .intro__title .color {
    font-size: clamp(1.75rem, 1.214rem + 1.19vw, 2.375rem);
    /* 28 - 38 */
  }
}
.intro__title .icon {
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 27/34;
  margin-bottom: 0.5rem;
}
.intro__list {
  width: 100%;
  margin-block: 1.5rem 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .intro__list {
    width: 90%;
    margin-block: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .intro__list {
    width: 100%;
    margin-block: 2rem;
  }
}
.intro__item {
  position: relative;
  padding-left: 2.25rem;
  font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
  /* 16 - 20 */
}
@media screen and (min-width: 768px) {
  .intro__item {
    font-size: clamp(1rem, 0.714rem + 0.6vw, 1.25rem);
    /* 16 - 20 */
  }
}
@media screen and (min-width: 1024px) {
  .intro__item {
    padding-left: 2.5rem;
  }
}
.intro__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-image: url(../img/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .intro__item::before {
    width: 1.75rem;
  }
}
.intro__item:not(:first-of-type) {
  margin-top: 1rem;
}

/* ---  solution  --- */
.solution {
  position: relative;
  background-image: url(../img/bg_green.jpg);
  background-size: 16px;
  background-repeat: repeat;
  background-position: center;
  padding-top: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
  /* 100 - 120 */
  overflow-x: clip;
}
.solution::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: clamp(3.5rem, 2.714rem + 3.93vw, 6.25rem);
  /* 56 - 110 */
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.solution__text {
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
  /* 24 - 32 */
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .solution__text {
    top: 0;
  }
}
.solution__title {
  margin-top: clamp(0rem, -3.429rem + 7.14vw, 3rem);
  /* 0 - 48 */
  font-size: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
  /* 24 - 32 */
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.solution__title .color {
  color: var(--color-quaternary);
}
.solution__title .text {
  position: relative;
  display: inline-block;
}
.solution__title .text::before, .solution__title .text::after {
  content: "";
  width: 2px;
  height: 4rem;
  background-color: #fff;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
}
.solution__title .text::before {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  left: -1rem;
}
@media screen and (min-width: 600px) {
  .solution__title .text::before {
    left: -2.25rem;
  }
}
.solution__title .text::after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  right: -0.75rem;
}
@media screen and (min-width: 600px) {
  .solution__title .text::after {
    right: -2rem;
  }
}
.solution-cta {
  margin-top: 2rem;
}

/* ---  service  --- */
.service {
  position: relative;
  background-color: var(--color-bg);
  padding-top: clamp(12.5rem, 11.786rem + 3.57vw, 15rem);
  /* 200 - 240 */
  margin-top: -5rem;
  z-index: 0;
  overflow-x: clip;
}
.service__carousel {
  position: absolute;
  top: 5rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  font-family: var(--font-en);
  font-size: clamp(5rem, 4.643rem + 1.79vw, 6.25rem);
  /* 80 - 100 */
  line-height: 1;
  color: #EFEFEF;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.service__carousel-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-column-gap: var(--carousel-gap);
     -moz-column-gap: var(--carousel-gap);
          column-gap: var(--carousel-gap);
  padding-left: var(--carousel-gap);
  -webkit-animation: carousel-scroll var(--carousel-duration) linear infinite;
          animation: carousel-scroll var(--carousel-duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .service__carousel-track {
    -webkit-animation: none;
            animation: none;
  }
}
.service__lead {
  line-height: 1.8;
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  /* 15 - 18 */
  font-weight: 600;
}
@media screen and (min-width: 390px) {
  .service__lead {
    text-align: center;
  }
}
.service__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem 2rem;
  margin-top: 1rem;
}
@media screen and (min-width: 600px) {
  .service__comment {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.service__comment-text {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 367/102;
}
@media screen and (min-width: 600px) {
  .service__comment-text {
    width: 51.2%;
    min-width: 21.25rem;
    max-width: 34.5625rem;
    aspect-ratio: 553/71;
  }
}
.service__comment-deco {
  margin-right: 2rem;
  width: 24%;
  min-width: 7.5rem;
  aspect-ratio: 178/185;
}
@media screen and (min-width: 600px) {
  .service__comment-deco {
    width: 18.5%;
    min-width: unset;
  }
}
.service__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(8, 1fr);
  grid-template-areas: "box01" "box02" "box03" "box04" "box05" "box06" "box07" "box08";
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  .service__list {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas: "box01 box01 box01 box02 box02 box02" "box03 box03 box03 box04 box04 box04" "box05 box05 box05 box06 box06 box06" "box07 box07 box07 box08 box08 box08";
  }
}
@media screen and (min-width: 768px) {
  .service__list {
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: "box01 box01 box02 box02 box03 box03" "box04 box04 box05 box05 box06 box06" ". box07 box07 box08 box08 .";
  }
}
.service__item {
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 3px solid var(--color-text);
}
@media screen and (min-width: 1024px) {
  .service__item {
    padding: 1rem;
  }
}
.service__item:nth-child(1) {
  grid-area: box01;
}
.service__item:nth-child(2) {
  grid-area: box02;
}
.service__item:nth-child(3) {
  grid-area: box03;
}
.service__item:nth-child(4) {
  grid-area: box04;
}
.service__item:nth-child(5) {
  grid-area: box05;
}
.service__item:nth-child(6) {
  grid-area: box06;
}
.service__item:nth-child(7) {
  grid-area: box07;
}
.service__item:nth-child(8) {
  grid-area: box08;
}
.service__item-img {
  width: 100%;
  aspect-ratio: 318/271;
  border-radius: 0.5rem;
  overflow: hidden;
}
.service__item-title {
  margin-top: 0.625rem;
  font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
  /* 15 - 18 */
  font-weight: 700;
  text-align: center;
}
.service .attention {
  margin-top: 2.5rem;
  text-align: center;
}
.service__instagram {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  aspect-ratio: 740/200;
  max-width: 45rem;
  margin-inline: auto;
  margin-top: 3rem;
  border-radius: 0.625rem;
  border: 3px solid var(--color-text);
  background-color: #fff;
  -webkit-box-shadow: 8px 8px 0 0 rgb(214, 212, 198);
          box-shadow: 8px 8px 0 0 rgb(214, 212, 198);
}
.service__instagram-deco {
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  width: 20%;
  max-width: 7.625rem;
  aspect-ratio: 122/197;
}
@media screen and (min-width: 768px) {
  .service__instagram-deco {
    left: -1rem;
    width: 16.5%;
  }
}
.service__instagram-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  max-width: 23.75rem;
  margin-inline: 28% 4%;
  aspect-ratio: 340/70;
}
@media screen and (min-width: 768px) {
  .service__instagram-text {
    width: 45.9%;
    max-width: 21.25rem;
    margin-inline: 17.6% 0;
  }
}
.service__instagram-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .service__instagram-img {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0.75rem;
    height: 100%;
    width: auto;
    aspect-ratio: 195/200;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service__instagram:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.service__foot {
  position: relative;
  background-image: url(../img/bg_pink.jpg);
  background-size: 16px;
  background-position: center;
  background-repeat: repeat;
  padding-top: clamp(1.5rem, 0.5rem + 5vw, 5rem);
  /* 24 - 80 */
  padding-bottom: 3.5rem;
  margin-top: 4rem;
  color: #fff;
  text-align: center;
}
.service__foot::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: clamp(3.5rem, 2.714rem + 3.93vw, 6.25rem);
  /* 56 - 110 */
  background-color: var(--color-bg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.service__foot-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0.125rem 2.5rem 0.25rem 2.5rem;
  border-radius: calc(infinity * 1px);
  background-color: var(--color-quaternary);
  border: 3px solid var(--color-text);
  font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  /* 18 - 24 */
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  z-index: 20;
}
.service__foot-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service__foot-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.service__foot-img {
  width: 3rem;
  aspect-ratio: 90/98;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .service__foot-img {
    width: 4rem;
    margin-right: 0;
  }
}
.service__foot-text {
  font-size: clamp(1.25rem, 1.107rem + 0.71vw, 1.75rem);
  /* 20 - 28 */
  font-weight: 600;
}
.service__foot-subtext {
  margin-top: 2rem;
  font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
  /* 16 - 18 */
}

/* ---  point  --- */
.point {
  position: relative;
  padding-top: clamp(6.25rem, 5.536rem + 3.57vw, 8.75rem);
  /* 100 - 140 */
  overflow-x: clip;
}
.point::before {
  content: "";
  background-image: url(../img/bg_point.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 70%;
  max-width: 18.75rem;
  aspect-ratio: 487/373;
  position: absolute;
  top: 0;
  right: -1.25rem;
}
@media screen and (min-width: 768px) {
  .point::before {
    width: 33.8%;
    max-width: 30.4375rem;
  }
}
.point__subtitle {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 0.625rem;
  background-color: var(--color-text);
  border-radius: calc(infinity * 1px);
  padding: 0.125rem 1rem 0.25rem 1rem;
  color: #fff;
  font-size: clamp(0.813rem, 0.723rem + 0.45vw, 1.125rem);
  /* 13 - 18 */
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
.point__subtitle::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1rem;
  height: 0.75rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--color-text);
}
.point__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
  padding-top: 5rem;
}
@media screen and (min-width: 600px) {
  .point__list {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .point__list {
    grid-template-columns: 1fr 1fr;
  }
}
.point__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  padding: 0.75rem 0.75rem 1.5rem 0.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 3px solid var(--color-text);
}
@media screen and (min-width: 600px) {
  .point__item {
    padding: 1rem 1rem 1.5rem 1rem;
  }
}
.point__item-deco {
  width: 80%;
  max-width: 9.5rem;
  aspect-ratio: 246/234;
  position: absolute;
  bottom: 90%;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .point__item-deco {
    left: -1.5rem;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 768px) {
  .point__item-deco {
    width: 46.2%;
    max-width: 15.375rem;
    left: 0;
  }
}
.point__item-img {
  width: 100%;
  aspect-ratio: 500/333;
  border-radius: 0.5rem;
  overflow: hidden;
}
.point__item-title {
  margin-bottom: 0.625rem;
  font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
  /* 20 - 24 */
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  line-height: 1.3;
}
.point__item-title .color {
  color: var(--color-primary);
}
@media screen and (min-width: 600px) {
  .point__item-text {
    text-align: center;
  }
}

/* ---  price  --- */
.price {
  padding-top: clamp(4rem, 3.357rem + 3.21vw, 6.25rem);
  /* 64 - 100 */
  padding-bottom: 5rem;
}
.price__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .price__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.625rem;
  overflow: hidden;
}
.price__item:first-child .price__item-head {
  background-image: url(../img/bg_d-blue.jpg);
  background-size: 16px;
  background-position: center;
  background-repeat: repeat;
}
.price__item:first-child .price__item-content {
  background-color: #F1F9FF;
}
.price__item:last-child .price__item-head {
  background-image: url(../img/bg_pink.jpg);
  background-size: 16px;
  background-position: center;
  background-repeat: repeat;
}
.price__item:last-child .price__item-content {
  background-color: #F7F7F7;
}
.price__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1rem;
  font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
  /* 20 - 24 */
  font-weight: 600;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .price__item-head {
    min-height: 7rem;
  }
}
.price__item-head .sub {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .price__item-head .sub {
    font-size: 1.125rem;
  }
}
.price__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 2.5rem 1rem 3rem 1rem;
}
.price__item-img {
  width: 100%;
  max-width: 8.75rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price__item-img {
    width: 37.6%;
    min-width: 8.75rem;
    max-width: 12.5rem;
  }
}
.price__item-num {
  width: 90%;
  max-width: 12.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .price__item-num {
    width: 61%;
    max-width: 19.0625rem;
  }
}
.price__item-num .text {
  margin-top: 0.375rem;
  text-align: center;
}
.price .attention {
  margin-top: 2rem;
  text-align: center;
}

/* ---  flow  --- */
.flow {
  padding-bottom: 8.75rem;
  background-image: url(../img/bg_blue.jpg);
  background-size: 16px;
  background-position: center;
  background-repeat: repeat;
}
.flow__title {
  position: relative;
  padding-top: clamp(2.5rem, 2.214rem + 1.43vw, 3.5rem);
  /* 40 - 56 */
  padding-bottom: 1.5rem;
  padding-inline: 1rem;
  margin-bottom: 5.5rem;
  background-color: var(--color-tertiary);
  font-size: clamp(1.75rem, 1.536rem + 1.07vw, 2.5rem);
  /* 28 - 40 */
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.flow__title::before {
  content: "";
  position: absolute;
  bottom: -2.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2.5rem;
  background-color: var(--color-tertiary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .flow__title::before {
    bottom: -3.1875rem;
    height: 3.25rem;
  }
}
@media screen and (min-width: 768px) {
  .flow__title {
    margin-bottom: 6.5rem;
  }
}
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 3px solid var(--color-text);
  padding-block: 2rem;
}
@media screen and (min-width: 768px) {
  .flow__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }
}
.flow__item:not(:last-child) {
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .flow__item:not(:last-child) {
    margin-bottom: 5.625rem;
  }
}
.flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/flow_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4rem;
  aspect-ratio: 90/40;
}
@media screen and (min-width: 768px) {
  .flow__item:not(:last-child)::before {
    width: 5.625rem;
    bottom: -4.375rem;
  }
}
.flow__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  padding-inline: max(1rem, 4.4%);
  padding-bottom: 1.25rem;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .flow__item-head {
    padding-left: clamp(2.5rem, 1.357rem + 2.38vw, 3.5rem);
    /* 40 - 56 */
    padding-right: clamp(3rem, 1.857rem + 2.38vw, 4rem);
    /* 48 - 64 */
    padding-bottom: 0;
    background-image: radial-gradient(circle, var(--color-text) 1px, transparent 1px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 2px 6px;
  }
}
.flow__item-head .num {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .flow__item-head .num {
    font-size: 2.75rem;
  }
}
.flow__item-head .icon-flow {
  width: 1rem;
  aspect-ratio: 1/1;
  margin-right: 0.25rem;
}
.flow__item-content {
  padding-inline: max(1rem, 4.4%);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .flow__item-content {
    padding-inline: 3.5rem;
  }
}