@charset "utf-8";

/*共通 設定
---------------------------------------------------------*/
@font-face {
  font-family: "MyFont";
  src: url("font/tamil-sangam-mn.ttf") format("opentype");
}

:root {
  --clr_main: #0071bc;
  --clr_sub: #4ca9c7;
  /* --clr_red: #D70000; */
  --clr_gray: #d9d9d9;
  /* --font_mincho: "shippori-mincho", sans-serif; */
}

.jaTxt {
  /* font-family: var(--font_mincho); */
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.07em;
}

.enTxt {
  font-family: "MyFont";
  font-weight: 400;
  line-height: 1;
}

.txt {
  line-height: 2;
}

.clrMain {
  color: var(--clr_main) !important;
}

.bgMain {
  background-color: var(--clr_main) !important;
}

.clrSub {
  color: var(--clr_sub) !important;
}

.clrBk {
  color: #000 !important;
}

.bgSub {
  background-color: var(--clr_sub) !important;
}

/*header
---------------------------------------------------------*/
:root {
  /* --header-height: 8.8rem; */
  /*外部ページからのアンカーリンク用*/
  /* 画像の読み込みでずれるときは、EWWW Image Optimizerでページ除外する page:/equipment/ */
}

html {
  /* scroll-padding-top: var(--header-height)!important; */
}

#header {
  /* height: var(--header-height); */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.2s;
  z-index: 9999;
}

#header.scrollClass {
  background-color: #fff;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}

.header_wrap {
  width: 95%;
  max-width: 200rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.header_logo img {
  max-height: 7rem;
}

._white .header_logo img {
  filter: brightness(0) invert(100%);
}

.header_nav ul {
  gap: 4rem;
  align-items: center;
}

.header_nav li {
  text-align: left;
  position: relative;
}

.header_nav li a {
  position: relative;
  color: #000;
}

._white .header_nav li a {
  color: #fff;
}

.header_nav li a:hover {
  color: var(--clr_main);
}

#header.scrollClass._white .header_logo img {
  filter: none;
}

#header.scrollClass._white .header_nav li a {
  color: #000;
}

#header.scrollClass .header_nav li a:hover {
  color: var(--clr_main);
}

#header .sns_group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 2rem 0 3rem;
}

#header .sns_group.onlysp {
  display: none;
}

#header .sns_group .sns {
  transition: opacity .2s ease;
}

#header .sns_group .sns:hover {
  opacity: 0.7;
}

#header .sns_group .sns {
  position: relative;
  aspect-ratio: 1/1;
}

#header .sns_group .-instagram {
  aspect-ratio: 1/1;
  width: 4rem;
}

#header .sns_group .-line {
  width: 4.6rem;
}

#header .sns_group .sns::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}

#header .sns_group .-instagram::before,
#header.scrollClass._white .sns_group .-instagram::before {
  background: url(../img/sns_instagram_cl.png) no-repeat;
  background-size: contain;
}

#header .sns_group .-line::before,
#header.scrollClass._white .sns_group .-line::before {
  background: url(../img/sns_line_cl.png) no-repeat;
  background-size: contain;
}

#header._white .sns_group .-instagram::before {
  background: url(../img/sns_instagram.png) no-repeat;
  background-size: contain;
}

#header._white .sns_group .-line::before {
  background: url(../img/sns_line.png) no-repeat;
  background-size: contain;
}

/*footer
---------------------------------------------------------*/
.footer {
  padding: 9.2rem 0 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer_middle {
  justify-content: space-between;
  text-align: left;
}

.footer_company .name {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--clr_main);
}

.footer_company .address span {
  display: block;
  margin-bottom: 1rem;
}

.footer_company .footer_corpbtn {
  background-color: var(--clr_main);
  color: #fff;
  border-radius: 6rem;
  padding: 2rem 3rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  width: 36rem;
  margin-top: 5.8rem;
}

.footer_company .footer_corpbtn:hover {
  background-color: #919191;
}

.footer_company .footer_corpbtn.c_arrow::after {
  border: 0.1rem solid #fff;
  filter: brightness(0) invert(100%);
}

.footer_nav {
  gap: 7rem;
  padding-right: 4rem;
}

.footer_nav ul li+li,
.footer_nav ul.child {
  margin-top: 1.4rem;
}

.footer_nav>ul>li>a {
  font-weight: 700;
}

.footer_nav ul.child li a {
  position: relative;
  display: inline-block;
  padding-left: 1.8rem;
}

.footer_nav ul.child li a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.8rem;
  height: 0.1rem;
  background-color: #000;
  display: inline-block;
}

.footer_nav a:hover,
.footer_bottom a:hover {
  color: var(--clr_main);
}

.footer_bottom {
  justify-content: space-between;
  align-items: baseline;
}

.footer_policy {
  width: 100%;
  font-size: 1.2rem;
}

.footer_copyRight {
  text-align: right;
}

.footer_hero {
  position: relative;
  padding: 29rem 2rem 3.3rem;
}

.footer_hero__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 81.3rem;
  overflow: hidden;
}

.footer_hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44rem;
  background-image: linear-gradient(0deg, transparent, #ffffff);
  z-index: 1;
}

.footer_hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_hero__box {
  position: relative;
  width: 40.2rem;
  margin-inline: auto;
}

.footer_hero__catch {
  text-align: left;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  color: #fff;
}

.footer_hero__box .enImg {
  position: absolute;
  top: 28%;
  right: -6%;
  width: 100%;
  margin-inline: auto;
}

.footer_hero__box .enImg img {
  width: 100%;
}

.footer_logo {
  width: 15.9rem;
  margin: 14rem auto 2.8rem;
}

/*共通 パーツ
---------------------------------------------------------*/
/* ボタン */
.c_btn_row {
  gap: 1.4rem;
}

.c_btn a {
  background-color: var(--clr_main);
  color: #fff;
  width: 18rem;
  display: inline-block;
  border-radius: 3rem;
  padding: 1.2rem;
}

.c_btn._recruit a {
  background-color: var(--clr_sub);
}

.c_btn._recruit a::after {
  content: "";
  width: 1.2rem;
  aspect-ratio: 1;
  background: url("../img/icon_blank.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 1rem;
}

.c_btn a:hover {
  background-color: #919191;
}

.c_more {
  margin-top: 5rem;
}

.c_more a,
.c_more span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "MyFont";
}

.c_more a::after,
.c_more span::after,
.c_arrow::after {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 0.1rem solid var(--clr_main);
  background: url(../img/arrow_main.svg) 50% 54% no-repeat;
  background-size: 50% auto;
}

.c_more._white a,
.c_more._white span {
  color: #fff;
}

.c_more._white a::after,
.c_more._white span::after {
  filter: brightness(0) invert(1);
}

.c_arrow::after {
  width: 2.6rem;
  height: 2.6rem;
}

.c_more a:hover {
  color: var(--clr_main);
}

.c_more._white a:hover {
  opacity: 0.8;
}

/* タイトル */
.c_enJaTtl {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
}

.c_enJaTtl span {
  display: block;
  font-size: 6.4rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--clr_main);
}

.c_jaEnTtl {
  color: var(--clr_main);
}

