@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 6rem;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: #292D34;
}

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  margin-top: 10rem;
}

@media (max-width: 1024px) {
  main {
    margin-top: 6rem;
  }
}

li {
  list-style: none;
}

a {
  color: #292D34;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

address,
em {
  font-style: normal;
}

.en {
  font-family: "Arial", sans-serif;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
}

@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.content-width {
  max-width: 105.6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.content-width-l {
  max-width: 118.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .content-width-l {
    width: 100%;
  }
}

/* タイトル */
.c-section-catch {
  font-size: 2rem;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 7.2px;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .c-section-catch {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}

.c-section-text {
  font-size: 1.4rem;
  line-height: 24.5px;
  margin-top: 2.2rem;
  letter-spacing: 1.68px;
}

@media (max-width: 767px) {
  .c-section-text {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.c-border-box {
  border: solid 8px #F5F5F5;
  border-radius: 1rem;
  background: #fff;
}

/* ボタン */
.c-btn {
  max-width: 30rem;
  width: 100%;
  height: 5.7rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: #fff;
  border-radius: 10rem;
  border: solid 1px #41A995;
  letter-spacing: 5.4px;
  padding: 0 4.5rem;
  transition: all .5s;
}

.c-btn:hover{
  background: #41A995;
  color: #fff;
}

.c-btn::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-bk.svg);
  background-size: contain;
  width: 15px;
  height: 15px;
  right: 4.5rem;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .c-btn {
    font-size: 1.6rem;
    max-width: 100%;
    height: 6rem;
  }
}

/* お問い合わせボタン */
.c-contact-btn {
  color: #fff;
  width: 100%;
  max-width: 16.8374816984vw;
  height: 4.39238653vw;
  font-size: 1.0980966325vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border-radius: 5rem;
  letter-spacing: 0;
  background: #41A995;
  padding: 0 2rem;
  gap: 2.6rem;
}

@media (min-width:1366px) {
  .c-contact-btn {
    max-width: 23rem;
    height: 6rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .c-contact-btn {
    font-size: 2rem;
    height: 6.7rem;
  }
}

/* タイトル */
.c-section-title {
  text-align: center;
}

.c-section-title .ja {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  letter-spacing: 9px;
  line-height: 43px;
  position: relative;
  padding-bottom: 0.87rem;
}

.c-section-title .ja::after {
  position: absolute;
  content: "";
  background: #41A995;
  width: 18.5rem;
  height: 1px;
  bottom: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .c-section-title .ja {
    font-size: 2rem;
    line-height: 1.7;
  }
}

/* ページリンク */
.l-page-link {
  text-align: center;
  color: #fff;
}

.l-page-link a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.l-page-link .icon {
  width: 6rem;
}

.l-page-link__top {
  background: #228471;
  padding: 3.3rem 2rem;
}

.l-page-link__top a {
  font-size: 3rem;
}

.l-page-link__bottom {
  background: #41A995;
  padding: 6.5rem 2rem;
}

.l-page-link__bottom a {
  font-size: 2.6rem;
}

/* ヘッダー */
.l-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0 3.6603221083vw;
  height: 10rem;
}

@media (min-width:1366px) {
  .l-header {
    padding: 0 5rem;
  }
}

@media (max-width: 1024px) {
  .l-header {
    height: 6rem;
  }
}

@media (max-width: 767px) {
  .l-header {
    height: 6rem;
    padding: 0 2rem;
  }
}

.l-header .l-header__logo {
  width: 100%;
  max-width: 12.0058565154vw;
}

@media (min-width:1366px) {
  .l-header .l-header__logo {
    max-width: 16.4rem;
  }
}

@media (max-width: 767px) {
  .l-header .l-header__logo {
    max-width: 13.4rem;
  }
}

.l-header .l-header__logo a {
  display: flex;
}

.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
}

@media (max-width: 1024px) {
  .l-header .l-header__inner {
    height: 6rem;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .l-header .l-header__inner {
    height: 6rem;
  }
}

.l-header .l-header__inner__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1024px) {
  .l-header .l-header__inner__right {
    display: none;
  }
}

.l-header nav {
  margin-right: 4rem;
}

.l-header .l-header__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 767px) {
  .l-header .l-header__menu {
    display: none;
  }
}

.l-header .l-header__menu .l-header__menu__item a {
  font-size: 1.0980966325vw;
  font-weight: 400;
  color: rgba(41, 45, 52, 0.4);
  white-space: nowrap;
  line-height: 150%;
}

@media (min-width:1366px) {
  .l-header .l-header__menu .l-header__menu__item a {
    font-size: 1.5rem;
  }
}

@media (min-width:768px) and (max-width: 1024px) {
  .l-header .l-header__menu .l-header__menu__item a {
    font-size: 1.2rem;
  }
}

.l-header .l-header__menu .l-header__menu__item a.current {
  color: #292D34;
  position: relative;
}

.l-header .l-header__menu .l-header__menu__item a.current::after {
  position: absolute;
  content: "";
  background: #41A995;
  width: 30.5px;
  height: 1px;
  bottom: -6px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .l-header .c-contact-btn {
    display: none;
  }
}

@media (min-width: 1025px) {

  .hamburger-btn,
  .hamburger-menu {
    display: none;
  }
}

.hamburger-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  z-index: 100;
  cursor: pointer;
  background: transparent;
}

.hamburger-btn .hamburger-btn__line {
  width: 6rem;
  height: 6rem;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

.hamburger-btn .hamburger-btn__line .line {
  position: absolute;
  content: "";
  background: #41A995;
  width: 2.7rem;
  height: 2px;
  left: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: 0.3s;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  top: 2.1rem;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  top: 3.1rem;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(3) {
  top: 4rem;
}

.hamburger-btn.active .line {
  background: #41A995;
}

.hamburger-btn.active .line:nth-child(1),
.hamburger-btn.active .line:nth-child(2),
.hamburger-btn.active .line:nth-child(3) {
  top: 2.9rem;
  left: 31%;
}

.hamburger-btn.active .line:nth-child(1) {
  transform: rotate(-45deg);
}

.hamburger-btn.active .line:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-btn.active .line:nth-child(3) {
  transform: rotate(45deg);
}

#hamburger-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  background: #fff;
  padding: 0 2rem;
}

#hamburger-menu .hamburger-menu__list {
  margin-top: 8.5rem;
}

