@charset "UTF-8";
/* リキッドレイアウト対応 */
@font-face {
  font-family: "bokutachi";
  src: url("../font/bokutachi.otf") format("opentype");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.8s 0.3s ease-out;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

footer {
  margin-top: auto;
}

html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 1;
}

select::-ms-expand {
  display: none;
}

input,
select,
textarea {
  font-size: max(1rem, 16px);
}

.c-button {
  display: block;
  width: 11.6rem;
  text-transform: uppercase;
  font-family: "Archivo Narrow", sans-serif;
  position: relative;
  font-size: 1.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #000;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}

.c-button::after {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.8rem;
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  transition: background-image 0.3s ease-out, transform 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-button:hover {
    color: #1E8ACE;
    border-color: #1E8ACE;
  }
}

@media screen and (min-width: 768px) {
  .c-button:hover::after {
    background-image: url(../images/icon/arrow_blue.svg);
    transform: translateX(0.5rem);
  }
}

[data-color=white] .c-button,
[data-color=white] .c-button:hover {
  color: #FFF;
  border-color: #FFF;
  transition: opacity 0.3s ease-out;
}

[data-color=white] .c-button:hover {
  opacity: 0.75;
}

[data-color=white] .c-button::after,
[data-color=white] .c-button:hover::after {
  background-image: url(../images/icon/arrow_white.svg);
}

.c-enTitle {
  font-size: 7.5rem;
  font-family: "Archivo Narrow", sans-serif;
  color: #1E8ACE;
  text-transform: uppercase;
  line-height: 0.8666666667;
}
@media screen and (min-width: 768px) {
  .c-enTitle {
    font-size: 10rem;
    line-height: 1;
  }
}

[data-color=white] .c-enTitle {
  color: #FFF;
}

.c-img {
  position: relative;
  width: 100%;
}

.c-img::before {
  content: "";
  display: block;
}

.c-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-speechBubble {
  font-family: "bokutachi", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.3125;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-speechBubble {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.c-subtitle {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .c-subtitle {
    line-height: 1.8181818182;
  }
}

[data-color=white] .c-subtitle {
  color: #FFF;
}

.c-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-text {
    line-height: 2.3125;
  }
}

[data-color=white] .c-text {
  color: #FFF;
}

.c-title {
  margin: 1.5rem 0 0 -0.2rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  color: #797979;
}
@media screen and (min-width: 768px) {
  .c-title {
    margin-top: 0.6rem;
  }
}

.c-title::before,
.c-title::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.2rem;
  margin-top: 1px;
  background-color: #797979;
}

[data-color=white] .c-title {
  color: #FFF;
}

[data-color=white] .c-title::before,
[data-color=white] .c-title::after {
  background-color: #FFF;
}

.l-404 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.l-character {
  padding-top: 9rem;
  padding-bottom: 14rem;
}
@media screen and (min-width: 768px) {
  .l-character {
    padding-top: 15rem;
    padding-bottom: 19rem;
  }
}

.l-company {
  padding-top: 0.9rem;
  padding-bottom: 23.8rem;
}
@media screen and (min-width: 768px) {
  .l-company {
    padding-top: 1.6rem;
    padding-bottom: 24.4rem;
  }
}

.l-companyBlock {
  padding-top: 10.6rem;
}
@media screen and (min-width: 768px) {
  .l-companyBlock {
    padding-top: 21.1rem;
  }
}

.l-companyBusiness {
  padding-top: 10.3rem;
}
@media screen and (min-width: 768px) {
  .l-companyBusiness {
    padding-top: 20.3rem;
  }
}

.l-companyHistory {
  padding-top: 10.6rem;
}
@media screen and (min-width: 768px) {
  .l-companyHistory {
    padding-top: 20.6rem;
  }
}

.l-companyProfile {
  padding-top: 10.6rem;
}
@media screen and (min-width: 768px) {
  .l-companyProfile {
    padding-top: 20.3rem;
  }
}

.l-companyQualifications {
  padding-top: 7.8rem;
}
@media screen and (min-width: 768px) {
  .l-companyQualifications {
    padding-top: 21.3rem;
  }
}

.l-contact {
  padding-bottom: 24rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-bottom: 33.9rem;
  }
}

.l-footer {
  padding-top: 9.3rem;
  padding-bottom: 6.4rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 11rem;
    padding-bottom: 10.7rem;
  }
}