.c_jaEnTtl .jaTxt {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

.c_anchor {
  padding: 6rem 0 4rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

section .c_anchor {
  padding: 0;
}

.c_anchor .txt {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 8.2rem;
}

.c_anchor__list {
  grid-template-columns: repeat(4, 1fr);
}

.c_anchor__list li a {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
  transition: 0.2s;
  letter-spacing: 0.1em;
  color: var(--clr_main);
  border-right: 0.1rem solid var(--clr_main);
  padding: 0.6rem;
  padding-bottom: 2.5rem;
}

.c_anchor__list li a:has(.number) {
  padding-top: 3.2rem;
}

.c_anchor__list li:first-child a {
  border-left: 0.1rem solid var(--clr_main);
}

.c_anchor__list li a::after {
  content: "";
  width: 1.4rem;
  aspect-ratio: 2;
  background: url(../img/arrow_main.svg) center no-repeat;
  background-size: contain;
  display: block;
  transform: rotate(90deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 1.4rem auto 0;
}

.c_anchor__list li a .enTxt {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.c_anchor__list li a .number {
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  font-size: 2rem;
}

.c_anchor__list li a:hover {
  color: #777;
}

.c_anchor__list li a:hover::after {
  filter: grayscale(1);
}

/* ENTRY */
.c_entry {
  background: url("../img/entry_bg_pc.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  padding: 5.6rem 0 6.2rem;
  z-index: 1;
}

.c_entry__row {
  display: grid;
  max-width: 192rem;
  margin-inline: auto;
  max-height: 45.8rem;
  grid-template-columns: calc(150 / 1400 * 100%) calc(430 / 1400 * 100%) calc(545 / 1400 * 100%) calc(275 / 1400 * 100%);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "a c d e" "b c d f";
}

.c_entry__img._01 {
  grid-area: a;
}

.c_entry__img._02 {
  grid-area: b;
}

.c_entry__img._03 {
  grid-area: c;
}

.c_entry__img._04 {
  grid-area: e;
}

.c_entry__img._05 {
  grid-area: f;
}

.c_entry__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c_entry__box {
  grid-area: d;
  padding: 3.5rem 5.3rem 0 7.2rem;
  color: #fff;
}

.c_entry__box__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.c_entry__box .c_enTtl {
  text-align: left;
  font-size: 8.2rem;
}

.c_entry__cont_list {
  margin-top: 4rem;
}

.c_entry__cont_list li a {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 3rem;
  position: relative;
  padding: 2.4rem 2.1rem 2.4rem 0.8rem;
  color: #fff;
  border-bottom: 0.1rem solid #fff;
}

.c_entry__cont_list li a:hover {
  color: var(--clr_sub);
  border-color: var(--clr_sub);
}

.c_entry__cont_list li a span {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.c_entry__cont_list li a::after {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.c_entry__box .c_arrow::after {
  border: 0.1rem solid #fff;
  filter: brightness(0) invert(100%);
}

/* 社員スライダー */
.c_people__sliderWrap {
  container-type: inline-size;
}

.c_people__sliderWrap .c_people__slider {
  /* width: 89.29vw;

  width: 90%;
    max-width: 110rem; */

  width: calc(100% - (100% - min(110rem, 90%)) / 2);
  margin-bottom: 5.4rem;
  margin-left: auto;
}

@container (width > 1400px) {
  .c_people__sliderWrap .c_people__slider {
    width: 89.29vw;
  }
}

.c_people__sliderWrap .c_slide_item {
  width: 26.8rem;
  margin-right: 3.3rem;
}

.c_slide_item {
  text-align: left;
}

.c_slide_item:last-child {
  margin-right: 0;
}

.c_slide_item {
  padding: 0;
}

.c_slide_item a {
  position: relative;
  display: block;
  padding-top: 1.6rem;
}

.c_slide_item .img {
  aspect-ratio: 268/402;
}

.c_slide_item img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.c_slide_item .conts {
  padding: 1.6rem 0 0;
}

.c_slide_item .catch {
  position: absolute;
  top: 0;
  right: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 5;
  transform: translateZ(0);
}

.c_slide_item .catch span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: var(--clr_main);
  padding: 0.8rem 0.3rem;
  line-height: 1;
  letter-spacing: 0.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.c_slide_item .name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c_slide_item .year {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.c_people__sliderWrap .slider_nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 40.6rem;
  margin: 0 auto;
}

.c_people__sliderWrap .SliderArrow {
  display: block;
  width: 3rem;
  transition: 0.2s;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--clr_main);
  background: #fff url(../img/arrow_main.svg) center center no-repeat;
  background-size: 45% auto;
  z-index: 5;
}

.c_people__sliderWrap .SliderArrow.prev {
  right: auto;
  left: -5rem;
  transform: rotate(180deg);
}

.c_people__sliderWrap .SliderArrow:hover {
  background-color: #f1f1f1;
}

.c_people__sliderWrap .progress_bar {
  flex: 1;
  height: 0.2rem;
  background: #e8f5fa;
  position: relative;
}

.c_people__sliderWrap .progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--clr_main);
}

/* 下層point */
.c_point_cont {
  text-align: left;
}

.c_point_cont:has(.c_point_cont__wrap) {
  padding-bottom: 0;
}

.c_point_cont__wrap .enTxt {
  font-size: 11.2rem;
  color: #e8f5fa;
  margin-bottom: 1.4rem;
}

.c_point_cont__wrap .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-bottom: 1.4rem;
}

.c_point_cont__row {
  padding: 8.8rem 0;
  border-top: 0.2rem solid #e3e3e3;
  gap: 12.1rem;
}

.c_point_cont__row:first-of-type {
  padding-top: 0;
  border-top: none;
}

.c_point_cont__row:last-of-type {
  padding-bottom: 0;
}

.c_point_cont__row:nth-of-type(even) {
  flex-direction: row-reverse;
}

.c_point_cont__img {
  width: 48.6rem;
}

.c_point_cont__row .pointTxt {
  width: 49.2rem;
  padding-top: 1rem;
}

.c_point_cont__row .enTxt {
  font-size: 2rem;
  color: var(--clr_main);
  margin-bottom: 2.4rem;
}

.c_point_cont__row .jaTxt {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.c_point_cont__row .c_arrow {
  position: relative;
  display: inline-block;
  margin-top: 6.8rem;
  padding: 1.5rem 6.4rem 1.5rem 2.8rem;
  background-color: #fff;
  border: 0.1rem solid var(--clr_main);
  border-radius: 6rem;
  font-weight: 500;
  color: var(--clr_main);
}

.c_point_cont__row .c_arrow:hover {
  color: #fff;
  background-color: var(--clr_main);
}

.c_point_cont__row .c_arrow::after {
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 2.8rem;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
}

/* 下層人材育成index */
.c_development_index {
  padding-bottom: 16rem;
}

.c_development_index__row {
  text-align: left;
  background-color: var(--clr_main);
  color: #fff;
}

.c_development_index__row .indexTtl {
  width: 60.5rem;
  background-image: url(../img/lower_development_img.jpg);
  background-size: cover;
  padding: 16rem 2.5rem 0;
}

.c_development_index__row .indexTtl .jaTxt {
  font-size: 1.8rem;
  font-weight: 600;
}

.c_development_index__row .indexTtl .enTxt {
  font-size: 7.2rem;
}

.c_development__list {
  flex-grow: 1;
  padding: 2.2rem 3.4rem;
}

.c_development__list a {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  padding: 1.8rem 0.6rem;
  color: #fff;
  border-bottom: 0.1rem solid var(--clr_sub);
}

.c_development__list a span {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.c_development_index .c_arrow::after {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border: 0.1rem solid #fff;
  filter: brightness(0) invert(100%);
}

/*form contact
---------------------------------------------------------*/
.c_contact_txt {
  text-align: left;
  margin-bottom: 6rem;
  line-height: 2;
}

.c_contact_txt h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--clr_main);
}

.c_contact_txt .c_btn a {
  text-align: center;
  display: block;
  margin: 0 auto;
}

.formTxt {
  color: var(--clr_main);
  font-size: 112.5%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
}

.formBox dt,
.formBox dd {
  width: 30%;
  font-weight: 400;
  padding: 2rem 0;
  text-align: left;
}

.formBox dt {
  padding-top: 3.5rem;
}

.confirmWrap .formBox dt {
  padding-top: 2rem;
}

.formBox dt::before {
  content: "任意";
  font-size: 85%;
  font-weight: 400;
  padding: 0.5rem 1rem;
  display: inline-block;
  background: #9e9e9e;
  color: #fff;
  line-height: 1;
  margin-right: 1rem;
}

.formBox dt.req::before {
  content: "必須";
  background: var(--clr_main);
}

.formBox dt.hide {
  height: 0;
  visibility: hidden;
}

.formBox dt p {
  display: inline;
}

.formBox dd {
  width: 70%;
  padding-left: 0;
}

.formName>.txt {
  width: 40%;
  display: flex;
  align-items: center;
}

.formName>.txt:first-of-type {
  margin-right: 2%;
}

.formName .txt span {
  display: block;
  white-space: nowrap;
  margin-right: 1rem;
}

.form-address p {
  text-align: left;
  padding: 5px 0;
}

.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox select,
.formBox textarea {
  width: 100%;
  padding: 1.5em;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1.6rem;
}

.formBox input[type="text"].size-s {
  max-width: 21rem;
}

.formBox input::placeholder,
.formBox textarea::placeholder {
  font-size: 1.6rem;
  color: #D9D9D9;
}


.formBox label {
  margin: 0;
}

.formBox .licenseWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 6rem;
}

.formBox .licenseWrap .attention {
  width: 100%;
  flex-grow: 1;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.formBox .licenseWrap label {
  min-width: calc(100% / 4);
}

.formBox .fileWrap {
  display: flex;
  align-items: center;
  padding-top: 3rem;
}

.confirmWrap .formBox .fileWrap {
  padding-top: 2rem;
}

.formBox .licenseWrap+.fileWrap {
  margin-left: 30%;
  width: 100%;
  padding-top: 0;
}

.zipwrap {
  display: flex;
  gap: 1rem;
}

.zipwrap input {
  max-width: 23rem;
}

.zipwrap p {
  display: flex;
  gap: 1rem;
}

.radioWrap {
  display: flex;
  gap: 1rem 3rem;
}

.formBox select {
  color: #000;
  background: url(../img/form_select_arrow.png) no-repeat;
  background-size: 1.6rem 0.8rem;
  background-position: center right 2.3rem;
  padding-right: 4rem;
}

.formBox option:first-of-type {
  background: #b3b3b3;
  color: #fff;
}

.formBox textarea {
  height: 19rem;
}

.formBox .disabled input {
  pointer-events: none;
  border: none;
}

.zipBtn {
  font-family: "source-han-sans-japanese", "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
  background: var(--clr_main);
  color: #fff;
  border: none;
  padding: 1.5rem 2rem;
  cursor: pointer;
  line-height: 1.1;
  max-height: 5.7rem;
}

.zipBtn:hover {
  background: #9e9e9e;
}

.policyTxt {
  margin-bottom: 2rem;
}

.policyTxt a {
  text-decoration: underline;
  display: inline-block;
}

.policyTxt a:hover {
  color: var(--clr_main);
  text-decoration: none;
}

.policyCheck {
  text-align: center !important;
  padding: 3rem 1rem;
}

.formWrap.confirmWrap,
.formWrap.thanksWrap,
.is-finish .wpcf7-response-output {
  display: none;
}

.formWrap .btnCont[disabled] {
  opacity: .4;
  pointer-events: none;
}

.formWrap input[type="submit"],
.formWrap input[type="button"],
.formWrap button.button._grey {
  font-family: "source-han-sans-japanese", "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
  color: #fff;
  font-size: 115%;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  background: var(--clr_main) url(../img/arrow_btn.svg) right 2rem center no-repeat;
  background-size: 2.8rem auto;
  min-width: 33rem;
  display: block;
  border: none;
  padding: 2.5rem 2rem;
  border-radius: 10rem;
  margin: 1rem;
  transition: 0.2s;
  cursor: pointer;
}

.formWrap input[type="button"].btn_back,
.formWrap button.button._grey {
  background: #ddd;
  color: #333;
}

.formWrap input[type="submit"]:hover,
.formWrap input[type="button"]:hover,
.formWrap button.button._grey:hover {
  opacity: 0.7;
}

button.button._grey {
  display: none;
}

.formName .error {
  min-width: 50%;
}

.formName .error+.error {
  display: none;
}

.btm_tel {
  margin-top: 8rem;
  padding: 3rem 2rem;
  border-top: 1px solid var(--clr_gray);
  border-bottom: 1px solid var(--clr_gray);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 6rem;
}

.btm_tel dt {
  font-size: 2.4rem;
}

.btm_tel dd {
  text-align: left;
}

.btm_tel dd .enTxt {
  font-size: 4.2rem;
  display: inline-block;
  margin-top: 1rem;
  color: var(--clr_sub);
}

.thxBox h2 {
  font-size: 125%;
  margin-bottom: 2rem;
}

/*アニメーション
---------------------------------------------------------*/
.js-scroll figure._imgScale,
.js-scroll ._imgScale figure {
  overflow: hidden;
}

.js-scroll figure._imgScale img,
.js-scroll ._imgScale figure img,
.js-scroll ._imgScale img {
  transform: translateZ(0);
  scale: 1;
  opacity: 0;
  transition:
    scale 3s 0.2s,
    opacity 3s .2s cubic-bezier(.33, 1, .68, 1);
}

.js-scroll ._imgScale figure:nth-of-type(2) img {
  transition-delay: 0.4s;
}

.js-scroll ._imgScale figure:nth-of-type(3) img {
  transition-delay: 0.6s;
}

.js-scroll.active figure._imgScale img,
.js-scroll.active ._imgScale figure img,
.js-scroll.active ._imgScale img {
  scale: 1.05;
  opacity: 1;
}

/* フェードイン */
/* .js-scroll ._fadeIn,
.js-scroll ._fadeIn_multi li {
  opacity: 0;
  transition: opacity 0.8s 0.2s linear;
}

.js-scroll ._fadeIn_multi li:nth-of-type(2),
.js-scroll a._fadeIn:nth-of-type(2) {
  transition-delay: 0.4s;
}

.js-scroll ._fadeIn_multi li:nth-of-type(3) {
  transition-delay: 0.6s;
}

.js-scroll.active ._fadeIn,
.js-scroll.active ._fadeIn_multi li {
  opacity: 1;
} */

/*top
---------------------------------------------------------*/
.p_top_mv {
  overflow: hidden;
  height: 100dvh;
  min-height: 50rem;
  position: relative;
  color: #fff;
}

.p_top_mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.p_top_mv .container {
  position: relative;
  height: 100%;
  max-width: 190rem;
}

.p_top_mv__box {
  position: absolute;
  bottom: 17.5rem;
  left: 0;
  text-align: left;
  z-index: 3;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  opacity: 0;
  animation: boxFadeIn 0.8s ease 0.5s both;
}

.p_top_mv__box h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}

.p_top_mv__box .catch {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
}

.p_top_mv__box .enImg {
  position: absolute;
  top: 18rem;
  left: 2rem;
  width: 44.6rem;
}

.p_top_mv__box .enImg img {
  width: 100%;
}

.c__mv_scroll {
  position: absolute;
  bottom: 4rem;
  right: 0;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -o-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9;
  font-size: 1.3rem;

}

.c__mv_scroll::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1 / 2;
  background: url(../img/scroll_arrow.svg) center no-repeat;
  background-size: contain;
  display: inline-block;
  animation: scrollanime 2s infinite linear;
}

@keyframes scrollanime {
  0% {
    translate: 0 0%;
  }

  50% {
    translate: 0 -30%;
  }

  100% {
    translate: 0 0%;
  }
}

.p_top_mv__video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
}

.p_top_message {
  text-align: left;
  padding: 12rem 0 0;
}

.p_top_message__row {
  justify-content: space-between;
}

.p_top_message__box {
  position: relative;
}

.p_top_message__box .enTxt {
  font-size: 2.4rem;
  margin-bottom: 5.2rem;
  color: var(--clr_main);
}

.p_top_message__box .jaTxt {
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.p_top_message__box .enImg {
  position: absolute;
  top: 15.8rem;
  left: 1.5rem;
  width: 31.8rem;
}

.p_top_message__box .p_top_message__img {
  position: relative;
  margin-top: 14.6rem;
}

.p_top_message__box .p_top_message__img ._01 {
  width: 22rem;
}

.p_top_message__box .p_top_message__img ._02 {
  position: absolute;
  top: 11rem;
  left: 23.8rem;
  width: 15.9rem;
  z-index: 1;
}

.p_top_message__box .p_top_message__img ._03 {
  position: absolute;
  top: 2.9rem;
  left: 35.6rem;
  width: 11.8rem;
}

.p_top_message__row .txt {
  width: 51.5rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  padding-top: 8rem;
}

.p_top_message__sliderWrap {
  position: relative;
  min-height: 60.7vw;
}

.p_top_message__sliderConts {
  position: absolute;
  transform: rotate(-10deg) translate(-50%, 0);
  top: 0;
  left: 50%;
  width: 120.2vw;
}

.p_top_message__slider {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}

.p_top_message__sliderInner {
  display: flex;
  justify-content: center;
}

.p_top_message_slide_item {
  width: 100%;
  flex-shrink: 0;
}

.p_top_about {
  padding: 4rem 0 0;
}

.p_top_about .p_top_about__lead {
  position: relative;
  text-align: left;
  justify-content: space-between;
}

.p_top_about__lead_txt {
  width: 51.5rem;
}

.p_top_about__lead_txt h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.p_top_about__list {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.6rem;
  margin-top: 6rem;
  z-index: 1;
}

.p_top_about__list li a {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
  background-color: var(--clr_main);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}

.p_top_about__list_txt {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  width: 100%;
}

.p_top_about__list_txt .jaTxt {
  font-size: 2.4rem;
  font-weight: 700;
}

.p_top_about__list_txt .enTxt {
  font-size: 1.6rem;
  margin-top: 1.2rem;
}

.p_top_about__list .c_more {
  position: absolute;
  right: 2rem;
  bottom: 1.7rem;
}

.p_top_about__bg {
  width: 100%;
  height: 45.8rem;
  margin-top: -12.8rem;
}

.p_top_about__bg img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 100%;
}

.p_top_development {
  padding: 15rem 0;
}

.p_top_development__lead {
  text-align: left;
  justify-content: space-between;
  gap: 9.4rem;
}

.p_top_development__lead_img {
  position: relative;
  width: 49.1rem;
  min-height: 70.3rem;
}

.p_top_development__lead_img ._01,
.p_top_development__lead_img ._02 {
  position: absolute;
}

.p_top_development__lead_img ._01 {
  top: 0;
  left: 0;
  width: 40.1rem;
}

.p_top_development__lead_img ._02 {
  right: 0;
  bottom: 0;
  width: 20.4rem;
}

.p_top_development__lead_ttl {
  width: 51.5rem;
}

.p_top_development__lead_ttl h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 5rem;
}

.p_top_development__list {
  margin-top: 8rem;
}

.p_top_development__list li a {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  padding: 2.1rem 0.6rem;
  border-bottom: 0.1rem solid var(--clr_gray);
}

.p_top_development__list li a:hover {
  color: var(--clr_main);
  border-color: var(--clr_main);
}

.p_top_development__list .enTxt {
  color: var(--clr_main);
}

.p_top_development__list li a::after {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.p_top_people {
  padding: 0 0 13.5rem;
}

.p_top_people .container {
  position: relative;
}

.p_top_people__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 124.9rem;
}

.p_top_people .p_top_people__lead {
  position: relative;
  text-align: left;
  justify-content: space-between;
  padding: 40.3rem 7.3rem 0;
}

.p_top_people .p_top_people__lead::before {
  content: "";
  position: absolute;
  top: 32.2rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.p_top_people__lead_ttl,
.p_top_people__lead_txt {
  position: relative;
}

.p_top_people__lead_txt {
  width: 51.5rem;
}

.p_top_people__lead_txt h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.p_top_people__lead_txt .txt {
  letter-spacing: 0.05em;
}

.p_top_people .c_more {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.p_top_people .c_people__sliderWrap {
  margin-top: 7.5rem;
}

.p_top_flow {
  padding: 0;
}

.p_top_flow__lead {
  align-items: center;
  gap: 10.6rem;
  text-align: left;
  position: relative;
  padding: 12rem 0;
}

.p_top_flow__lead * {
  color: #fff !important;
}

.p_top_flow__lead::before {
  content: "";
  width: 103.1rem;
  height: 100%;
  background: url(../img/top/flow_lead_bg_pc.jpg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 21.8rem;
  z-index: -1;
}

.p_top_flow__lead_img {
  width: 55.4rem;
}

.p_top_flow__lead_ttl {
  width: 39.7rem;
}

.p_top_flow__lead_ttl h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 6rem;
}

.p_top_flow__lead_ttl .txt {
  letter-spacing: 0.05em;
}

.p_top_faq__box {
  position: relative;
  text-align: left;
  width: 65rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
  padding: 3.5rem 4.4rem 4rem;
  background-color: #e8f5fa;
  background-image: url(../img/top/faq_img.jpg);
  background-size: auto 100%;
  background-position: center right;
}

.p_top_faq__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37.6rem;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 7.9%, #e8f5fa 47.37%);
}

.p_top_faq__ttl {
  position: relative;
}

.p_top_news__row {
  justify-content: space-between;
  text-align: left;
}

.p_top_news__row .c_post_list {
  width: 76.8rem;
}

/*about
  ---------------------------------------------------------*/
.p_about_anchor .c_anchor__list {
  grid-template-columns: repeat(3, 1fr);
}

.p_about_anchor .c_anchor__list li a {
  padding: 2rem 0.6rem 5rem;
}

.p_about_anchor .c_anchor__list li a::after {
  bottom: 2.4rem;
}

.p_about_lead {
  text-align: left;
  padding: 0;
}

.p_about_lead__row {
  gap: 16.3rem;
}

.p_about_lead__row_box {
  width: 51.9rem;
}

.p_about_lead__img {
  width: 42.2rem;
}

.p_about_lead .enTxt {
  font-size: 2.4rem;
  color: var(--clr_main);
  margin-bottom: 6.2rem;
}

.p_about_lead .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}

