@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -moz-tab-size: 2;
    -o-tab-size: 2;
  line-height: 1.5;
       tab-size: 2;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  color: inherit;
  font: inherit;
  font-variation-settings: inherit;
  font-feature-settings: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
  block-size: 0;
  overflow: visible;
          border-block-start: 1px solid;
  color: inherit;
}

:where(dialog, [popover]) {
  max-width: unset;
  max-height: unset;
  inset: unset;
  overflow: unset;
  border: none;
  background: none;
  color: inherit;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
          clip-path: inset(50%) !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

:root {
  --letter-spacing: 0.1em;
  --padding-container: 4rem;
  font-size: min(1.3333333333vw, 7.5px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: var(--letter-spacing);
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100svh;
  color: #333333;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.75;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow-y: scroll;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

@keyframes fadeIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.js-animation-group[data-animation=fadein] > * {
  transform: translateY(10px);
  opacity: 0;
}
.js-animation-group[data-animation=fadein] > *.is-show {
  animation: fadeIn 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.js-animation[data-animation=fadein] {
  transform: translateY(10px);
  opacity: 0;
}
.js-animation[data-animation=fadein].is-show {
  animation: fadeIn 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.js-animation-container[data-animation=fadein] > * {
  transform: translateY(10px);
  opacity: 0;
}
.js-animation-container[data-animation=fadein] > *.is-show {
  animation: fadeIn 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.l-container {
  margin-inline: auto;
  padding-right: var(--padding-container, 2.4rem);
  padding-left: var(--padding-container, 2.4rem);
}

.l-header {
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.l-main {
  overflow: hidden;
}

.c-accepted-item {
  position: relative;
  width: 48%;
  overflow: hidden;
  border: 0.1rem solid #d5d5d5;
  background: #fff;
  cursor: pointer;
}
.c-accepted-item__img {
  aspect-ratio: 327/264;
}
.c-accepted-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-accepted-item__txt {
  display: grid;
  position: absolute;
  bottom: 0;
  place-content: center;
  width: 100%;
  height: 8rem;
  background: #fff;
  font-weight: 700;
  font-size: 2.6rem;
}
.c-accepted-item__plus {
  z-index: 2;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #7dbd33;
  transition: transform 0.3s;
}
.c-accepted-item__plus::before, .c-accepted-item__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.4rem;
  height: 0.4rem;
  translate: -50% -50%;
  background: #fff;
  content: "";
}
.c-accepted-item__plus::after {
  rotate: 90deg;
}

.c-buttons {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: 3.2rem;
}
.c-buttons > * {
  width: 100%;
}

.c-button {
  display: grid;
  position: relative;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  width: 100%;
  min-height: 17rem;
  padding: 3rem 2rem 3rem 4rem;
  overflow: hidden;
  gap: 2.4rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.c-button__icon {
  z-index: 2;
  position: relative;
}
.c-button__txt {
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.5;
}
.c-button__small {
  display: block;
  z-index: 2;
  position: relative;
  font-weight: 400;
  font-size: 2.75rem;
}
.c-button.-green {
  position: relative;
  background-color: #7dbd33;
}
.c-button.-green::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 50%;
  width: 80%;
  height: 100%;
  transform: skew(-30deg);
  background-color: #71ac2d;
  content: "";
}
.c-button.-black {
  background-color: #333333;
}
.c-button.-black.-with-arrow::after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAoCAYAAAAVBmHYAAAACXBIWXMAABwgAAAcIAHND5ueAAABrUlEQVRIibWXu0oDQRSGfxPwHQQfQMRCsBDBQgsVUoiFWFhIGi1MI1qkEFJpY2lho2Dps/gYgoUogoriNflkZBbDOBOTzMmBycKy+f7Zs+c2Q4C8lSWNSLqWkZXarmeSLiWNWcEFDAGn/NoNMO7eKHe5n3X+2i0waQF3Oz+JCNwDU7nwQuA4IvAATOfCi3UUEXgEZi3gbh1GBJ6BOQu4gEZE4AVYsIALqEcEXoGKBVzAHtAKBN6BZQu4gFpCYNUCLmArIvDlEzAbLqDqgaHAhgVcfqehQBPYtIALWAM+AgHnsm0LuIAV/1FDgR0LuHy8v0VyoW4BF7DkMze0fQu4gHlfe0I7KNpcjn1KakbuDw9s12S6ZTHh70buB634CpmMlH7hK4kY381NotVEdtZiz+fWlVaqrvQCryYqYrXT/7oBb/rK11Mt7wZeizSJj2660H/w3UR7c9HSlTsH1vlJwBsR8IuvgD2FbnjD1YTQnn0NUQ48Nic+9TsnFvBOE+5Mv+BOw/997mxewEvAeRv4zuJU0e7zMnDhz0MTFmC3nL+LtuSOiqOSrgxa3499A7lYe10g/J81AAAAAElFTkSuQmCC);
}
.c-button.-white {
  border: 0.1rem solid #a8a8a8;
  background-color: #fff;
  color: #333333;
}
.c-button.-with-arrow::after {
  position: absolute;
  top: 50%;
  right: 4.8rem;
  width: 1.6rem;
  height: 2.9rem;
  translate: 0 -50%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAtCAYAAABbAsDYAAAACXBIWXMAABwgAAAcIAHND5ueAAABUklEQVRYhbXYPUoGMRCA4df5LCSKYCFYWXgDT6CFXsAbCOI9vICdIOgl5Gu9g2KfzlbEVvCHQBaWkN38zOw0gcmyT5JdJpvdODrYJ8YW8A38YhwSWwesgcdRziw2I/AEnI3yV5YzEuA+AS6tZ7Ta29l+Ay6A3VH+GDiMS/inRQTwwCnwnvSZzUhiW4JWFkgJetBA6VIsAkkmZw7JRN4Ukpk+M0gK/SaQVFyjhqRmJFpIKhEVJA1IN9RTl3wr1Fv8fAukqbC+FtKWcV8DWex+vgSFndHA4RN4Bq6TgYcd9sdqH3fAbebNegXuLBCX+doZgJD7kKUBlA/e1QAaxNUCvYhrAXoQ1wq0Iq4HaEG6gVpEBdQgaqCETAEvLcAcMgectwBTiCmQQ8yBFFkESE+/iwADsigwdfo1BQbkJvkIMAXInH7NgRDhj0SIAJ0AX9ZAuPs/HouESafBPCEAAAAASUVORK5CYII=) no-repeat center/contain;
  content: "";
  transition: right 0.3s;
}

.c-case {
  padding: 4rem;
  background: #f7f7f7;
}
.c-case__num {
  display: grid;
  place-content: center;
  width: 13.6rem;
  height: 3rem;
  margin-bottom: 3.2rem;
  margin-inline: auto;
  background: #000;
  color: #fff;
  font-size: 2.7rem;
  padding-top: 2px;
}
.c-case__body {
  display: grid;
  grid-template-columns: 16rem 1fr;
  align-items: center;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
}
.c-case__img {
  grid-row: span 2;
  align-self: center;
  width: 16rem;
  height: 16rem;
}
.c-case__title {
  color: #7dbd33;
  font-size: 3.6rem;
  line-height: 1.5;
}
.c-case__txt {
  font-size: 2.8rem;
  line-height: 1.68;
}

.c-dots {
  padding-top: 0.35em;
  background-image: radial-gradient(circle at center, currentColor 15%, transparent 15%); /* 点の色とサイズ調整 */
  background-position: top left;
  background-size: 1.05em 0.2em;
  background-repeat: repeat-x;
}

.c-heading {
  z-index: 2;
  position: relative;
  margin-bottom: 1em;
  font-size: 4.4rem;
  line-height: 1.57;
  text-align: center;
}
.c-heading__en {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #efefef;
  font-size: 13rem;
  line-height: 1;
}

.c-marker {
  background: linear-gradient(transparent 80%, var(--marker-color, #7dbd33) 80%, var(--marker-color, #7dbd33) 100%, transparent 100%);
}

.c-modal {
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 8rem);
  padding: 4.8rem;
  translate: -50% -50%;
  border: 0.2rem solid #7dbd33;
  background: #fff;
}
.c-modal__close {
  z-index: 2;
  position: absolute;
  top: -2.9rem;
  right: -2.9rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #7dbd33;
  transition: transform 0.3s;
}
.c-modal__close::before, .c-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.4rem;
  height: 0.4rem;
  translate: -50% -50%;
  background: #fff;
  content: "";
}
.c-modal__close::before {
  rotate: 45deg;
}
.c-modal__close::after {
  rotate: 135deg;
}
.c-modal__txt {
  margin-top: 1em;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}

.c-process {
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
  margin-left: 4rem;
}
.c-process__item {
  padding: 4.8rem;
  text-align: center;
}
.c-process__item:not(:last-child) {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 6rem), 50% 100%, 0 calc(100% - 6rem));
  position: relative;
  padding-bottom: 9rem;
          clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 6rem), 50% 100%, 0 calc(100% - 6rem));
}
.c-process__item:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  -webkit-clip-path: polygon(0% calc(100% - 6rem), 50% 100%, 100% calc(100% - 6rem), 100% calc(100% - 6rem - 0.7rem), 50% calc(100% - 0.7rem), 0% calc(100% - 6rem - 0.7rem));
          clip-path: polygon(0% calc(100% - 6rem), 50% 100%, 100% calc(100% - 6rem), 100% calc(100% - 6rem - 0.7rem), 50% calc(100% - 0.7rem), 0% calc(100% - 6rem - 0.7rem));
  pointer-events: none;
}
.c-process__item:first-child {
  z-index: 2;
  background-color: #33bd6a;
}
.c-process__item:nth-child(2) {
  z-index: 1;
  margin-top: -6rem;
  padding-top: 10rem;
  background-color: #7dbd33;
}
.c-process__item:last-child {
  z-index: 0;
  margin-top: -6rem;
  padding-top: 10rem;
  background-color: #70ad29;
}
.c-process__num {
  display: grid;
  place-content: center;
  width: 21.6rem;
  height: 4.2rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  background: #000;
  color: #fff;
  font-size: 3.142rem;
}
.c-process__img {
  width: 23rem;
  height: 23rem;
  margin-inline: auto;
}
.c-process__title {
  display: grid;
  place-content: center;
  margin-top: 0.9em;
  gap: 0.15em;
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.26;
}
.c-process__title small {
  display: block;
  font-weight: 400;
  font-size: 2.8rem;
}