.l-fv {
  padding-top: 14.1rem;
}
@media screen and (min-width: 768px) {
  .l-fv {
    padding-top: 14.6rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-interview {
  padding-top: 4.9rem;
  padding-bottom: 5.6rem;
}
@media screen and (min-width: 768px) {
  .l-interview {
    padding-top: 9.2rem;
    padding-bottom: 12.35rem;
  }
}

[data-interview=num_01].l-interview {
  padding-top: 13.8rem;
}
@media screen and (min-width: 768px) {
  [data-interview=num_01].l-interview {
    padding-top: 32.8rem;
  }
}

.l-privacy {
  padding-bottom: 23.7rem;
}
@media screen and (min-width: 768px) {
  .l-privacy {
    padding-bottom: 34rem;
  }
}

.l-recruit {
  padding-top: 0.2rem;
}
@media screen and (min-width: 768px) {
  .l-recruit {
    padding-top: 5.4rem;
  }
}

.l-recruitment {
  padding-top: 6.6rem;
  padding-bottom: 24rem;
}
@media screen and (min-width: 768px) {
  .l-recruitment {
    padding-top: 13.9rem;
    padding-bottom: 32.3rem;
  }
}

.l-service {
  padding-top: 0.2rem;
  padding-bottom: 7.8rem;
}
@media screen and (min-width: 768px) {
  .l-service {
    padding-top: 0.3rem;
    padding-bottom: 29.7rem;
  }
}

.l-serviceContainer {
  padding-top: 3rem;
  padding-bottom: 14rem;
}
@media screen and (min-width: 768px) {
  .l-serviceContainer {
    padding-top: 6.6rem;
  }
}

[data-section=transportation].l-serviceContainer {
  padding-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  [data-section=transportation].l-serviceContainer {
    padding-top: 6.7rem;
  }
}

[data-section=recycling].l-serviceContainer {
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  [data-section=recycling].l-serviceContainer {
    padding-bottom: 9.9rem;
  }
}

.l-subFv {
  padding-top: 12.85rem;
  padding-bottom: 8.05rem;
}
@media screen and (min-width: 768px) {
  .l-subFv {
    padding-top: 17.7rem;
    padding-bottom: 14.95rem;
  }
}

.l-topCompany {
  padding-top: 11.4666666667vw;
  padding-bottom: 14rem;
}
@media screen and (min-width: 768px) {
  .l-topCompany {
    padding-top: 3.3rem;
    padding-bottom: 33.95rem;
  }
}

.l-topRecruit {
  padding-top: 11.9rem;
  padding-bottom: 39.2vw;
}
@media screen and (min-width: 768px) {
  .l-topRecruit {
    padding-top: 16.8rem;
    padding-bottom: 16.5446559297vw;
  }
}

.l-topService {
  padding-top: 11.9rem;
  padding-bottom: 13.8rem;
}
@media screen and (min-width: 768px) {
  .l-topService {
    padding-top: 16.5rem;
    padding-bottom: 18.9rem;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap {
    max-width: 72.2rem;
    margin-left: auto;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 1.6rem;
  font-weight: 500;
}

.p-form__radioButton .wpcf7-not-valid-tip,
.p-form__check .wpcf7-not-valid-tip {
  margin-left: 0;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.p-form__radio .wpcf7-list-item {
  position: relative;
}

.p-form__radio .wpcf7-list-item-label:before {
  content: "";
  background: transparent;
  border: 1px solid #818181;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0.1rem;
  left: -0.1rem;
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__radio .wpcf7-list-item-label:before {
    top: 0.15rem;
    left: 0.15rem;
  }
}

.p-form__radio .wpcf7-list-item-label:after {
  content: "";
  background: #1E8ACE;
  border-radius: 50%;
  display: block;
  opacity: 0;
  position: absolute;
  top: 1.1rem;
  left: 0.25rem;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-form__radio .wpcf7-list-item-label:after {
    top: 1.15rem;
    left: 0.5rem;
  }
}

.p-form__check .wpcf7-list-item-label {
  position: relative;
  margin-left: 3.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__check .wpcf7-list-item-label {
    margin-left: 1rem;
  }
}

.p-form__check .wpcf7-list-item-label:before {
  border: 1px solid #818181;
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: -3.2rem;
  width: 2.5rem;
  height: 2.5rem;
}

.p-form__check .wpcf7-list-item-label:after {
  border-bottom: 2px solid #1E8ACE;
  border-left: 2px solid #1E8ACE;
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: -2.8rem;
  width: 1.6rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}

input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.p-form__radioButton .wpcf7-not-valid-tip,
.p-form__check .wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-form__radioButton .wpcf7-not-valid-tip,
  .p-form__check .wpcf7-not-valid-tip {
    font-size: 1.6rem;
  }
}

.p-404__title {
  text-align: center;
  opacity: 0.4;
  color: #000;
  font-size: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 6.4rem;
  }
}

.p-404__title {
  font-family: "Archivo Narrow", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
}

.p-404__text {
  text-align: center;
  margin-top: 4.2rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 2.4rem;
  }
}

.p-404__button {
  margin-top: 8rem;
}

.p-404__button a {
  margin-inline: auto;
}

.p-business__contents {
  margin-right: calc(50% - 50vw);
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-business__contents {
    margin-right: 0;
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  .p-business__contents::-webkit-scrollbar {
    height: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-business__contents::-webkit-scrollbar-track {
    background-color: #F2F1E6;
    border-radius: 999px;
  }
}

@media screen and (max-width: 767px) {
  .p-business__contents::-webkit-scrollbar-thumb {
    background-color: #50575D;
    border-radius: 999px;
  }
}

.p-business__table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.3rem 0;
  width: 80.5rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-left: -0.3rem;
  margin-right: -0.3rem;
  padding-bottom: 1.9rem;
}
@media screen and (min-width: 768px) {
  .p-business__table {
    width: min(94vw, 111rem);
    line-height: 1.4375;
    border-spacing: 0.5rem 0;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding: 0;
  }
}

.p-business__table th:nth-child(1),
.p-business__table td:nth-child(1) {
  width: 58.3%;
}
@media screen and (min-width: 768px) {
  .p-business__table th:nth-child(1),
  .p-business__table td:nth-child(1) {
    width: 53.45%;
  }
}

.p-business__table th:nth-child(2),
.p-business__table td:nth-child(2) {
  width: 19.5%;
}
@media screen and (min-width: 768px) {
  .p-business__table th:nth-child(2),
  .p-business__table td:nth-child(2) {
    width: 18.45%;
  }
}

.p-business__table th:nth-child(3),
.p-business__table td:nth-child(3) {
  width: 21.5%;
}
@media screen and (min-width: 768px) {
  .p-business__table th:nth-child(3),
  .p-business__table td:nth-child(3) {
    width: 27.2%;
  }
}

.p-business__table th {
  background-color: #797979;
  color: #FFF;
  padding: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-business__table th {
    padding: 0.45rem;
  }
}

.p-business__table td {
  font-weight: 500;
  height: 4.5rem;
  position: relative;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-business__table td {
    height: 7rem;
  }
}

.p-business__table td::after {
  content: "";
  display: block;
  width: calc(100% + 0.15rem);
  height: 1px;
  background-image: linear-gradient(to left, #707070, #707070 1px, transparent 1px, transparent 2px);
  background-size: 2px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-business__table td::after {
    width: calc(100% + 0.25rem);
  }
}

.p-business__table td:first-child:after {
  left: 0;
}

.p-business__table td:nth-child(2)::after {
  width: calc(100% + 0.4rem);
}
@media screen and (min-width: 768px) {
  .p-business__table td:nth-child(2)::after {
    width: calc(100% + 0.6rem);
  }
}

.p-business__table td:nth-child(n+2)::after {
  left: -0.2rem;
}
@media screen and (min-width: 768px) {
  .p-business__table td:nth-child(n+2)::after {
    left: -0.3rem;
  }
}

.p-business__table td:first-child:not([data-line=only]) {
  text-align: left;
}

.p-character {
  background-color: #FFF;
}

.p-character__contents {
  border: 10px solid #EAEAEA;
  border-radius: 2rem;
  padding: 2.7rem 2rem 4.2rem;
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-character__contents {
    padding: 5.2rem 4.5rem 4.2rem 6rem;
    display: flex;
  }
}

.p-character__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-character__body {
    max-width: 58rem;
  }
}

.p-character__title {
  color: #797979;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-character__title {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

.p-character__title span {
  display: block;
  margin-top: 0.4rem;
  color: #1E8ACE;
  text-transform: uppercase;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-character__title span {
    font-size: 2.3rem;
  }
}

.p-character__title span::after {
  content: "";
  display: inline-block;
  width: 0.2rem;
  height: 2.5rem;
  background-color: #1E8ACE;
  position: absolute;
  right: -1.1rem;
  top: 1px;
}
@media screen and (min-width: 768px) {
  .p-character__title span::after {
    right: -1.55rem;
    top: 0.4rem;
  }
}

.p-character__subtitle {
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-character__subtitle {
    margin-top: 2.9rem;
  }
}

.p-character__text {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-character__text {
    margin-top: 2.4rem;
    line-height: 2.3125;
  }
}

.p-character__img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding-right: 0.9rem;
}
@media screen and (min-width: 768px) {
  .p-character__img {
    width: 100%;
    max-width: 33.8rem;
    padding: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-character__speechBubble {
  width: 100%;
  max-width: 17.3rem;
  aspect-ratio: 173/186.5;
  background-image: url(../images/common/speech_bubble_01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-character__speechBubble {
    max-width: 19.5rem;
    margin: -8.7rem 0 0 0.5rem;
  }
}

.p-character__speechBubble p {
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-character__speechBubble p {
    padding-top: 5rem;
  }
}

.p-character__image {
  margin: -4.9rem 0 0 4.9rem;
  width: 100%;
  max-width: 21.65rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-character__image {
    max-width: 33.8rem;
    margin: 0;
  }
}

.p-character__image img {
  aspect-ratio: 216.5/133;
}

.p-company__philosophy {
  margin-top: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-company__philosophy {
    margin-top: 6.8rem;
  }
}

.p-company__scroll {
  margin-top: 4.8rem;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  display: flex;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-company__scroll {
    margin-top: 6.5rem;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
  }
}

.p-company__scrollImg {
  flex-shrink: 0;
  width: 102.6rem;
  animation: loopSlide 29s infinite linear;
}
@media screen and (min-width: 768px) {
  .p-company__scrollImg {
    width: 209.2rem;
    animation: loopSlide 44s infinite linear;
  }
}

.p-company__scrollImg img {
  aspect-ratio: 1026/144;
}

.p-company__message {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-company__message {
    margin-top: 10rem;
  }
}

.p-company__profile {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-company__profile {
    margin-top: 6.65rem;
  }
}

.p-company__history {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-company__history {
    margin-top: 6.6rem;
  }
}

.p-company__qualifications {
  margin-top: 4.4rem;
}
@media screen and (min-width: 768px) {
  .p-company__qualifications {
    margin-top: 6.5rem;
  }
}

.p-company__business {
  margin-top: 4.7rem;
}
@media screen and (min-width: 768px) {
  .p-company__business {
    margin-top: 7rem;
  }
}

.p-contact__heading {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-contact__heading {
    line-height: 2.3125;
  }
}

.p-contact__info {
  margin-top: 5.65rem;
  display: grid;
  row-gap: 5.85rem;
}
@media screen and (min-width: 768px) {
  .p-contact__info {
    margin-top: 7.2rem;
    display: flex;
  }
}

.p-contact__block {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__block {
    max-width: 48rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__block:nth-child(2) {
    margin-left: auto;
  }
}

.p-contact__term {
  font-size: 2rem;
  color: #1E8ACE;
  text-align: center;
  padding-bottom: 1.3rem;
  border-bottom: 3px solid #1E8ACE;
}
@media screen and (min-width: 768px) {
  .p-contact__term {
    padding-bottom: 1.4rem;
  }
}

.p-contact__call {
  display: block;
  margin-top: 1.3rem;
  font-size: 3.2rem;
  font-weight: 900;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__call {
    margin-top: 1.15rem;
    font-size: 5rem;
  }
}

.p-contact__text {
  margin-top: 1.3rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5714285714;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    margin-top: 1.5rem;
  }
}

.p-contact__contents {
  margin-top: 5.85rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__contents {
    margin-top: 19.85rem;
    max-width: 92.3rem;
    margin-inline: auto;
  }
}

.p-disposal__title {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  margin-right: -0.6rem;
}
@media screen and (min-width: 768px) {
  .p-disposal__title {
    margin-right: 0;
  }
}

.p-disposal__title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 0.5rem;
  background-color: #FFF;
}

.p-disposal__table {
  margin-top: 1.8rem;
  font-weight: 500;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .p-disposal__table {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: min(5.1976573939vw, 7.1rem);
         column-gap: min(5.1976573939vw, 7.1rem);
  }
}

@media screen and (min-width: 768px) {
  [data-table=third].p-disposal__table {
    max-width: 60rem;
    display: table;
  }
}

@media screen and (min-width: 768px) {
  .p-disposal__table tbody {
    display: contents;
  }
}

@media screen and (min-width: 768px) {
  .p-disposal__table tr:nth-child(-n+12) {
    grid-column: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-disposal__table tr:nth-child(n+13) {
    grid-column: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-disposal__table tr:nth-child(13) {
    grid-row: 1;
  }
}

.p-disposal__table tr {
  display: grid;
  grid-template-columns: 73.9% 26.1%;
  border-bottom: 1px solid #B2DEEB;
}
@media screen and (min-width: 768px) {
  .p-disposal__table tr {
    grid-template-columns: 70% 30%;
  }
}

tr.p-disposal__tablePc {
  display: none;
}
@media screen and (min-width: 768px) {
  tr.p-disposal__tablePc {
    display: grid;
  }
}

@media screen and (min-width: 768px) {
  [data-table=third].p-disposal__table tr {
    grid-template-columns: 74.2% 25.8%;
  }
}

@media screen and (min-width: 768px) {
  .p-disposal__table tr:nth-child(13) {
    grid-column: 2;
    grid-row: 1;
  }
  .p-disposal__table tr:nth-child(14) {
    grid-column: 2;
    grid-row: 2;
  }
  .p-disposal__table tr:nth-child(15) {
    grid-column: 2;
    grid-row: 3;
  }
  .p-disposal__table tr:nth-child(16) {
    grid-column: 2;
    grid-row: 4;
  }
  .p-disposal__table tr:nth-child(17) {
    grid-column: 2;
    grid-row: 5;
  }
  .p-disposal__table tr:nth-child(18) {
    grid-column: 2;
    grid-row: 6;
  }
  .p-disposal__table tr:nth-child(19) {
    grid-column: 2;
    grid-row: 7;
  }
  .p-disposal__table tr:nth-child(20) {
    grid-column: 2;
    grid-row: 8;
  }
  .p-disposal__table tr:nth-child(21) {
    grid-column: 2;
    grid-row: 9;
  }
  .p-disposal__table tr:nth-child(22) {
    grid-column: 2;
    grid-row: 10;
  }
}
.p-disposal__table th {
  font-size: 1.3rem;
  padding-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-disposal__table th {
    padding-bottom: 0.6rem;
  }
}

.p-disposal__table td {
  min-height: 4.4rem;
  padding: 0.95rem 1.5rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-disposal__table td {
    min-height: 4.9rem;
  }
}

.p-disposal__table td:nth-child(1) {
  background-color: #187F9F;
}
@media screen and (min-width: 768px) {
  .p-disposal__table td:nth-child(1) {
    display: flex;
    align-items: center;
  }
}

.p-disposal__table td:nth-child(1) p {
  display: grid;
  row-gap: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-disposal__table td:nth-child(1) p {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-disposal__table td:nth-child(1) span {
    font-size: 1.5rem;
    line-height: 1.4666666667;
  }
}

.p-disposal__table td:nth-child(2) {
  justify-content: center;
}

.p-disposal__table td:nth-child(2) span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.p-disposal__notes {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-disposal__notes {
    width: 29.6rem;
    margin: 0 0 0 auto;
    transform: translateY(-4rem);
  }
}

.p-disposal__notes span {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.p-disposal__block:nth-of-type(n+2) {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-disposal__block:nth-of-type(n+2) {
    margin-top: 5.9rem;
  }
}

.p-disposal__flowchart {
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-disposal__flowchart {
    margin-top: 2.2rem;
  }
}

.p-environmental__block {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__block {
    margin-top: 10rem;
  }
}

.p-environmental__title {
  font-size: 2.2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .p-environmental__title {
    font-size: 2.4rem;
    padding-bottom: 1.9rem;
  }
}

.p-environmental__text {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-environmental__text {
    margin-top: 1.3rem;
    line-height: 2.3125;
    margin-right: -0.2rem;
  }
}

.p-environmental__items {
  margin-top: 4.5rem;
  display: grid;
  row-gap: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__items {
    margin-top: 5.3rem;
    row-gap: 5.3rem;
  }
}

.p-environmental__list {
  display: grid;
  row-gap: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__list {
    row-gap: 1.6rem;
  }
}

.p-environmental__term {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  margin-right: -0.6rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__term {
    margin-right: 0;
  }
}

.p-environmental__term::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.5rem;
  background-color: #FFF;
}

.p-environmental__description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-environmental__description {
    line-height: 2.3125;
  }
}

.p-environmental__flowBlock {
  margin-top: 2.6rem;
  width: 100%;
  max-width: 66.6666666667vw;
  display: grid;
  row-gap: 5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowBlock {
    margin-top: 4.7rem;
    row-gap: 3rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    max-width: none;
  }
}

.p-environmental__flowImgs {
  display: grid;
  row-gap: 1.95rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowImgs {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-environmental__flowImg {
  position: relative;
}

.p-environmental__flowImg::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.3rem;
  height: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-environmental__flowImg::before {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.7rem;
    background: url(../images/icon/arrow_bottom.svg) center/cover no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .p-environmental__flowImg::before {
    top: 50%;
    transform: translateY(-50%);
    right: -2.8rem;
    width: 1.6rem;
    height: 2.1rem;
    background: url(../images/icon/arrow_right_02.svg) center/cover no-repeat;
  }
}

.p-environmental__flowImgs img {
  border-radius: 1rem;
  aspect-ratio: 250/168;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowImgs img {
    aspect-ratio: 340/228;
  }
}

@media screen and (max-width: 767px) {
  [data-imgs=largeSp] .p-environmental__flowImgs img {
    aspect-ratio: 250/184;
  }
}

.p-environmental__imgs {
  margin-top: 3rem;
  width: 100%;
  max-width: 66.6666666667vw;
  display: grid;
  row-gap: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-environmental__imgs {
    margin-top: 3.2rem;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  [data-section=environmental] .p-environmental__imgs {
    margin-top: 2.7rem;
  }
}

.p-environmental__imgs img {
  border-radius: 1rem;
  aspect-ratio: 250/163;
}

.p-environmental__flow {
  margin-top: 2rem;
  display: grid;
  row-gap: 4.7rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flow {
    margin-top: 3.1rem;
  }
}

.p-environmental__flowItem {
  display: grid;
  row-gap: 1.2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowItem {
    display: flex;
    align-items: center;
    -moz-column-gap: 2.8rem;
         column-gap: 2.8rem;
  }
}

.p-environmental__flowItem:not(:last-child)::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.5rem;
  background: url(../images/icon/arrow_bottom_light_green.svg) center/cover no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.9rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowItem:not(:last-child)::after {
    transform: none;
    left: 9rem;
  }
}

.p-environmental__flowNumber {
  background-color: #54A76A;
  padding: 0.75rem 1rem 0.75rem 23.4666666667vw;
  display: flex;
  align-items: center;
  line-height: 1;
  -moz-column-gap: 2.8rem;
       column-gap: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowNumber {
    width: 20.4rem;
    flex-shrink: 0;
    padding: 1.2rem 2.6rem;
  }
}

[data-num="2"].p-environmental__flowNumber {
  -moz-column-gap: 4.8rem;
       column-gap: 4.8rem;
}
@media screen and (min-width: 768px) {
  [data-num="2"].p-environmental__flowNumber {
    -moz-column-gap: 4.9rem;
         column-gap: 4.9rem;
  }
}

[data-num="3"].p-environmental__flowNumber {
  -moz-column-gap: 2.7rem;
       column-gap: 2.7rem;
}
@media screen and (min-width: 768px) {
  [data-num="3"].p-environmental__flowNumber {
    -moz-column-gap: 3.4rem;
         column-gap: 3.4rem;
  }
}

.p-environmental__flowNumber::before {
  content: attr(data-num);
  font-size: 3.5rem;
  font-family: "Archivo Narrow", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowNumber::before {
    font-size: 4.4rem;
  }
}

.p-environmental__flowNumber p {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowNumber p {
    text-align: center;
  }
}

.p-environmental__flowNumber span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowNumber span {
    margin-top: 0.5rem;
    display: block;
  }
}

.p-environmental__flowText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-environmental__flowText {
    line-height: 2.3125;
  }
}

.p-environmental__cleaningList {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-environmental__cleaningList {
    margin-top: 1.2rem;
    line-height: 2.3125;
  }
}

.p-environmental__cleaningList li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-environmental__cleaningList li {
    gap: 0;
  }
}

.p-environmental__cleaningList li::before {
  content: "〇";
}

.p-flowchart {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flowchart {
    max-width: 78.8rem;
    margin-inline: auto;
  }
}

.p-flowchart__wrapper {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 37.31% 56.72%;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__wrapper {
    -moz-column-gap: 4.8rem;
         column-gap: 4.8rem;
    grid-template-columns: 27.16% 66.75%;
  }
}

.p-flowchart__contents {
  margin-top: 0.5rem;
  display: grid;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flowchart__contents {
    margin-top: 1rem;
    row-gap: 2rem;
  }
}

.p-flowchart__title {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-flowchart__title {
    font-size: 1.4rem;
  }
}

.p-flowchart__list {
  display: grid;
}

.p-flowchart__text {
  padding: 1.15rem 1rem;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-flowchart__text {
    padding: 1.6rem;
  }
}

.p-flowchart__text:first-child::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-flowchart__text:first-child::before {
    width: 4.8rem;
    right: -4.8rem;
  }
}

.p-flowchart__text:first-child {
  background-color: #187F9F;
}

.p-flowchart__text:nth-child(2) {
  background-color: #92D3E8;
  color: #187F9F;
}

.p-footer {
  color: #FFF;
  background-color: #50575D;
  border-radius: 4rem 4rem 0 0;
  margin-top: -4rem;
}

.p-footer__contact {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .p-footer__contact {
    margin-top: 5.8rem;
  }
}

.p-footer__contents {
  margin-top: 9.7rem;
  padding-top: 5.9rem;
  border-top: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .p-footer__contents {
    margin-top: 5.9rem;
    padding-top: 11.6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    display: flex;
    align-items: flex-start;
  }
}

.p-footer__logo {
  display: block;
  width: 100%;
  max-width: 20.1333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    max-width: 11.3rem;
    transition: opacity 0.3s ease-out;
  }
}

.p-footer__logo img {
  aspect-ratio: 113/170.5;
}

@media screen and (min-width: 768px) {
  .p-footer__logo:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__body {
    margin-top: 5.8rem;
    margin-left: auto;
  }
}

.p-footer__menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__menu {
    display: flex;
    align-items: center;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: 1.6rem;
    font-family: "Archivo Narrow", sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: border 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__link:hover {
    border-color: #FFF;
  }
}

.p-footer__copyright {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 7.2rem;
    margin-right: 0.3rem;
    text-align: right;
  }
}

.p-footer__copyright small {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright small {
    font-size: 1.4rem;
  }
}

.p-form__block {
  margin-top: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-form__block {
    margin-top: 5.6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap {
    display: flex;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap--radio {
    align-items: flex-start;
  }
}

.p-form__wrap:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-form__wrap:nth-child(n+2) {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  [data-input=textarea].p-form__wrap {
    align-items: flex-start;
  }
}

.p-form__wrap label {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__wrap label {
    max-width: 17.8rem;
    align-items: center;
    margin-top: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap--radio label {
    margin-top: 0.4rem;
  }
}

@media screen and (min-width: 768px) {
  [data-input=textarea].p-form__wrap--radio label {
    margin-top: -0.2rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__label {
    justify-content: space-between;
  }
}

.p-form__label span {
  color: #FFF;
  background-color: #1E8ACE;
  width: 5rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 900;
  padding: 0.35rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-form__selectWrap,
.p-form__text,
.p-form__textarea {
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.8rem;
  font-weight: 500;
  background-color: #F4F4F4;
}
@media screen and (min-width: 768px) {
  .p-form__selectWrap,
  .p-form__text,
  .p-form__textarea {
    margin: 0;
    padding: 0.8rem;
    max-width: 72.2rem;
  }
}

.p-form__enclose {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__enclose {
    margin-left: auto;
    max-width: 72.2rem;
  }
}

.p-form__textareaWrap {
  margin-top: 2.85rem;
}
@media screen and (min-width: 768px) {
  .p-form__textareaWrap {
    margin-top: 3.55rem;
    margin-left: auto;
  }
}

/* セレクトボックス ここから */
.p-form__selectWrap {
  position: relative;
}

.p-form__selectWrap:after {
  content: "";
  position: absolute;
  right: 29px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #C9C9C9;
  border-left: 2px solid #C9C9C9;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.p-form__select {
  width: 100%;
}

.p-form__select:invalid {
  color: #C9C9C9;
}

.p-form__select option {
  color: #333;
}

.p-form__select option:first-child {
  color: #C9C9C9;
}

/* セレクトボックス ここまで */
.p-form__textarea {
  margin-top: 0.8rem;
  height: 22rem;
}

/* ラジオボタン ここから */
.p-form__radioButton {
  width: 100%;
  margin-top: 0.85rem;
}
@media screen and (min-width: 768px) {
  .p-form__radioButton {
    display: flex;
    margin: 0;
    text-align: left;
  }
}

.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-form__radio {
    gap: 1.15rem 3.9rem;
  }
}

.p-form__wrap .p-form__radio span {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  [data-page=single] .p-form__wrap .p-form__radio span {
    width: auto;
  }
}

.p-form__radio label {
  box-sizing: border-box;
  line-height: 1.4;
  padding-left: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-form__radio label {
    cursor: pointer;
    padding-left: 2.4rem;
  }
}

.p-form__radio input {
  display: inline-block;
  position: relative;
}

/* ラジオボタン ここまで */
.p-form__box {
  margin-top: 4.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__box {
    margin-top: 5.6rem;
  }
}

.p-form__box p {
  margin-right: -0.1rem;
  padding: 0.8rem 0;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-form__box p {
    font-size: 1.4rem;
  }
}

.p-form__box a {
  text-decoration: underline;
  color: #000;
}

/* チェックボックス ここから */
.p-form__bottomText {
  font-size: 1.5rem;
  font-weight: 500;
}

.p-form__check {
  margin-inline: auto;
}

.p-form__checkbox {
  position: relative;
  display: block;
  padding-left: 1.7rem;
  font-size: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-form__checkbox {
    font-size: 1.6rem;
    width: auto;
    letter-spacing: 0.1em;
    padding-left: 2.6rem;
  }
}

.p-form__submit {
  margin-top: 5.8rem;
  margin-inline: auto;
  width: 100%;
  max-width: 24rem;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-form__submit {
    margin-top: 11.7rem;
    max-width: 35rem;
  }
}

.p-form__submit input {
  width: 100%;
  color: #1E8ACE;
  height: 6rem;
  font-size: 2rem;
  border-radius: 99.9rem;
  border: 1px solid #1E8ACE;
}
@media screen and (min-width: 768px) {
  .p-form__submit input {
    height: 8rem;
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-form__submit:hover input {
    background-color: #1E8ACE;
    color: #FFF;
  }
}

@media screen and (min-width: 768px) {
  .p-fv {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-fv__scrollDown {
    position: absolute;
    top: 81.2vh;
    right: 2.5rem;
  }
}

.p-fv__inner {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    position: relative;
    padding: 0;
  }
}

.p-fv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 4.3rem;
  line-height: 1.4651162791;
  margin-left: 0.6rem;
  position: relative;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 5.5rem;
    line-height: 1.4727272727;
    margin: 0;
    position: absolute;
    top: 0;
    right: 11.13%;
  }
}

.p-fv__img {
  margin-top: -3.1rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-fv__img {
    position: fixed;
    left: 0;
    top: 22.4rem;
    width: 94.1434846266vw;
    opacity: 1;
    visibility: visible;
    z-index: -1;
  }
}

.p-fv__img img {
  border-radius: 0 2rem 2rem 0;
  aspect-ratio: 355/467;
}
@media screen and (min-width: 768px) {
  .p-fv__img img {
    aspect-ratio: 1286/656;
  }
}

.p-fv__contentsWrapper {
  margin-top: 17.6rem;
}
@media screen and (min-width: 768px) {
  .p-fv__contentsWrapper {
    margin-top: 90rem;
    padding-top: 23rem;
    background: linear-gradient(transparent 0%, #FFF 50%);
  }
}

.p-fv__contents {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 10.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-fv__contents {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.p-fv__ambiance {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-fv__ambiance {
    margin: 0 0 0 calc(50% - 50vw);
    width: 100%;
    max-width: min(48vw, 54.4rem);
  }
}

.p-fv__ambianceImg img {
  border-radius: 1rem;
}

[data-ambiance=num_01].p-fv__ambianceImg {
  width: 100%;
  max-width: 80vw;
}
@media screen and (min-width: 768px) {
  [data-ambiance=num_01].p-fv__ambianceImg {
    max-width: 43.5rem;
  }
}

[data-ambiance=num_01].p-fv__ambianceImg img {
  aspect-ratio: 300/191;
}

[data-ambiance=num_02].p-fv__ambianceImg {
  width: 100%;
  max-width: 53.6vw;
  margin: -5.3333333333vw 0 0 auto;
}
@media screen and (min-width: 768px) {
  [data-ambiance=num_02].p-fv__ambianceImg {
    max-width: 29.2rem;
    margin-top: -2.9rem;
  }
}

[data-ambiance=num_02].p-fv__ambianceImg img {
  aspect-ratio: 201/148;
}

[data-ambiance=num_03].p-fv__ambianceImg {
  width: 100%;
  max-width: 43.7333333333vw;
  margin: 17.0666666667vw 0 0 24.5333333333vw;
}
@media screen and (min-width: 768px) {
  [data-ambiance=num_03].p-fv__ambianceImg {
    max-width: 23.8rem;
    margin: 9.2rem 0 0 13.3rem;
  }
}

[data-ambiance=num_03].p-fv__ambianceImg img {
  aspect-ratio: 164/213;
}

.p-fv__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fv__body {
    margin-top: 8.85rem;
    max-width: 51.7rem;
    margin-left: auto;
  }
}

.p-fv__lead {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.5;
  margin-right: -0.4rem;
}
@media screen and (min-width: 768px) {
  .p-fv__lead {
    font-size: 1.8rem;
    line-height: 2.6111111111;
  }
}

.p-fv__link {
  margin-top: 5.4rem;
  margin-right: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-fv__link {
    margin-top: 5.9rem;
    margin-right: 0;
  }
}

.p-fv__link a {
  margin-left: auto;
}

.p-hamburger {
  width: 3.3rem;
  height: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 150;
  top: -0.8rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger__button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.p-hamburger__button::after {
  content: "MENU";
  color: #000;
  font-size: 1.2rem;
  font-family: "Archivo Narrow", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.3rem;
  width: 100%;
  padding-top: 2rem;
  display: block;
  text-align: center;
  transition: opacity 0.3s ease-out;
}

.p-hamburger.open .p-hamburger__button::after {
  opacity: 0;
}

.p-hamburger__button span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
}

.p-hamburger__button span:first-child {
  top: 0;
}

.p-hamburger__button span:last-child {
  top: 100%;
}

.p-hamburger.open .p-hamburger__button span {
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFF;
}

.p-hamburger.open .p-hamburger__button span:first-child {
  transform: rotate(17deg);
}

.p-hamburger.open .p-hamburger__button span:last-child {
  transform: rotate(-17deg);
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 7rem;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 8rem;
  }
}

.p-header__container {
  height: inherit;
  display: flex;
  align-items: center;
  margin: 0 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__container {
    margin: 0 3.9rem 0 4rem;
    align-items: flex-start;
  }
}

.p-header__logo {
  position: absolute;
  top: 2.1rem;
  left: 0;
  width: 16.2rem;
  aspect-ratio: 162/28;
  z-index: 150;
  transition: opacity 0.6s ease-out;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    top: 2.4rem;
    width: 18.5rem;
  }
}

.p-header__logo.active {
  opacity: 0;
}

.p-header__logo:hover {
  opacity: 0.7;
}

.p-history__block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 3.3rem;
       column-gap: 3.3rem;
}
@media screen and (min-width: 768px) {
  .p-history__block {
    min-height: 8.4rem;
    -moz-column-gap: 4.7rem;
         column-gap: 4.7rem;
  }
}

.p-history__year {
  width: 7.5rem;
  flex-shrink: 0;
  font-family: "Archivo Narrow", sans-serif;
  color: #9B9B9B;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .p-history__year {
    width: 10rem;
    font-size: 4rem;
  }
}

.p-history__text {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 500;
  position: relative;
  padding-bottom: 2.65rem;
}
@media screen and (min-width: 768px) {
  .p-history__text {
    margin-top: 1.6rem;
    line-height: 1.875;
    padding-bottom: 2.2rem;
  }
}

.p-history__text::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #1E8ACE;
  position: absolute;
  top: 1rem;
  left: -2.5rem;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-history__text::before {
    left: -2.5rem;
  }
}

.p-history__text::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: calc(100% + 1rem);
  position: absolute;
  top: 1.3rem;
  left: -1.9rem;
  transform: translateX(-50%);
  background-image: linear-gradient(to top, #707070, #707070 1px, transparent 1px, transparent 2px);
  background-size: 1px 2px;
  background-position: left top;
  background-repeat: repeat-y;
}
@media screen and (min-width: 768px) {
  .p-history__text::after {
    height: max(100% + 1.5rem, 8.4rem);
    left: -1.9rem;
  }
}

.p-history__block:last-of-type .p-history__text:last-of-type::after {
  height: calc(100% + 0.7rem);
}

[data-interview=num_01].p-interview__container,
[data-interview=num_03].p-interview__container {
  background-color: #D9ECEF;
}

[data-interview=num_02].p-interview__container,
[data-interview=num_04].p-interview__container {
  background-color: #B1D9E0;
}

[data-interview=num_01] .p-interview__contents {
  margin-top: 2.6rem;
}
@media screen and (min-width: 768px) {
  [data-interview=num_01] .p-interview__contents {
    margin-top: 10.45rem;
  }
}

.p-interview__num {
  line-height: 1;
  color: #FFF;
  font-size: 7rem;
  font-family: "Archivo Narrow", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-interview__num {
    font-size: 15rem;
  }
}

.p-interview__subject {
  margin-top: 1.4rem;
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-interview__subject {
    margin-top: 4.2rem;
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}

.p-interview__info {
  margin-top: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-interview__info {
    margin-top: 2.45rem;
  }
}

.p-interview__years {
  font-size: 1.4rem;
}

.p-interview__name {
  margin-top: 0.15rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-interview__name {
    margin-top: 0.1rem;
  }
}

.p-interview__blocks {
  margin-top: 2.45rem;
  display: grid;
  row-gap: 5.7rem;
}
@media screen and (min-width: 768px) {
  .p-interview__blocks {
    margin-top: 11.05rem;
    row-gap: 11.35rem;
  }
}

.p-interview__block {
  display: grid;
  row-gap: 5.9rem;
}
@media screen and (min-width: 768px) {
  .p-interview__block {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__block:nth-child(even) {
    flex-direction: row;
  }
}

.p-interview__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-interview__img {
    max-width: 44.2rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__block:nth-child(even) .p-interview__img {
    margin-left: 0;
  }
}

.p-interview__img img {
  border-radius: 1rem;
  aspect-ratio: 335/230;
}
@media screen and (min-width: 768px) {
  .p-interview__img img {
    aspect-ratio: 442/562;
  }
}

.p-interview__body {
  width: 100%;
  display: grid;
  row-gap: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-interview__body {
    margin-top: -0.05rem;
    max-width: 59.3rem;
    row-gap: 9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__block:nth-child(even) .p-interview__body {
    margin-left: auto;
    margin-top: -0.35rem;
  }
}

.p-interview__item {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-interview__item {
    row-gap: 2.6rem;
  }
}

.p-interview__term {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-interview__term {
    line-height: 1.8181818182;
  }
}

.p-interview__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-interview__text {
    line-height: 2.3125;
  }
}

.p-item {
  background-color: #FFF;
  padding: 2rem 2rem 3rem;
  border-radius: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-item {
    padding: 3.1rem 3rem 2.9rem;
  }
}

.p-item::after {
  content: attr(data-item);
  position: absolute;
  top: -2.9rem;
  right: 2.7rem;
  font-size: 7rem;
  line-height: 1;
  font-family: "Archivo Narrow", sans-serif;
  color: #2C6CB5;
}
@media screen and (min-width: 768px) {
  .p-item::after {
    top: -3rem;
    right: 4.9rem;
    font-size: 8rem;
  }
}

.p-item__img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.p-item__img img {
  position: relative;
  top: 0;
  left: 0;
  aspect-ratio: 295/180;
  border-radius: 1rem;
  transition: transform 0.4s ease-out;
}

.p-item:hover .p-item__img img {
  transform: scale(1.05);
}

.p-item__title {
  margin-top: 1.8rem;
  margin-right: -1.2rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .p-item__title {
    margin-top: 3.95rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-item__info {
  margin-top: 1.9rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-item__info {
    margin-top: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  [data-item="3"] .p-item__title,
  [data-item="3"] .p-item__info {
    margin-top: 1.9rem;
  }
}

.p-item__years {
  font-size: 1.4rem;
}

.p-item__name {
  font-size: 1.8rem;
}

.p-item__name span {
  font-size: 1.6rem;
}

.p-item__link {
  display: block;
  margin: -0.2rem 1.1rem 0 auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  padding-bottom: 1px;
  border-bottom: 2px solid #000;
}
@media screen and (min-width: 768px) {
  .p-item__link {
    margin-top: 1.8rem;
    margin-right: 0;
    transition: color 0.3s ease-out, border 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-item:hover .p-item__link {
    color: #1E8ACE;
    border-color: #1E8ACE;
  }
}

@media screen and (min-width: 768px) {
  .p-machine {
    position: relative;
  }
}

.p-machine__items {
  display: grid;
  row-gap: 3.1rem;
}
@media screen and (min-width: 768px) {
  .p-machine__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.7rem 2.5rem;
  }
}

.p-machine__img img {
  border-radius: 1rem;
  aspect-ratio: 335/239;
}

.p-machine__name {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-machine__name {
    margin-top: 1.2rem;
  }
}

.p-machine__others {
  margin-top: 4.1rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-machine__others {
    margin-top: 2.8rem;
    display: flex;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
}

.p-machine__others li {
  display: flex;
  align-items: flex-start;
}

.p-machine__others li::before {
  content: "・";
}

.p-machine__characterImg {
  margin-top: 3.9rem;
  width: 100%;
  max-width: 29.8rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-machine__characterImg {
    margin: 0;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    position: absolute;
    top: -37.3rem;
    right: 4.4rem;
    max-width: 20.4rem;
  }
}

.p-machine__speechBubble {
  width: 100%;
  max-width: 13.8rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/speech_bubble_05_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-machine__speechBubble {
    margin: 0 0.4rem 0 auto;
    max-width: 16.6rem;
    aspect-ratio: 166/180;
    background-image: url(../images/common/speech_bubble_05.svg);
  }
}

.p-machine__speechBubble p {
  padding-top: 2.6rem;
}
@media screen and (min-width: 768px) {
  .p-machine__speechBubble p {
    padding-top: 3.5rem;
  }
}

.p-machine__image {
  margin: -8.6rem 0 0 auto;
  width: 100%;
  max-width: 17.6rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-machine__image {
    margin-top: 0.7rem;
    max-width: none;
  }
}

.p-machine__image img {
  aspect-ratio: 176/118;
}

.p-message {
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-message {
    margin-right: calc(50% - 50vw);
    display: flex;
    -moz-column-gap: min(8.1991215227vw, 11.2rem);
         column-gap: min(8.1991215227vw, 11.2rem);
  }
}

.p-message__body {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-message__body {
    margin-top: -0.35rem;
    row-gap: 2.4rem;
  }
}

.p-message__title {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    line-height: 1.8181818182;
  }
}

.p-message__text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    line-height: 2.3125;
  }
}

.p-message__photo {
  width: 100%;
  max-width: 66.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-message__photo {
    max-width: max(34.6998535871vw, 47.4rem);
    flex-shrink: 0;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}

.p-message__img {
  width: 100%;
}

.p-message__img img {
  border-radius: 1rem;
  aspect-ratio: 250/316.5;
}
@media screen and (min-width: 768px) {
  .p-message__img img {
    border-radius: 1rem 0 0 1rem;
    aspect-ratio: 474/602;
  }
}

.p-message__name {
  text-align: center;
  margin-top: 1.9rem;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-message__name {
    margin-top: 2.45rem;
  }
}

.p-message__name span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 768px) {
  .p-message__name span {
    margin-bottom: 0.35rem;
  }
}

.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 10;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.4s ease-out, opacity 0.4s ease-out;
  background: #FFF;
  padding: 7.6rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  background-color: #1E8ACE;
}
@media screen and (min-width: 768px) {
  .p-nav {
    padding: 0;
    background-color: transparent;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    height: inherit;
    position: static;
    margin-left: auto;
    opacity: 1;
    visibility: visible;
  }
}

.p-nav.open {
  opacity: 1;
  visibility: visible;
}

.p-nav__inner {
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-nav__inner {
    opacity: 1;
    height: inherit;
  }
}

@media screen and (min-width: 768px) {
  .p-nav__container {
    height: inherit;
  }
}

.p-nav.open .p-nav__inner {
  opacity: 1;
}

.p-nav__logo {
  display: block;
  width: 100%;
  max-width: 7.55rem;
  aspect-ratio: 75.5/114;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-nav__logo {
    display: none;
  }
}

.p-nav__menu {
  margin-top: 5.1rem;
  display: grid;
  row-gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-nav__menu {
    margin: 0;
    display: flex;
    align-items: center;
    height: inherit;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}

.p-nav__link {
  text-transform: uppercase;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-nav__link {
    color: #000;
    line-height: 1.2;
    font-size: 1.4rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease-out, border 0.3s ease-out;
  }
}

.p-nav__link::after {
  content: attr(data-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  margin-top: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-nav__link::after {
    content: none;
  }
}

@media screen and (min-width: 768px) {
  .p-nav__link:hover {
    color: #1E8ACE;
    border-color: #1E8ACE;
  }
}

.p-opening {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #1E8ACE;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  opacity: 1;
  visibility: visible;
}

.p-opening__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10.5rem;
  aspect-ratio: 105/115;
}
@media screen and (min-width: 768px) {
  .p-opening__logo {
    width: 17.2rem;
  }
}

.p-opening__logo svg {
  width: 100%;
}

.p-opening__logo path {
  opacity: 0;
}

.p-philosophy {
  display: grid;
  row-gap: 4.65rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy {
    row-gap: 4.2rem;
  }
}

.p-philosophy__item {
  display: grid;
  row-gap: 1.15rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy__item {
    row-gap: 0.9rem;
  }
}

.p-philosophy__title {
  display: flex;
  color: #1E8ACE;
  font-size: 2.2rem;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
}

.p-philosophy__title::before {
  content: "- ";
}

.p-philosophy__text {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-philosophy__text {
    line-height: 1.8181818182;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy {
    margin-top: 0.35rem;
  }
}

.p-privacy__contents {
  margin-top: 5.7rem;
  display: grid;
  row-gap: 5.7rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contents {
    margin-top: 6.5rem;
    row-gap: 6.5rem;
  }
}

.p-privacy__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}

.p-privacy__block {
  display: grid;
  row-gap: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__block {
    row-gap: 1.5rem;
  }
}

.p-privacy__title {
  font-size: 2rem;
  line-height: 1.45;
}

.p-privacy__text a {
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.p-privacy__text a:hover {
  opacity: 0.7;
}

.p-profile {
  display: grid;
  row-gap: 4.2rem;
}
@media screen and (min-width: 768px) {
  .p-profile {
    position: relative;
  }
}

.p-profile__contents {
  display: grid;
  row-gap: 1.9rem;
}
@media screen and (min-width: 768px) {
  .p-profile__contents {
    row-gap: 3.4rem;
  }
}

.p-profile__list {
  display: grid;
  row-gap: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .p-profile__list {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
    line-height: 1.875;
  }
}

.p-profile__term {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__term {
    width: 10.5rem;
    flex-shrink: 0;
    gap: 0;
  }
}

.p-profile__term::after {
  content: "：";
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-profile__term::after {
    margin-left: auto;
  }
}

.p-profile__description {
  font-weight: 500;
}

.p-profile__description li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-profile__description li {
    gap: 0;
  }
}

.p-profile__description li::before {
  content: "・";
}
@media screen and (min-width: 768px) {
  .p-profile__description li::before {
    content: "▪";
  }
}

.p-profile__img {
  width: 100%;
  max-width: 33.3rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-profile__img {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    position: absolute;
    top: -1rem;
    right: 2.1rem;
    max-width: 36rem;
  }
}

.p-profile__speechBubble {
  width: 100%;
  max-width: 15.6rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/speech_bubble_04.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-profile__speechBubble {
    max-width: 16.6rem;
  }
}

.p-profile__speechBubble p {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-profile__speechBubble p {
    padding-top: 3.5rem;
  }
}

.p-profile__image {
  margin: -9.6rem 0 0 auto;
  width: 100%;
  max-width: 19.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-profile__image {
    margin-top: -3.1rem;
    max-width: 21.3rem;
  }
}

.p-profile__image img {
  aspect-ratio: 194/134;
}

.p-qualifications__contents {
  display: grid;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-qualifications__contents {
    display: flex;
    line-height: 2.1875;
    -moz-column-gap: min(21.0834553441vw, 28.8rem);
         column-gap: min(21.0834553441vw, 28.8rem);
  }
}

.p-qualifications__contents p {
  white-space: pre-line;
}

.p-recruit__heading {
  position: relative;
  padding-bottom: 12.9rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__heading {
    padding-bottom: 28.7rem;
  }
}

.p-recruit__subject {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-recruit__subject {
    line-height: 1.8181818182;
  }
}

.p-recruit__lead {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead {
    margin-top: 2.4rem;
    line-height: 2.3125;
  }
}

.p-recruit__scroll {
  position: absolute;
  left: 0;
  width: 100vw;
  bottom: -7.2rem;
  overflow: hidden;
  z-index: 1;
  display: flex;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__scroll {
    bottom: -18.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.p-recruit__scrollImg {
  flex-shrink: 0;
  width: 81.2rem;
  animation: loopSlide 26s infinite linear;
}
@media screen and (min-width: 768px) {
  .p-recruit__scrollImg {
    width: 164.5rem;
    animation: loopSlide 36s infinite linear;
  }
}

.p-recruit__scrollImg img {
  aspect-ratio: 812/144;
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-recruitment__contents {
  margin-top: 4.3rem;
  display: grid;
  row-gap: 1.95rem;
}
@media screen and (min-width: 768px) {
  .p-recruitment__contents {
    margin-top: 5.85rem;
    row-gap: 3.95rem;
  }
}

.p-recruitment__list {
  display: flex;
  align-items: flex-start;
  font-size: 1.6rem;
  line-height: 1.5625;
}

.p-recruitment__term {
  width: 6.9rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-recruitment__term {
    width: 8.9rem;
  }
}

.p-recruitment__description {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruitment__description {
    -moz-column-gap: 2.55rem;
         column-gap: 2.55rem;
  }
}

.p-recruitment__description::before {
  content: "：";
}

.p-recycling__block {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__block {
    margin-top: 10.3rem;
  }
}

.p-recycling__block:nth-of-type(n+2) {
  margin-top: 11.4rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__block:nth-of-type(n+2) {
    margin-top: 9.8rem;
  }
}

.p-recycling__title {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .p-recycling__title {
    font-size: 2.4rem;
  }
}

.p-recycling__wrap {
  margin-top: 1.6rem;
  display: grid;
  row-gap: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__wrap {
    margin-top: 2.5rem;
    display: flex;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}

.p-recycling__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recycling__body {
    margin-top: -0.4rem;
    max-width: 53.2rem;
  }
}

.p-recycling__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-recycling__text {
    line-height: 2;
  }
}

.p-recycling__address {
  margin-top: 2.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-recycling__address {
    margin-top: 2.5rem;
  }
}

.p-recycling__map {
  display: block;
  position: relative;
  width: 100%;
  height: 24.1rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__map {
    max-width: 50.7rem;
    height: 36.5rem;
    margin-left: auto;
  }
}

.p-recycling__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-recycling__subtitle {
  margin-top: 5rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  margin-right: -0.6rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__subtitle {
    margin-top: 6rem;
    margin-right: 0;
  }
}

.p-recycling__subtitle::before {
  content: "";
  display: block;
  width: 2rem;
  height: 0.5rem;
  background-color: #FFF;
}

.p-recycling__contents {
  margin-top: 2rem;
  margin-right: calc(50% - 50vw);
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-recycling__contents {
    margin-top: 2.1rem;
    margin-right: 0;
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  .p-recycling__contents::-webkit-scrollbar {
    height: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-recycling__contents::-webkit-scrollbar-track {
    background-color: rgba(242, 241, 230, 0.5);
    border-radius: 999px;
  }
}

@media screen and (max-width: 767px) {
  .p-recycling__contents::-webkit-scrollbar-thumb {
    background-color: #294E30;
    border-radius: 999px;
  }
}

.p-recycling__table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.3rem 0;
  width: 110rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  margin-left: -0.3rem;
  margin-right: -0.3rem;
  padding-bottom: 1.9rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__table {
    width: min(94vw, 111rem);
    border-spacing: 0.5rem 0;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  [data-table=second].p-recycling__table {
    width: 77.5rem;
  }
}

.p-recycling__table th,
.p-recycling__table td {
  width: 25%;
}

.p-recycling__table th {
  background-color: #3A6C43;
  color: #FFF;
  padding: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__table th {
    padding: 0.55rem;
  }
}

.p-recycling__table td {
  font-weight: 500;
  height: 4.5rem;
  position: relative;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-recycling__table td {
    height: 5rem;
  }
}

.p-recycling__table [data-table=background] {
  background-color: #468051;
}

.p-recycling__table td::after {
  content: "";
  display: block;
  width: calc(100% + 0.15rem);
  height: 1px;
  background-image: linear-gradient(to left, #FFF, #FFF 1px, transparent 1px, transparent 2px);
  background-size: 2px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-recycling__table td::after {
    width: calc(100% + 0.25rem);
  }
}

.p-recycling__table td:first-child:after {
  left: 0;
}

.p-recycling__table td:nth-child(2)::after,
.p-recycling__table td:nth-child(3)::after,
.p-recycling__table td:nth-child(4)::after {
  width: calc(100% + 0.4rem);
}
@media screen and (min-width: 768px) {
  .p-recycling__table td:nth-child(2)::after,
  .p-recycling__table td:nth-child(3)::after,
  .p-recycling__table td:nth-child(4)::after {
    width: calc(100% + 0.6rem);
  }
}

.p-recycling__table td:nth-child(n+2)::after {
  left: -0.2rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__table td:nth-child(n+2)::after {
    left: -0.3rem;
  }
}

.p-recycling__items {
  margin-top: 4.8rem;
  width: 100%;
  max-width: 66.6666666667vw;
  margin-inline: auto;
  display: grid;
  row-gap: 2.95rem;
}
@media screen and (min-width: 768px) {
  .p-recycling__items {
    max-width: none;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    margin-top: 7rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2.5rem;
  }
}

.p-recycling__img img {
  border-radius: 1rem;
  aspect-ratio: 250/179;
}

.p-recycling__itemText {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 1rem -0.4rem 0;
}

.p-scrollDown {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-scrollDown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scrollDown__text {
    font-size: 1.4rem;
    color: #000;
    font-family: "Archivo Narrow", sans-serif;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-scrollDown__line {
    position: relative;
    width: 1px;
    height: 7.6rem;
    background-color: #000;
  }
}

@media screen and (min-width: 768px) {
  .p-scrollDown__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #000;
    animation: scrollDot 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }
}

@keyframes scrollDot {
  0% {
    top: -1rem;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.p-service__links {
  position: fixed;
  top: 7rem;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out, visibility 0s 1s ease-out;
}
@media screen and (min-width: 768px) {
  .p-service__links {
    display: none;
  }
}

.p-service__links.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease-out;
}

.p-service__link {
  color: #FFF;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.75rem 0;
}

.p-service__link:first-child {
  background-color: #3275C3;
}

.p-service__link:nth-child(2) {
  background-color: #33ABD0;
}

.p-service__link:nth-child(3) {
  background-color: #7AC68E;
}

.p-service__link:nth-child(4) {
  background-color: #489356;
}

.p-service__heading {
  padding-bottom: 13.7rem;
}
@media screen and (min-width: 768px) {
  .p-service__heading {
    padding-bottom: 16.7rem;
  }
}

.p-service__subject {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-service__subject {
    line-height: 1.8181818182;
  }
}

.p-service__lead {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-service__lead {
    margin-top: 2.4rem;
    line-height: 2.3125;
  }
}

.p-service__container {
  color: #FFF;
  border-radius: 4rem 4rem 0 0;
  margin-top: -4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

[data-section=transportation].p-service__container {
  background-color: #3275C3;
}

[data-section=disposal].p-service__container {
  background-color: #33ABD0;
}

[data-section=environmental].p-service__container {
  background-color: #7AC68E;
}

[data-section=recycling].p-service__container {
  background-color: #489356;
  border-radius: 4rem;
}

[data-section=transportation].p-service__container::before {
  content: "";
  display: block;
  z-index: -1;
  width: 15.95rem;
  height: 8.45rem;
  background: url(../images/service/icon_01.svg) center/cover no-repeat;
  position: absolute;
  top: 5.1rem;
  right: -1.2rem;
}
@media screen and (min-width: 768px) {
  [data-section=transportation].p-service__container::before {
    top: 5.6rem;
    right: -2.8rem;
    width: 56.2rem;
    height: 29.7rem;
  }
}

[data-section=disposal].p-service__container::before {
  content: "";
  display: block;
  z-index: -1;
  width: 9.9rem;
  height: 13.5rem;
  background: url(../images/service/icon_02.svg) center/cover no-repeat;
  position: absolute;
  top: 1.3rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  [data-section=disposal].p-service__container::before {
    top: 50.6rem;
    right: auto;
    left: 2.4rem;
    width: 29.4rem;
    height: 40.2rem;
  }
}

[data-section=environmental].p-service__container::before {
  content: "";
  display: block;
  z-index: -1;
  width: 9.6rem;
  height: 9.5rem;
  background: url(../images/service/icon_03.svg) center/cover no-repeat;
  position: absolute;
  top: 2.7rem;
  right: -1.6rem;
}
@media screen and (min-width: 768px) {
  [data-section=environmental].p-service__container::before {
    top: 4.2rem;
    right: 4.6rem;
    width: 27.2rem;
    height: 26.9rem;
  }
}

[data-section=recycling].p-service__container::before {
  content: "";
  display: block;
  z-index: -1;
  width: 13.15rem;
  height: 12.95rem;
  background: url(../images/service/icon_04.svg) center/cover no-repeat;
  position: absolute;
  top: 1.3rem;
  right: -1.3rem;
}
@media screen and (min-width: 768px) {
  [data-section=recycling].p-service__container::before {
    top: 51.7rem;
    right: auto;
    left: -1.9rem;
    width: 28.3rem;
    height: 27.9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service__sectionHeading {
    display: flex;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.p-service__sectionHeading span {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service__sectionHeading span {
    display: block;
    margin-top: -0.9rem;
  }
}

.p-service__title {
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 2.2rem;
       column-gap: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    -moz-column-gap: 4.3rem;
         column-gap: 4.3rem;
  }
}

.p-service__title::before {
  content: attr(data-num);
  font-size: 6rem;
  font-family: "Archivo Narrow", sans-serif;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__title::before {
    font-size: 7.3rem;
  }
}

@media screen and (max-width: 767px) {
  [data-num="1"].p-service__title {
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  [data-num="1"].p-service__title::before {
    font-size: 5.5rem;
    margin: 0;
  }
}

.p-service__contents {
  margin-top: 1.7rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 3.8rem;
}
@media screen and (min-width: 768px) {
  .p-service__contents {
    margin-top: 5.4rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 0 min(2.9282576867vw, 4rem);
  }
}

@media screen and (max-width: 767px) {
  [data-section=transportation] .p-service__contents {
    margin-top: 4rem;
  }
}

.p-service__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    margin-top: -0.3rem;
    max-width: 70rem;
  }
}

.p-service__term {
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-service__term {
    line-height: 1.8181818182;
  }
}

.p-service__text {
  margin-top: 2.1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    margin-top: 2.4rem;
    line-height: 2.3125;
  }
}

.p-service__items {
  margin-top: 2.9rem;
  display: grid;
  row-gap: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    max-width: 68.2rem;
    margin-top: 3.2rem;
    row-gap: 3.2rem;
  }
}

[data-section=environmental] .p-service__items {
  row-gap: 4.9rem;
}

.p-service__subtitle {
  background-color: #187F9F;
  padding: 0.5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-service__subtitle {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 22.6rem;
  }
}

[data-section=environmental] .p-service__subtitle {
  background-color: #54A76A;
}
@media screen and (min-width: 768px) {
  [data-section=environmental] .p-service__subtitle {
    min-width: 25.3rem;
  }
}

[data-section=recycling] .p-service__subtitle {
  background-color: #297137;
}

.p-service__subtext {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-service__subtext {
    margin-top: 1.4rem;
    line-height: 2;
  }
}

.p-service__subImgs {
  margin-top: 2.7rem;
  width: 100%;
  max-width: 66.6666666667vw;
  display: grid;
  row-gap: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__subImgs {
    margin-top: 2.2rem;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    width: 105%;
    max-width: 70rem;
  }
}

.p-service__subImgs img {
  border-radius: 1rem;
  aspect-ratio: 250/177;
}

.p-service__flowBlock {
  margin-top: 3rem;
  width: 100%;
  max-width: 66.6666666667vw;
  display: grid;
  row-gap: 5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__flowBlock {
    margin-top: 2.4rem;
    row-gap: 2.8rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    width: 105%;
    max-width: 70rem;
  }
}

.p-service__flowImgs {
  display: grid;
  row-gap: 1.95rem;
}
@media screen and (min-width: 768px) {
  .p-service__flowImgs {
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-service__flowImg {
  position: relative;
}

.p-service__flowImg::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.3rem;
  height: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowImg::before {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.7rem;
    background: url(../images/icon/arrow_bottom.svg) center/cover no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .p-service__flowImg::before {
    top: 50%;
    transform: translateY(-50%);
    right: -1.9rem;
    background: url(../images/icon/arrow_right.svg) center/cover no-repeat;
  }
}

.p-service__flowImgs img {
  border-radius: 1rem;
  aspect-ratio: 250/184;
}

.p-service__notes {
  margin-top: 4.8rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-service__notes {
    margin-top: 4.3rem;
    line-height: 2.3125;
  }
}

[data-section=recycling] .p-service__notes {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  [data-section=recycling] .p-service__notes {
    margin-top: 2.9rem;
  }
}

.p-service__list {
  margin-top: 2.7rem;
  border: 1px solid #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  padding: 1.5rem 1.8rem 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    max-width: 66.5rem;
    margin-top: 5.4rem;
    padding: 2.7rem 3rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  [data-section=environmental] .p-service__list {
    margin-top: 2.2rem;
  }
}

@media screen and (min-width: 768px) {
  [data-section=recycling] .p-service__list {
    margin-top: 3.3rem;
  }
}

.p-service__list li {
  display: flex;
  align-items: flex-start;
}

.p-service__list li::before {
  content: "・";
}

.p-service__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service__img {
    max-width: 31.4rem;
    margin-left: auto;
  }
}

.p-service__img img {
  border-radius: 1rem;
  aspect-ratio: 335/269;
}
@media screen and (min-width: 768px) {
  .p-service__img img {
    aspect-ratio: 314/498;
  }
}

.p-service__sectionBottom {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-service__sectionBottom {
    margin-top: 9.9rem;
  }
}

.p-service__bottom {
  margin-top: 7rem;
}
@media screen and (min-width: 768px) {
  .p-service__bottom {
    margin-top: 10rem;
  }
}

.p-service__otherBusiness {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #000;
}

.p-service__bottomList {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-service__bottomList {
    margin-top: 2.6rem;
    line-height: 1.875;
  }
}

.p-service__bottomList li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}

.p-service__bottomList li::before {
  content: "・";
}

.p-service__machine {
  padding-top: 11.7rem;
}
@media screen and (min-width: 768px) {
  .p-service__machine {
    padding-top: 23.6rem;
  }
}

.p-service__machineContents {
  margin-top: 3.4rem;
}
@media screen and (min-width: 768px) {
  .p-service__machineContents {
    margin-top: 6rem;
  }
}

.p-subheading__entitle {
  font-size: 4rem;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: #1E8ACE;
}
@media screen and (min-width: 768px) {
  .p-subheading__entitle {
    font-size: 5rem;
  }
}

.p-subheading__title {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  color: #797979;
}
@media screen and (min-width: 768px) {
  .p-subheading__title {
    margin-top: 0.3rem;
  }
}

[data-color=white] .p-subheading__entitle,
[data-color=white] .p-subheading__title {
  color: #FFF;
}

.p-template {
  display: grid;
  row-gap: 4.2rem;
}
@media screen and (min-width: 768px) {
  .p-template {
    display: flex;
    -moz-column-gap: min(8.5651537335vw, 11.7rem);
         column-gap: min(8.5651537335vw, 11.7rem);
  }
}

.p-template__link {
  width: 100%;
  max-width: 46rem;
  display: block;
  border: 2px solid #FFF;
  font-weight: 600;
  border-radius: 2rem;
  padding: 3.1rem 2rem;
  font-size: 1.6rem;
  position: relative;
  transition: background-color 0.3s ease-out, border 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-template__link {
    padding: 5.65rem 3.3rem;
    font-size: 2.2rem;
    max-width: 56rem;
  }
}

.p-template__link::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.7rem;
  background-image: url(../images/icon/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.7rem;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-template__link::after {
    width: 2.9rem;
    height: 2.7rem;
    right: 3.9rem;
    background-image: url(../images/icon/arrow_white_big.svg);
  }
}

@media screen and (min-width: 768px) {
  .p-template__link:hover {
    background-color: #1E8ACE;
    border-color: #1E8ACE;
  }
}

@media screen and (min-width: 768px) {
  .p-template__link:hover::after {
    transform: translate(0.5rem, -50%);
  }
}

.p-template__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-template__text {
    font-size: 2.2rem;
  }
}

.p-template__tel {
  margin-top: 1.2rem;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 4.3rem;
  font-family: "Archivo Narrow", sans-serif;
  line-height: 0.9;
  border-bottom: 2px solid #FFF;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-template__tel {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-template__tel:hover {
    color: #1E8ACE;
    border-color: #1E8ACE;
  }
}

.p-template__wrap {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-template__wrap {
    margin-top: 2.3rem;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
  }
}

.p-template__fax {
  font-size: 2.5rem;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 600;
}

.p-topCompany {
  position: relative;
}

.p-topCompany::before {
  content: "";
  display: block;
  width: 120.5333333333vw;
  height: 28.5333333333vw;
  background-image: url(../images/front/bg-company_sp.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -14.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-topCompany::before {
    background-image: url(../images/front/bg-company.webp);
    width: 126.6471449488vw;
    height: 20.4978038067vw;
    top: -10.2489019034vw;
  }
}

.p-topCompany__contents {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 4.7rem;
}
@media screen and (min-width: 768px) {
  .p-topCompany__contents {
    margin: 0;
    display: flex;
  }
}

.p-topCompany__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-topCompany__body {
    max-width: 48.4rem;
  }
}

.p-topCompany__links {
  margin-top: 4.7rem;
  width: 100%;
  background-image: linear-gradient(to right, #DEDEDE, #DEDEDE 2px, transparent 2px, transparent 4px);
  background-size: 4px 2px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .p-topCompany__links {
    margin-top: 7.5rem;
  }
}

.p-topCompany__link {
  display: block;
  padding: 2.15rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  background-image: linear-gradient(to right, #DEDEDE, #DEDEDE 2px, transparent 2px, transparent 4px);
  background-size: 4px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topCompany__link {
    padding: 2.65rem 0;
    transition: color 0.3s ease-out;
  }
}

.p-topCompany__link::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.05rem;
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.7rem;
  transition: background-image 0.3s ease-out, transform 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-topCompany__link:hover {
    color: #1E8ACE;
  }
}

@media screen and (min-width: 768px) {
  .p-topCompany__link:hover::after {
    background-image: url(../images/icon/arrow_blue.svg);
    transform: translate(0.5rem, -50%);
  }
}

.p-topCompany__img {
  width: 100%;
  max-width: 74.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topCompany__img {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    margin-left: auto;
    margin-top: 1.2rem;
    max-width: 44.3rem;
  }
}

.p-topCompany__img img {
  border-radius: 2rem;
  aspect-ratio: 280/427;
}

.p-topRecruit {
  background-color: #5494D5;
  border-radius: 4rem 4rem 0 0;
}

.p-topRecruit__heading {
  margin-top: 6.9rem;
  display: grid;
  row-gap: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__heading {
    margin-top: -7.85rem;
    display: flex;
    align-items: flex-start;
  }
}

.p-topRecruit__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__body {
    max-width: 43.1rem;
    margin-top: 17.5rem;
  }
}

.p-topRecruit__text {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__text {
    margin-top: 2.4rem;
    line-height: 2.3125;
  }
}

.p-topRecruit__link {
  margin-top: 5.3rem;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__link {
    margin-top: 6.3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topRecruit__link a {
    margin-left: auto;
  }
}

.p-topRecruit__imgs {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__imgs {
    margin-left: auto;
    max-width: 57.5rem;
  }
}

.p-topRecruit__img img {
  border-radius: 2rem;
}

[data-img=num_01].p-topRecruit__img {
  width: 100%;
  max-width: 63.0666666667vw;
}
@media screen and (min-width: 768px) {
  [data-img=num_01].p-topRecruit__img {
    max-width: 38.6rem;
    margin-left: 2.8rem;
  }
}

[data-img=num_01].p-topRecruit__img img {
  aspect-ratio: 236.5/272;
}

[data-img=num_02].p-topRecruit__img {
  width: 100%;
  max-width: 42.4vw;
  margin: -16.5333333333vw 0 0 auto;
}
@media screen and (min-width: 768px) {
  [data-img=num_02].p-topRecruit__img {
    max-width: 26rem;
    margin-top: -10.2rem;
  }
}

[data-img=num_02].p-topRecruit__img img {
  aspect-ratio: 159/116;
}

.p-topRecruit__character {
  margin-top: -1.5rem;
  width: 100%;
  max-width: 33.5rem;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__character {
    margin-top: -11.6rem;
    max-width: 35.8rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-topRecruit__speechBubble {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 150/148;
  background-image: url(../images/common/speech_bubble_03_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__speechBubble {
    background-image: url(../images/common/speech_bubble_03.svg);
    max-width: 17.3rem;
    aspect-ratio: 173/166;
  }
}

.p-topRecruit__speechBubble p {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__speechBubble p {
    padding-top: 3.5rem;
  }
}

.p-topRecruit__image {
  margin-top: 4.2rem;
  width: 100%;
  max-width: 17.8rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__image {
    margin: 9.3rem -2.9rem 0 0;
    max-width: 21.4rem;
  }
}

.p-topRecruit__image img {
  aspect-ratio: 178/142;
}

.p-topRecruit__contents {
  margin-top: 10.4rem;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__contents {
    margin-top: 5.4rem;
  }
}

.p-topRecruit__items {
  margin-top: 3.45rem;
  display: grid;
  row-gap: 5rem;
}
@media screen and (min-width: 768px) {
  .p-topRecruit__items {
    margin-top: 4.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.7rem 2.8rem;
  }
}

.p-topService {
  margin-top: -4rem;
  background-color: #D9ECEF;
  border-radius: 4rem 4rem 0 0;
}

.p-topService__contents {
  margin-top: 6.8rem;
  display: grid;
  row-gap: 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-topService__contents {
    margin-top: 9.6rem;
    display: flex;
  }
}

.p-topService__body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-topService__body {
    max-width: 63.5rem;
  }
}

.p-topService__text {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-topService__text {
    margin-top: 2.4rem;
  }
}

.p-topService__img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topService__img {
    margin-left: auto;
    -webkit-margin-end: 4.6rem;
            margin-inline-end: 4.6rem;
    width: 100%;
    max-width: 25rem;
  }
}

.p-topService__speechBubble {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/speech_bubble_02_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-topService__speechBubble {
    background-image: url(../images/common/speech_bubble_02.svg);
    max-width: 16.6rem;
    aspect-ratio: 166/180;
    margin: -4.6rem 0 0 0;
  }
}

.p-topService__speechBubble p {
  padding-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-topService__speechBubble p {
    padding-top: 3.5rem;
  }
}

.p-topService__image {
  margin: -10.2rem 0 0 12.1rem;
  width: 100%;
  max-width: 21.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-topService__image {
    margin: -1.4rem 0 0 auto;
  }
}

.p-topService__image img {
  aspect-ratio: 214/151.5;
}

.p-topService__items {
  margin-top: 7rem;
  display: grid;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-topService__items {
    margin-top: 5.3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.p-topService__item {
  border-radius: 1rem;
  height: 11rem;
  color: #FFF;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topService__item {
    width: 100%;
    max-width: 38rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-topService__item {
    position: relative;
    height: 27rem;
    flex-direction: column;
    padding: 2rem 0 3rem;
    transition: opacity 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-topService__item:hover {
    opacity: 0.85;
  }
}

@media screen and (min-width: 768px) {
  .p-topService__item::before {
    content: attr(data-item);
    font-size: 4.2rem;
    font-family: "Archivo Narrow", sans-serif;
    position: absolute;
    top: 0.6rem;
    left: 2.8rem;
  }
}

[data-item="1"].p-topService__item {
  background-color: #3275C3;
}

[data-item="2"].p-topService__item {
  background-color: #33ABD0;
}

[data-item="3"].p-topService__item {
  background-color: #7AC68E;
}

[data-item="4"].p-topService__item {
  background-color: #489356;
}

.p-topService__itemImg {
  width: 100%;
}

@media screen and (max-width: 767px) {
  [data-item="1"] .p-topService__itemImg {
    max-width: 8.5rem;
    margin-left: 2.1rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="1"] .p-topService__itemImg {
    max-width: 11.4rem;
    margin-top: 4.15rem;
  }
}

[data-item="1"] .p-topService__itemImg img {
  aspect-ratio: 85/45;
}

@media screen and (max-width: 767px) {
  [data-item="2"] .p-topService__itemImg {
    max-width: 5.8rem;
    margin-left: 3.4rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="2"] .p-topService__itemImg {
    max-width: 7rem;
    margin-top: 1.5rem;
  }
}

[data-item="2"] .p-topService__itemImg img {
  aspect-ratio: 58/79;
}

@media screen and (max-width: 767px) {
  [data-item="3"] .p-topService__itemImg {
    max-width: 6.1rem;
    margin-left: 3.3rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="3"] .p-topService__itemImg {
    max-width: 7.7rem;
    margin-top: 3.2rem;
  }
}

[data-item="3"] .p-topService__itemImg img {
  aspect-ratio: 61/60.5;
}

@media screen and (max-width: 767px) {
  [data-item="4"] .p-topService__itemImg {
    max-width: 6.7rem;
    margin-left: 3rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="4"] .p-topService__itemImg {
    max-width: 7.6rem;
    margin-top: 3.7rem;
  }
}

[data-item="4"] .p-topService__itemImg img {
  aspect-ratio: 67/66;
}

@media screen and (max-width: 767px) {
  .p-topService__wrap {
    margin-left: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-topService__wrap {
    margin-top: 2.1rem;
  }
}

.p-topService__term {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  line-height: 1;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-topService__term {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-topService__term::before {
    font-family: "Archivo Narrow", sans-serif;
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  [data-item="1"] .p-topService__term::before {
    content: "1.";
  }
}

@media screen and (max-width: 767px) {
  [data-item="2"] .p-topService__term {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="2"] .p-topService__term {
    margin-top: 2.9rem;
  }
}

@media screen and (max-width: 767px) {
  [data-item="2"] .p-topService__term::before {
    content: "2.";
  }
}

@media screen and (max-width: 767px) {
  [data-item="3"] .p-topService__term {
    margin-left: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="3"] .p-topService__term {
    margin-top: 3.1rem;
  }
}

@media screen and (max-width: 767px) {
  [data-item="3"] .p-topService__term::before {
    content: "3.";
  }
}

@media screen and (max-width: 767px) {
  [data-item="4"] .p-topService__term {
    margin-left: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  [data-item="4"] .p-topService__term {
    margin-top: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  [data-item="4"] .p-topService__term::before {
    content: "4.";
  }
}

.p-topService__notes {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-topService__notes {
    margin-top: 0.7rem;
    font-size: 1.6rem;
  }
}

.p-topService__itemLink {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-topService__itemLink {
    display: block;
    font-family: "Archivo Narrow", sans-serif;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
    text-transform: uppercase;
    font-size: 1.4rem;
    border-bottom: 2px solid #FFF;
    margin-top: auto;
  }
}

.p-topService__link {
  margin-top: 3.4rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  width: 100%;
  max-width: 27rem;
  margin-inline: auto;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #000;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topService__link {
    margin-top: 15.1rem;
    max-width: 39.5rem;
    font-size: 1.8rem;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
    padding-bottom: 0.65rem;
    transition: color 0.3s ease-out, border 0.3s ease-out;
  }
}

.p-topService__link::before {
  content: "machine";
  text-transform: uppercase;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-topService__link::before {
    font-size: 5rem;
  }
}

.p-topService__link::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.2rem;
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 1.5rem;
  right: -1px;
  transition: background-image 0.3s ease-out, transform 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-topService__link::after {
    width: 3.3rem;
    height: 3.1rem;
    top: 2.5rem;
    right: 0.5rem;
  }
}

.p-topService__link:hover {
  color: #1E8ACE;
  border-color: #1E8ACE;
}

@media screen and (min-width: 768px) {
  .p-topService__link:hover::after {
    background-image: url(../images/icon/arrow_blue.svg);
    transform: translateX(0.5rem);
  }
}

.p-wrapper {
  overflow: hidden;
  margin-top: -4rem;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-fadeIn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}

.u-fadeIn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-subFv__wrapper.u-fadeIn.active {
  transition-delay: 1s;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-nowrap {
  white-space: nowrap;
}
/*# sourceMappingURL=styles.css.map */