.p_about_lead .txt {
  line-height: 2.5;
}

.p_about_lead .name {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-top: 7.8rem;
}

.p_about_lead .name img {
  width: 18.9rem;
  margin: 0;
}

.p_about_business {
  padding: 28rem 0 22rem;
}

.p_about_business__bg {
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  max-width: 140rem;
  width: 100%;
}

.p_about_business .container {
  position: relative;
  text-align: left;
}

.p_about_business .txt {
  letter-spacing: 0.05em;
}

.p_about_business__lead {
  justify-content: space-between;
  color: #fff;
}

.p_about_business__lead .enTxt {
  color: #fff;
}

.p_about_business__lead_txt {
  width: 51.5rem;
}

.p_about_business__lead_txt h3 {
  font-size: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.p_about_business_cont {
  position: relative;
  margin-top: 8rem;
}

.p_about_business_cont .category {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: #fff;
  background-color: var(--clr_sub);
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -o-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  padding: 1rem;
}

.p_about_business_cont__txt {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 47.5rem;
  padding: 4.5rem 0 0 5rem;
  background-color: #fff;
}

.p_about_business_cont .theme {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.p_about_attempt {
  padding: 0 0 16.8rem;
}

.p_about_attempt__bg {
  max-width: 140rem;
  margin: 0 auto;
}

.p_about_attempt__lead {
  position: relative;
  padding: 8rem 0;
  background-color: #fff;
  margin-top: -12rem;
}

.p_about_attempt__lead::before {
  content: '';
  position: absolute;
  translate: -100% 0;
  top: 0;
  left: 0.1rem;
  width: 7.3rem;
  height: 100%;
  background-color: #fff;
}

.p_about_attempt__lead::after {
  content: '';
  position: absolute;
  translate: 100% 0;
  top: 0;
  right: 0.1rem;
  width: 50vw;
  height: 100%;
  background-color: #fff;
}

.p_about_attempt__conts {
  position: relative;
  text-align: left;
  min-height: 40.8rem;
  container-type: inline-size;
}

.p_about_attempt__conts+.p_about_attempt__conts {
  margin-top: 12rem;
}

.p_about_attempt__conts_txt {
  position: relative;
  width: 47.6rem;
}

.p_about_attempt__conts:nth-of-type(even) .p_about_attempt__conts_txt {
  margin-left: auto;
}

.p_about_attempt__conts_txt .catch {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.p_about_attempt__conts .copy {
  position: absolute;
}

.p_about_attempt__conts .copy_safety_measures {
  right: -6rem;
  bottom: 4rem;
  width: 36.4rem;
}

.p_about_attempt__conts .copy_human_development {
  right: -5rem;
  bottom: 9rem;
  width: 46.8rem;
}

.p_about_attempt__conts .copy_safety_measures {
  right: -5rem;
  bottom: 3rem;
  width: 39rem;
}

.p_about_attempt__conts .copy .p_about_attempt__conts_txt .txt {
  letter-spacing: 0.05em;
}

.p_about_attempt__conts:nth-of-type(odd) .p_about_attempt__conts_img {
  position: absolute;
  translate: min(-50cqw + 50vw, 15rem);
  top: 0px;
  right: 0px;
  width: 61.2rem;
}

.p_about_attempt__conts:nth-of-type(even) .p_about_attempt__conts_img {
  position: absolute;
  translate: max(calc(((100vw - 100cqw) / 2) * -1), -15rem) 0;
  top: 0;
  left: 0;
  width: 63.2rem;
}

.p_about_attempt__conts .p_about_attempt__conts_img:has(._02) ._01 {
  width: 53.5rem;
}

.p_about_attempt__conts .p_about_attempt__conts_img:has(._02) ._02 {
  position: absolute;
  width: 19.5rem;
  right: 0;
  bottom: -7rem;
}

/*下層 共通
---------------------------------------------------------*/
.c_lower_mvTxt {
  background-color: #e8f5fa;
}

.c_lower_mvTxt,
.c_lower_mvImg {
  padding-top: 11rem;
}

.c_lower_mvTxt .container,
.c_lower_mvImg .container {
  position: relative;
  z-index: 2;
}

.c_lower_mvImg__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c_lower_mvImg__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: initial;
}

.c_pankz {
  position: relative;
  z-index: 9;
}

.c_pankz ol {
  text-align: left;
  font-size: 1.2rem;
}

.c_pankz ol li {
  display: inline;
}

.c_pankz ol li a::after {
  content: ">";
  margin: 0 0.5em;
}

.c_pankz ol li,
.c_pankz ol li a,
.c_pankz ol li a::after {
  color: #fff;
}

#header._black+main .c_pankz ol li,
#header._black+main .c_pankz ol li a,
#header._black+main .c_pankz ol li a::after {
  color: #9e9e9e;
}

.c_pankz ol li a:hover {
  color: var(--clr_main);
}

.c_lower_mvTxt,
.c_lower_mvImg {
  position: relative;
}

.c_lower_mvTxt__ttl,
.c_lower_mvImg__ttl {
  color: var(--clr_main);
  padding: 8rem 0 11rem;
  text-align: left;
}

.c_lower_mvImg__ttl {
  color: #fff;
  padding: 18.7rem 0 10rem;
}

.c_lower_mvTxt__ttl h1,
.c_lower_mvImg__ttl h1 {
  position: relative;
  font-size: 2.4rem;
}

.c_lower_mvTxt__ttl .enTxt,
.c_lower_mvImg__ttl .enTxt {
  position: absolute;
  bottom: -2.8rem;
  left: -0.8rem;
  font-size: 13.6rem;
  color: #fff;
}

.c_lower_mvImg__ttl .enTxt {
  bottom: -2.8rem;
}

.c_lower_lead {
  position: relative;
  z-index: 1;
  background-color: var(--clr_main);
  padding: 7rem 0 46rem;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
}

.c_lower_lead__ttl {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.c_lower_lead__txt {
  line-height: 2;
}

.c_lower_lead__img {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48rem;
}

.c_lower_lead__img::before {
  content: "";
  width: 100%;
  height: 25rem;
  background: linear-gradient(0deg, rgba(76, 169, 199, 0) 0%, #4ca9c7 98%, #4ca9c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.c_lower_lead__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.c_lower_link {
  padding: 12.6rem 0 17rem;
}

.c_lower_link li+li {
  margin-top: 9rem;
}

.c_lower_link a {
  display: block;
}

.c_lower_link__ttl {
  position: relative;
}

.c_lower_link__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  padding: 3.2rem 5.8rem 0 0;
  gap: 5rem;
  align-items: flex-end;
}

.c_lower_link__txt .c_jaEnTtl {
  margin-bottom: 0.4rem;
  text-align: left;
}

.c_lower_link__cont {
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-top: 3.2rem;
}

.c_lower_link__cont .txt {
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.c_lower_overlay {
  padding: 0 0 5rem;
  max-width: 200rem;
  margin-inline: auto;
}

.c_lower_overlay__row {
  grid-template-columns: repeat(2, 1fr);
}

.c_lower_overlay__link {
  display: block;
  padding: 7rem;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.c_lower_overlay__link .c_jaEnTtl {
  color: #fff;
}

.c_lower_overlay__link .c_jaEnTtl .jaTxt {
  font-weight: 500;
}

.c_lower_overlay__link h2 {
  font-size: 1.8rem;
  padding-bottom: 2rem;
  line-height: 1.8;
}

.c_lower_overlay__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.c_lower_overlay__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: 1s;
}

.c_lower_overlay__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

a:hover .c_lower_overlay__img::before {
  background-color: rgba(0, 0, 0, 0.5);
}

a:hover .c_lower_overlay__img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  opacity: 1;
}

/*faq
---------------------------------------------------------*/
#faqPage .c_lower_mvTxt__ttl .enTxt {
  bottom: -1rem;
}

.p_faq_anchor .txt {
  margin: 0;
}

.p_faq_area {
  counter-reset: num;
  text-align: left;
  padding: 0 0 16rem;
}

.p_faq_attention {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.p_faq_box {
  color: var(--clr_main);
  /* counter-increment: num; */
}

.p_faq_box:not(:first-of-type) {
  margin-top: 8rem;
}

.p_faq_box .jaTxt {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  padding-left: 5rem;
  margin-bottom: 3.2rem;
}

.p_faq_box .jaTxt::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "MyFont";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.p_faq_wrap:not(:first-of-type) {
  margin-top: 2.4rem;
}

.p_faq_wrap {
  counter-increment: num;
}

.p_faq_wrap__theme {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #e8f5fa;
  padding: 1.1rem 6.2rem 1.1rem 10.2rem;
}

.p_faq_wrap__theme::before {
  content: "Q." counter(num, decimal-leading-zero);
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  font-family: "MyFont";
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.p_faq_wrap__theme::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 2.2rem;
  width: 1.3rem;
  height: 0.7rem;
  background-image: url(../img/faq/accordion_arrow.png);
  background-size: cover;
  transition: 0.2s;
  rotate: 180deg;
}

.p_faq_wrap__theme.act::after {
  rotate: 0deg;
}

.p_faq_wrap__answer {
  position: relative;
  color: #000;
  display: none;
}

.p_faq_wrap__answer {
  font-size: 1.4rem;
  line-height: 2;
  padding: 2.4rem 5.3rem 2.4rem 10.2rem;
}

.p_faq_wrap__answer::before {
  content: "A";
  position: absolute;
  top: 2.6rem;
  left: 2rem;
  font-family: "MyFont";
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--clr_sub);
}

.p_faq_contact {
  position: relative;
  margin-top: 15.5rem;
  padding: 5rem 0 4rem 5.2rem;
  border-radius: 1rem;
  background-image: url(../img/faq/contact_bg.jpg);
  background-size: cover;
  overflow: hidden;
}

.p_faq_contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #e8f5fa 27%);
}

.p_faq_contact__ttl {
  position: relative;
  z-index: 1;
}

.p_faq_contact__ttl .p_JaTtl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--clr_main);
  margin-bottom: 3rem;
}

.p_faq_contact__ttl .number {
  font-size: 5.6rem;
  color: var(--clr_main);
}

/*ourpeople
---------------------------------------------------------*/
.p_ourpeople_cont {
  padding-bottom: 14rem;
}

.p_ourpeople_cont__search {
  flex-wrap: wrap;
  gap: 1.2rem;
}

.p_ourpeople_cont__search button {
  text-align: left;
  width: 20.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--clr_main);
  background-color: #e8f5fa;
  border: 0.1rem solid transparent;
  border-radius: 10rem;
  padding: 1.2rem 2.7rem;
  transition: opacity 0.2s ease;
}

.p_ourpeople_cont__search button:hover {
  opacity: 0.8;
}

.p_ourpeople_cont__search button.is-active {
  border: 0.1rem solid #b6dceb;
}

.p_ourpeople_cont__search button span {
  position: relative;
  padding-left: 2.4rem;
}

.p_ourpeople_cont__search button span::before {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
}

.p_ourpeople_cont__search button span::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/ourpeople/search_check.jpg) no-repeat;
  background-size: cover;
  display: none;
}

.p_ourpeople_cont__search button.is-active span::after {
  display: block;
}

.p_ourpeople_cont .c_enJaTtl {
  font-weight: 500;
}

.p_ourpeople_cont .c_enJaTtl .enTxt {
  font-size: 4.8rem;
}

.p_ourpeople_cont__area {
  display: none;
  margin-top: 12rem;
}

.p_ourpeople_cont__area.is-active {
  display: block;
}

.p_ourpeople_cont__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 7.5rem 3.1rem;
  margin-top: 3.6rem;
}

/*peopledetail
---------------------------------------------------------*/
.p_peopledetail_mv {
  padding-top: 11rem;
}

.p_peopledetail_mv__area {
  position: relative;
  text-align: left;
  margin-top: 8rem;
  padding-top: 3.2rem;
}

.p_peopledetail_mv__bg {
  aspect-ratio: 1100/540;
}

.p_peopledetail_mv .catch {
  position: absolute;
  top: 0;
  right: 6.5rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 1;
}

.p_peopledetail_mv .catch span {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--clr_main);
  padding: 1.4rem 1rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.p_peopledetail_mv .conts {
  position: absolute;
  bottom: 0;
  letter-spacing: 0;
  background-color: #fff;
  padding: 2.7rem 7rem 0 0;
}