.c-reason__title {
  display: flex;
  gap: 0.5em;
  font-size: 3.4rem;
}
.c-reason__title .num {
  display: grid;
  place-content: center;
  width: 6rem;
  height: 6rem;
  background: #7dbd33;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0;
}
.c-reason__txt {
  margin-top: 0.8em;
  font-size: 2.8rem;
}

.c-section {
  padding: 10.4rem 0;
}
.c-section__inner {
  position: relative;
  margin-inline: auto;
  padding-right: var(--padding-container, 2.4rem);
  padding-left: var(--padding-container, 2.4rem);
}
.c-section__inner > * {
  margin-top: 1em;
}
.c-section__inner > *:first-child {
  margin-top: 0;
}
.c-section__inner > *.c-heading {
  margin-top: 0;
}

.c-step {
  padding: 5.6rem 4rem 4rem;
  background: #f7f7f7;
}
.c-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: #7dbd33;
  font-size: 3.125rem;
  line-height: 1.2;
  --letter-spacing: 0;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid #dcdcdc;
}
.c-step__num span {
  font-weight: 700;
  font-size: 175%;
}
.c-step__body {
  padding-top: 4rem;
}
.c-step__period {
  margin-bottom: 0.5em;
  text-align: center;
}
.c-step__period__txt {
  display: grid;
  place-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.6rem;
  margin-inline: auto;
  padding: 0.2rem 2rem 0;
  background: #333333;
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
}
.c-step__period__note {
  display: inline-block;
  margin-top: 0.5em;
  padding-left: 1em;
  color: #656565;
  font-size: 2.6rem;
  text-align: left;
  text-indent: -1em;
}
.c-step__title {
  margin-bottom: 0.5em;
  font-size: 3.6rem;
  text-align: center;
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-tag {
  display: grid;
  place-content: center;
  height: 5.2rem;
  padding: 0.2rem 1.5rem 0;
  background: #7dbd33;
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
}

.p-contact {
  padding-bottom: 8rem;
  background: #7dbd33;
  color: #fff;
}
.p-contact .c-heading {
  margin-bottom: 2.3em;
  letter-spacing: 0.06em;
}
.p-contact .c-heading__en {
  color: #f4f4f4;
  opacity: 0.05;
}
.p-contact .c-buttons {
  margin-top: 7.5rem;
  margin-right: 4rem;
  margin-left: 4rem;
  gap: 2.7rem;
}
.p-contact .c-button {
  height: 18rem;
}
.p-contact .c-button__icon {
  width: 8.6rem;
  height: 8.6rem;
}
.p-contact .c-button__small {
  font-size: 2.6rem;
}
.p-contact .c-button.-black .c-button__txt {
  font-size: 3.2rem;
}

.p-cta {
  margin-top: -28.7rem;
  padding: 0 9.5rem;
}

.p-float-cta {
  display: grid;
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.p-float-cta__button {
  display: grid;
  position: relative;
  grid-template-columns: 8rem 1fr;
  align-items: center;
  width: 100%;
  height: 14rem;
  padding: 3rem 0 3rem 2rem;
  overflow: hidden;
  gap: 1.1rem;
  border: 1px solid #a8a8a8;
  background-color: #fff;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  --letter-spacing: 0.04em;
}
.p-float-cta__button__icon {
  z-index: 2;
  position: relative;
}
.p-float-cta__button__txt {
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
}
.p-float-cta__button__small {
  display: block;
  z-index: 2;
  position: relative;
  font-weight: 400;
  font-size: 2rem;
}
.p-float-cta__button.-green {
  background-color: #7dbd33;
  color: #fff;
}
.p-float-cta__button.-green .p-float-cta__button__txt {
  font-size: 3.2rem;
}

.p-flow {
  padding-top: 20.4rem;
}
.p-flow__inner {
  position: relative;
}
.p-flow__character {
  position: absolute;
  top: -9rem;
  right: 4rem;
  width: 15.5rem;
}
.p-flow__heading {
  margin-top: 0;
  font-weight: 700;
  font-size: 4.4rem;
}
.p-flow__heading__en {
  display: block;
  color: #f4f4f4;
  font-size: 4rem;
  line-height: 1.4;
}
.p-flow__list {
  display: grid;
  margin-top: 6.5rem;
  gap: 4rem;
}

.p-footer {
  padding-bottom: 14rem;
}
.p-footer__inner {
  height: 100%;
}
.p-footer__nav {
  display: none;
}
.p-footer__nav a {
  font-weight: 700;
  text-decoration: none;
}
.p-footer__copy {
  --letter-spacing: 0;
  margin-right: -4rem;
  margin-left: -4rem;
  padding: 2rem 8rem;
  border-top: 0.1rem solid #fff;
  background: #7dbd33;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
.p-footer__logo {
  padding: 2rem;
}
.p-footer__logo img {
  display: block;
  width: 33.1rem;
  margin-inline: auto;
}

.p-header {
  display: flex;
  align-items: center;
  height: 14rem;
  background-color: #fff;
}
.p-header__logo {
  width: 40rem;
  margin-left: 2.5rem;
}
.p-header__tel {
  display: none;
  align-items: center;
  margin-left: auto;
  gap: 1.5rem;
}
.p-header__tel img {
  width: 5rem;
  height: 5rem;
}
.p-header__tel__txt {
  line-height: 1.3;
  --letter-spacing: 0;
}
.p-header__tel__txt a {
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
}
.p-header__tel__txt small {
  font-size: 1.5rem;
}
.p-header__contact {
  display: none;
  place-content: center;
  place-items: center;
  width: 21rem;
  height: 100%;
  background: #7dbd33;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
}
.p-header__contact img {
  width: 4rem;
  height: 4rem;
}

.p-mainvisual {
  position: relative;
  width: 100%;
  height: 123vw;
  max-height: 92rem;
  padding-top: 11.2rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.p-mainvisual__character {
  position: absolute;
  top: 47.8rem;
  left: 52%;
  width: 27.3rem;
  height: 18.3rem;
}
.p-mainvisual__copy {
  font-size: 6.4rem;
  line-height: 1.5;
}
.p-mainvisual__copy em {
  font-style: normal;
}
.p-mainvisual__copy .c-marker {
  font-size: 7.2rem;
}
.p-mainvisual__txt {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 3.6rem;
}
.p-mainvisual__bg {
  z-index: -1;
  position: absolute;
  inset: 0;
}
.p-mainvisual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mainvisual__bg::before {
  position: absolute;
  inset: 0;
  background-color: #131412;
  content: "";
  opacity: 0.65;
}
.p-mainvisual__bg::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92.6666666667vw;
  max-width: 80rem;
  height: 98.9333333333vw;
  translate: -50% -50%;
  background: url(../images/img_mv-recycle.png) no-repeat center/contain;
  content: "";
  opacity: 0.07;
}

.p-solution {
  background: #f3f7ed;
}
.p-solution .c-section__inner {
  position: relative;
}
.p-solution__icon {
  width: 11.7rem;
  margin-bottom: 3rem;
  margin-inline: auto;
}
.p-solution .c-heading__en {
  color: #e4f1d6;
}
.p-solution .c-lead {
  text-align: center;
}
.p-solution .c-lead__bottom {
  text-align: center;
}
.p-solution .c-process {
  position: relative;
  margin-top: 14.5rem;
}
.p-solution .c-process::before {
  z-index: 3;
  position: absolute;
  top: -7.8rem;
  left: 1.5rem;
  width: 11.4rem;
  height: 11.4rem;
  background: url(../images/img_recycle.png) no-repeat center/contain;
  content: "";
}
.p-solution__reason {
  position: relative;
  margin-top: 10.4rem;
  margin-inline: auto;
  padding: 8rem 4rem 7rem;
  background: #fff;
}
.p-solution__reason__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25em;
  padding-bottom: 1em;
  gap: 0.5em;
  border-bottom: 0.1rem solid #f7f7f7;
  color: #7dbd33;
  font-size: 4rem;
  line-height: 1.425;
  text-align: center;
}
.p-solution__reason__heading::before, .p-solution__reason__heading::after {
  width: 1.8rem;
  height: 2rem;
  background: #333333;
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.p-solution__reason__heading::after {
  rotate: 180deg;
}
.p-solution__reason__list {
  display: grid;
  gap: 5.4rem;
}
.p-solution__reason__illust {
  position: absolute;
  right: -1.6rem;
  bottom: -18.9rem;
  width: 29.4rem;
}
.p-solution__accept {
  margin-top: 26.5rem;
  text-align: center;
}
.p-solution__accept__heading {
  margin-bottom: 0.5em;
  font-size: 4rem;
}
.p-solution__accept__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
  gap: 1.8rem;
}

.p-trouble {
  padding-top: 8.4rem;
}
.p-trouble__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.7em;
  margin-inline: auto;
  font-size: 4rem;
  line-height: 1.5;
  text-align: center;
}
.p-trouble__heading img {
  width: 8.9rem;
  margin-bottom: 3.2rem;
  margin-inline: auto;
}
.p-trouble__list {
  display: flex;
  row-gap: 3.2rem;
  flex-direction: column;
}
.p-trouble__list li {
  flex: 1;
}

.p-voice {
  padding-top: 12rem;
  background: #f7f7f7;
}
.p-voice__inner {
  position: relative;
}
.p-voice__icon {
  z-index: 3;
  width: 12rem;
  margin-bottom: 11rem;
  margin-inline: auto;
}
.p-voice__list {
  display: grid;
  margin-top: 9rem;
  margin-right: 4rem;
  margin-left: 4rem;
  gap: 3.2rem;
}
.p-voice__item {
  padding: 4rem;
  background: #fff;
}
.p-voice__logo {
  width: 28rem;
  height: 28rem;
  margin-bottom: 3.2rem;
  margin-inline: auto;
}
.p-voice__name {
  margin-top: 0.8em;
  margin-bottom: 0.9em;
  padding-bottom: 0.5em;
  border-bottom: 0.2rem solid #f7f7f7;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.7;
}
.p-voice__txt {
  font-size: 2.8rem;
}
.p-voice__character {
  display: none;
}

.u-bg-color--white {
  background-color: #fff;
}
.u-bg-color--green {
  background-color: #7dbd33;
}
.u-bg-color--black {
  background-color: #333333;
}

.u-color--white {
  color: #fff;
}
.u-color--green {
  color: #7dbd33;
}
.u-color--black {
  color: #333333;
}

.u-display-ib {
  display: inline-block;
}
.u-display-sp {
  display: block;
}
.u-display-pc {
  display: none;
}

.u-font--normal {
  font-weight: 400;
}
.u-font--medium {
  font-weight: 500;
}
.u-font--bold {
  font-weight: 700;
}

.u-lh-150 {
  line-height: 1.5;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-1 {
  margin-top: 0.5rem !important;
}

.u-mb-1 {
  margin-bottom: 0.5rem !important;
}

.u-mt-2 {
  margin-top: 1rem !important;
}

.u-mb-2 {
  margin-bottom: 1rem !important;
}

.u-mt-3 {
  margin-top: 1.5rem !important;
}

.u-mb-3 {
  margin-bottom: 1.5rem !important;
}

.u-mt-4 {
  margin-top: 2rem !important;
}

.u-mb-4 {
  margin-bottom: 2rem !important;
}

.u-mt-5 {
  margin-top: 2.5rem !important;
}

.u-mb-5 {
  margin-bottom: 2.5rem !important;
}

.u-mt-6 {
  margin-top: 3rem !important;
}

.u-mb-6 {
  margin-bottom: 3rem !important;
}

.u-mt-7 {
  margin-top: 3.5rem !important;
}

.u-mb-7 {
  margin-bottom: 3.5rem !important;
}

.u-mt-8 {
  margin-top: 4rem !important;
}

.u-mb-8 {
  margin-bottom: 4rem !important;
}

.u-mt-9 {
  margin-top: 4.5rem !important;
}

.u-mb-9 {
  margin-bottom: 4.5rem !important;
}

.u-mt-10 {
  margin-top: 5rem !important;
}

.u-mb-10 {
  margin-bottom: 5rem !important;
}

.u-mt-11 {
  margin-top: 5.5rem !important;
}

.u-mb-11 {
  margin-bottom: 5.5rem !important;
}

.u-mt-12 {
  margin-top: 6rem !important;
}

.u-mb-12 {
  margin-bottom: 6rem !important;
}

.u-mt-13 {
  margin-top: 6.5rem !important;
}

.u-mb-13 {
  margin-bottom: 6.5rem !important;
}

.u-mt-14 {
  margin-top: 7rem !important;
}

.u-mb-14 {
  margin-bottom: 7rem !important;
}

.u-mt-15 {
  margin-top: 7.5rem !important;
}

.u-mb-15 {
  margin-bottom: 7.5rem !important;
}

.u-mt-16 {
  margin-top: 8rem !important;
}

.u-mb-16 {
  margin-bottom: 8rem !important;
}

.u-mt-17 {
  margin-top: 8.5rem !important;
}

.u-mb-17 {
  margin-bottom: 8.5rem !important;
}

.u-mt-18 {
  margin-top: 9rem !important;
}

.u-mb-18 {
  margin-bottom: 9rem !important;
}

.u-mt-19 {
  margin-top: 9.5rem !important;
}

.u-mb-19 {
  margin-bottom: 9.5rem !important;
}

.u-mt-20 {
  margin-top: 10rem !important;
}

.u-mb-20 {
  margin-bottom: 10rem !important;
}

.u-text--left {
  text-align: left;
}
.u-text--center {
  text-align: center;
}
.u-text--right {
  text-align: right;
}
.u-text--uppercase {
  text-transform: uppercase;
}
.u-text--lg {
  font-size: 120%;
}

.u-whitespace--normal {
  white-space: normal;
}
.u-whitespace--nowrap {
  white-space: nowrap;
}
@media (min-width: 768px){
  :root {
    --padding-container: 3rem;
    font-size: min(0.8771929825vw, 10px);
  }
  body {
    font-size: 1.6rem;
  }
  .l-container {
    max-width: calc(108rem + 2 * var(--padding-container, 2.4rem));
  }
  .c-accepted-item {
    width: 24%;
  }
  .c-accepted-item__img {
    aspect-ratio: 261/188;
  }
  .c-accepted-item__txt {
    height: 3.2rem;
    font-size: 1.6rem;
  }
  .c-accepted-item__plus {
    top: 1.2rem;
    right: 1.2rem;
    width: 3rem;
    height: 3rem;
  }
  .c-accepted-item__plus::before, .c-accepted-item__plus::after {
    width: 1.6rem;
    height: 0.2rem;
  }
  .c-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
  .c-buttons > * {
    flex: 1;
    max-width: 43rem;
  }
  .c-button {
    grid-template-columns: 6.6rem 1fr;
    min-height: 11.5rem;
    padding: 2.4rem 3.2rem;
    gap: 2.6rem;
  }
  .c-button__txt {
    font-size: 2.4rem;
  }
  .c-button__small {
    font-size: 1.4rem;
  }
  .c-button.-with-arrow::after {
    width: 1.3rem;
    height: 2.3rem;
  }
  .c-case {
    padding: 3rem 2rem;
    text-align: center;
  }
  .c-case__num {
    width: 7.3rem;
    height: 1.7rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .c-case__body {
    display: contents;
  }
  .c-case__img {
    width: 12.7rem;
    height: 12.7rem;
    margin-inline: auto;
  }
  .c-case__title {
    margin-top: 0.75em;
    font-size: 2rem;
  }
  .c-case__txt {
    margin-top: 0.25em;
    font-size: 1.4rem;
  }
  .c-heading {
    margin-bottom: 1.1em;
    font-size: 4rem;
  }
  .c-heading__en {
    top: 25%;
    font-size: 3.75em;
  }
  .c-lead {
    font-size: 1.6rem;
    text-align: center;
  }
  .c-lead__bottom {
    font-size: 2.0rem;
    text-align: center;
  }
  .c-modal {
    max-width: 70rem;
    padding: 5rem;
  }
  .c-modal__close {
    top: -3.2rem;
    right: -3.2rem;
  }
  .c-modal__txt {
    font-size: 2.2rem;
  }
  .c-process {
    flex-direction: row;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .c-process__item {
    padding: 3.2rem 0 2rem;
  }
  .c-process__item:not(:last-child) {
    -webkit-clip-path: polygon(0% 0%, calc(100% - 5rem) 0%, 100% 50%, calc(100% - 5rem) 100%, 0% 100%);
    padding-bottom: 1.5rem;
            clip-path: polygon(0% 0%, calc(100% - 5rem) 0%, 100% 50%, calc(100% - 5rem) 100%, 0% 100%);
  }
  .c-process__item:not(:last-child)::after {
    top: 0;
    right: 0;
    -webkit-clip-path: polygon(calc(100% - 5rem) 0%, 100% 50%, calc(100% - 5rem) 100%, calc(100% - 5rem - 0.6rem) 100%, calc(100% - 0.6rem) 50%, calc(100% - 5rem - 0.6rem) 0%);
            clip-path: polygon(calc(100% - 5rem) 0%, 100% 50%, calc(100% - 5rem) 100%, calc(100% - 5rem - 0.6rem) 100%, calc(100% - 0.6rem) 50%, calc(100% - 5rem - 0.6rem) 0%);
  }
  .c-process__item:first-child {
    width: 37.1rem;
    padding-right: 5rem;
  }
  .c-process__item:nth-child(2) {
    width: 43.7rem;
    margin-top: 0;
    margin-left: -5rem;
    padding-top: 3.2rem;
  }
  .c-process__item:last-child {
    width: 37.3rem;
    margin-top: 0;
    margin-left: -5rem;
    padding-top: 3.2rem;
    padding-left: 5rem;
  }
  .c-process__num {
    width: 12.4rem;
    height: 2.5rem;
    margin-bottom: 1em;
    font-size: 1.8rem;
  }
  .c-process__img {
    width: 12.5rem;
    height: 12.5rem;
  }
  .c-process__title {
    height: 2.5em;
    margin-top: 0.5em;
    font-size: 2.7rem;
  }
  .c-process__title small {
    font-size: 1.5rem;
  }
  .c-reason__title {
    font-size: 2.5rem;
  }
  .c-reason__title .num {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
  .c-reason__txt {
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
  .c-section {
    padding: 14rem 0 10rem;
  }
  .c-section__inner {
    max-width: calc(108rem + 2 * var(--padding-container, 2.4rem));
  }
  .c-step {
    display: grid;
    grid-template-columns: 10.9rem 1fr;
    min-height: 14.4rem;
    padding: 2.4rem 3.5rem 2.4rem 0;
  }
  .c-step__num {
    display: grid;
    place-content: center;
    height: 100%;
    padding-bottom: 0;
    gap: 0;
    border-right: 1px solid #dcdcdc;
    border-bottom: 0;
    font-size: 2rem;
    text-align: center;
  }
  .c-step__body {
    padding: 0.45rem 0;
    padding-left: 2.3rem;
  }
  .c-step__period {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
  }
  .c-step__period__txt {
    width: auto;
    height: 2.6rem;
    margin: 0;
    padding: 0 1rem;
    font-size: 1.3rem;
  }
  .c-step__period__note {
    margin-top: 0;
    font-size: 1.2rem;
  }
  .c-step__title {
    margin-bottom: 0.2em;
    font-size: 2rem;
    text-align: left;
  }
  .c-step__txt {
    font-size: 1.4rem;
  }
  .c-tag {
    height: 3.2rem;
    padding: 0 1rem;
    font-size: 1.7rem;
  }
  .p-contact {
    padding: 7.2rem 0 8rem;
  }
  .p-contact .c-heading {
    margin-bottom: 0.8em;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
  .p-contact .c-heading__en {
    font-size: 13.742rem;
  }
  .p-contact .c-buttons {
    margin-right: 0;
    margin-left: 0;
    gap: 4rem;
  }
  .p-contact .c-buttons > * {
    max-width: 42rem;
  }
  .p-contact .c-button {
    height: 12.5rem;
    gap: 2.3rem;
  }
  .p-contact .c-button__icon {
    width: 6.1rem;
    height: 6.1rem;
  }
  .p-contact .c-button__txt {
    font-size: 2.5rem;
  }
  .p-contact .c-button__small {
    font-size: 1.5rem;
  }
  .p-contact .c-button.-black .c-button__txt {
    font-size: 2.5rem;
  }
  .p-cta {
    margin-top: -3.5rem;
    padding: 0;
  }
  .p-float-cta {
    display: none;
  }
  .p-flow {
    padding: 8rem 0;
  }
  .p-flow__inner {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 66.2rem;
    -moz-column-gap: 5.2rem;
         column-gap: 5.2rem;
  }
  .p-flow__character {
    top: 25.5rem;
    right: auto;
    left: 1rem;
  }
  .p-flow__heading {
    font-size: 3rem;
  }
  .p-flow__heading__en {
    font-size: 3rem;
  }
  .p-flow__lead {
    grid-row: 2;
    grid-column: 1;
    font-size: 1.4rem;
  }
  .p-flow__list {
    grid-row: span 2;
    margin-top: 0;
    gap: 1.2rem;
  }
  .p-footer {
    height: 6rem;
    padding-bottom: 0;
  }
  .p-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
  .p-footer__nav {
    display: flex;
    align-items: center;
    gap: 2em;
    font-size: 1.2rem;
    --letter-spacing: 0;
  }
  .p-footer__copy {
    margin: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    color: #666;
    font-size: 1.2rem;
    text-align: left;
  }
  .p-footer__logo {
    display: none;
  }
  .p-header {
    height: 11rem;
    gap: 3.8rem;
  }
  .p-header__logo {
    width: 25.6rem;
    margin-left: 3.6rem;
  }
  .p-header__tel {
    display: flex;
  }
  .p-header__contact {
    display: grid;
  }
  .p-mainvisual {
    display: grid;
    place-items: center;
    height: 27.1538vw;
    min-height: 35.3rem;
    max-height: 45rem;
    padding-top: 0;
    padding-bottom: 2vw;
  }
  .p-mainvisual__character {
    top: auto;
    bottom: -0.2rem;
    left: calc(50vw + 32.2rem);
    width: 23.6rem;
    height: 15.8rem;
  }
  .p-mainvisual__copy {
    font-size: 5rem;
  }
  .p-mainvisual__copy .c-marker {
    font-size: 5.5rem;
  }
  .p-mainvisual__txt {
    margin-top: 0.1em;
    font-size: 3.2rem;
  }
  .p-mainvisual__bg::after {
    top: -11rem;
    width: 47.2%;
    height: 185.6%;
    translate: -50% 0;
  }
  .p-solution__icon {
    position: absolute;
    top: -15.2rem;
    right: 5rem;
  }
  .p-solution .c-process {
    margin-top: 4.6rem;
  }
  .p-solution .c-process::before {
    top: 0;
    left: 0;
    width: 8.8rem;
    height: 8.8rem;
    translate: -45% -45%;
  }
  .p-solution__reason {
    max-width: 98.4rem;
    margin-top: 6.4rem;
    padding: 4.8rem 4.8rem 5.2rem;
  }
  .p-solution__reason__heading {
    padding-bottom: 0.75em;
    gap: 0.25em;
    font-size: 3.2rem;
  }
  .p-solution__reason__heading::before, .p-solution__reason__heading::after {
    width: 1rem;
    height: 1.2rem;
  }
  .p-solution__reason__list {
    padding-left: 25rem;
    gap: 2.4rem;
  }
  .p-solution__reason__illust {
    position: absolute;
    bottom: 4.8rem;
    left: -6.4rem;
  }
  .p-solution__accept {
    margin-top: 6.4rem;
  }
  .p-solution__accept__heading {
    font-size: 3rem;
  }
  .p-solution__accept__list {
    margin-top: 3.2rem;
    gap: 1.2rem;
  }
  .p-trouble {
    padding-top: 6.3rem;
  }
  .p-trouble__heading {
    margin-bottom: 1.5em;
    font-size: 3rem;
  }
  .p-trouble__heading img {
    position: absolute;
    top: 50%;
    right: calc(100% + 1em);
    margin-bottom: 0;
    translate: 0 -50%;
  }
  .p-trouble__list {
    flex-direction: row;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
  }
  .p-voice {
    padding-top: 11.8rem;
    padding-bottom: 8.2rem;
  }
  .p-voice__icon {
    position: absolute;
    top: -3.8rem;
    left: 68%;
  }
  .p-voice__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 98.4rem;
    margin-inline: auto;
    gap: 4rem;
  }
  .p-voice__logo {
    width: 20rem;
    height: 20rem;
  }
  .p-voice__name {
    margin-top: 0.5em;
    font-size: 2.1rem;
  }
  .p-voice__txt {
    font-size: 1.4rem;
  }
  .p-voice__character {
    display: block;
    position: absolute;
    bottom: -8.3rem;
    left: 1.5rem;
    width: 40.9rem;
    height: 19.6rem;
  }
  .u-display-sp {
    display: none;
  }
  .u-display-pc {
    display: block;
  }
  .u-mt-1 {
    margin-top: 1rem !important;
  }
  .u-mb-1 {
    margin-bottom: 1rem !important;
  }
  .u-mt-2 {
    margin-top: 2rem !important;
  }
  .u-mb-2 {
    margin-bottom: 2rem !important;
  }
  .u-mt-3 {
    margin-top: 3rem !important;
  }
  .u-mb-3 {
    margin-bottom: 3rem !important;
  }
  .u-mt-4 {
    margin-top: 4rem !important;
  }
  .u-mb-4 {
    margin-bottom: 4rem !important;
  }
  .u-mt-5 {
    margin-top: 5rem !important;
  }
  .u-mb-5 {
    margin-bottom: 5rem !important;
  }
  .u-mt-6 {
    margin-top: 6rem !important;
  }
  .u-mb-6 {
    margin-bottom: 6rem !important;
  }
  .u-mt-7 {
    margin-top: 7rem !important;
  }
  .u-mb-7 {
    margin-bottom: 7rem !important;
  }
  .u-mt-8 {
    margin-top: 8rem !important;
  }
  .u-mb-8 {
    margin-bottom: 8rem !important;
  }
  .u-mt-9 {
    margin-top: 9rem !important;
  }
  .u-mb-9 {
    margin-bottom: 9rem !important;
  }
  .u-mt-10 {
    margin-top: 10rem !important;
  }
  .u-mb-10 {
    margin-bottom: 10rem !important;
  }
  .u-mt-11 {
    margin-top: 11rem !important;
  }
  .u-mb-11 {
    margin-bottom: 11rem !important;
  }
  .u-mt-12 {
    margin-top: 12rem !important;
  }
  .u-mb-12 {
    margin-bottom: 12rem !important;
  }
  .u-mt-13 {
    margin-top: 13rem !important;
  }
  .u-mb-13 {
    margin-bottom: 13rem !important;
  }
  .u-mt-14 {
    margin-top: 14rem !important;
  }
  .u-mb-14 {
    margin-bottom: 14rem !important;
  }
  .u-mt-15 {
    margin-top: 15rem !important;
  }
  .u-mb-15 {
    margin-bottom: 15rem !important;
  }
  .u-mt-16 {
    margin-top: 16rem !important;
  }
  .u-mb-16 {
    margin-bottom: 16rem !important;
  }
  .u-mt-17 {
    margin-top: 17rem !important;
  }
  .u-mb-17 {
    margin-bottom: 17rem !important;
  }
  .u-mt-18 {
    margin-top: 18rem !important;
  }
  .u-mb-18 {
    margin-bottom: 18rem !important;
  }
  .u-mt-19 {
    margin-top: 19rem !important;
  }
  .u-mb-19 {
    margin-bottom: 19rem !important;
  }
  .u-mt-20 {
    margin-top: 20rem !important;
  }
  .u-mb-20 {
    margin-bottom: 20rem !important;
  }
}
@media (min-width: 1220px){
  .p-cta {
    margin-top: -5.5rem;
  }
  .p-flow__character {
    left: -1.4rem;
  }
  .p-mainvisual__character {
    bottom: -1rem;
    left: calc(50vw + 35.9rem);
    width: 27.3rem;
    height: 18.3rem;
  }
}
@media (hover: hover){
  .c-accepted-item:hover .c-accepted-item__plus {
    transform: scale(1.2);
  }
  .c-button.-with-arrow:hover::after {
    right: 3.2rem;
  }
  .c-modal__close:hover {
    transform: scale(1.2);
  }
  .p-footer__nav a {
    transition: opacity 0.3s;
  }
  .p-footer__nav a:hover {
    opacity: 0.7;
  }
  .p-header__logo {
    transition: opacity 0.3s;
  }
  .p-header__logo:hover {
    opacity: 0.7;
  }
  .p-header__contact {
    transition: opacity 0.3s;
  }
  .p-header__contact:hover {
    opacity: 0.7;
  }
}
@media (prefers-reduced-motion: no-preference){
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}