@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #0d1511;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

/* Make images easier to work with */
img,
picture {
  width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  max-width: 500px;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1440px;
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}

.l-main {
  overflow: hidden;
}

.l-main__under {
  margin-top: 3.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-main__under {
    margin-top: 5rem;
  }
}

.c-button {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.007em;
  padding-right: 4.375rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding-right: 7.5rem;
    font-size: 2rem;
  }
}

.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.875rem;
  height: 1.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: solid 1px #0d1511;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-button::before {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.625rem;
  height: 0.25rem;
  background: url(../images/arrow.svg) no-repeat center right/cover;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media screen and (min-width: 768px) {
  .c-button::after {
    right: 3.3125rem;
    width: 3.75rem;
    height: 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button:hover::after {
    right: 1.5625rem;
  }
}

.c-button02 {
  display: inline-block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(100deg, #62d472, 30%, #27957a, 90%, #27957a);
  color: #fff;
  border: none;
  padding: 1.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-button02 {
    width: auto;
    min-width: 17.3125rem;
  }
}

.c-card {
  position: relative;
}

.c-card__img {
  width: 13.75rem;
  height: 13.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card__img {
    width: 23.75rem;
    height: 23.75rem;
  }
}

.c-card__img01,
.c-card__img02,
.c-card__img03,
.c-card__img04 {
  -webkit-transform: rotate(-28deg) scale(1.45);
          transform: rotate(-28deg) scale(1.45);
  aspect-ratio: 220/220;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 75% 50%;
     object-position: 75% 50%;
}
@media screen and (min-width: 768px) {
  .c-card__img01,
  .c-card__img02,
  .c-card__img03,
  .c-card__img04 {
    aspect-ratio: 380/380;
  }
}

.c-card__img02 {
  -webkit-transform: rotate(-28deg) scale(2);
          transform: rotate(-28deg) scale(2);
  -o-object-position: -25% 50%;
     object-position: -25% 50%;
}

.c-card__img03 {
  -webkit-transform: rotate(-28deg) scale(1.8);
          transform: rotate(-28deg) scale(1.8);
  -o-object-position: 20% 25px;
     object-position: 20% 25px;
}

.c-card__img04 {
  -webkit-transform: rotate(-28deg) scale(1.45);
          transform: rotate(-28deg) scale(1.45);
  -o-object-position: 76% 50%;
     object-position: 76% 50%;
}
@media screen and (min-width: 768px) {
  .c-card__img04 {
    -o-object-position: 112% 50%;
       object-position: 112% 50%;
  }
}

.c-card__title {
  position: absolute;
  top: 9.375rem;
  left: 1rem;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  padding: 0.375rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  background: #fff;
  color: #0d1511;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    top: 17.5rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.c-card02 {
  background: #fff;
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card02 {
    padding: 1.5rem;
  }
}

.c-card02__title {
  color: #62d472;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-card02__title {
    font-size: 1.25rem;
  }
}

.c-card02__img {
  aspect-ratio: 1/1;
  width: 4rem;
  padding-top: 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-card02__img {
    width: 6.875rem;
  }
}
.c-card02__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

.c-card02__text {
  font-size: 0.875rem;
  padding-top: 1rem;
  text-align: justify;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .c-card02__text {
    font-size: 1rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.c-card02__text span {
  color: #777777;
  font-size: 0.8125rem;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-card02__text span {
    font-size: 0.875rem;
  }
}

.c-heading {
  display: inline;
  padding: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  background-color: #62d472;
  background: -webkit-gradient(linear, left top, right top, from(#62d472), to(#27957a));
  background: linear-gradient(90deg, #62d472, #27957a);
  color: #fff;
  line-height: 2;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .c-heading {
    padding: 0.5rem 1rem;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.c-member__img-wrap {
  position: relative;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .c-member__img-wrap {
    width: calc(100% - 12.5rem);
    height: 26.25rem;
    margin: 0 auto;
    max-width: none;
  }
}

.c-member__img {
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .c-member__img {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.c-member__img img {
  -o-object-position: left top;
     object-position: left top;
}

.c-member__label-wrap {
  position: absolute;
  bottom: 13%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-member__label-wrap {
    bottom: 1.875rem;
    left: -6.25rem;
  }
}

.c-member__label {
  display: inline;
  line-height: 2.4;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: #0d1511;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-member__label {
    font-size: 1.75rem;
    padding: 0.75rem 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-member__profile-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .c-member__profile-wrap::before {
    content: "";
    position: absolute;
    top: -1.875rem;
    right: -5.625rem;
    width: 25rem;
    height: 36.25rem;
    background: rgba(255, 255, 255, .6);
    -webkit-transform: rotate(28deg);
            transform: rotate(28deg);
  }
}

.c-member__profile {
  position: absolute;
  top: 90%;
  right: 0;
  width: 16.25rem;
  text-align: right;
  background: #fff;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-member__profile {
    padding: 0;
    top: auto;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 16.25rem;
    background: none;
  }
}

.c-member__title {
  font-size: 0.875rem;
  font-weight: 700;
}

.c-member__name {
  font-weight: 700;
  font-size: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-member__name {
    font-size: 2.5rem;
  }
}

.c-member__career {
  text-align: justify;
  font-size: 0.875rem;
}

.c-member__reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 16.875rem;
}
@media screen and (min-width: 768px) {
  .c-member__reason {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: calc(100% - 12.5rem);
    margin: 0 auto;
    padding-top: 2.5rem;
  }
}

.c-member__reason .c-section-title--02 {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-member__reason .c-section-title--02 {
    font-size: 1.5rem;
  }
}

.c-member__reason .c-section-title--02::after {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-member__reason .c-section-title--02::after {
    width: 2.625rem;
    height: 0.1875rem;
    margin-top: 0.375rem;
  }
}

.c-member__reason-title {
  width: 11.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-member__reason-text {
  text-align: justify;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.13em;
  line-height: 2.1764705882;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-member__reason-text {
    padding-top: 0;
    font-size: 1rem;
  }
}

.c-section-title {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.007em;
  font-size: 4rem;
  color: #62d472;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 8.125rem;
  }
}

.c-section-title--gradation {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.007em;
  font-size: 4rem;
  color: #62d472;
  background: -webkit-gradient(linear, left top, right top, from(#62d472), to(#27957a));
  background: linear-gradient(90deg, #62d472, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title--gradation {
    font-size: 9.125rem;
  }
}

.c-section-title--02 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-section-title--02 {
    font-size: 2.5rem;
  }
}

.c-section-title--02::after {
  content: "";
  display: block;
  margin-top: 0.1875rem;
  width: 3.75rem;
  height: 0.25rem;
  background: linear-gradient(70deg, #62d472, #27957a);
}
@media screen and (min-width: 768px) {
  .c-section-title--02::after {
    margin-top: 0.625rem;
    width: 6.25rem;
    height: 0.625rem;
  }
}

.c-section-title--03 {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.007em;
  font-size: 2.25rem;
  color: #0d1511;
  background: -webkit-gradient(linear, left top, right top, from(#62d472), to(#27957a));
  background: linear-gradient(90deg, #62d472, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title--03 {
    font-size: 4.1875rem;
  }
}

.c-section-title--03::after {
  display: block;
  content: attr(data-jp);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  color: #0d1511;
  font-weight: 500;
  background: #0d1511;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title--03::after {
    display: inline;
    font-size: 1.5rem;
    padding-left: 1rem;
  }
}

.c-text {
  font-size: 0.875rem;
  letter-spacing: 0.13em;
  line-height: 1.9285714286;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.0625rem;
    line-height: 2.1764705882;
  }
}

.p-about {
  padding-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 3.875rem;
    padding-bottom: 6.5625rem;
  }
}

.p-about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1.25rem;
  }
}

.p-about__img {
  position: relative;
  width: 13.75rem;
  height: 26.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    width: 30rem;
    height: 50rem;
    margin-top: auto;
    margin-bottom: -6.875rem;
  }
}

.p-about__img::before {
  content: "";
  position: absolute;
  height: 21.875rem;
  z-index: -1;
  bottom: 0rem;
  right: -8.75rem;
  background: #f7f7f7;
  aspect-ratio: 1052/764;
  -webkit-clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
          clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .p-about__img::before {
    width: 65.75rem;
    height: auto;
    bottom: -6.25rem;
    right: -9.375rem;
  }
}

.p-about__img img {
  aspect-ratio: 442/914;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__body .c-section-title--gradation {
  background: -webkit-gradient(linear, left top, right top, from(#27957a), to(#62d472));
  background: linear-gradient(90deg, #27957a, #62d472);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.p-about__body .p-section__heading {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__body .p-section__heading {
    padding-top: 2.5rem;
  }
}
.p-about__body .p-section__heading .c-heading {
  background: #62d472;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about__body .p-section__heading .c-heading {
    padding: 1rem;
    font-size: 1.875rem;
    line-height: 2.4;
  }
}
.p-access {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.p-access__title .c-section-title--03 {
  background: linear-gradient(70deg, #62d472, 20%, #27957a, 40%, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-access__title .c-section-title--03::after {
  background-color: #0d1511;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-access__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  color: #0d1511;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-access__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 2.5rem;
    padding-top: 5rem;
  }
}

.p-access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.p-access__block {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-access__block {
    padding-top: 1.5rem;
  }
}

.p-access__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #62d472;
}
@media screen and (min-width: 768px) {
  .p-access__title {
    font-size: 1.5rem;
  }
}

.p-access__des {
  font-size: 1rem;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-access__des {
    font-size: 1.0625rem;
    padding-top: 1.5rem;
  }
}

.p-access__text {
  font-size: 0.8125rem;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-access__text {
    font-size: 0.875rem;
  }
}

.p-cards {
  display: grid;
  grid-template-columns: repeat(2, 13.75rem);
  gap: 0.625rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
}
@media screen and (min-width: 768px) {
  .p-cards {
    grid-template-columns: repeat(2, 23.75rem);
    gap: 1.25rem;
  }
}

.p-cards__wrapper .c-card:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-cards__wrapper .c-card:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-cards__wrapper:nth-child(2) {
  margin-top: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-cards__wrapper:nth-child(2) {
    margin-top: 3.75rem;
  }
}

.p-company-info {
  background: linear-gradient(135deg, #62d472 0%, #27957a 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-company-info {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.p-company-info__title .c-section-title--03,
.p-company-info__title .c-section-title--03::after {
  color: #fff;
  -webkit-text-fill-color: unset;
  background: transparent;
}

.p-company-info__list {
  background: #fff;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-info__list {
    padding: 5rem 6.5rem;
    margin-top: 5rem;
  }
}

.p-company-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-info__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 2.5rem;
  }
}

.p-company-info__item:not(:first-child) {
  padding-top: 1.5rem;
  border-top: solid 1px #cbcbcb;
}
@media screen and (min-width: 768px) {
  .p-company-info__item:not(:first-child) {
    padding-top: 2.5rem;
  }
}

.p-company-info__item:last-child {
  padding-bottom: 0;
}

.p-company-info__label {
  color: #62d472;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-company-info__label {
    width: 10.75rem;
    font-size: 1.25rem;
  }
}

.p-company-info__text {
  font-size: 1rem;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-info__text {
    font-size: 1.25rem;
    padding-top: 0;
  }
}

.p-company {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company {
    height: 48.75rem;
  }
}

.p-company::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -75rem;
  left: 50%;
  width: 50%;
  height: 156.25rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background: #f7f7f7;
}

.p-company::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -75rem;
  left: -50%;
  width: 50%;
  height: 156.25rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background: #f7f7f7;
}

.p-company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-company__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 7.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-company__wrapper {
    max-width: 1440px;
    padding-right: 7.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-company__box {
  position: relative;
}
@media screen and (min-width: 1440px) {
  .p-company__box {
    position: absolute;
    top: 0;
    left: 56%;
  }
}

.p-company__img {
  position: absolute;
  top: 0rem;
  left: 6.25rem;
  width: 33.4375rem;
  height: 29.1875rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  overflow: hidden;
  margin-right: -31.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__img {
    width: 69.375rem;
    height: 60.625rem;
    top: 9.375rem;
    right: -41rem;
    left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .p-company__img {
    top: 9.375rem;
    left: auto;
    right: -40rem;
  }
}

.p-company__img img {
  position: absolute;
  top: -19%;
  left: -70%;
  width: 61.25rem;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-company__img img {
    top: -6%;
    left: -46%;
    width: 85.5rem;
    height: 58.5625rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-company__img img {
    top: -6%;
    left: -54%;
    width: 100rem;
  }
}
@media screen and (min-width: 1930px) {
  .p-company__img img {
    top: -11%;
    left: -46%;
  }
}

.p-company__body {
  background: #f7f7f7;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-top: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-company__body {
    padding-top: 5rem;
    background: none;
    padding-bottom: 0;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-company__body .p-section__text {
    width: 42.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company__body .l-inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.p-contact {
  position: relative;
  padding: 1.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  padding: 3.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 10.875rem 7.5rem;
  }
}

.p-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/contact.jpg) no-repeat center 40%/170%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-contact::before {
    background: url(../images/contact.jpg) no-repeat center 40%/cover;
  }
}

.p-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(70deg, #62d472, #27957a);
  opacity: 0.9;
  z-index: -1;
}

.p-contact__body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.75rem;
    text-align: left;
  }
}

.p-contact__title .c-section-title {
  color: #fff;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title .c-section-title {
    font-size: 5.625rem;
  }
}

.p-contact__text {
  color: #fff;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1.25rem;
    line-height: 1.85;
    letter-spacing: 0.13em;
  }
}

.p-contact__button {
  display: inline-block;
  background: #fff;
  text-align: center;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  border: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__button {
    width: auto;
    margin-top: 0;
    min-width: 27.5rem;
    padding: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__button:hover {
    background: #62d472;
    color: #fff;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__button:hover span::before {
    background: url(../images/mail02.svg) no-repeat center center/cover;
  }
}

.p-contact__button span {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 700;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__button span {
    min-width: 27.5rem;
    font-size: 1.5rem;
    padding-left: 3.75rem;
  }
}

.p-contact__button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/mail.svg) no-repeat center center/cover;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media screen and (min-width: 768px) {
  .p-contact__button span::before {
    width: 2.25rem;
    height: 1.5rem;
  }
}

.p-contact02 {
  background: #f7f7f7;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact02 {
    padding: 6.25rem 0 9.375rem 0;
  }
}

.p-contact02__title {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact02__title {
    padding-bottom: 6.25rem;
  }
}

.p-contact02__title.--center {
  text-align: center;
}

.p-contact02__title .c-section-title--03 {
  background: linear-gradient(70deg, #62d472, 20%, #27957a, 40%, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact02__title .c-section-title--03 {
    font-size: 7.5rem;
  }
}

.p-contact02__title .c-section-title--03::after {
  -webkit-text-fill-color: #0d1511;
  letter-spacing: 0.17em;
}

.p-contact02__body {
  background: #fff;
  max-width: 452px;
  padding: 2.5rem 2rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-contact02__body {
    padding: 5rem 7.75rem;
    max-width: none;
  }
}

.p-contact02__message {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact02__message {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
}

.p-contact02__text {
  padding-top: 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.13em;
  line-height: 1.5416666667;
}
@media screen and (min-width: 768px) {
  .p-contact02__text {
    font-size: 1.5rem;
    padding-top: 5rem;
  }
}

.p-contact02__text.--center {
  text-align: center;
}

.p-contact02__button {
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact02__button {
    padding-top: 6.5rem;
    text-align: center;
  }
}

.p-culture {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-culture {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-culture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
}

.p-culture__wrapper {
  z-index: 3;
  position: relative;
}

.p-culture__text {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-culture__text {
    padding-top: 2.5rem;
  }
}

.p-culture__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 2.5rem;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-culture__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.875rem;
    padding-top: 5rem;
  }
}

.p-culture__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-culture__img {
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-culture__img {
    margin-right: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-culture__img img {
    width: 23.125rem;
    height: 13.8125rem;
  }
}

.p-culture__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #fff;
  margin-top: -3.125rem;
  margin-left: 3.75rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-culture__body {
    padding: 1.5rem;
    margin-left: 4.25rem;
    margin-top: -3.625rem;
  }
}

.p-culture__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7333333333;
  color: #62d472;
}
@media screen and (min-width: 768px) {
  .p-culture__card-title {
    font-size: 1.125rem;
    line-height: 1.7222222222;
  }
}