.p_peopledetail_mv .name {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p_peopledetail_mv .year {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.p_peopledetail_mv .jobtype {
  position: absolute;
  translate: 0 -100%;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  color: #fff;
  background-color: var(--clr_main);
  padding: 1rem;
}

.p_peopledetail_cont {
  padding-top: 12.6rem;
}

.p_peopledetail_cont__lead {
  position: relative;
  min-height: 40.8rem;
  container-type: inline-size;
}

.p_peopledetail_cont__lead:not(:first-of-type) {
  margin-top: 11.2rem;
}

.p_peopledetail_cont__lead:nth-of-type(odd) .p_peopledetail_cont__lead_img {
  position: absolute;
  translate: max(calc(((100vw - 100cqw) / 2) * -1), -15rem) 0;
  top: 0;
  left: 0;
  width: 61.2rem;
  aspect-ratio: 612/408;
}

.p_peopledetail_cont__lead:nth-of-type(even) .p_peopledetail_cont__lead_img {
  position: absolute;
  translate: min(calc((100vw - 100cqw) / 2), 15rem) 0;
  top: 0;
  right: 0;
  width: 61.2rem;
  aspect-ratio: 612/408;
}

.p_peopledetail_cont__lead:last-of-type {
  flex-direction: column;
}

.p_peopledetail_cont__row {
  position: relative;
  justify-content: space-between;
  padding: 6.5rem 0;
}

.p_peopledetail_cont__row::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -9rem;
  width: 55rem;
  height: calc(100% + 6rem);
  background-color: var(--clr_main);
}

.p_peopledetail_cont__lead:last-of-type .p_peopledetail_cont__lead_img {
  position: initial;
  translate: 0 0;
  width: 100%;
  z-index: 1;
  aspect-ratio: 1100/540;
}

.p_peopledetail_cont__lead_txt {
  position: relative;
  text-align: left;
  width: 51.5rem;
  z-index: 1;
}

.p_peopledetail_cont__lead:nth-of-type(odd) .p_peopledetail_cont__lead_txt {
  margin-left: auto;
}

.p_peopledetail_cont__lead:last-of-type .p_peopledetail_cont__lead_txt {
  margin-left: 0;
}

.p_peopledetail_cont__lead_txt .theme {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr_main);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  padding-left: 1.8em;
  text-indent: -1.8em;
}

.p_peopledetail_cont__lead:last-of-type .p_peopledetail_cont__lead_txt .theme {
  color: #4bd8ff;
}

.p_peopledetail_cont__lead_txt .catch {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.p_peopledetail_cont__lead:last-of-type .p_peopledetail_cont__lead_txt .catch {
  color: #fff;
}

.p_peopledetail_cont__lead_txt .txt {
  letter-spacing: 0.01em;
}

.p_peopledetail_other .container {
  position: relative;
}

.p_peopledetail_other__lead {
  margin-bottom: 2.5rem;
}

.p_peopledetail_other__lead .jaTxt {
  text-align: left;
  font-size: 2.4rem;
}

.p_peopledetail_other .c_more {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

/*news
---------------------------------------------------------*/

.p_newslist_cont {
  padding: 12rem 0 13rem;
}

.p_news_cont {
  padding-bottom: 13rem;
}

.c_post_wrap {
  text-align: left;
}

.pager {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 3rem;
}

.pager .next,
.pager .prev {
  display: block;
  display: block;
  width: 1.1rem;
  aspect-ratio: 1;
  background: url(../img/arrow_main.svg) center center no-repeat;
  background-size: contain;
  filter: brightness(0);
}

.pager .prev {
  transform: rotate(180deg);
}

.pager .current {
  color: var(--clr_main);
}

.pager a:hover {
  color: var(--clr_main);
  text-decoration: underline;
}

.c_post_list {
  text-align: left;
}

.c_post_list li a {
  border-bottom: 0.1rem solid var(--clr_gray);
  padding: 2.4rem 2.4rem 2.4rem 0;
}

.c_post_list li:first-of-type a {
  padding-top: 0;
}

.c_post_list_cont {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0 3.6rem;
}

.c_post_date {
  min-width: 8rem;
  font-size: 1.4rem;
  color: var(--clr_main);
}

.c_post_list__ttl {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  width: 100%;
  padding-right: 4rem;
  transition: 0.4s;
}

.c_post_list__ttl::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

a:hover .c_post_list__ttl {
  color: var(--clr_main);
}

.c_post_list li a:hover {
  border-color: var(--clr_main);
}

.c_post_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  margin-bottom: 4.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid var(--clr_gray);
}

.c_post_header h2 {
  font-size: 2.4rem;
  width: 100%;
}

.c_post_box__cont {
  line-height: 2;
  margin-bottom: 7rem;
}

.c_post_box__cont img{
  max-height: max-content;
}
.alignright {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  display: block;
}

.aligncenter {
  text-align: center;
  display: block;
}

.pagesetWrap {
  max-width: 54.2rem;
  margin: 0 auto;
}

.pageset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.postArrow a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--clr_main);
}

.postArrow.is-hidden a {
  visibility: hidden;
  pointer-events: none;
}

.postArrow a::after {
  content: "";
  display: block;
  width: 1.9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../img/arrow_main.svg) 50% 54% no-repeat;
  background-size: 50% auto;
}

.postArrow.prev a {
  flex-direction: row-reverse;
}

.postArrow.prev a::after {
  transform: rotate(180deg);
}

.postArrow a .enTxt {
  font-size: 1.8rem;
}

.postArrow._dmmy {
  pointer-events: none;
  visibility: hidden;
}

.pageset a:hover {
  color: var(--clr_sub);
  text-decoration: none;
}

.btnClrBtn {
  text-align: center;
}

.btnClrBtn a {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid #000;
  border-radius: 10rem;
  padding: 1.5rem 3rem;
}

.btnClrBtn a::after {
  content: "";
  display: block;
  width: 1.9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.1rem solid var(--clr_main);
  background: url(../img/arrow_main.svg) 50% 54% no-repeat;
  background-size: 50% auto;
  filter: brightness(0);
}

.btnClrBtn a:hover {
  color: #000;
  background-color: #f1f1f1;
}

/*flow
  ---------------------------------------------------------*/
.p_flow_lead {
  text-align: left;
  padding: 10rem 0 0;
}

.p_flow_lead__box .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
}

.p_flow_lead__box .attention {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.p_flow_schedule {
  text-align: left;
  padding: 17.5rem 0 13.4rem;
}

.p_flow_schedule__box {
  position: relative;
}

.p_flow_schedule__box::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 80rem;
  left: 50%;
  width: 100vw;
  height: 118rem;
  background-color: #E8F5FA;
}

.p_flow_schedule__box::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 75rem;
  background-color: #E8F5FA;
}

.p_flow_schedule__box .start {
  position: absolute;
  translate: 0 -90%;
  top: 0;
  left: 22rem;
  font-size: 13.6rem;
  color: #e8f5fa;
}

.p_flow_schedule__list {
  position: relative;
  z-index: 1;
}

.p_flow_schedule__item {
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p_flow_schedule__item .time {
  min-width: 16.3rem;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--clr_main);
}

.p_flow_schedule__item .time span {
  font-size: 2.2rem;
}

.p_flow_schedule__row {
  position: relative;
  width: 87rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 8.8rem;
}

.p_flow_schedule__row+.p_flow_schedule__row {
  /* padding-top: 8.8rem; */
  margin-left: auto;
}

.p_flow_schedule__row:has(.p_flow_schedule__img:nth-of-type(2)) {
  padding-bottom: 2.4rem;
}

.p_flow_schedule__row::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: -7.3rem;
  width: 0.1rem;
  height: 100%;
  background-color: var(--clr_sub);
}

.p_flow_schedule__item:first-of-type .p_flow_schedule__row:first-of-type::before {
  height: calc(100% - 2.2rem);
}

.p_flow_schedule__item:last-of-type .p_flow_schedule__row:last-of-type::before {
  display: none;
}

.p_flow_schedule__row dl {
  position: relative;
  width: 48.7rem;
}

.p_flow_schedule__row:not(:has(.p_flow_schedule__img)) dl {
  width: 100%;
}

.p_flow_schedule__row dl::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -7.8rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: var(--clr_sub);
}

.p_flow_schedule__row dt {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--clr_main);
  margin-bottom: 0.8rem;
}

.p_flow_schedule__row dd {
  line-height: 2;
  letter-spacing: 0.05em;
}

.p_flow_schedule__row dl+.p_flow_schedule__img {
  width: 30.1rem;
}

.p_flow_schedule__row .size_wide {
  padding: 4.8rem 0 2.4rem;
}

.p_flow_schedule__item:has(.size_wide) .time {
  padding-top: 42.3rem;
}

.p_flow_schedule__item .size_wide+dl {
  width: 100%;
}

/*development
  ---------------------------------------------------------*/
.p_development_lead {
  text-align: left;
  padding: 16.5rem 0 15rem;
}

.p_development_lead__row {
  justify-content: space-between;
}

.p_development_lead__row_box {
  max-width: 49rem;
}

.p_development_lead__row_box .jaTxt {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--clr_main);
  margin-bottom: 2.4rem;
}

.p_development_lead__row_box .txt {
  letter-spacing: 0.05em;
}

.p_development_lead__row_flow .flowList {
  position: relative;
}

.p_development_lead__row_flow .flowList::before {
  content: "";
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 0.2rem;
  height: 100%;
  background-color: var(--clr_sub);
}

.p_development_lead__row_flow .item {
  position: relative;
  background-color: #e8f5fa;
  padding: 1.2rem 2.3rem;
}

.p_development_lead__row_flow .item:not(:first-of-type) {
  margin-top: 3.2rem;
}

.p_development_lead__row_flow dl {
  align-items: center;
  gap: 3.6rem;
}

.p_development_lead__row_flow dt {
  min-width: 7.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr_sub);
}

.p_development_cont {
  padding: 0 0 29rem;
}

.p_development_cont_link {
  position: relative;
  overflow: initial;
  padding: 0 0 26rem;
}

.p_development_cont_link:last-of-type {
  padding-bottom: 0;
}

.p_development_cont_link a {
  position: relative;
}

.p_development_cont_link:nth-of-type(odd) a {
  color: #fff;
}

.p_development_cont_link__bg {
  position: absolute;
  translate: -50% 0;
  top: -1.2rem;
  left: 50%;
  max-width: 140rem;
  width: 100%;
}

.p_development_cont_link__img {
  background-color: #fff;
}

.p_development_cont_link__row {
  position: relative;
  justify-content: space-between;
  text-align: left;
  margin-top: 4rem;
}

.p_development_cont_link__row .enTxt {
  font-size: 6.4rem;
  margin-bottom: 1rem;
}

.p_development_cont_link:nth-of-type(even) .p_development_cont_link__row .enTxt {
  color: var(--clr_main);
}

.p_development_cont_link__row .jaTxt {
  font-weight: 500;
}

.p_development_cont_link__row .txt {
  max-width: 58rem;
  letter-spacing: 0.05em;
}

.p_development_cont_link .c_more {
  transition: 0.2s;
}

.p_development_cont_link:nth-of-type(even) a:hover .c_more {
  color: var(--clr_main);
}

.p_development_cont_link:nth-of-type(odd) a:hover .c_more {
  color: var(--clr_gray);
}

.p_development_cont_link:nth-of-type(odd) .c_more span::after {
  filter: brightness(0) invert(100%);
}

/*careerplan
  ---------------------------------------------------------*/
.p_careerplan_lead {
  text-align: left;
  padding: 16.5rem 0 15rem;
}

.p_careerplan_lead__row {
  justify-content: space-between;
}

.p_careerplan_lead__row_box {
  max-width: 49rem;
}

.p_careerplan_lead__row_box .jaTxt {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--clr_main);
  margin-bottom: 2.4rem;
}

.p_careerplan_lead__img {
  position: relative;
  width: 48.1rem;
}

.p_careerplan_lead__img ._01,
.p_careerplan_lead__img ._02 {
  position: absolute;
}

.p_careerplan_lead__img ._01 {
  top: 0;
  right: 0;
  width: 37rem;
}

.p_careerplan_lead__img ._02 {
  top: 25.6rem;
  left: 0;
  width: 18.8rem;
}

.p_careerplan_example {
  padding: 0 0 4rem;
}

.p_careerplan_example .jaTxt {
  text-align: left;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-bottom: 1.5rem;
}

.p_careerplan_example__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7rem;
}

.p_careerplan_example__item {
  padding: 3.7rem 2.8rem 2.6rem;
  background-color: #e8f5fa;
  border-radius: 1.2rem;
}

.p_careerplan_example__img {
  width: 20.6rem;
}

.p_careerplan_example__item .txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2rem;
}

.p_careerplan_welfare {
  padding: 12rem 0;
  background-color: #e8f5fa;
}

.p_careerplan_welfare__txt {
  text-align: left;
  /* width: 48.1rem; */
}

.p_careerplan_welfare__txt .enTxt {
  font-size: 10.4rem;
  color: #fff;
}

.p_careerplan_welfare__txt .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-bottom: 1.4rem;
}

.p_careerplan_welfare__txt .txt {
  letter-spacing: 0.01em;
}

.p_careerplan_welfare__list {
  grid-template-columns: repeat(7, 1fr);
  gap: 3.2rem 4.2rem;
  margin-top: 5rem;
}

.p_careerplan_welfare__img {
  border-radius: 0.8rem;
  overflow: hidden;
}

.p_careerplan_welfare__item .txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 1rem;
  color: var(--clr_main);
}

.p_careerplan_welfare__item .txt:has(span) {
  line-height: 1.2;
}

.p_careerplan_welfare__item .txt span {
  font-size: 1.2rem;
  font-weight: 400;
}

.p_careerplan_workplace {
  padding: 16rem 0 8rem;
}

.p_careerplan_workplace__row {
  position: relative;
  container-type: inline-size;
}

.p_careerplan_workplace__txt {
  text-align: left;
  width: 55.3rem;
}

.p_careerplan_workplace__txt .enTxt {
  font-size: 10.4rem;
  color: #e8f5fa;
  margin-bottom: 1.4rem;
}

.p_careerplan_workplace__txt .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-bottom: 1.4rem;
}

.p_careerplan_workplace__txt .txt {
  width: 48.1rem;
}

.p_careerplan_workplace__img {
  position: absolute;
  translate: min(calc(((100vw - 100cqw) / 2)), 15rem) 0;
  top: 0;
  right: 0;
  width: 64.1rem;
}

/*qualification
  ---------------------------------------------------------*/
#qualificationPage .c_lower_mvImg__ttl {
  padding: 16.7rem 0 12rem;
}

#qualificationPage .c_lower_mvImg__ttl .enTxt {
  bottom: -0.8rem;
}

.p_qualification_lead {
  text-align: left;
  padding: 16.5rem 0 8rem;
}

.p_qualification_lead__row {
  justify-content: space-between;
}

.p_qualification_lead__row_box {
  max-width: 49rem;
}

.p_qualification_lead__row_box .jaTxt {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--clr_main);
  margin-bottom: 2.4rem;
}

.p_qualification_lead__row_box .catch {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  background-color: var(--clr_main);
  padding: 0.3rem 1.5rem;
  margin-bottom: 1rem;
}