#hamburger-menu .hamburger-menu__list li {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: left;
  border-bottom: solid 1px #41A995;
}

#hamburger-menu .hamburger-menu__list li:last-child {
  margin-bottom: 0;
}

#hamburger-menu .hamburger-menu__list li a {
  font-size: 2rem;
  font-weight: 500;
  color: #41A995;
}

#hamburger-menu .hamburger-menu__list .child a {
  font-size: 1.6rem;
  padding-left: 2rem;
}

#hamburger-menu .c-contact-btn {
  display: flex;
  transition: inherit;
  max-width: 100%;
  font-size: 1.7rem;
  border-radius: 5rem;
  margin: 5rem auto 0;
}

#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: all 0.3s;
  left: 0;
  transform: translate(0px, 0px) translateZ(0px);
  -webkit-overflow-scrolling: touch;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.c-breadcrumbs {
  background: #FAF8F4;
  padding: 0.7rem 4rem;
}

.c-breadcrumbs .c-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.9px;
}

.c-breadcrumbs .c-breadcrumbs__list .arrow {
  display: block;
}

.c-breadcrumbs .c-breadcrumbs__list .icon {
  display: flex;
}

.c-breadcrumbs .c-breadcrumbs__list a {
  font-size: 1rem;
}

.l-cover {
  padding: 9.2rem 2rem 9.1rem;
  position: relative;
  background: #41A995;
  color: #fff;
  border-radius: 0 0 6rem 6rem;
}

@media (max-width: 767px) {
  .l-cover {
    padding: 3rem 2rem 5rem;
  }
}

.l-cover .l-cover__title {
  text-align: center;
}

.l-cover .l-cover__title .ja {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  letter-spacing: 9px;
  line-height: 43px;
  position: relative;
  padding-bottom: 0.87rem;
}

.l-cover .l-cover__title .ja::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 18.5rem;
  height: 1px;
  bottom: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .l-cover .l-cover__title .ja {
    font-size: 2rem;
    margin-top: 1rem;
  }
}

.mv {
  position: relative;
  width: 100%;
}

.mv__catch {
  content: "";
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 4.39238653vw;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  left: 6.4421669107vw;
  z-index: 1;
  letter-spacing: 6%;
}

@media (min-width:1366px) {
  .mv__catch {
    font-size: 6rem;
    left: 8.8rem;
  }
}

@media (max-width: 767px) {
  .mv__catch {
    font-size: 5.3333333333vw;
  }
}

.home-about {
  padding: 10rem 2rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .home-about {
    padding: 4rem 2rem 0;
  }
}

.home-about::after {
  position: absolute;
  content: "";
  background-image: url(../images/back-1.svg);
  background-size: contain;
  width: 35.7rem;
  height: 46.3rem;
  left: 0;
  top: 14.6rem;
}

@media (max-width: 767px) {
  .home-about::after {
    width: 85%;
    background-position: right;
    top: 9.6rem;
  }
}

.home-about .home-about__inner {
  max-width: 124rem;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: center;
  gap: 2.1rem;
}