.p-culture__card-text {
  font-size: 0.875rem;
  padding-top: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: auto;
}

.p-footer {
  background: #012105;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.5rem;
  }
}

.p-footer__logo {
  width: 10rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 14rem;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
  }
}

.p-footer__item ul li {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__item ul li {
    padding-top: 1.5rem;
  }
}

.p-footer__item ul li a {
  position: relative;
  padding-left: 1.0625rem;
}

.p-footer__item ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background: #62d472;
}

.p-footer__section {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    padding-top: 0;
  }
}

.p-footer__terms {
  font-size: 0.75rem;
}

.p-footer__pagetop {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: #27957a;
  cursor: pointer;
}

.p-footer__pagetop::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.6875rem;
  height: 1.029375rem;
  background: url(../images/pagetop.svg) no-repeat center center/cover;
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.5rem;
    padding-bottom: 2rem;
  }
}

.p-form__item:not(:first-child) {
  border-top: solid 1px #d5d5d5;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__item:not(:first-child) {
    padding-top: 2rem;
  }
}

.p-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #27957a;
}

.p-form__radio label {
  font-size: 16px;
  font-weight: 700;
  padding-left: 2rem;
}

.p-form__radio:not(:first-child) {
  padding-top: 1.5rem;
}

.p-form__item input[type=text],
.p-form__item input[type=email],
.p-form__item input[type=tel],
.p-form__item textarea {
  background: #efefef;
  border: solid 1px #efefef;
  padding: 0.875rem 1.5rem;
  font-size: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__item input[type=text],
  .p-form__item input[type=email],
  .p-form__item input[type=tel],
  .p-form__item textarea {
    width: 35.9375rem;
  }
}