.p_qualification_lead__row_box .skillList {
  max-width: 30rem;
  margin-top: 7.2rem;
}

.p_qualification_lead__row_box .skillList .item {
  font-weight: 500;
  padding: 1.2rem;
  border-bottom: 0.1rem solid #e3e3e3;
}

.p_qualification_lead__row_box .skillList dl {
  justify-content: space-between;
}

.p_qualification_lead__row_box .skillList dt {
  position: relative;
  padding-left: 2.2rem;
}

.p_qualification_lead__row_box .skillList dt::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--clr_main);
}

.p_qualification_lead__row_box .skillCurrent {
  max-width: 30rem;
  text-align: right;
  font-size: 1.2rem;
  margin-top: 0.6rem;
}

.p_qualification_lead__img {
  position: relative;
  width: 48.1rem;
}

.p_qualification_lead__img ._01,
.p_qualification_lead__img ._02 {
  position: absolute;
}

.p_qualification_lead__img ._01 {
  top: 0;
  right: 0;
  width: 37rem;
}

.p_qualification_lead__img ._02 {
  top: 45.9rem;
  left: 0;
  width: 18.8rem;
}

/*training
  ---------------------------------------------------------*/
#trainingPage .c_lower_mvImg__ttl {
  padding: 16.7rem 0 12rem;
}

#trainingPage .c_lower_mvImg__ttl .enTxt {
  bottom: -0.8rem;
}

.p_training_lead {
  text-align: left;
  padding: 16.5rem 0 8rem;
}

.p_training_lead__row {
  justify-content: space-between;
}

.p_training_lead__row_box {
  max-width: 49rem;
}

.p_training_lead__row_box .jaTxt {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--clr_main);
  margin-bottom: 2.4rem;
}

.p_training_lead__img {
  position: relative;
  width: 48.1rem;
  min-height: 44.4rem;
}

.p_training_lead__img ._01,
.p_training_lead__img ._02 {
  position: absolute;
}

.p_training_lead__img ._01 {
  top: 0;
  right: 0;
  width: 37rem;
}

.p_training_lead__img ._02 {
  top: 25.6rem;
  left: 0;
  width: 18.8rem;
}

.p_training_cont {
  text-align: left;
  margin-top: 8rem;
  padding: 3.6rem 0 12.6rem;
  background-color: #e8f5fa;
}

.p_training_cont__wrap .enTxt {
  font-size: 11.2rem;
  color: #fff;
  margin-bottom: 1.4rem;
}

.p_training_cont__wrap .jaTxt {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-bottom: 1.4rem;
}

.p_training_cont__step {
  margin-top: 5.6rem;
}

.p_training_cont__row {
  position: relative;
  justify-content: space-between;
  gap: 8rem;
  padding: 8.8rem 0 0 21rem;
}

.p_training_cont__row:first-of-type {
  padding-top: 0;
}

.p_training_cont__row .date {
  position: absolute;
  top: 0;
  left: 0;
  width: 9.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: var(--clr_main);
  padding-top: 4.7rem;
}

.p_training_cont__row:first-of-type .date {
  padding-top: 2rem;
}

.p_training_cont__row .date::after {
  content: "";
  position: absolute;
  translate: -50% 100%;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5rem 4.8rem 0 4.8rem;
  border-color: var(--clr_main) transparent transparent transparent;
  z-index: 1;
}

.p_training_cont__row:nth-of-type(even) .date::after {
  border-color: #1e8ad3 transparent transparent transparent;
}

.p_training_cont__row .date .number {
  line-height: 1;
  padding-bottom: 0.6rem;
}

.p_training_cont__row .date .vertical {
  transform: translateX(-0.07em);
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -o-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  text-align: center;
  letter-spacing: 0.4em;
}

.p_training_cont__row:nth-of-type(even) .date {
  background-color: #1e8ad3;
}

.p_training_cont__row .stepTxt {
  width: 50rem;
  padding-top: 2.6rem;
}

.p_training_cont__row .enTxt {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--clr_main);
}

.p_training_cont__row .jaTxt {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.p_training_cont__img {
  width: 30rem;
}

/*numbers
  ---------------------------------------------------------*/
.p_numbers_cont {
  padding: 13rem 0 18rem;
  text-align: left;
}

.p_numbers_cont__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 4.2rem 3.8rem;
}

.p_numbers_cont__item {
  display: flex;
  flex-direction: column;
  translate: 0 50px;
  opacity: 0;
  background-color: #e8f5fa;
  padding: 5.3rem 4.9rem 3.4rem;
  transition:
    translate 0.7s ease,
    opacity 0.7s ease;
}

.p_numbers_cont__item.active {
  translate: 0 0;
  opacity: 1;
}

.p_numbers_cont__item .theme {
  width: fit-content;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  background-color: var(--clr_main);
  padding: 0.8rem 2.4rem;
}

.p_numbers_cont__data {
  width: fit-content;
  margin-top: 2rem;
}

.p_numbers_cont__item .number {
  position: relative;
  display: inline-block;
  font-size: 10.4rem;
  color: var(--clr_main);
  letter-spacing: -0.02em;
}

.p_numbers_cont__item .number::before {
  content: attr(data-value);
  color: transparent;
  visibility: hidden;
  word-wrap: break-word;
}

.p_numbers_cont__item .number:has(.dec)::before {
  font-size: 9.5rem;
}

.p_numbers_cont__item .number_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: right;
}

.p_numbers_cont__item .number .dec {
  font-size: 7.2rem;
}

.p_numbers_cont__item .unit {
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  color: #9e9e9e;
}

.p_numbers_cont__item .current {
  text-align: center;
  color: #9e9e9e;
  letter-spacing: 0.1em;
}

.p_numbers_cont__item .txt {
  padding-top: 1.6rem;
  margin-top: auto;
}

.p_numbers_cont__item .plus {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr_main);
  margin-top: 1rem;
}

.p_numbers_cont__item .plus img {
  width: 2.1rem;
  margin: 0;
}

.p_numbers_cont__item .illust {
  position: absolute;
}

.p_numbers_cont__item.item--founding .illust {
  top: 2rem;
  right: 0;
  width: 22.8rem;
}

.p_numbers_cont__item.item--sales .illust {
  top: 7.8rem;
  right: 4.5rem;
  width: 18.4rem;
}

.p_numbers_cont__item.item--employees .illust {
  top: 5.3rem;
  right: 4.4rem;
  width: 20.1rem;
}

.p_numbers_cont__item.item--retention .illust {
  top: 7.5rem;
  right: 4.6rem;
  width: 22.7rem;
}

.p_numbers_cont__item.item--training .illust {
  top: 12.3rem;
  right: 8.2rem;
  width: 21.2rem;
}

.p_numbers_cont__item.item--vehicles .illust {
  top: 3rem;
  right: 0;
  width: 28.2rem;
}

.p_numbers_cont__item.item--vehicles .p_numbers_cont__data {
  margin-top: 3.6rem;
}

.p_numbers_cont__item.item--new-cars .illust {
  top: 13rem;
  right: 3.8rem;
  width: 18rem;
}

.p_numbers_cont__item.item--gold-license .illust {
  top: 14.7rem;
  right: 4.2rem;
  width: 21.5rem;
}

.p_numbers_cont__item.item--holidays .illust {
  top: 4.7rem;
  right: 0.8rem;
  width: 24.3rem;
}

.p_numbers_cont__item.item--gold-license .p_numbers_cont__data {
  margin-top: 4.6rem;
}

.p_numbers_cont__item.item--new-cars .p_numbers_cont__data {
  margin-top: 3.6rem;
}

.p_numbers_cont__item.item--rehire .illust {
  top: 4.9rem;
  right: 0;
  width: 23.2rem;
}

.p_numbers_cont__item.item--rehire .p_numbers_cont__data {
  margin-top: 3.2rem;
}

.p_numbers_cont__item .plus .enTxt {
  font-size: 3.6rem;
  color: var(--clr_main);
}

.p_numbers_cont__item .plus .unit {
  font-size: 1.8rem;
}

.p_numbers_cont__item.item--satisfaction {
  padding: 5.3rem 2rem;
}

.p_numbers_cont__item.item--satisfaction .theme {
  margin: 0 auto;
}

.p_numbers_cont__item.item--satisfaction .current {
  margin-top: 0.6rem;
}

.p_numbers_cont__item.item--satisfaction .p_numbers_cont__row {
  justify-content: space-between;
}

.p_numbers_cont__item.item--satisfaction .heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #9E9E9E;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.p_numbers_cont__item.item--satisfaction .heading span {
  font-size: 2rem;
  color: var(--clr_main);
}

.p_numbers_cont__item.item--satisfaction .number {
  font-size: 7.5rem;
}

.p_numbers_cont__item.item--satisfaction .number::before {
  font-size: 7rem;
}

.p_numbers_cont__item.item--satisfaction .number .dec {
  font-size: 5.4rem;
}

.p_numbers_cont__item.item--new-cars .number {
  translate: -6% 0;
}

/*recruitinfo
---------------------------------------------------------*/
.p_recruitinfo_cont {
  padding: 12rem 0 8rem;
}

.p_recruitinfo__box {
  text-align: left;
  margin-top: 6rem;
}

.p_recruitinfo__list li+li {
  margin-top: 8.8rem;
}

.p_recruitinfo__list li {
  padding: 4.6rem 5.5rem 4rem;
  background-color: #E8F5FA;
}

.p_recruitinfo__list .area {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.4rem;
  background-color: #fff;
  margin-bottom: 1.6rem;
}

.p_recruitinfo__list .ttl {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  padding-bottom: 1.6rem;
  margin-bottom: 3rem;
  border-bottom: 0.1rem solid var(--clr_main);
}

.p_recruitinfo__list .item_row {
  justify-content: space-between;
  gap: 3.4rem;
}

.p_recruitinfo__list .img {
  width: 33.4rem;
  height: max-content;
  aspect-ratio: 334/216;
}

.p_recruitinfo__list .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p_recruitinfo__list dl {
  width: 42.2rem;
  flex-wrap: wrap;
}

.p_recruitinfo__list dt {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 10.6rem;
  font-weight: 500;
  color: #5E5E5E;
  background-color: #fff;
}

.p_recruitinfo__list dd {
  display: grid;
  place-content: center left;
  width: calc(100% - 10.6rem);
  min-height: 6.2rem;
  padding: 0.2rem 3.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.p_recruitinfo__list dt:not(:last-of-type) {
  border-bottom: 0.3rem solid #E8F5FA;
}

.p_recruitinfo__list dd:not(:last-of-type) {
  border-bottom: 0.3rem solid #C7DAE1;
}

.p_recruitinfo__list .c_arrow {
  position: relative;
  display: block;
  max-width: 20.8rem;
  margin: 5rem auto 0;
  padding: 1.5rem 7.4rem 1.5rem 4.3rem;
  background-color: var(--clr_main);
  border-radius: 6rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}

.p_recruitinfo__list .c_arrow:hover {
  background-color: #919191;
}

.p_recruitinfo__list .c_arrow::after {
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 3rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.1rem solid #fff;
  filter: brightness(0) invert(100%);
}

.p_recruitinfo_cont .pager {
  margin: 12rem auto;
}

.p_recruitinfo__detail {
  text-align: left;
}

.p_recruitinfo__detail .area {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--clr_main);
  background-color: #fff;
  padding: 0.8rem 1.4rem;
  border: 0.1rem solid var(--clr_main);
  margin-bottom: 1.6rem;
}

.p_recruitinfo__detail .ttl {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 0.1rem solid var(--clr_main);
  padding-bottom: 1.6rem;
}

.p_recruitinfo__detail dl {
  flex-wrap: wrap;
  margin-top: 3rem;
}

.p_recruitinfo__detail dt {
  text-align: center;
  width: 18rem;
  font-weight: 500;
  color: #5E5E5E;
  background-color: #E8F5FA;
  padding: 2.4rem 0;
}

.p_recruitinfo__detail dt:not(:last-of-type) {
  border-bottom: 0.3rem solid #C7DAE1;
}

.p_recruitinfo__detail dd {
  width: calc(100% - 18rem);
  padding: 2.4rem 0 2.4rem 4.5rem;
}

.p_recruitinfo__detail dd:not(:last-of-type) {
  border-bottom: 0.3rem solid #E8F5FA;
}

.p_recruitinfo__pageset {
  padding: 9rem 0 16.8rem;
}

.p_recruitinfo__pageset .pagesetWrap {
  max-width: 64rem;
  margin: 0 auto;
}