.home-about .home-about__left {
  max-width: 55.6rem;
  width: 100%;
  padding: 0 5.4rem 0 5.9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-about .home-about__left {
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
}

.home-about .home-about__left img {
  border-radius: 1rem;
  overflow: hidden;
}

.home-about .home-about-1 {
  max-width: 39.9rem;
  width: 100%;
}

.home-about .home-about-2 {
  max-width: 27.6rem;
  width: 100%;
  margin: 3.2rem 0 0 auto;
  display: block;
}

.home-about__right {
  max-width: 58.8rem;
  width: 100%;
}

.home-about .c-border-box {
  padding: 3.5rem 4.1rem 3.2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-about .c-border-box {
    padding: 3.5rem 2rem 3.2rem;
  }
}

.home-about .c-border-box .c-section-catch {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .home-about .c-border-box .c-section-catch {
    margin-top: 2rem;
  }
}

.home-about .c-border-box .c-section-text {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .home-about .c-border-box .c-section-text {
    margin-top: 2rem;
  }
}

.home-about .c-btn {
  margin: 3.6rem auto 0;
}

.p-about__text {
  font-size: 1.8rem;
  line-height: 200%;
  max-width: 71.2rem;
  letter-spacing: 0.03em;
  margin: 0 auto;
  text-align: center;
  padding: 8.8rem 0;
}

@media (max-width: 767px) {
  .p-about__text {
    padding: 5rem 2rem 0;
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-about__point {
  padding: 9.2rem 2rem 11.9rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-about__point {
    padding: 7rem 2rem 10rem;
  }
}

.p-about__point::after {
  position: absolute;
  content: "";
  background: #41A995;
  width: 100%;
  height: 19.7657393851vw;
  border-radius: 6rem 6rem 0 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .p-about__point::after {
    height: 16rem;
  }
}

.p-about__point__list {
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 118.9rem;
  margin: 7.8rem auto 0;
}

@media (max-width: 767px) {
  .p-about__point__list {
    margin-top: 5rem;
  }
}

.p-about__point__list li {
  background: #fff;
  padding: 2.4rem;
  border-radius: 1rem;
  box-shadow: 0 0 4px rgba(144, 144, 144, 0.2509803922);
}

.p-about__point__list li .list-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 150%;
}

@media (max-width: 767px) {
  .p-about__point__list li .list-title {
    font-size: 1.8rem;
  }
}

.p-about__point__list li .list-img {
  margin-top: 1.6rem;
}

.p-about-more {
  padding: 12rem 2rem 11.8rem;
}

@media (max-width: 767px) {
  .p-about-more {
    padding: 5rem 2rem 9rem;
  }
}

.p-about-more .c-section-text {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .p-about-more .c-section-text {
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-about-more .c-btn {
  margin: 8.2rem auto 0;
}

.p-about-more__list {
  margin-top: 6.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 3rem 0 3rem;
}

@media (min-width: 768px) {
  .p-about-more__list {
    flex-wrap: nowrap;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .p-about-more__list {
    margin-top: 3rem;
    flex-wrap: wrap;
  }
}

.p-about-more__list:nth-of-type(1) {
  width: 93%;
  padding: 0 3rem 0 3rem;
}

@media (max-width: 767px) {
  .p-about-more__list:nth-of-type(1) {
    padding: 0;
    width: 100%;
  }
}

.p-about-more__list:nth-of-type(2) {
  width: 100%;
  padding: 0 3rem 0 0;
}

@media (max-width: 767px) {
  .p-about-more__list:nth-of-type(2) {
    padding: 0;
  }
}

.p-about-more .c-dot-list {
  list-style: none;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -0.03em;
  padding: 2.9282576867vw;
  border: solid 8px #fff;
  background: #FAF8F4;
  box-shadow: 0 0 4px rgba(141, 141, 141, 0.2509803922);
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media (min-width:1366px) {
  .p-about-more .c-dot-list {
    padding: 4rem 4rem;
  }
}

@media (max-width: 767px) {
  .p-about-more .c-dot-list {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 3rem;
    line-height: 1.7;
  }
}

.p-about-more .c-dot-list li {
  color: #000;
}

.p-about-more .c-dot-list li::before {
  content: "・";
}

.p-about-more .c-dot-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .p-about-more .c-dot-list:nth-of-type(2) {
    margin: 3.6rem auto 0 0;
  }
}

.p-about-more .c-dot-list:nth-of-type(4) {
  margin-top: 9rem;
}

@media (max-width: 767px) {
  .p-about-more .c-dot-list:last-of-type {
    margin-bottom: 0;
  }
}

.p-about-company {
  background-color: #FAF8F4;
  padding: 9.1rem 2rem 6.7rem;
}

@media (max-width: 767px) {
  .p-about-company {
    padding: 5rem 2rem 9rem;
  }
}

.p-about-company .c-company-table {
  max-width: 63.2rem;
  margin: 3.7rem auto 0;
  width: 100%;
}

.c-company-table {
  border-spacing: 0;
}

.c-company-table th {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 175%;
  padding: 3rem 0rem 3rem 4rem;
  text-align: left;
  width: 35%;
}

@media (max-width: 767px) {
  .c-company-table th {
    font-size: 1.4rem;
    padding: 2rem 0rem 2rem 2rem;
  }
}

.c-company-table td {
  font-size: 1.6rem;
  letter-spacing: 0.04rem;
  line-height: 175%;
  padding: 3rem 0;
  text-align: left;
}

@media (max-width: 767px) {
  .c-company-table td {
    font-size: 1.4rem;
    padding: 2rem 0;
  }
}

.c-company-table td a {
  text-decoration: underline;
}

.c-company-table th,
.c-company-table td {
  border-bottom: solid 1px #DBDBDB;
}

.home-point {
  padding: 12rem 2rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .home-point {
    padding: 7rem 2rem 0;
  }
}

.home-point::after {
  position: absolute;
  content: "";
  background-image: url(../images/back-2.svg);
  background-size: contain;
  width: 60.7rem;
  height: 34.5rem;
  right: 0;
  top: 19.5rem;
}

@media (max-width: 767px) {
  .home-point::after {
    width: 90%;
    background-position: left;
    top: 40.5rem;
  }
}

.home-point .c-btn {
  margin: 4rem auto 0;
}

.home-point__inner {
  max-width: 112rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.79rem;
  position: relative;
  z-index: 1;
}

.home-point__left {
  padding-top: 2.2rem;
}

.home-point__right {
  max-width: 56rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.home-point__right img {
  border-radius: 1rem;
  overflow: hidden;
}

.home-interview {
  padding: 19.4rem 2rem 11.7rem;
  position: relative;
}

@media (max-width: 767px) {
  .home-interview {
    padding: 10rem 2rem 10rem;
  }
}

.home-interview::after {
  position: absolute;
  content: "";
  background-image: url(../images/back-3.svg);
  background-size: contain;
  width: 44.4rem;
  height: 36.8rem;
  left: 0;
  top: 46.9rem;
}

@media (max-width: 767px) {
  .home-interview::after {
    width: 90%;
    background-position: right;
    top: 25.9rem;
  }
}

.home-interview .c-btn {
  margin: 2.4rem auto 0;
}

.home-interview__left {
  max-width: 67.5rem;
  position: relative;
  z-index: 1;
  margin-top: 7.3rem;
}

.home-interview__right {
  max-width: 53.1rem;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: -26.3rem 0 0 auto;
}

.home-interview__right .c-border-box {
  padding: 5.4rem 6rem;
  letter-spacing: 5.6px;
}

@media (max-width: 767px) {
  .home-interview__right .c-border-box {
    padding: 3.4rem 2rem;
  }
}

.home-interview__right .c-border-box .c-section-catch {
  font-size: 1.8rem;
  letter-spacing: 5.6px;
  line-height: 35px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .home-interview__right .c-border-box .c-section-catch {
    font-size: 1.4rem;
  }
}

.p-interview {
  padding: 15.4rem 0;
}

@media (max-width: 767px) {
  .p-interview {
    padding: 7rem 0;
  }
}

.p-interview__list li {
  margin-bottom: 10rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-interview__list li {
    padding: 0 2rem;
    margin-bottom: 7rem;
  }
}

.p-interview__list li .a-06 {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  max-width: 77.3060029283vw;
  margin: 0 auto;
}

@media (min-width:1366px) {
  .p-interview__list li .a-06 {
    max-width: 105.6rem;
  }
}

@media (max-width: 767px) {
  .p-interview__list li .a-06 {
    max-width: 105.6rem;
    flex-direction: column-reverse;
  }
}

.p-interview__list li .c-border-box {
  padding: 4.0995607613vw 5.1244509517vw 5.270863836vw;
  max-width: 38.8726207906vw;
  width: 100%;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width:1366px) {
  .p-interview__list li .c-border-box {
    padding: 5.6rem 7rem 7.2rem;
    max-width: 53.1rem;
  }
}

@media (max-width: 767px) {
  .p-interview__list li .c-border-box {
    padding: 4.6rem 2rem 5.2rem;
    position: relative;
    top: inherit;
    bottom: inherit;
    left: inherit;
    transform: inherit;
    margin-top: -2rem;
    max-width: 53.1rem;
  }
}

.p-interview__list li .c-border-box .list-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 5.6px;
  max-width: 33.3rem;
}

.ma-c{
  margin-top: 40px;
}

.p-interview__list li .c-border-box .name {
  font-size: 1.6rem;
  line-height: 21px;
  letter-spacing: 1.44px;
  margin-top: 5.3rem;
}

@media (max-width: 767px) {
  .p-interview__list li .c-border-box .name {
    margin-top: 2.3rem;
  }
}

.p-interview__list li:nth-child(2n) .a-06 {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .p-interview__list li:nth-child(2n) .a-06 {
    flex-direction: column-reverse;
  }
}

.p-interview__list li:nth-child(2n) .a-06 .c-border-box {
  left: inherit;
  right: 0;
}

.p-interview__list li:last-child {
  margin-bottom: 0;
}

.p-interview__list li .list-img {
  max-width: 40.9956076135vw;
  width: 100%;
}

@media (min-width:1366px) {
  .p-interview__list li .list-img {
    max-width: 56rem;
  }
}

@media (max-width: 767px) {
  .p-interview__list li .list-img {
    max-width: 56rem;
  }
}

.p-interview__list li:nth-child(1)::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 32.5036603221vw;
  height: 36.8rem;
  bottom: -22.8rem;
  left: 0;
}

@media (max-width: 767px) {
  .p-interview__list li:nth-child(1)::before {
    width: 90%;
  }
}

.p-interview__list li:nth-child(2)::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 38.140556369vw;
  height: 43.5rem;
  bottom: -31.9rem;
  right: 0;
}

@media (max-width: 767px) {
  .p-interview__list li:nth-child(2)::before {
    width: 90%;
  }
}

.p-interview__list li:nth-child(3)::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 32.5036603221vw;
  height: 27.1rem;
  bottom: -17rem;
  left: 0;
}

@media (max-width: 767px) {
  .p-interview__list li:nth-child(3)::before {
    width: 90%;
  }
}

.p-interview-top {
  padding: 4rem 4.3rem 3.1112737921vw;
  position: relative;
}

@media (min-width:1366px) {
  .p-interview-top {
    padding: 4rem 4.3rem 4.25rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top {
    padding: 7rem 2rem;
  }
}

.p-interview-top::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 72.0351390922vw;
  height: 26.2079062958vw;
  bottom: 13.3235724744vw;
  right: 0;
  border-radius: 6rem 0 0 6rem;
}

@media (min-width:1366px) {
  .p-interview-top::before {
    height: 35.8rem;
    bottom: 18.2rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top::before {
    bottom: 1.2rem;
    height: 25.8rem;
  }
}

.p-interview-top__inner {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 7.467057101vw;
  position: relative;
  z-index: 1;
}

@media (min-width:1366px) {
  .p-interview-top__inner {
    gap: 10.2rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__inner {
    flex-direction: column;
    gap: 0;
  }
}

.p-interview-top__img {
  max-width: 46.5592972182vw;
  width: 100%;
}

@media (min-width:1366px) {
  .p-interview-top__img {
    max-width: 63.6rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__img {
    max-width: 100%;
  }
}

.p-interview-top__img img {
  border-radius: 1rem;
  overflow: hidden;
}

.p-interview-top__title {
  font-size: 4.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-top: 12.5915080527vw;
  line-height: 83px;
  letter-spacing: 13.5px;
  padding-left: 12.2254758419vw;
  color: #000;
  position: relative;
  z-index: 1;
}

@media (min-width:1366px) {
  .p-interview-top__title {
    margin-top: 17.2rem;
    padding-left: 16.7rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__title {
    padding-left: 0;
    margin-top: 5rem;
    font-size: 3.4rem;
    text-align: center;
  }
}

.p-interview-top__text {
  color: #000;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .p-interview-top__text {
    margin: 0 auto;
  }
}

.p-interview-top__text .title {
  max-width: 34rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 8.64px;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .p-interview-top__text .title {
    padding-left: 0;
    font-size: 1.7rem;
    line-height: 1.9;
    padding-left: 0;
  }
}

.p-interview-top__text .name {
  margin-top: 7.7232796486vw;
  font-size: 1.2rem;
  line-height: 21px;
  letter-spacing: 1.44px;
  padding-left: 1rem;
}

@media (min-width:1366px) {
  .p-interview-top__text .name {
    margin-top: 10.55rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__text .name {
    margin-top: 3.55rem;
    padding-left: 0;
  }
}

.p-interview-top__text__img {
  display: flex;
  align-items: flex-start;
  gap: 4.6852122987vw;
  margin-top: 9.5168374817vw;
}

@media (min-width:1366px) {
  .p-interview-top__text__img {
    gap: 6.4rem;
    margin-top: 13rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__text__img {
    gap: 3.4rem;
    margin-top: 3rem;
  }
}

.p-interview-top__text__img img {
  border-radius: 1rem;
  overflow: hidden;
}

.p-interview-top__text__img .img-1 {
  max-width: 17rem;
  margin-top: 12.1522693997vw;
  width: 100%;
}

@media (min-width:1366px) {
  .p-interview-top__text__img .img-1 {
    margin-top: 16.6rem;
  }
}

@media (max-width: 767px) {
  .p-interview-top__text__img .img-1 {
    margin-top: 3rem;
  }
}

.p-interview-top__text__img .img-2 {
  width: 100%;
  max-width: 23.3rem;
}

.p-interview-4 .p-interview-top__text {
  padding-top: 0.6rem;
}

.p-interview-qa {
  padding: 13.9824304539vw 0 7.4rem;
  color: #000;
}

@media (min-width:1366px) {
  .p-interview-qa {
    padding: 19.1rem 0 7.4rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa {
    padding: 7rem 0;
  }
}

.p-interview-qa__inner {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 767px) {
  .p-interview-qa__inner {
    padding: 0 2rem;
  }
}

.p-interview-qa .qa-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 5.6px;
}

.p-interview-qa p {
  margin-top: 3.1rem;
  font-size: 1.4rem;
  line-height: 25.2px;
  letter-spacing: 3.92px;
}

.p-interview-qa .p-interview-qa__item__img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
}

.p-interview-qa__item {
  margin: 0 auto 9.5168374817vw;
  position: relative;
}

@media (min-width:1366px) {
  .p-interview-qa__item {
    margin: 0 auto 13rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item {
    margin: 0 auto 5rem;
  }
}

.p-interview-qa__item:nth-of-type(1) .flex {
  align-items: flex-start;
  gap: 6.7349926794vw;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(1) .flex {
    gap: 9.2rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(1) .flex {
    gap: 0;
  }
}

.p-interview-qa__item:nth-of-type(1) .p-interview-qa__item__img {
  max-width: 59.3rem;
  width: 100%;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(1) .p-interview-qa__item__img {
    max-width: 100%;
  }
}

.p-interview-qa__item:nth-of-type(1) .p-interview-qa__item__text {
  max-width: 44.4rem;
  padding-top: 6.2rem;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(1) .p-interview-qa__item__text {
    padding-top: 3rem;
    max-width: 100%;
  }
}

.p-interview-qa__item:nth-of-type(2) {
  padding-left: 5rem;
  margin-bottom: 12.4450951684vw;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(2) {
    margin-bottom: 17rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(2) {
    padding: 0;
    margin-bottom: 5rem;
  }
}

.p-interview-qa__item:nth-of-type(2) .p-interview-qa__inner {
  max-width: 123rem;
}

.p-interview-qa__item:nth-of-type(3) {
  margin-bottom: 15.2rem;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3) {
    margin-bottom: 5rem;
  }
}

.p-interview-qa__item:nth-of-type(3) .flex {
  align-items: flex-start;
  gap: 10.541727672vw;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(3) .flex {
    gap: 14.4rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3) .flex {
    gap: 0;
  }
}

.p-interview-qa__item:nth-of-type(3)::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 57.2474377745vw;
  height: 26.2079062958vw;
  bottom: -5.1244509517vw;
  left: 0;
  border-radius: 0 6rem 6rem 0;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(3)::before {
    height: 35.8rem;
    bottom: -7rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3)::before {
    width: 90%;
    height: 25.8rem;
    top: 3rem;
    bottom: inherit;
  }
}

.p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__img {
  max-width: 63.6rem;
  width: 100%;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__img {
    max-width: 100%;
  }
}

.p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text {
  max-width: 36.8rem;
  padding-top: 7.7rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text {
    padding-top: 7rem;
    max-width: 100%;
  }
}

.p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text p {
  margin-bottom: 9.5168374817vw;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text p {
    margin-bottom: 13rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text p {
    margin-bottom: 5rem;
  }
}

.p-interview-qa__item:nth-of-type(3) .p-interview-qa__item__text p:last-of-type {
  margin-bottom: 0;
}

.p-interview-qa__item:nth-of-type(4) {
  margin-bottom: 0;
}

.p-interview-qa__item:nth-of-type(4) .flex {
  align-items: flex-start;
  gap: 10.541727672vw;
  justify-content: space-between;
  padding: 0 4rem 0 9rem;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(4) .flex {
    gap: 14.4rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(4) .flex {
    gap: 3rem;
    padding: 0 2rem;
  }
}

.p-interview-qa__item:nth-of-type(4)::before {
  position: absolute;
  content: "";
  background: #41A995;
  width: 46.9985358712vw;
  height: 26.2079062958vw;
  bottom: -5.5636896047vw;
  right: 0;
  border-radius: 6rem 0 0 6rem;
}

@media (min-width:1366px) {
  .p-interview-qa__item:nth-of-type(4)::before {
    height: 35.8rem;
    bottom: -7.6rem;
  }
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(4)::before {
    width: 90%;
    height: 25.8rem;
    bottom: -3.6rem;
  }
}

.p-interview-qa__item:nth-of-type(4) .p-interview-qa__item__img {
  max-width: 63.6rem;
  width: 100%;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(4) .p-interview-qa__item__img {
    max-width: 100%;
  }
}

.p-interview-qa__item:nth-of-type(4) .p-interview-qa__item__text {
  max-width: 35.8rem;
  padding-top: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-interview-qa__item:nth-of-type(4) .p-interview-qa__item__text {
    max-width: 100%;
  }
}

.p-schedule {
  padding: 12rem 2rem 13.8rem;
  color: #000;
}

@media (max-width: 767px) {
  .p-schedule {
    padding: 7rem 2rem 10rem;
  }
}

.p-schedule__list {
  max-width: 105.5rem;
  margin: 4.2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 5.65rem;
  -moz-column-gap: 0;
  column-gap: 0;
  padding-left: 5rem;
}

@media (max-width: 767px) {
  .p-schedule__list {
    padding: 0;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 4rem;
  }
}

.p-schedule__list .time {
  display: flex;
  align-items: flex-end;
  gap: 1.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 24.5px;
  letter-spacing: 0.9px;
}

.p-schedule__list .list-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 31.5px;
  letter-spacing: 5.04px;
  margin-top: 0.7rem;
}

@media (max-width: 767px) {
  .p-schedule__list .list-title {
    font-size: 1.6rem;
  }
}

.p-schedule__list p {
  margin-top: 1.35rem;
  font-size: 1.4rem;
  line-height: 24.5px;
  letter-spacing: 3.92px;
  max-width: 28.8rem;
}

.p-recruit {
  padding: 16.3rem 0 12rem 2rem;
}

@media (max-width: 767px) {
  .p-recruit {
    padding: 7rem 0 10rem;
  }
}

.p-recruit__img {
  max-width: 30.3806734993vw;
  width: 100%;
  position: absolute;
  top: -7.6134699854vw;
  left: -21.3762811127vw;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width:1366px) {
  .p-recruit__img {
    max-width: 41.5rem;
    top: -10.4rem;
    left: -29.2rem;
  }
}

@media (max-width: 767px) {
  .p-recruit__img {
    position: relative;
    top: inherit;
    left: inherit;
    margin-top: 3rem;
    max-width: 100%;
  }
}

.p-recruit__text {
  background: #41A995;
  color: #fff;
  border-radius: 2rem 0 0 2rem;
  padding: 6.6rem 2rem 6.8rem;
  width: 66.8%;
  margin: 0 0 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .p-recruit__text {
    width: 95%;
    padding: 4.6rem 2rem 4rem;
  }
}

.p-recruit__text .inner {
  max-width: 38.2869692533vw;
  margin: 0 auto;
}

@media (min-width:1366px) {
  .p-recruit__text .inner {
    max-width: 52.3rem;
  }
}

@media (max-width: 767px) {
  .p-recruit__text .inner {
    max-width: 52.3rem;
  }
}

.p-recruit__text .title {
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-recruit__text .title {
    font-size: 2.4rem;
  }
}

.p-recruit__text p {
  margin-top: 5.1rem;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .p-recruit__text p {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
}

.p-recruit-about {
  background: #FAF8F4;
  padding: 8rem 2rem 10.5rem;
}

@media (max-width: 767px) {
  .p-recruit-about {
    padding: 7rem 2rem 10rem;
  }
}

.p-recruit-about .c-company-table {
  max-width: 76rem;
  margin: 4rem auto 0;
}

.p-recruit-about .c-company-table th {
  width: 27%;
  padding: 3rem 0rem 3rem 2.2rem;
}

.p-recruit-about .c-company-table td {
  padding: 2.9rem 0;
}

.p-flow {
  padding: 9.4rem 2rem 13.8rem;
}

@media (max-width: 767px) {
  .p-flow {
    padding: 7rem 2rem 10rem;
  }
}

.p-flow__list {
  margin: 3.5rem auto 0;
  justify-content: center;
  gap: 6rem;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .p-flow__list {
    align-items: center;
  }
}

.p-flow__list li {
  background: #41A995;
  color: #fff;
  padding: 3.8rem 2.4rem 2.7rem;
  border-radius: 1rem;
  width: 100%;
  position: relative;
}

.p-flow__list li::after {
  position: absolute;
  content: "";
  background: #292D34;
  width: 6rem;
  height: 1px;
  top: 9.35rem;
  right: -6rem;
}

@media (max-width: 767px) {
  .p-flow__list li::after {
    top: inherit;
    bottom: -6rem;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    height: 6rem;
    width: 1px;
  }
}

.p-flow__list li:nth-child(1) {
  max-width: 31.4rem;
}

.p-flow__list li:nth-child(2) {
  max-width: 26.6rem;
}

.p-flow__list li:nth-child(3) {
  max-width: 31.1rem;
}

.p-flow__list li:last-child::after {
  display: none;
}

.p-flow__list li .list-title {
  letter-spacing: -0.03em;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.p-flow__list li .list-title .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-flow__list li .list-title .num {
    font-size: 3rem;
  }
}

.p-flow__list li .list-title .ja {
  font-size: 2.4rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-flow__list li .list-title .ja {
    font-size: 2rem;
  }
}

.p-flow__list li p {
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: -0.03em;
  margin-top: 1.4rem;
}

.p-contact {
  padding: 8rem 2rem 12rem;
}

@media (max-width: 767px) {
  .p-contact {
    padding: 6rem 2rem 10rem;
  }
}

.p-contact .p-contact__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7222222222;
  text-align: center;
}

@media (max-width: 767px) {
  .p-contact .p-contact__text {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

.p-contact .p-contact__tel {
  margin-top: 8rem;
  border-radius: 7.45px;
  border: solid 2px #B3B3B3;
  overflow: hidden;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel {
    margin-top: 4rem;
  }
}

.p-contact .p-contact__tel .tel-title {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  background: #101381;
  padding: 1.5rem;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .tel-title {
    font-size: 1.7rem;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: #fff;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list {
    padding: 3rem 2rem;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list li {
  padding: 0 7.5rem;
  border-right: solid 2px #101381;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list li {
    padding: 0;
    margin-bottom: 3rem;
    border-right: none;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list li:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list li:last-child {
    margin-bottom: 0;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list .name {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list .name {
    font-size: 2rem;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list .tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 5.29rem;
  font-weight: 700;
  line-height: 1;
  color: #101381;
  margin-top: 2rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list .tel {
    font-size: 3.69rem;
    margin-top: 1rem;
    align-items: flex-end;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list .tel .icon {
  width: 3.1rem;
}

@media (max-width: 767px) {
  .p-contact .p-contact__tel .p-contact__tel__list .tel .icon {
    width: 2.6rem;
  }
}

.p-contact .p-contact__tel .p-contact__tel__list .tel a {
  color: #101381;
}

.Form {
  max-width: 60.4rem;
  margin: 0 auto;
  /* チェックボックス */
}

.Form .Form-Item-Label-Required {
  color: #fff;
  background: #FF2929;
  padding: 3px 5px;
  display: inline-block;
  line-height: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .Form .Form-Item-Label-Required {
    font-size: 1rem;
    padding: 3px 7px 3px;
  }
}

.Form .Form-Item {
  margin-bottom: 3.8rem;
}

@media (max-width: 767px) {
  .Form .Form-Item {
    margin-bottom: 2rem;
  }
}

.Form .Form-Item .Form-Item-Label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 767px) {
  .Form .Form-Item .Form-Item-Label {
    font-size: 1.8rem;
    justify-content: flex-start;
    gap: 0.8rem;
    padding-top: 1rem;
  }
}

.Form .Form-Item .Form-Item-Input {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.7142857143;
  word-break: break-all;
}

@media (max-width: 767px) {
  .Form .Form-Item .Form-Item-Input {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 1rem;
  }
}

.Form .Form-Item .Form-Item-Input .select-wrap {
  position: relative;
  height: 5.5rem;
  width: 100%;
}

.Form .Form-Item .Form-Item-Input .select-wrap::after {
  position: absolute;
  content: "";
  background-image: url(../images/select-arrow.svg);
  background-size: contain;
  width: 10px;
  height: 5px;
  right: 2.4rem;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
}

.Form .Form-Item .input-text {
  background: #fff;
  border: solid 1px #E1E6EB;
  height: 5.5rem;
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 16px;
  border-radius: 6px;
  color: #292D34;
}

@media (max-width: 767px) {
  .Form .Form-Item .input-text {
    height: 5rem;
    font-size: 15px;
    padding: 10px;
    border-radius: 0.5rem;
  }
}

.Form .Form-Item .input-text--tel {
  max-width: 8rem;
}

.Form .Form-Item .kigou {
  margin: 0 1.1rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.Form .Form-Item textarea::-moz-placeholder,
.Form .Form-Item input::-moz-placeholder {
  font-size: 16px;
  color: #8B97A3;
  font-family: "Noto Sans JP", sans-serif;
}

.Form .Form-Item textarea::placeholder,
.Form .Form-Item input::placeholder {
  font-size: 16px;
  color: #8B97A3;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {

  .Form .Form-Item textarea::-moz-placeholder,
  .Form .Form-Item input::-moz-placeholder {
    font-size: 15px;
  }

  .Form .Form-Item textarea::placeholder,
  .Form .Form-Item input::placeholder {
    font-size: 15px;
  }
}

.Form .Form-Item textarea {
  background: #fff;
  height: 16.1rem;
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: solid 1px #E1E6EB;
  color: #292D34;
}

@media (max-width: 767px) {
  .Form .Form-Item textarea {
    font-size: 15px;
    padding: 10px;
    height: 21.15rem;
  }
}

.Form .Form-Item--privacy {
  width: 100%;
  height: 16.1rem;
  overflow-y: scroll;
  margin-bottom: 0;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 150%;
}

.Form .Form-Item--check {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 30px;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .Form .Form-Item--check {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 4rem;
  }
}

.Form .Form-Item--check .checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: center;
}

.Form .Form-Item--check input {
  margin-right: 1rem;
}

.Form .btn-wrap {
  margin: 6rem auto 0;
  max-width: 30rem;
  width: 100%;
}

@media (max-width: 767px) {
  .Form .btn-wrap {
    margin: 4.5rem auto 0;
  }
}

.Form .confirm-btn {
  background: #41A995;
  color: #fff;
  border-radius: 10rem;
  height: 5rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 150%;
}

@media (max-width: 767px) {
  .Form .confirm-btn {
    height: 7.29rem;
  }
}

input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #292D34;
  border-radius: 2px;
  background: transparent;
}

.p-employee-data {
  padding: 8.2rem 2rem 0;
}

@media (max-width: 767px) {
  .p-employee-data {
    padding: 7rem 2rem 5.8rem;
  }
}

.p-employee-data__item-wrap {
  margin: 4.3rem auto 0;
  max-width: 109rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.p-employee-data__item {
  max-width: 35rem;
  width: 100%;
}

@media (max-width: 767px) {
  .p-employee-data__item {
    margin: 0 auto;
  }
}

.p-employee-data__item__list li {
  background: #fff;
  margin-bottom: 2rem;
  padding: 2.4rem 1.8rem;
  box-shadow: 0 0 6px rgba(120, 120, 120, 0.2509803922);
  border-radius: 1rem;
}

.p-employee-data__item__list li:last-child {
  margin-bottom: 0;
}

.p-employee-data__item__list li .num {
  color: #41A995;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.005em;
  text-align: center;
  margin-top: 4.8rem;
  margin-bottom: 2.4rem;
}

.p-employee-data__item__list li .num em {
  color: #228471;
  font-size: 6.4rem;
}

.p-employee-data__item__list li .list-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .p-employee-data__item__list li .list-title {
    font-size: 2rem;
  }
}

.p-employee-data__item__list li .list-img {
  margin-top: 1.6rem;
}

.p-employee-data--num,
.p-employee-data--work {
  padding-top: 13.3rem;
}

@media (max-width: 767px) {

  .p-employee-data--num,
  .p-employee-data--work {
    padding-top: 0;
  }
}

.p-employee-data--career {
  padding-top: 13.4rem;
}

@media (max-width: 767px) {
  .p-employee-data--career {
    padding-top: 0;
  }
}

.p-employee-data--environment {
  padding-top: 12.6rem;
  padding-bottom: 18rem;
}

@media (max-width: 767px) {
  .p-employee-data--environment {
    padding-top: 0;
    padding-bottom: 7rem;
  }
}

.p-voice {
  padding: 0 0 10.6rem;
}

@media (max-width: 767px) {
  .p-voice {
    padding-bottom: 7rem;
  }
}

.p-voice__list {
  max-width: 109.2rem;
  margin: 10.3rem auto 0;
}

@media (max-width: 767px) {
  .p-voice__list {
    padding: 0 2rem;
    margin-top: 5rem;
  }
}

.p-voice__list li {
  margin-bottom: 6.3rem;
  background: #FAF8F4;
  border-radius: 8px;
  padding: 4.7rem 2.4rem 2.7rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-voice__list li {
    margin-bottom: 3rem;
  }
}

.p-voice__list li:last-child {
  margin-bottom: 0;
}

.p-voice__list li .list-title {
  background: #41A995;
  color: #fff;
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  position: absolute;
  top: -2.2rem;
  left: -2.6rem;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .p-voice__list li .list-title {
    font-size: 1.6rem;
    position: relative;
    left: inherit;
    text-align: center;
  }
}

.p-voice__list li p {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 175%;
  color: #000;
}

@media (max-width: 767px) {
  .p-voice__list li p {
    font-size: 1.4rem;
  }
}

.p-employee__head {
  background: #41A995;
  color: #fff;
  padding: 6.9rem 2rem 7.1rem;
}

@media (max-width: 767px) {
  .p-employee__head {
    padding: 4.9rem 2rem 5.1rem;
  }
}

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

.p-employee__head .c-section-title .ja::after {
  background: #fff;
}

.p-employee {
  padding: 0 0 11rem;
}

.p-employee .fukidashi {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 4.7rem;
  color: #000;
}

@media (max-width: 767px) {
  .p-employee .fukidashi {
    font-size: 1.6rem;
  }
}

.p-employee .fukidashi .line {
  padding: 0 5.3rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-employee .fukidashi .line {
    padding: 0 2.8rem;
  }
}

.p-employee .fukidashi .line::before,
.p-employee .fukidashi .line::after {
  position: absolute;
  content: "";
  background-size: contain;
  width: 24.5px;
  height: 24.5px;
  bottom: -0.7rem;
}

.p-employee .fukidashi .line::before {
  background-image: url(../images/line-l.svg);
  left: 0;
}

.p-employee .fukidashi .line::after {
  background-image: url(../images/line-r.svg);
  right: 0;
}

.p-employee__list {
  max-width: 120rem;
  margin: 4.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 767px) {
  .p-employee__list {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
}

.p-employee__list__item {
  border: solid 1px #41A995;
  border-radius: 1rem;
  overflow: hidden;
}

.p-employee__list__item .list-title {
  background: #41A995;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  padding: 0.6rem 0;
}

@media (max-width: 767px) {
  .p-employee__list__item .list-title {
    font-size: 2.4rem;
  }
}

.p-employee__list__item .list-img {
  text-align: center;
}

.p-employee__list__item .list-block {
  padding: 2.4rem 0.85rem 2rem;
  background: #fff;
}

.c-dot-list {
  list-style: none;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  margin: 4.4rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
}

@media (max-width: 767px) {
  .c-dot-list {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.c-dot-list li::before {
  content: "・";
}

.l-footer {
  background: #FAF8F4;
  padding: 4.8rem 10.6rem 3.7rem 4rem;
  color: #292D34;
  position: relative;
}

@media (max-width: 767px) {
  .l-footer {
    padding: 6rem 2rem 5rem;
  }
}

.l-footer__logo {
  max-width: 16.4rem;
  width: 100%;
}

@media (max-width: 767px) {
  .l-footer__logo {
    margin: 0 auto;
  }
}

.l-footer .address {
  font-size: 1.6rem;
  line-height: 160%;
  margin-top: 5.3rem;
}

@media (max-width: 767px) {
  .l-footer .address {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .l-footer .l-footer__menu {
    width: 100%;
  }
}

.l-footer .l-footer__menu .menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.196193265vw;
}

@media (max-width: 767px) {
  .l-footer .l-footer__menu .menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .l-footer .l-footer__menu .menu-list li {
    text-align: center;
  }
}

.l-footer .l-footer__menu .menu-list li a {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: rgba(41, 45, 52, 0.6);
}

@media (max-width: 767px) {
  .l-footer .l-footer__menu .menu-list li a {
    font-size: 1.6rem;
  }
}

.l-footer .privacy-link {
  text-align: center;
  margin-top: 6.4rem;
  font-size: 1.3rem;
}

.l-footer .privacy-link a {
  color: #4D4D4D;
  text-decoration: underline;
}

.l-footer .copyright {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  margin-top: 0.4rem;
  color: #494949;
  line-height: 150%;
}

@media (max-width: 767px) {
  .l-footer .copyright {
    font-size: 1rem;
    margin-top: 5rem;
  }
}

.l-footer .l-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7.3206442167vw;
  font-weight: 500;
}

@media (min-width:1366px) {
  .l-footer .l-footer__top {
    gap: 10rem;
  }
}

@media (max-width: 767px) {
  .l-footer .l-footer__top {
    gap: 3rem;
  }
}

.l-footer .l-footer__top .l-footer__top__item {
  padding-right: 12.4rem;
  border-right: solid 1px #E9E9E9;
}

@media (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top__item {
    width: 100%;
    border-right: none;
    padding-right: 0;
    text-align: center;
  }
}

/* contactform7 */
.wpcf7-not-valid-tip {
  font-size: 1.6rem !important;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

/* リクルートサイト */
.l-header__inner__left {
  display: flex;
  width: 29%;
  align-items: center;
}

@media (max-width: 767px) {
  .l-header__inner__left {
    width: auto;
  }

  .l-header__inner__left p {
    font-size: 1.2rem;
  }
}

/* HPボタン */
.link-btn {
  background: #41A995;
  color: #fff;
  height: 5rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 150%;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 25rem;
}

.link-btn img {
  width: 2.6rem;
}

@media (max-width: 767px) {
  .link-btn {
    margin: 2rem auto 0;
  }
}