.p-form__label {
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-form__label {
    width: 17.0625rem;
  }
}

.required {
  position: relative;
}

.required::after {
  content: "必須";
  background-color: #dd3636;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-left: 1rem;
  padding: 0.125rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .required::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
  }
}

::-webkit-input-placeholder {
  color: #acacac;
}

::-moz-placeholder {
  color: #acacac;
}

::-ms-input-placeholder {
  color: #acacac;
}

::placeholder {
  color: #acacac;
}

.p-form__check {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-form__check {
    width: 35.9375rem;
  }
}

.p-form__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__privacy {
    font-size: 1.125rem;
  }
}

.p-form__privacy input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

.p-form__privacy a {
  color: #27957a;
  text-decoration: underline;
}

.p-form__button {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__button {
    margin-top: 5rem;
  }
}

.p-form__button a {
  display: inline-block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  background: #fff;
  border: solid 1px #0d1511;
  color: #0d1511;
  padding: 1.3125rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__button a {
    width: auto;
    min-width: 17.3125rem;
    margin-bottom: 0;
  }
}

.p-header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 5;
  height: 3.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 7.5rem;
  }
}

.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__wrapper.l-inner {
  margin: 0;
  max-width: none;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper.l-inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.p-header__logo {
  height: calc(100% - 16px);
}
@media screen and (min-width: 1024px) {
  .p-header__logo {
    height: calc(100% - 56px);
  }
}
.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.p-header__logo a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.p-header__body {
  position: absolute;
  top: 0;
  left: 110vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem 1rem;
  background: #62d472;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media screen and (min-width: 768px) {
  .p-header__body {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3125rem;
    padding: 0;
    width: auto;
    background: none;
    height: auto;
  }
}

.p-header__body.open {
  left: 0;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    color: #0d1511;
  }
}