/*entry
---------------------------------------------------------*/
#entryPage .c_lower_mvTxt__ttl .enTxt {
  bottom: -1rem;
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.76vw;
  }
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {

  /*全体レイアウト
---------------------------------------------------------*/
  html {
    font-size: 2.7777777vw;
  }

  body {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  body.active {
    overflow: hidden;
  }

  article>section {
    padding: 4rem 0;
  }

  .txt {
    line-height: 1.8;
  }

  /*header
  -------------------------------------------------------*/
  .header_wrap {
    padding: 1rem 0;
  }

  .header_nav {
    display: none;
  }

  .header_logo img {
    max-height: 3.8rem;
  }

  #header .sns_group.onlysp {
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: 7rem;
    display: flex;
    gap: 2rem;
    margin: 0;
  }

  #header .sns_group .-instagram {
    width: 3rem;
  }

  #header .sns_group .-line {
    width: 3.3rem;
  }

  /*nav
  -----------------------------------------------------*/
  .nav_iconWrap {
    display: block;
    position: fixed;
    top: 0.2rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    z-index: 9999999999;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
  }

  .nav_icon {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 2rem;
    height: 1.8rem;
    z-index: 99999;
    display: block;
  }

  .nav_icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background: #fff;
    z-index: 10;
    transition: 0.2s;
  }

  ._black .nav_icon span {
    background: #000;
  }

  .active .nav_icon span {
    background: #000;
  }

  .scrollClass .nav_icon span {
    background: #000;
  }

  .nav_icon span:nth-of-type(1) {
    top: 0;
  }

  .nav_icon span:nth-of-type(2) {
    top: 0.8rem;
  }

  .nav_icon span:nth-of-type(3) {
    bottom: 0;
  }

  .nav_iconWrap.active span:nth-of-type(1) {
    -webkit-transform: translateY(0.8rem) rotate(45deg);
    transform: translateY(0.8rem) rotate(45deg);
  }

  .nav_iconWrap.active span:nth-of-type(2) {
    opacity: 0;
  }

  .nav_iconWrap.active span:nth-of-type(3) {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
    transform: translateY(-0.8rem) rotate(-45deg);
  }

  #nav_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 6rem 5% 4rem;
    background: #fff;
    visibility: hidden;
    opacity: 0;
  }

  #nav_menu.active {
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    z-index: 9990;
  }

  .active #header.scrollClass {
    box-shadow: none;
  }

  .nav_menu__logo {
    width: 16rem;
    margin-inline: auto;
  }

  .nav_menu__link .c_btn_row {
    justify-content: center;
    margin: 2rem 0;
  }

  .nav_menu__link .img {
    mix-blend-mode: screen;
    width: 80%;
    margin: 1rem auto 2rem;
    opacity: 0.8;
  }

  .nav_menu__link li {
    border-bottom: 1px solid #f2f2f2;
  }

  .nav_menu__link li:first-child {
    border-top: 1px solid #f2f2f2;
  }

  .nav_menu__link li a {
    font-size: 1.5rem;
    text-align: left;
    display: block;
    padding: 1.2rem 1.5rem;
    position: relative;
  }

  .nav_menu__link>ul>li>a {
    font-weight: 500;
  }

  .nav_menu__link ul.child {
    margin-bottom: 1rem;
  }

  .nav_menu__link ul.child li {
    text-align: left;
    border: none;
  }

  .nav_menu__link ul.child li a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    margin-left: 1rem;
  }

  .nav_menu__link ul.child li a::before {
    content: "";
    width: 1rem;
    height: 0.1rem;
    background-color: #000;
    display: inline-block;
  }

  .nav_menu__link ul.child li a::after {
    right: -1rem;
  }

  .nav_menu__address {
    text-align: left;
    margin-top: 2rem;
  }

  .nav_menu__address .name {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .nav_menu__address .address span {
    display: block;
    margin-bottom: 0.4rem;
  }

  /*footer
  ---------------------------------------------------------*/
  .footer {
    padding: 5rem 0 0;
  }

  .footer_logo {
    max-width: 16.8rem;
  }

  .footer_middle {
    flex-direction: column;
  }

  .footer_company .name {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .footer_company .address span {
    margin-bottom: 1rem;
  }

  .footer_company .footer_corpbtn {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    width: 80%;
    margin: 1.8rem auto 0;
  }

  .footer_nav {
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap;
  }

  .footer_nav>ul {
    width: 46%;
  }

  .footer_nav ul li+li,
  .footer_nav ul.child {
    margin-top: 0.6rem;
  }

  .footer_nav ul.child li a {
    gap: 1rem;
  }

  .footer_nav ul.child li a::before {
    width: 0.8rem;
    height: 0.1rem;
  }

  .footer_policy {
    gap: 1rem;
    font-size: 1.2rem;
    flex-direction: column;
    width: 100%;
  }

  .footer_copyRight {
    text-align: center;
  }

  .footer_hero {
    padding: 15rem 2rem 3.3rem;
  }

  .footer_hero__bg {
    height: 70.3rem;
  }

  .footer_hero__bg::before {
    height: 33rem;
  }

  .footer_hero__box {
    width: 100%;
  }

  .footer_hero__catch {
    font-size: 4rem;
  }

  .footer_hero__box .enImg {
    top: 24%;
    right: -4%;
  }

  /*共通 パーツ
  ---------------------------------------------------------*/
  .c_btn_row {
    gap: 1rem;
  }

  .c_btn a {
    width: 15rem;
    padding: 1.2rem;
  }

  .c_btn._recruit a::after {
    width: 1.2rem;
    margin-left: 1rem;
  }

  .c_more {
    margin-top: 2rem;
  }

  .c_more a,
  .c_more span {
    gap: 1rem;
  }

  .c_more a::after,
  .c_more span::after,
  .c_arrow::after {
    width: 1.7rem;
    height: 1.7rem;
  }

  .c_arrow::after {
    width: 2.4rem;
    height: 2.4rem;
  }

  .c_enJaTtl {
    font-size: 1.6rem;
  }

  .c_enJaTtl span {
    font-size: 4.2rem;
    margin-bottom: 0;
  }

  .c_jaEnTtl .jaTxt {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .c_enNum {
    font-size: 1.2rem;
  }

  .c_enNum span {
    font-size: 4.4rem;
  }

  .c_anchor {
    padding: 4rem 0 2rem;
  }

  .c_anchor .txt {
    margin-bottom: 3.2rem;
  }

  .c_anchor__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0;
  }

  .c_anchor__list li a {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0;
    padding-bottom: 1.5rem;
  }

  .c_anchor__list li:nth-child(3) a {
    border-left: 0.1rem solid var(--clr_main);
  }

  .c_anchor__list li a::after {
    width: 1.2rem;
    margin: 0.8rem auto 0;
  }

  .c_anchor__list li a:has(.number) {
    padding-top: 2.2rem;
  }

  .c_anchor__list li a .enTxt {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  /* ENTRY */

  .c_entry {
    background: url(../img/entry_bg_sp.jpg) center no-repeat;
    background-size: cover;
    padding: 0;
  }

  .c_entry__row {
    max-height: 60rem;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas:
      "d d d d e"
      "d d d d f"
      "a a c c c"
      "b b c c c";
  }

  .c_entry__box {
    padding: 0;
    margin: auto;
  }

  .c_entry__box__inner {
    max-width: 42rem;
    margin-inline: auto;
  }

  .c_entry__box .c_enTtl {
    font-size: 4.2rem;
  }

  .c_entry__cont_list {
    margin-top: 1rem;
  }

  .c_entry__cont_list li a {
    font-size: 1.6rem;
    gap: 2rem;
    padding: 2rem 4rem 2rem 0;
  }

  .c_entry__cont_list li a::after {
    right: 0;
  }

  /* 社員スライダー */
  .c_people__sliderWrap .c_people__slider {
    width: calc(100% - 5%);
    margin-bottom: 4rem;
  }

  .c_people__sliderWrap .c_slide_item {
    margin-right: 1.6rem;
  }

  .c_slide_item a {
    position: relative;
    display: block;
    padding-top: 1.6rem;
  }

  .c_slide_item .img {
    aspect-ratio: 6/7;
    overflow: hidden;
  }

  .c_people__sliderWrap .slider_nav {
    width: 20rem;
  }

  /* 下層point */
  .c_point_cont__wrap .enTxt {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }

  .c_point_cont__wrap .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .c_point_cont__row {
    flex-direction: column;
    padding: 4rem 0;
    gap: 2rem;
  }

  .c_point_cont__row:nth-of-type(even) {
    flex-direction: column;
  }

  .c_point_cont__img {
    width: 100%;
  }

  .c_point_cont__row .pointTxt {
    width: 100%;
    padding-top: 0;
  }

  .c_point_cont__row .enTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .c_point_cont__row .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .c_point_cont__row .c_arrow {
    margin-top: 1rem;
    padding: 1.5rem 6.4rem 1.5rem 2.8rem;
  }

  /* 下層人材育成index */
  .c_development_index {
    padding-bottom: 4rem;
  }

  .c_development_index__row {
    flex-direction: column;
  }

  .c_development_index__row .indexTtl {
    width: 100%;
    padding: 7rem 1rem 0;
  }

  .c_development_index__row .indexTtl .jaTxt {
    font-size: 1.6rem;
  }

  .c_development_index__row .indexTtl .enTxt {
    font-size: 4.2rem;
  }

  .c_development__list {
    padding: 2rem 2rem 4rem;
  }

  .c_development__list a {
    gap: 2rem;
  }

  .c_development__list a span {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }

  .c_development_index .c_arrow::after {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1rem;
    height: 2.1rem;
    border: 0.1rem solid #fff;
    filter: brightness(0) invert(100%);
  }

  /*form contact
  ---------------------------------------------------------*/
  .c_contact_txt {
    margin-bottom: 5rem;
  }

  .c_contact_txt h2 {
    font-size: 1.8rem;
  }

  .radioWrap {
    gap: 1rem 2rem;
  }

  .formBox select {
    background-position: center right 0.7rem;
    padding-right: 3rem !important;
  }

  .formTxt {
    margin-bottom: 2rem;
  }

  .formWrap {
    padding: 0;
  }

  .formBox dt,
  .formBox dd {
    width: 100%;
    padding: 1rem 0 0;
    border: none !important;
  }

  .formBox dt.hide {
    display: none;
  }

  .formBox dt {
    padding: 1rem;
    background: #f9f9f9;
  }

  .confirmWrap .formBox dt {
    padding: 1rem;
  }

  .formBox dt::before {
    vertical-align: 0.2em;
    margin-right: 1rem;
  }

  .formBox dd {
    padding: 1rem 1rem 3rem;
  }

  .formName>.txt {
    width: 100%;
    margin: 0.5rem 0 !important;
  }

  .formName .txt span {
    text-align: right;
  }

  .formBox .licenseWrap+.fileWrap {
    margin: 0;
  }

  .zipBtn {
    font-size: 1.2rem;
    padding: 7px;
    margin-left: 2px;
    max-height: 4.4rem;
  }

  .zipwrap input {
    max-width: 17rem;
  }

  .formBox input[type="text"],
  .formBox input[type="tel"],
  .formBox input[type="email"],
  .formBox select,
  .formBox textarea {
    padding: 1.2rem 0.7rem;
    font-size: 1.4rem;
  }

  .formBox input[type="text"].size-s {
    max-width: 12rem;
  }

  .formBox input::placeholder,
  .formBox textarea::placeholder {
    font-size: 1.4rem;
  }

  .formBtn {
    margin-top: 1rem;
  }

  .formWrap input[type="submit"],
  .formWrap input[type="button"],
  .formWrap button.button._grey {
    min-width: 26rem;
    padding: 2rem 1rem;
    background-size: 2rem auto;
    margin: 0 auto;
  }

  .btm_tel {
    margin-top: 2rem;
    padding: 2rem 1rem;
  }

  .btm_tel dt {
    font-size: 1.8rem;
  }

  .btm_tel dd {
    text-align: center;
  }

  .btm_tel dd .enTxt {
    font-size: 3.5rem;
    white-space: nowrap;
  }

  .thxBox .txt {
    text-align: left;
  }

  /*下層 共通
  ---------------------------------------------------------*/
  .c_lower_mvImg,
  .c_lower_mvTxt {
    padding-top: 5.4rem;
  }

  .c_pankz ol {
    font-size: 1.1rem;
  }

  .c_lower_mvTxt__ttl,
  .c_lower_mvImg__ttl {
    padding: 2rem 0 5rem;
  }

  .c_lower_mvTxt__ttl h1,
  .c_lower_mvImg__ttl h1 {
    font-size: 2rem;
  }

  .c_lower_mvTxt__ttl .enTxt,
  .c_lower_mvImg__ttl .enTxt {
    bottom: -1rem;
    left: -0.5rem;
    font-size: 4.8rem;
  }

  .c_lower_lead {
    padding: 4rem 0 28rem;
  }

  .c_lower_lead__ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .c_lower_lead__img {
    height: 26rem;
  }

  .c_lower_lead__img::before {
    height: 12rem;
  }

  .c_lower_link {
    padding: 5rem 0;
  }

  .c_lower_link li+li {
    margin-top: 4rem;
  }

  .c_lower_link__img img {
    height: 20rem;
    object-fit: cover;
  }

  .c_lower_link__txt {
    padding: 1.4rem 2rem 0 0;
    gap: 1.4rem;
  }

  .c_lower_link__cont {
    margin-top: 2.2rem;
    flex-direction: column;
  }

  .c_lower_link__cont .txt {
    letter-spacing: 0.07em;
  }

  .c_lower_link__cont .c_more {
    margin-top: 1rem;
  }

  .c_lower_overlay {
    padding: 0 0 2rem;
  }

  .c_lower_overlay__row {
    grid-template-columns: repeat(1, 1fr);
  }

  .c_lower_overlay__link {
    padding: 2.6rem;
  }

  .c_lower_overlay__link h2 {
    font-size: 1.4rem;
    padding-bottom: 0.8rem;
    line-height: 1.6;
  }

  a:hover .c_lower_overlay__img img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  /*top
  ---------------------------------------------------------*/
  .p_top_mv .container {
    height: 100%;
    max-width: 190rem;
  }

  .p_top_mv__box {
    bottom: 12rem;
  }

  .p_top_mv__box h1 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .p_top_mv__box .catch {
    font-size: 4rem;
  }

  .p_top_mv__box .enImg {
    top: 13rem;
    left: 4rem;
    width: 100%;
  }

  .c__mv_scroll {
    bottom: 2rem;
    right: 0.6rem;
  }

  .c__mv_scroll::after {
    width: 0.8rem;
  }

  .p_top_message {
    padding: 4rem 0 0;
  }

  .p_top_message__row {
    flex-direction: column;
  }

  .p_top_message__box {
    position: relative;
  }

  .p_top_message__box .enTxt {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .p_top_message__box .jaTxt {
    font-size: 2.6rem;
  }

  .p_top_message__box .enImg {
    top: 8.8rem;
    left: 1.5rem;
    width: 18.8rem;
  }

  .p_top_message__box .p_top_message__img {
    margin-top: 6.6rem;
  }

  .p_top_message__box .p_top_message__img ._01 {
    width: 15rem;
  }

  .p_top_message__box .p_top_message__img ._02 {
    top: 7rem;
    left: 15.8rem;
    width: 9.9rem;
  }

  .p_top_message__box .p_top_message__img ._03 {
    top: 1.9rem;
    left: 24.6rem;
    width: 7.8rem;
  }

  .p_top_message__row .txt {
    width: 100%;
    padding-top: 4rem;
  }

  .p_top_about {
    padding: 4rem 0 0;
  }

  .p_top_about .p_top_about__lead {
    flex-direction: column;
  }

  .p_top_about__lead_txt {
    width: 100%;
  }

  .p_top_about__lead_txt h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-bottom: 0.6rem;
    line-height: 1.9;
  }

  .p_top_about__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  .p_top_about__list li a {
    position: relative;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
    background-color: var(--clr_main);
  }

  .p_top_about__list_txt .jaTxt {
    font-size: 1.8rem;
  }

  .p_top_about__list_txt .enTxt {
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }

  .p_top_about__list .c_more {
    position: absolute;
    right: 2rem;
    bottom: 1.7rem;
  }

  .p_top_about__bg {
    height: 30rem;
    margin-top: -10rem;
  }

  .p_top_about__bg img {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 100%;
  }

  .p_top_development {
    padding: 4rem 0;
  }

  .p_top_development__lead {
    flex-direction: column;
    gap: 2rem;
  }

  .p_top_development__lead_img {
    width: 100%;
    min-height: initial;
  }

  .p_top_development__lead_img ._01,
  .p_top_development__lead_img ._02 {
    position: absolute;
  }

  .p_top_development__lead_img ._01 {
    position: initial;
    width: 80%;
    aspect-ratio: 4/3;
  }

  .p_top_development__lead_img ._01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .p_top_development__lead_img ._02 {
    position: initial;
    margin-top: -4rem;
    margin-left: auto;
    width: 12rem;
  }

  .p_top_development__lead_ttl {
    width: 100%;
  }

  .p_top_development__lead_ttl h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-bottom: 0.6rem;
    line-height: 1.9;
  }

  .p_top_development__list {
    margin-top: 1rem;
  }

  .p_top_development__list li a {
    font-size: 1.6rem;
    gap: 2rem;
    padding: 2rem 4rem 2rem 0;
  }

  .p_top_development__list .enTxt {
    color: var(--clr_main);
  }

  .p_top_development__list li a::after {
    right: 0;
  }

  .p_top_people {
    padding: 0 0 4rem;
  }

  .p_top_people__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 106%;
  }

  .p_top_people .p_top_people__lead {
    flex-direction: column;
    padding: 11rem 2rem 0;
  }

  .p_top_people .p_top_people__lead::before {
    top: 8rem;
  }

  .p_top_people__lead_ttl,
  .p_top_people__lead_txt {
    position: relative;
  }

  .p_top_people__lead_txt {
    width: 100%;
  }

  .p_top_people__lead_txt h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-bottom: 0.6rem;
    line-height: 1.9;
  }

  .p_top_people__lead_txt .txt {
    letter-spacing: 0.05em;
  }

  .p_top_people .c_more {
    text-align: center;
    position: initial;
  }

  .p_top_people .c_people__sliderWrap {
    margin-top: 4rem;
  }

  .p_top_flow__lead {
    gap: 2.6rem;
    padding: 4rem 2rem 3rem 0;
    flex-direction: column-reverse;
  }

  .p_top_flow__lead::before {
    right: 0;
    left: initial;
    width: 106%;
    height: 80%;
  }

  .p_top_flow__lead_img {
    width: 100%;
  }

  .p_top_flow__lead_ttl {
    width: 100%;
  }

  .p_top_flow__lead_ttl h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-bottom: 0.6rem;
    line-height: 1.9;
  }

  .p_top_faq__box {
    width: 100%;
    padding: 2.8rem 2.4rem;
    background-position: right 45% center;
  }

  .p_top_faq__box::before {
    width: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 7.9%, #e8f5fa 47.37%);
  }

  .p_top_faq__ttl {
    position: relative;
  }

  .p_top_news__row {
    flex-direction: column;
    gap: 3rem;
  }

  .p_top_news__row .c_post_list {
    width: 100%;
  }

  /*faq
  ---------------------------------------------------------*/
  #faqPage .c_lower_mvTxt__ttl .enTxt {
    bottom: 0;
  }

  .p_faq_area {
    padding: 0 0 8rem;
  }

  .p_faq_attention {
    font-size: 1.2rem;
  }

  .p_faq_box:not(:first-of-type) {
    margin-top: 4rem;
  }

  .p_faq_box .jaTxt {
    font-size: 1.6rem;
    padding-left: 4rem;
    margin-bottom: 2rem;
  }

  .p_faq_box .jaTxt::before {
    font-size: 2.4rem;
  }

  .p_faq_wrap:not(:first-of-type) {
    margin-top: 2rem;
  }

  .p_faq_wrap__theme {
    font-size: 1.6rem;
    padding: 1rem 5.2rem 1rem 5.8rem;
  }

  .p_faq_wrap__theme::before {
    font-size: 1.8rem;
    left: 1rem;
  }

  .p_faq_wrap__answer {
    line-height: 1.8;
    padding: 2rem 0 2rem 5.8rem;
  }

  .p_faq_wrap__answer::before {
    top: 2.6rem;
    left: 1rem;
    font-size: 3.2rem;
  }

  .p_faq_contact {
    margin-top: 4rem;
    padding: 2.8rem 2.4rem;
    background-position: right 10% center;
  }

  .p_faq_contact::before {
    width: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #e8f5fa 50%);
  }

  .p_faq_contact__ttl .p_JaTtl {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .p_faq_contact__ttl .txt {
    margin-bottom: 0.8rem;
  }

  .p_faq_contact__ttl .number {
    font-size: 2.6rem;
  }

  /*ourpeople
  ---------------------------------------------------------*/
  .p_ourpeople_cont {
    padding-bottom: 4rem;
  }

  .p_ourpeople_cont__search button {
    width: calc((100% - 1.2rem) / 2);
    font-size: 1.2rem;
    padding: 1.2rem 2.7rem;
  }

  .p_ourpeople_cont__area {
    margin-top: 4rem;
  }

  .p_ourpeople_cont .c_enJaTtl .enTxt {
    font-size: 4rem;
  }

  .p_ourpeople_cont__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    margin-top: 1rem;
  }

  .p_ourpeople_cont__list .c_slide_item .conts {
    padding: 1rem 0 0;
  }

  .p_ourpeople_cont__list .c_slide_item .catch {
    right: 0.8rem;
  }

  .p_ourpeople_cont__list .c_slide_item .catch span {
    font-size: 1.2rem;
    padding: 0.8rem 0.4rem;
  }

  .p_ourpeople_cont__list .c_slide_item .name {
    font-size: 1.4rem;
  }

  .p_ourpeople_cont__list .c_slide_item .year {
    font-size: 1.2rem;
  }

  /*peopledetail
  ---------------------------------------------------------*/
  .p_peopledetail_mv {
    padding-top: 5.4rem;
  }

  .p_peopledetail_mv__area {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .p_peopledetail_mv__bg {
    aspect-ratio: 4/3;
  }

  .p_peopledetail_mv__bg img {
    object-fit: cover;
    height: 100%;
  }

  .p_peopledetail_mv .catch {
    right: 2rem;
  }

  .p_peopledetail_mv .catch span {
    font-size: 1.4rem;
    padding: 0.8rem 0.3rem;
    line-height: 1;
  }

  .p_peopledetail_mv .conts {
    padding: 2rem 5rem 0 0;
  }

  .p_peopledetail_mv .name {
    font-size: 1.8rem;
  }

  .p_peopledetail_mv .year {
    font-size: 1.2rem;
  }

  .p_peopledetail_mv .jobtype {
    font-size: 1.6rem;
    padding: 0.6rem;
  }

  .p_peopledetail_cont {
    padding-top: 4rem;
  }

  .p_peopledetail_cont__lead {
    min-height: initial;
    flex-direction: column;
  }

  .p_peopledetail_cont__lead:not(:first-of-type) {
    margin-top: 4rem;
  }

  .p_peopledetail_cont__lead:nth-of-type(odd) .p_peopledetail_cont__lead_img,
  .p_peopledetail_cont__lead:nth-of-type(even) .p_peopledetail_cont__lead_img {
    position: initial;
    translate: 0 0;
    width: 85%;
    margin-bottom: 2rem;
  }

  .p_peopledetail_cont__lead:nth-of-type(even) .p_peopledetail_cont__lead_img {
    margin-left: auto;
  }

  .p_peopledetail_cont__lead:last-of-type .p_peopledetail_cont__lead_img {
    width: 100%;
  }

  .p_peopledetail_cont__row {
    flex-direction: column;
    padding: 0 0 4rem;
  }

  .p_peopledetail_cont__row::before {
    top: -6rem;
    bottom: initial;
    left: -6%;
    width: 100vw;
    height: calc(100% + 6rem);
  }

  .p_peopledetail_cont__row .txt {
    color: #fff;
  }

  .p_peopledetail_cont__lead_txt {
    width: 100%;
  }

  .p_peopledetail_cont__lead_txt .theme {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .p_peopledetail_cont__lead_txt .catch {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .p_peopledetail_other {
    padding-top: 0;
  }

  .p_peopledetail_other__lead {
    margin-bottom: 2rem;
  }

  .p_peopledetail_other__lead .jaTxt {
    font-size: 1.8rem;
  }

  .p_peopledetail_other .c_more {
    text-align: center;
    position: initial;
  }

  /*news
  ---------------------------------------------------------*/

  .p_newslist_cont,
  .p_news_cont {
    padding: 4rem 0;
  }

  .c_post_area {
    display: block;
  }

  .pager {
    margin-top: 5rem;
  }

  .c_post_header h2 {
    font-size: 1.6rem;
  }

  .c_post_header {
    margin-bottom: 2rem;
  }

  .c_post_list li a {
    padding: 2rem 0;
    gap: 1.8rem;
    align-items: flex-start;
  }

  .c_post_list_cont {
    gap: 1rem 1rem;
  }

  .c_post_date {
    font-size: 1.2rem;
  }

  .c_post_list__ttl {
    font-size: 1.4rem;
    width: 100%;
    padding-right: 4rem;
  }

  .c_post_box__cont {
    margin-bottom: 6rem;
  }

  .pageset {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .postArrow a {
    gap: 0.5rem;
  }

  .btnClrBtn {
    margin: 0 auto;
    order: 3;
  }

  /*about
   ---------------------------------------------------------*/
  #aboutPage .c_lower_mvImg__ttl .enTxt {
    font-size: 4.6rem;
  }

  .p_about_anchor .c_anchor__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p_about_anchor .c_anchor__list li a {
    padding: 0.6rem 0.6rem 1.5rem;
  }

  .p_about_anchor .c_anchor__list li a::after {
    bottom: 0;
  }

  .p_about_lead__row {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .p_about_lead__row_box {
    width: 100%;
  }

  .p_about_lead__img {
    width: 100%;
    aspect-ratio: 5 / 6;
  }

  .p_about_lead__img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .p_about_lead .enTxt {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .p_about_lead .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .p_about_lead .txt {
    line-height: 2.5;
  }

  .p_about_lead .name {
    gap: 2.2rem;
    margin-top: 2rem;
  }

  .p_about_lead .name img {
    width: 16rem;
  }

  .p_about_business {
    padding: 8rem 0;
    margin-top: 4rem;
  }

  .p_about_business__bg {
    top: -3rem;
    max-width: initial;
    width: 200vw;
  }

  .p_about_business__lead {
    flex-direction: column;
  }

  .p_about_business__lead_txt {
    width: 100%;
  }

  .p_about_business__lead_txt h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-bottom: 0.6rem;
    line-height: 1.9;
  }

  .p_about_business_cont {
    margin-top: 4rem;
  }

  .p_about_business_cont .category {
    font-size: 1.2rem;
    padding: 0.8rem 0.4rem;
  }

  .p_about_business_cont__txt {
    position: relative;
    max-width: 28rem;
    padding: 2rem 0 0 2rem;
    margin-top: -3rem;
    margin-left: auto;
    z-index: 1;
  }

  .p_about_business_cont .theme {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .p_about_attempt {
    padding: 0 0 8rem;
  }

  .p_about_attempt__bg {
    max-width: initial;
  }

  .p_about_attempt__lead {
    padding: 3rem 2rem;
    margin-top: -3rem;
  }

  .p_about_attempt__lead::before {
    display: none;
  }

  .p_about_attempt__conts {
    flex-direction: column;
    min-height: initial;
  }

  .p_about_attempt__conts+.p_about_attempt__conts {
    margin-top: 4rem;
  }

  .p_about_attempt__conts_txt {
    width: 100%;
  }

  .p_about_attempt__conts_txt .catch {
    font-size: 1.8rem;
  }

  .p_about_attempt__conts .copy {
    right: 0;
    bottom: -3.5rem;
    width: 60%;
  }

  .p_about_attempt__conts_txt .txt {
    letter-spacing: 0.05em;
  }

  .p_about_attempt__conts:nth-of-type(odd) .p_about_attempt__conts_img,
  .p_about_attempt__conts:nth-of-type(even) .p_about_attempt__conts_img {
    position: initial;
    translate: 0;
    width: 100%;
    margin-top: 5rem;
  }

  .p_about_attempt__conts .p_about_attempt__conts_img:has(._02) {
    padding-bottom: 4rem;
  }

  .p_about_attempt__conts .p_about_attempt__conts_img:has(._02) ._01 {
    width: 85%;
  }

  .p_about_attempt__conts .p_about_attempt__conts_img:has(._02) ._02 {
    width: 30%;
    right: 0;
    bottom: 0;
  }

  /*flow
  ---------------------------------------------------------*/
  .p_flow_lead {
    padding: 4rem 0 0;
  }

  .p_flow_lead__box .jaTxt {
    font-size: 1.8rem;
  }

  .p_flow_schedule {
    padding: 6rem 0 4rem;
  }

  .p_flow_schedule__box::before {
    top: 72rem;
    height: 100rem;
  }

  .p_flow_schedule__box::after {
    height: 40rem;
  }

  .p_flow_schedule__box .start {
    left: 10rem;
    font-size: 5rem;
  }

  .p_flow_schedule__item .time {
    min-width: 7.2rem;
    font-size: 2rem;
    padding-top: 0.3rem;
  }

  .p_flow_schedule__item .time span {
    font-size: 1.4rem;
  }

  .p_flow_schedule__row {
    flex-direction: column;
    width: 21rem;
    padding-bottom: 4rem;
  }

  .p_flow_schedule__row+.p_flow_schedule__row {
    /* padding-top: 8.8rem; */
    margin-left: auto;
  }

  .p_flow_schedule__row:has(.p_flow_schedule__img:nth-of-type(2)) {
    padding-bottom: 2.4rem;
  }

  .p_flow_schedule__row::before {
    left: -1.4rem;
  }

  .p_flow_schedule__item:last-of-type .p_flow_schedule__row:last-of-type::before {
    display: none;
  }

  .p_flow_schedule__row dl {
    width: 100%;
  }

  .p_flow_schedule__row:not(:has(.p_flow_schedule__img)) dl {
    width: 100%;
  }

  .p_flow_schedule__row dl::before {
    top: 0.7rem;
    left: -1.8rem;
    width: 0.9rem;
    height: 0.9rem;
  }

  .p_flow_schedule__row dt {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .p_flow_schedule__row dd {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .p_flow_schedule__row dl+.p_flow_schedule__img {
    width: 100%;
    margin-top: 1.6rem;
  }

  .p_flow_schedule__row .size_wide {
    order: 1;
    padding: 0;
    margin-top: 1.6rem;
  }

  .p_flow_schedule__item:has(.size_wide) .time {
    padding-top: 0.3rem;
  }

  /*development
  ---------------------------------------------------------*/
  .p_development_lead {
    padding: 4rem 0;
  }

  .p_development_lead__row {
    flex-direction: column;
    justify-content: flex-start;
  }

  .p_development_lead__row_box {
    max-width: 49rem;
  }

  .p_development_lead__row_box .jaTxt {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .p_development_lead__row_flow {
    margin-top: 3rem;
  }

  .p_development_lead__row_flow .item {
    padding: 1.2rem;
  }

  .p_development_lead__row_flow .item:not(:first-of-type) {
    margin-top: 1rem;
  }

  .p_development_lead__row_flow dl {
    gap: 1.6rem;
  }

  .p_development_lead__row_flow dt {
    min-width: 7.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr_sub);
  }

  .p_development_lead__row_flow dd {
    font-size: 1.4rem;
  }

  .p_development_cont {
    padding: 4rem 0 12rem;
  }

  .p_development_cont_link {
    padding: 0 0 12rem;
  }

  .p_development_cont_link__bg {
    top: -6rem;
    left: 50%;
    width: 270%;
  }

  .p_development_cont_link__bg img {
    width: 100%;
  }

  .p_development_cont_link__row {
    flex-direction: column;
    margin-top: 2rem;
  }

  .p_development_cont_link__row .enTxt {
    font-size: 4rem;
    margin-bottom: 0.5rem;
  }

  .p_development_cont_link__row .txt {
    margin-top: 0.5rem;
  }

  .p_development_cont_link__row .c_more {
    text-align: right;
  }

  /*careerplan
  ---------------------------------------------------------*/
  .p_careerplan_lead {
    padding: 4rem 0;
  }

  .p_careerplan_lead__row {
    flex-direction: column;
  }

  .p_careerplan_lead__row_box .jaTxt {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .p_careerplan_lead__row_box .catch {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .p_careerplan_lead__row_box .skillList {
    max-width: initial;
    margin-top: 2rem;
  }

  .p_careerplan_lead__row_box .skillCurrent {
    max-width: initial;
  }

  .p_careerplan_lead__img {
    margin-top: 4rem;
    width: 100%;
  }

  .p_careerplan_lead__img ._01 {
    position: initial;
    width: 76.7%;
    margin-left: auto;
  }

  .p_careerplan_lead__img ._02 {
    top: 70.9%;
    width: 39.1%;
  }

  .p_careerplan_example {
    padding: 4rem 0 0;
  }

  .p_careerplan_example .jaTxt {
    font-size: 1.6rem;
  }

  .p_careerplan_example__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .p_careerplan_example__item {
    padding: 2.6rem 1rem;
  }

  .p_careerplan_example__img {
    width: 100%;
  }

  .p_careerplan_example__item .txt {
    font-size: 1.2rem;
    margin-top: 2rem;
  }

  .p_careerplan_welfare {
    padding: 4rem 0;
  }

  .p_careerplan_welfare__row {
    flex-direction: column;
    gap: 4rem;
  }

  .p_careerplan_welfare__txt {
    width: 100%;
  }

  .p_careerplan_welfare__txt .enTxt {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }

  .p_careerplan_welfare__txt .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .p_careerplan_welfare__list {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 2.6rem 1rem;
    margin-top: 2rem;
  }

  .p_careerplan_welfare__img {
    border-radius: 0.8rem;
    overflow: hidden;
  }

  .p_careerplan_welfare__item .txt {
    font-size: 1.2rem;
  }

  .p_careerplan_welfare__item .txt span {
    font-size: 1rem;
  }

  .p_careerplan_workplace {
    padding: 4rem 0;
  }

  .p_careerplan_workplace__row {
    flex-direction: column;
    gap: 2rem;
  }

  .p_careerplan_workplace__txt {
    width: 100%;
  }

  .p_careerplan_workplace__txt .enTxt {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }

  .p_careerplan_workplace__txt .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .p_careerplan_workplace__txt .txt {
    width: 100%;
  }

  .p_careerplan_workplace__img {
    position: initial;
    translate: 0 0;
    width: 100%;
  }

  /*qualification
  ---------------------------------------------------------*/
  #qualificationPage .c_lower_mvImg__ttl {
    padding: 2rem 0 5rem;
  }

  #qualificationPage .c_lower_mvImg__ttl .enTxt {
    bottom: 0;
  }

  .p_qualification_lead {
    padding: 4rem 0;
  }

  .p_qualification_lead__row {
    flex-direction: column;
  }

  .p_qualification_lead__row_box .jaTxt {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .p_qualification_lead__row_box .catch {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .p_qualification_lead__row_box .skillList {
    max-width: initial;
    margin-top: 2rem;
  }

  .p_qualification_lead__row_box .skillCurrent {
    max-width: initial;
  }

  .p_qualification_lead__img {
    margin-top: 4rem;
    width: 100%;
  }

  .p_qualification_lead__img ._01 {
    position: initial;
    width: 76.7%;
    margin-left: auto;
  }

  .p_qualification_lead__img ._02 {
    top: 70.9%;
    width: 39.1%;
  }

  /*training
  ---------------------------------------------------------*/
  #trainingPage .c_lower_mvImg__ttl {
    padding: 2rem 0 5rem;
  }

  #trainingPage .c_lower_mvImg__ttl .enTxt {
    bottom: 0;
  }

  .p_training_lead {
    padding: 4rem 0;
  }

  .p_training_lead__row {
    flex-direction: column;
  }

  .p_training_lead__row_box .jaTxt {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .p_training_lead__img {
    margin-top: 4rem;
    width: 100%;
    min-height: initial;
  }

  .p_training_lead__img ._01 {
    position: initial;
    width: 76.7%;
    margin-left: auto;
  }

  .p_training_lead__img ._02 {
    top: 57.7%;
    width: 39.1%;
  }

  .p_training_cont {
    margin-top: 4rem;
    padding: 4rem 0 6rem;
  }

  .p_training_cont__wrap .enTxt {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }

  .p_training_cont__wrap .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .p_training_cont__step {
    margin-top: 4rem;
  }

  .p_training_cont__row {
    flex-direction: column-reverse;
    gap: 0;
    padding: 4rem 0 0 6rem;
  }

  .p_training_cont__row:first-of-type {
    padding-top: 0;
  }

  .p_training_cont__row .date {
    width: 3.8rem;
    font-size: 1.6rem;
  }

  .p_training_cont__row .date::after {
    border-width: 1.5rem 1.9rem 0 1.9rem;
  }

  .p_training_cont__row .date .number {
    padding-bottom: 0.4rem;
  }

  .p_training_cont__row .stepTxt {
    width: 100%;
    padding-top: 2rem;
  }

  .p_training_cont__row .enTxt {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .p_training_cont__row .jaTxt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .p_training_cont__img {
    width: 100%;
  }

  /*numbers
  ---------------------------------------------------------*/
  .p_numbers_cont {
    padding: 4rem 0;
  }

  .p_numbers_cont__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }

  .p_numbers_cont__item {
    padding: 2rem;
  }

  .p_numbers_cont__item .theme {
    font-size: 1.8rem;
    padding: 0.4rem 1.8rem;
  }

  .p_numbers_cont__data {
    margin-top: 2rem;
  }

  .p_numbers_cont__item .number {
    font-size: 6.4rem;
  }

  .p_numbers_cont__item .number:has(.dec)::before {
    font-size: 5.5rem;
  }

  .p_numbers_cont__item .number .dec {
    font-size: 4.2rem;
  }

  .p_numbers_cont__item .unit {
    font-size: 2rem;
  }

  .p_numbers_cont__item .current {
    font-size: 1.2rem;
  }

  .p_numbers_cont__item .txt {
    margin-top: 1.6rem;
  }

  .p_numbers_cont__item.item--satisfaction {
    padding: 2rem;
  }

  .p_numbers_cont__item.item--satisfaction .theme {
    margin: 0 auto;
  }

  .p_numbers_cont__item.item--satisfaction .current {
    margin-top: 0.6rem;
  }

  .p_numbers_cont__item.item--satisfaction .p_numbers_cont__row {
    justify-content: space-between;
  }

  .p_numbers_cont__item.item--satisfaction .heading {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .p_numbers_cont__item.item--satisfaction .heading span {
    font-size: 1.4rem;
  }

  .p_numbers_cont__item.item--satisfaction .number {
    font-size: 4rem;
  }

  .p_numbers_cont__item.item--satisfaction .number::before {
    font-size: 4rem;
  }

  .p_numbers_cont__item.item--satisfaction .number .dec {
    font-size: 2.8rem;
  }

  .p_numbers_cont__item.item--satisfaction .unit {
    font-size: 1.4rem;
  }

  .p_numbers_cont__item.item--new-cars .number {
    translate: -6% 0;
  }

  .p_numbers_cont__item.item--founding .illust {
    width: 13.8rem;
  }

  .p_numbers_cont__item.item--sales .illust {
    top: 4.8rem;
    right: 2rem;
    width: 12.4rem;
  }

  .p_numbers_cont__item.item--employees .illust {
    top: 2.3rem;
    right: 1.4rem;
    width: 15.1rem;
  }

  .p_numbers_cont__item.item--retention .illust {
    top: 4.5rem;
    right: 2.6rem;
    width: 13.7rem;
  }

  .p_numbers_cont__item.item--training .illust {
    top: 6.3rem;
    right: 2.2rem;
    width: 15.2rem;
  }

  .p_numbers_cont__item.item--vehicles .illust {
    top: 2rem;
    width: 19.2rem;
  }

  .p_numbers_cont__item.item--vehicles .p_numbers_cont__data {
    margin-top: 3.6rem;
  }

  .p_numbers_cont__item.item--new-cars .illust {
    top: 8rem;
    right: 1.8rem;
    width: 11rem;
  }

  .p_numbers_cont__item.item--gold-license .illust {
    top: 9.7rem;
    right: 3.2rem;
    width: 13.5rem;
  }

  .p_numbers_cont__item.item--holidays .illust {
    top: 5.7rem;
    right: 0;
    width: 15rem;
  }

  .p_numbers_cont__item.item--gold-license .p_numbers_cont__data {
    margin-top: 4.6rem;
  }

  .p_numbers_cont__item.item--new-cars .p_numbers_cont__data {
    margin-top: 3.6rem;
  }

  .p_numbers_cont__item.item--rehire .illust {
    top: 3.8rem;
    right: 1rem;
    width: 15.2rem;
  }

  .p_numbers_cont__item.item--rehire .p_numbers_cont__data {
    margin-top: 3.2rem;
  }

  /*recruitinfo
  ---------------------------------------------------------*/
  .p_recruitinfo_cont {
    padding: 4rem 0;
  }

  .p_recruitinfo__box {
    margin-top: 4rem;
  }

  .p_recruitinfo__list li+li {
    margin-top: 4rem;
  }

  .p_recruitinfo__list li {
    padding: 2rem;
  }

  .p_recruitinfo__list .area {
    font-size: 1.4rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .p_recruitinfo__list .ttl {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .p_recruitinfo__list .item_row {
    flex-direction: column;
    gap: 2rem;
  }

  .p_recruitinfo__list .img {
    width: 100%;
  }

  .p_recruitinfo__list dl {
    width: 100%;
    flex-direction: column;
  }

  .p_recruitinfo__list dt {
    width: 100%;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .p_recruitinfo__list dd {
    width: 100%;
    min-height: initial;
    padding: 1rem 1rem 0;
  }

  .p_recruitinfo__list dd+dt {
    margin-top: 1rem;
  }

  .p_recruitinfo__list dt:not(:last-of-type) {
    border-bottom: none;
  }

  .p_recruitinfo__list dd:not(:last-of-type) {
    border-bottom: none;
  }

  .p_recruitinfo__list .c_arrow {
    max-width: 20.8rem;
    margin-top: 2rem;
    padding: 1.5rem 6.4rem 1.5rem 2.8rem;
    font-size: 1.4rem;
  }

  .p_recruitinfo__list .c_arrow::after {
    right: 2rem;
    width: 2rem;
    height: 2rem;
  }

  .p_recruitinfo_cont .pager {
    margin: 4rem auto;
  }

  .p_recruitinfo__detail {
    text-align: left;
  }

  .p_recruitinfo__detail .area {
    font-size: 1.4rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .p_recruitinfo__detail .ttl {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .p_recruitinfo__detail dl {
    flex-wrap: wrap;
    margin-top: 3rem;
    border-bottom: 0.3rem solid #E8F5FA;
  }

  .p_recruitinfo__detail dt {
    width: 100%;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .p_recruitinfo__detail dt:not(:last-of-type) {
    border-bottom: none;
  }

  .p_recruitinfo__detail dd {
    width: 100%;
    padding: 2rem 1rem;
  }

  .p_recruitinfo__detail dd:not(:last-of-type) {
    border-bottom: none;
  }

  .p_recruitinfo__pageset {
    padding: 4rem 0;
  }

  /*contact
  ---------------------------------------------------------*/
  #entryPage .c_lower_mvTxt__ttl .enTxt {
    bottom: 0;
  }
}

/* ======= キャッチコピー 一文字ずつフェードイン =======
---------------------------------------------------------*/
@keyframes boxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.catch__char {
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  animation: catchCharIn 0.6s ease forwards;
}

@keyframes catchCharIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.grecaptcha-badge {
  display: none;
  visibility: hidden;
  translate: 200% 0;
  opacity: 0;
}