.p-header__item {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header__item {
    font-size: 0.9375rem;
  }
}

.p-header__button {
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header__button {
    padding-top: 0;
  }
}

.p-header__button a {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  text-align: center;
  padding: 0.6875rem;
  min-width: 10.625rem;
  background: #0d1511;
  border-radius: 62.4375rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.p-header__hamburger {
  position: relative;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 5px;
}
.p-header__hamburger.open span {
  background: #fff;
}

.p-header__hamburger span {
  display: inline-block;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: absolute;
  left: 1px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#62d472), to(#27957a));
  background: linear-gradient(90deg, #62d472, #27957a);
  width: 26px;
}

.p-header__hamburger span:nth-of-type(1) {
  top: 5px;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 13px;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 21px;
}

.p-header__hamburger.open span:nth-of-type(1) {
  top: 5px;
  left: 1px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 26px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-header__hamburger.open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.open span:nth-of-type(3) {
  top: 17px;
  left: 1px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 26px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-header02 {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  height: 3.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header02 {
    height: 5rem;
  }
}

.p-header02__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header02__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header02__wrapper.l-inner {
  margin: 0;
  max-width: none;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header02__wrapper.l-inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.p-header02__logo {
  height: calc(100% - 16px);
}
@media screen and (min-width: 1024px) {
  .p-header02__logo {
    height: calc(100% - 32px);
  }
}
.p-header02__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.p-header02__logo a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.p-header02__body {
  position: absolute;
  top: 0;
  left: 110vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem 1rem;
  background: #62d472;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media screen and (min-width: 768px) {
  .p-header02__body {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3125rem;
    padding: 0;
    width: auto;
    background: none;
    height: auto;
  }
}

.p-header02__body.open {
  left: 0;
}

.p-header02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-header02__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    color: #0d1511;
  }
}

.p-header02__item {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header02__item {
    font-size: 0.9375rem;
  }
}

.p-header02__button {
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-header02__button {
    padding-top: 0;
  }
}

.p-header02__button a {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  text-align: center;
  padding: 0.6875rem;
  min-width: 10.625rem;
  background: #0d1511;
  border-radius: 62.4375rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.p-header02__hamburger {
  position: relative;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 5px;
}
.p-header02__hamburger.open span {
  background: #fff;
}

.p-header02__hamburger span {
  display: inline-block;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: absolute;
  left: 1px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#62d472), to(#27957a));
  background: linear-gradient(90deg, #62d472, #27957a);
  width: 26px;
}

.p-header02__hamburger span:nth-of-type(1) {
  top: 5px;
}

.p-header02__hamburger span:nth-of-type(2) {
  top: 13px;
}

.p-header02__hamburger span:nth-of-type(3) {
  top: 21px;
}

.p-header02__hamburger.open span:nth-of-type(1) {
  top: 5px;
  left: 1px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 26px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-header02__hamburger.open span:nth-of-type(2) {
  opacity: 0;
}

.p-header02__hamburger.open span:nth-of-type(3) {
  top: 17px;
  left: 1px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 26px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-interview {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-interview {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 10rem;
  }
}

.p-interview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: #62d472;
  z-index: -1;
}

.p-interview::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translate(-50%, -50%) rotate(28deg);
          transform: translate(-50%, -50%) rotate(28deg);
  width: 48.3125rem;
  height: 200%;
  background: linear-gradient(-125deg, #62d472, #27957a);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-interview::after {
    top: 20%;
  }
}

.p-interview__title .c-section-title--03,
.p-interview__title .c-section-title--03::after {
  color: #fff;
}

.p-interview__list {
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-interview__list {
    padding-top: 5rem;
    gap: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2n) .c-member__label-wrap {
    left: auto;
    right: -6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2n) .c-member__profile-wrap {
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2n) .c-member__profile-wrap::before {
    top: -8.125rem;
    left: -5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__item:nth-child(2n) .c-member__profile {
    top: 1.5rem;
    bottom: auto;
    left: 1.5rem;
  }
}

.p-management {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-management {
    padding-top: 7.25rem;
    padding-bottom: 35rem;
  }
}

.p-management::before {
  content: "Dife";
  position: absolute;
  top: 2.5rem;
  right: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #e3e3e3;
  z-index: -1;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-management::before {
    top: -8.6%;
    left: 0;
    right: auto;
    font-size: 25rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    line-height: 0.7;
  }
}

.p-management::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(28deg);
          transform: translate(-50%, -50%) rotate(28deg);
  width: 200%;
  height: 29.375rem;
  background: #f7f7f7;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-management::after {
    top: 50%;
    left: 50%;
    height: 52.1875rem;
  }
}

.p-management__idea {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-management__idea {
    padding-top: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-management__idea .c-heading {
    padding: 16px;
  }
}

.p-management__idea .c-text {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-management__idea .c-text {
    padding-top: 2.5rem;
    padding-left: 5rem;
  }
}

.p-message {
  position: relative;
  padding-top: 3.875rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-top: 3.875rem;
    padding-bottom: 6.5625rem;
  }
}

.p-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
}

.p-message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-message__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0rem;
  }
}

.p-message__img {
  position: relative;
  width: 12.75rem;
  height: 24.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: -6.75rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-message__img {
    width: 32.5rem;
    height: 50rem;
    margin-top: auto;
    margin-bottom: -6.875rem;
  }
}

.p-message__img::before,
.p-message__img::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 68.75rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
}
@media screen and (min-width: 768px) {
  .p-message__img::before,
  .p-message__img::after {
    width: 54.5rem;
    height: 87.5rem;
  }
}

.p-message__img::before {
  z-index: -1;
  top: -10rem;
  left: -26.875rem;
  background: #27957a;
}
@media screen and (min-width: 768px) {
  .p-message__img::before {
    top: -12.5rem;
    left: -45.625rem;
  }
}

.p-message__img::after {
  z-index: -2;
  top: -11.25rem;
  left: -20.625rem;
  background: linear-gradient(-30deg, #62d472, #27957a);
}
@media screen and (min-width: 768px) {
  .p-message__img::after {
    top: -25rem;
    left: -25rem;
    height: 87.5rem;
  }
}

.p-message__img img {
  aspect-ratio: 442/914;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-message__body .c-heading {
  font-size: 1rem;
  line-height: 2.6;
  font-weight: 500;
  background: #0d1511;
}
@media screen and (min-width: 768px) {
  .p-message__body .c-heading {
    line-height: 1.8;
    font-size: 1.875rem;
  }
}

.p-message__body .p-section__name {
  padding-top: 1.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-message__body .p-section__name {
    padding-top: 3.5rem;
  }
}

.p-mv {
  position: relative;
  margin-top: 3.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv {
    margin-top: 7.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.p-mv .l-mvTitle,
.p-mv .l-mvImageWrap {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.p-mv .l-mvTitle {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvTitle {
    padding-top: 16px;
  }
}
.p-mv .l-mvTitle .b-mvTitle {
  margin-top: 1.25rem;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(70deg, #62d472, #3a9865);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.125rem;
  font-size: 3.75rem;
  line-height: 0.9;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvTitle .b-mvTitle {
    margin-top: 0;
    font-size: 8.25rem;
  }
}
.p-mv .l-mvTitle .b-mvTitle::after {
  content: "";
  width: 100vw;
  height: 0.5rem;
  position: absolute;
  bottom: 0.35rem;
  left: calc(100% - 3.625rem);
  background: linear-gradient(70deg, #46aa6a, 20%, #27957a, 40%, #27957a);
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvTitle .b-mvTitle::after {
    height: 1.1125rem;
  }
}
.p-mv .l-mvTitle .b-mvSubTitle {
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 1rem;
  color: #0d1511;
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvTitle .b-mvSubTitle {
    position: absolute;
    font-size: 1.875rem;
    bottom: 2.5rem;
    right: 2.5rem;
    margin-top: 0;
  }
}
.p-mv .l-mvImageWrap {
  margin-top: 2.5rem;
  width: calc(100% + 1.25rem);
  margin-right: -1.25rem;
  aspect-ratio: 1240/574;
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvImageWrap {
    padding-right: 2.5rem;
    margin-top: 3.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-mv .l-mvImageWrap .mvImage {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-mv .l-mvImageWrap .mvImage {
    border-radius: 20px;
  }
}

.p-mv02 {
  position: relative;
  height: 23.9375rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv02 {
    height: 29.75rem;
  }
}

.p-mv02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23.9375rem;
  background: #f7f7f7;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-mv02::before {
    height: 100%;
  }
}

.p-mv02__wrapper {
  position: relative;
}

.p-mv02__box {
  position: relative;
}

.p-mv02__box::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -6.25rem;
  width: 22.3125rem;
  height: 26rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv02__box::before {
    top: -20rem;
    right: -11.25rem;
    width: 51.3125rem;
    height: 59.8125rem;
  }
}

.p-mv02__img {
  position: absolute;
  top: -5.625rem;
  right: -8.125rem;
  width: 22.3125rem;
  height: 26rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  overflow: hidden;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv02__img {
    top: -21.875rem;
    right: -15.625rem;
    width: 51.3125rem;
    height: 59.8125rem;
  }
}

.p-mv02__img img {
  position: absolute;
  top: 12%;
  left: -54%;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  width: auto;
  height: 27.625rem;
  aspect-ratio: 904/602;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv02__img img {
    top: 28%;
    left: -26%;
    height: 47.625rem;
    aspect-ratio: 904/602;
  }
}

.p-mv02__img .img02 {
  position: absolute;
  top: 28%;
  left: -37%;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  width: 35.25rem;
  height: 24.75rem;
  aspect-ratio: 604/414;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv02__img .img02 {
    top: -17%;
    left: -29%;
    -o-object-position: -25rem 6.25rem;
       object-position: -25rem 6.25rem;
    width: 125rem;
    height: 54.75rem;
    aspect-ratio: 1393/954;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-mv02__img .img03 {
  position: absolute;
  top: 28%;
  left: -37%;
  -webkit-transform: rotate(-28deg);
          transform: rotate(-28deg);
  width: 35.25rem;
  height: 24.75rem;
  aspect-ratio: 604/414;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv02__img .img03 {
    top: -13%;
    left: -31%;
    -o-object-position: -25rem 6.25rem;
       object-position: -25rem 6.25rem;
    width: 100rem;
    height: 54.75rem;
    aspect-ratio: 1393/954;
  }
}

.p-mv02__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1111111111;
  font-weight: 900;
  color: #62d472;
  background: linear-gradient(70deg, #62d472, 20%, #27957a, 40%, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.027em;
  padding-top: 15.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv02__title {
    font-size: 7.5rem;
    line-height: 1.0555555556;
    padding-top: 12.5rem;
  }
}

.p-mv03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
  background: #f7f7f7;
}
@media screen and (min-width: 600px) {
  .p-mv03 {
    height: 16rem;
  }
}

.p-mv03__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1111111111;
  color: #fff;
  letter-spacing: -0.027em;
}
@media screen and (min-width: 768px) {
  .p-mv03__title {
    font-size: 5.625rem;
    line-height: 1.0555555556;
  }
}

.p-mv03--img {
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: url(../images/member.jpg) no-repeat center center/cover;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-mv03--img {
    height: 35.0625rem;
  }
}

.p-mv03--img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: -1;
}

.p-mv03__title--img {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  color: #27957a;
  background: -webkit-gradient(linear, left top, right top, from(#27957a), color-stop(20%), color-stop(#62d472), color-stop(40%), to(#62d472));
  background: linear-gradient(90deg, #27957a, 20%, #62d472, 40%, #62d472);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-mv03__title--img {
    margin-bottom: 1.5rem;
    font-size: 7.5rem;
  }
}

.p-privacy {
  background: #f7f7f7;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding: 6.25rem 0 6.25rem 0;
  }
}

.p-privacy__title {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    padding-bottom: 6.25rem;
  }
}

.p-privacy__title .c-section-title--03 {
  background: linear-gradient(70deg, #62d472, 20%, #27957a, 40%, #27957a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title .c-section-title--03 {
    font-size: 7.5rem;
  }
}

.p-privacy__title .c-section-title--03::after {
  -webkit-text-fill-color: #0d1511;
  letter-spacing: 0.17em;
}

.p-privacy__body {
  background: #fff;
  max-width: 452px;
  padding: 2.5rem 2rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-privacy__body {
    padding: 5rem 7.75rem;
    max-width: none;
  }
}

.p-privacy__des {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__des {
    padding-top: 5rem;
  }
}

.p-privacy__list {
  counter-reset: li;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    padding-top: 4rem;
  }
}

.p-privacy__item:not(:first-child) {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__item:not(:first-child) {
    padding-top: 2.5rem;
  }
}

.p-privacy__heading {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 1.125rem;
  }
}

.p-privacy__heading::before {
  counter-increment: li;
  content: counter(li) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

.p-privacy__text {
  text-align: justify;
  padding-top: 1rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    padding-top: 1.5rem;
  }
}

.p-recruit {
  position: relative;
}

.p-recruit__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-recruit__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-recruit__bg {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: -78%;
  right: -50%;
  margin: 0 auto;
  width: 220%;
  height: 100%;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background: linear-gradient(70deg, #62d472, #27957a);
}
@media screen and (min-width: 768px) {
  .p-recruit__bg {
    top: 10%;
    left: -68%;
    right: -50%;
    width: 200%;
    height: 75%;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit__bg {
    height: 78%;
  }
}

.p-recruit__block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .p-recruit__block {
    height: 28rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__block {
    width: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit__block {
    width: 50%;
  }
}

.p-recruit__img {
  position: absolute;
  top: 52%;
  right: -50%;
  margin: 0 auto;
  width: 110%;
  aspect-ratio: 2025/1350;
  -webkit-transform: translate(-50%, -50%) rotate(-28deg);
          transform: translate(-50%, -50%) rotate(-28deg);
}
@media screen and (min-width: 600px) {
  .p-recruit__img {
    width: 88%;
    top: 55%;
    right: -35%;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__img {
    top: 50%;
    right: -85%;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .p-recruit__img {
    top: 58%;
    right: -85%;
  }
}
@media screen and (min-width: 1930px) {
  .p-recruit__img {
    top: 80%;
    right: -85%;
  }
}
@media screen and (min-width: 1900px) {
  .p-recruit__img {
    top: 75%;
    right: -90%;
  }
}
@media screen and (min-width: 2380px) {
  .p-recruit__img {
    top: 100%;
  }
}

.p-recruit__body {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  min-height: 400px;
}
@media screen and (min-width: 768px) {
  .p-recruit__body {
    max-width: 40rem;
    width: calc(100% - 160px);
    margin: 0 0 0 46%;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__body.l-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-recruit__body .p-section {
  padding: 35.625rem 0 7.5rem;
  max-width: 480px;
}
@media screen and (min-width: 600px) {
  .p-recruit__body .p-section {
    padding: 42.5rem 0 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__body .p-section {
    padding: 25rem 0 120px;
    max-width: 640px;
    margin: 0 0 0 auto;
    white-space: nowrap;
  }
}

.p-recruit__body .p-section__text,
.p-recruit__body .c-section-title,
.p-recruit__body .c-button {
  color: #fff;
}

.p-recruit__body .c-button::before {
  border: solid 1px #fff;
}

.p-recruit__body .c-button::after {
  background: url(../images/arrow02.svg) no-repeat center right/cover;
}

.p-requirements {
  background: #f7f7f7;
  padding-top: 5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-requirements {
    padding-top: 10rem;
    padding-bottom: 7.5rem;
  }
}

.p-requirements__wrapper {
  z-index: 3;
  position: relative;
}

.p-requirements__title {
  text-align: right;
}
.p-requirements__list {
  background: #fff;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__list {
    padding: 5rem 6.5rem;
    margin-top: 5rem;
  }
}

.p-requirements__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 2rem;
  }
}

.p-requirements__item:not(:first-child) {
  padding-top: 1.5rem;
  border-top: solid 1px #cbcbcb;
}
@media screen and (min-width: 768px) {
  .p-requirements__item:not(:first-child) {
    padding-top: 2rem;
  }
}

.p-requirements__item:last-child {
  padding-bottom: 0;
}

.p-requirements__label {
  color: #62d472;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-requirements__label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 10.75rem;
    font-size: 1.25rem;
  }
}

.p-requirements__text {
  font-size: 1rem;
  padding-top: 0.5rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-requirements__text {
    font-size: 1.25rem;
    padding-top: 0;
  }
}

.p-requirements__text h3 {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__text h3 {
    font-size: 1.25rem;
  }
}

.p-requirements__text h3 span {
  font-weight: 400;
}

.p-requirements__text div:not(:first-child) {
  padding-top: 2.5rem;
}

.p-requirements__text > ul > li,
.p-requirements__text > div > ul > li {
  position: relative;
  padding-left: 0.75rem;
}

.p-requirements__text > ul > li:not(:first-child),
.p-requirements__text > div > ul > li:not(:first-child) {
  margin-top: 1rem;
}

.p-requirements__text > ul > li::before,
.p-requirements__text > div > ul > li::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  background: #62d472;
}
@media screen and (min-width: 768px) {
  .p-requirements__text > ul > li::before,
  .p-requirements__text > div > ul > li::before {
    top: 0.75rem;
  }
}

.p-requirements__text > ul > li li {
  padding-top: 0.5rem;
}

.p-requirements__text p {
  margin-top: 1.5rem;
}

.p-requirements__text p span {
  display: inline-block;
  position: relative;
  padding-left: 1.25rem;
  color: #777777;
  font-size: 0.875rem;
}

.p-requirements__text p span:not(:first-child) {
  margin-top: 0.5rem;
}

.p-requirements__text p span::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-requirements__button {
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-requirements__button {
    padding-top: 5rem;
  }
}

.p-requirements__button .c-button02 {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__button .c-button02 {
    min-width: 27.6875rem;
    font-size: 1.75rem;
  }
}

.p-sales {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sales {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-sales__wrapper .c-text {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sales__wrapper .c-text {
    margin-top: 2.5rem;
  }
}

.p-sales-02 {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sales-02 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
.p-sales-02::before {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -1.25rem;
  z-index: -1;
  width: 5rem;
  aspect-ratio: 240/416;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20239.835%20416.148%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22a%22%20x1%3D%22.5%22%20x2%3D%22.5%22%20y2%3D%221%22%20gradientUnits%3D%22objectBoundingBox%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%2362d472%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2327957a%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22url(%23a)%22%20transform%3D%22translate(-1264.369%20-575.621)%22%3E%3Cpath%20d%3D%22m1357.5%20709.912%208.83-4.69%20137.736%20259.32-8.83%204.69zM1264.369%20580.315l8.83-4.69%20218.554%20411.478-8.83%204.69z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 768px) {
  .p-sales-02::before {
    width: 15rem;
    right: -4.375rem;
    top: -1.875rem;
  }
}

.p-sales-02__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-sales-02__wrapper .c-text {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sales-02__wrapper .c-text {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.p-section__heading {
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-section__heading {
    padding-top: 0.5rem;
    margin-bottom: 2.5rem;
  }
}

.p-section__text {
  padding-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-section__text {
    padding-top: 0rem;
    font-size: 1.0625rem;
    line-height: 2.1764705882;
    letter-spacing: 0.13em;
  }
}

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

.p-section__name {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-section__name {
    font-size: 2rem;
  }
}

.p-service {
  position: relative;
  padding-top: 3.5rem;
  background: #f7f7f7;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-service {
    overflow: visible;
  }
}

.p-service::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: -25rem;
  width: 125rem;
  height: 43.75rem;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background: #62d472;
}
@media screen and (min-width: 768px) {
  .p-service::before {
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 46.875rem;
    -webkit-transform: none;
            transform: none;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
}

.p-service__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-service__body .c-section-title {
  color: #fff;
}

.p-service__body .p-section__text {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service__body .p-section__text {
    width: 22.5rem;
  }
}

.p-service__body .p-section__button .c-button {
  color: #fff;
}
.p-service__body .p-section__button .c-button::before {
  border: solid 1px #fff;
}
.p-service__body .p-section__button .c-button::after {
  background: url(../images/arrow02.svg) no-repeat center right/cover;
}

.p-service__cards {
  margin-top: 3.125rem;
  margin-left: -3.125rem;
  height: 46.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__cards {
    margin-top: 12.5rem;
    margin-left: -8.125rem;
    height: auto;
  }
}

.p-service__body .p-section__button {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-service__body .p-section__button {
    text-align: left;
  }
}

.p-service__cards .c-card__title.--sp {
  left: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-service__cards .c-card__title.--sp {
    left: 1rem;
  }
}

.p-service02 {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-service02 {
    padding-top: 8.75rem;
    padding-bottom: 10rem;
  }
}

.p-service02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
}

.p-service02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 90%;
  -webkit-transform: skewX(-28deg);
          transform: skewX(-28deg);
  width: 48.3125rem;
  height: 200%;
  background: linear-gradient(110deg, #62d472, #27957a);
  z-index: -1;
}

.p-service02__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service02__card {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
    min-height: 26.5rem;
    overflow: hidden;
  }
}

.p-service02__card:not(:first-child) {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .p-service02__card:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-service02__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-service02__img {
    position: absolute;
    top: 0;
    left: 60%;
    width: 60%;
    height: 100%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
    margin-left: 0;
    overflow: hidden;
  }
}

.p-service02__card:nth-child(2n) .p-service02__img {
  margin-right: 1.5625rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-service02__card:nth-child(2n) .p-service02__img {
    top: 0%;
    right: 60%;
    left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-service02__img img {
    position: absolute;
    width: 49.1875rem;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: skewX(28deg);
            transform: skewX(28deg);
  }
}

@media screen and (min-width: 768px) {
  .p-service02__img .-img01 {
    top: 0;
    left: -33%;
  }
}

@media screen and (min-width: 768px) {
  .p-service02__img .-img02 {
    top: 0%;
    left: 36%;
  }
}

@media screen and (min-width: 768px) {
  .p-service02__img .-img03 {
    top: 0%;
    left: -21%;
  }
}

@media screen and (min-width: 768px) {
  .p-service02__img .-img04 {
    top: 0%;
    left: 8%;
  }
}

.p-service02__block {
  padding-right: 1.5625rem;
  margin-top: -1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service02__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 0;
    margin-top: 0;
  }
}

.p-service02__card:nth-child(2n) .p-service02__block {
  padding-right: 0;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-service02__card:nth-child(2n) .p-service02__block {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0;
  }
}

.p-service02__body {
  background: #fff;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-service02__body {
    width: 50%;
    background: none;
    padding: 3.4375rem;
  }
}

.p-service02__body .c-section-title--02 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service02__body .c-section-title--02 {
    font-size: 1.625rem;
  }
}

.p-service02__body .c-text {
  text-align: justify;
  font-weight: 400;
  font-size: 0.875rem;
}
.p-service02__text {
  margin-top: 1rem;
}

.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-welfare {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-welfare {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.p-welfare::before {
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #f7f7f7;
  z-index: -1;
}

.p-welfare::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-28deg);
          transform: translate(-50%, -50%) rotate(-28deg);
  width: 400vw;
  height: 88%;
  background: linear-gradient(-10deg, #27957a, #62d472);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-welfare::after {
    top: 52%;
    width: 200vw;
    height: 98%;
  }
}

.p-welfare__title {
  text-align: right;
}

.p-welfare__title .c-section-title--03,
.p-welfare__title .c-section-title--03::after {
  color: #fff;
  -webkit-text-fill-color: unset;
  background: transparent;
}

.p-welfare__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 2.5rem;
  gap: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-welfare__cards {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 8.125rem;
    gap: 0.75rem;
  }
}
.p-welfare__cards::before, .p-welfare__cards::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.p-welfare__cards::before {
  left: -2.5rem;
  top: -6.25rem;
  width: 12.5rem;
  aspect-ratio: 708/390;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20707.521%20389.8%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M47.353%20380.971%20594.257%2090.486l4.69%208.83L52.043%20389.801zM0%20373.699%20702.868.375l4.69%208.83L4.69%20382.529z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 768px) {
  .p-welfare__cards::before {
    width: 44.25rem;
    left: -15rem;
    top: -3.75rem;
  }
}
.p-welfare__cards::after {
  content: "";
  position: absolute;
  left: -3.125rem;
  bottom: -10rem;
  width: 12.5rem;
  aspect-ratio: 924/498;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20923.843%20497.549%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%20488.72%20919.203.491l4.69%208.83L4.69%20497.55z%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 768px) {
  .p-welfare__cards::after {
    width: 57.75rem;
    left: auto;
    right: -9.375rem;
    bottom: -16.25rem;
  }
}

.p-welfare__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}

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

.fadeLeftTrigger {
  opacity: 0;
}

.u-fade__left {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .u-fade__left {
    -webkit-animation-duration: 0.6s;
            animation-duration: 0.6s;
  }
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  @media screen and (min-width: 768px) {
    from {
      -webkit-transform: translateX(-70px);
              transform: translateX(-70px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  @media screen and (min-width: 768px) {
    from {
      -webkit-transform: translateX(-70px);
              transform: translateX(-70px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
