@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=YuMincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quattrocento&display=swap");

:root {
  --color-white: #fff;
  --color-main-black: #333;
  --color-main: #c3967a;
  --color-sub1: #d6c1b4;
  --color-sub2: #e6ded9;
}

/* 共通 */
.inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}

picture {
  display: block;
  width: 100%;
}

/** スクロールダウン **/
.scrolldown {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 丸の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 95px;
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100px;
  background: #fff;
}

/* FV */

.fv {
  position: relative;
  z-index: 0;
}

.fv::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.fv__title {
  position: absolute;
  top: 0;
  max-width: 1366px;
  width: 100%;
  /* height: 100%; */
  z-index: 1;
}

/* .fv__title-top {
  width: 100%;
}

.fv__title-bottom {
  margin-top: 40px;
  width: 100%;
} */

.fv-img {
  aspect-ratio: 1366 / 669;
  width: 100%;
  height: 100%;
}

/* MESSAGE */
.message {
  margin-top: -80px;
  position: relative;
}

.message__inner-top {
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: flex-end;
  column-gap: 10%;
}

.message__block {
  margin-bottom: -10px;
}

.message__img-main {
  width: 100%;
  aspect-ratio: 484/715;
  height: 100%;
  object-fit: contain;
}

.message__img-title {
  height: fit-content;
  margin-bottom: 64px;
}

.message__title-img {
  aspect-ratio: 265/37;
  max-width: 265px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.message__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: var(--color-main);
  z-index: -1;
  bottom: 0;
}

.message__inner-top-text-wrap {
  margin-top: 28px;
}

.message__inner-top-message {
  grid-area: text;
}

.message__inner-top-message h2 {
  font-size: 3rem;
  line-height: 1.5;
  font-family: "YuMincho", serif;
  letter-spacing: 0.1em;
}
.message__inner-top-message h2 span {
  position: relative;
  display: inline-block;
}
.message__inner-top-message h2 span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-sub2);
  bottom: 8px;
  z-index: -1;
}
.message__inner-top-text-wrap p {
  font-size: 14px;
  line-height: 2;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}

.message__inner-top-text-wrap p + p {
  margin-top: 20px;
}

.message__inner-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1366px;
  width: 100%;
  margin-inline: auto;
}

.message__img01 {
  aspect-ratio: 518/762;
  max-width: 518px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: -10px;
}

.message__img02 {
  aspect-ratio: 594/373;
  max-width: 594px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 46px;
}

.message__inner-bottom {
  margin-top: 114px;
}

.message__inner-bottom-message h3 {
  font-size: 30px;
  line-height: calc(52 / 30);
  font-family: "YuMincho", serif;
  letter-spacing: 0.1em;
  padding-left: 17%;
}

.message__inner-bottom-message-mt {
  margin-top: 75px;
}

.message__inner-bottom-message h3 span {
  position: relative;
  display: inline-block;
}

.message__inner-bottom-message h3 span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-sub2);
  bottom: 13px;
  z-index: -1;
}

.message__inner-bottom-text-wrap {
  margin-top: 42px;
  padding-left: 17%;
}

.message__inner-bottom-text-wrap p {
  font-size: 14px;
  line-height: 2;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}

.message__training-flow {
  margin-top: 48px;
  display: grid;
  row-gap: 32px;
}

/* training-flow */
.training-flow__steps {
  display: flex;
  justify-content: space-evenly;
  border-top: 1px solid #c3967a;
  border-bottom: 1px solid #c3967a;
  padding: 38px 0;
}
.training-flow__arrow {
  position: relative;
  width: 30px;
  height: 40px;
  margin-top: 50px;
}
.training-flow__arrow::after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top: 2px solid #c3967a;
  border-right: 2px solid #c3967a;
  transform: rotate(58deg) skew(30deg);
  z-index: 1;
}
.training-flow__course {
  width: 1290px;
  margin-inline: auto;
  background-color: #fffaee;
  padding: 35px 50px;
}
.training-flow__head {
  text-align: center;
}
.training-flow__title {
  color: #a75928;
  font-family: "YuMincho", serif;
}
.training-flow__step-title {
  color: #a75928;
  font-family: "YuMincho", serif;
}
.training-flow__list {
  padding-left: 0;
  list-style-type: none;
}
.training-flow__item {
  position: relative;
  padding-left: 16px;
}
.training-flow__item::before {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

/* ESSENCE */
.essence {
  padding-bottom: 118px;
  margin-top: 158px;
}

.essence__head {
  text-align: right;
  position: relative;
}

.essence__head-main-img {
  display: block;
  max-width: 90%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: auto;
}

.essence__title-wrap {
  position: absolute;
  bottom: -32px;
  left: 19%;
}

.essence__title-img {
  aspect-ratio: 250/38;
  max-width: 250px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 100px;
}

.essence__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 1000%;
  height: 1px;
  bottom: 1px;
  background-color: var(--color-white);
  z-index: 1;
}

.essence__title {
  color: var(--color-white);
  text-align: left;
  font-family: "YuMincho", serif;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.essence__inner {
  margin-top: 50px;
}

.essence__description {
  width: 77%;
  margin-inline: auto;
}

.essence__description p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* .essence__description p+p {
  margin-top: 20px;
} */

/* WORK */
.work {
  padding-bottom: 106px;
}

.work__title-wrap {
  width: 78%;
  margin-inline: auto;
}

.work__title-img {
  aspect-ratio: 184/37;
  max-width: 184px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 38px;
}

.work__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: var(--color-sub2);
  bottom: 1px;
  z-index: -1;
}

.work__title {
  font-family: "YuMincho", serif;
  font-size: 30px;
  letter-spacing: 0.1em;
}

.work__description {
  margin-top: 26px;
}

.work__description p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.work__body {
  margin-top: 50px;
}

.work__contents {
  display: grid;
  grid-template-columns: 42% 60%;
  align-items: flex-start;
  column-gap: 14%;
  margin-left: calc(50% - 50vw);
  margin-top: 117px;
}

.work__img img {
  aspect-ratio: 500/675;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work__text-block {
  margin-top: 80px;
}

.work__sub-title {
  color: var(--color-main);
  font-family: "YuMincho", serif;
  font-size: 30px;
  line-height: calc(52 / 30);
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
}

.work__sub-title::after {
  position: absolute;
  display: block;
  content: "";
  width: 150%;
  height: 1px;
  background-color: var(--color-sub2);
  bottom: 9px;
  z-index: 1;
}

.work-contents {
  margin-top: 53px;
}

.work-contents__inner {
  display: grid;
}

.work-contents__inner + .work-contents__inner {
  margin-top: 15px;
}

.work-contents__title {
  font-weight: 400;
  font-style: normal;
  font-family: "YuMincho", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.work-contents__title span {
  color: var(--color-main);
  font-family: "Quattrocento", serif;
  font-size: 20px;
  display: inline-block;
  margin-right: 20px;
}

.work-contents__title::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 7px;
  background-color: var(--color-sub2);
  z-index: -1;
}

.work-contents__data {
  width: 80%;
  font-size: 13px;
  line-height: calc(24 / 13);
  letter-spacing: 0.1em;
  margin-top: 6px;
  padding-left: 40px;
}

.work-contents__data span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  bottom: 0;
  z-index: 1;
}

.work-contents__data p {
  font-size: 13px;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}

/* MEMBER */

.member__title-img {
  aspect-ratio: 770 / 74;
  max-width: 770px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member__profile {
  margin-top: 80px;
}

/* STEP */
.step {
  background-color: var(--color-sub2);
  padding-top: 170px;
  padding-bottom: 100px;
  position: relative;
}

.step__inner {
  max-width: 1226px;
}

.step__head {
  position: absolute;
  top: 0;
  left: 0;
}

.step__title-img {
  display: block;
  width: 748px;
}

.step__title-img img {
  aspect-ratio: 748/74;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step__contents {
  display: grid;
  grid-template-columns: 30% 65%;
  column-gap: 5%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  position: relative;
}
.training-toggle-btn {
  display: none;
}
.step__img img {
  aspect-ratio: 500/675;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step__training {
  margin-block-start: 100px;
}

.step__training-inner {
background-color: #FFFAEE;
padding: 60px 3%;
}

.step__training-inner + .step__training-inner {
  margin-top: 50px;
}

.step__training-title {
padding-bottom: 30px;
border-bottom: 1px solid #A75928;  
}

.step__training-title h3 {
  color: #A75928;
    font-family: "YuMincho", serif;
}

.step__training-content {
margin-block-start: 30px;
}

.step__training-items {

}

.step__training-item {
display: grid;
grid-template-columns: 10% 90%;
column-gap: 3%;
align-items: self-start;
}

.step__training-item + .step__training-item {
  margin-top: 20px;
}

.step__training-item dt {
  background-color: #fff;
  color: #A75928;
  font-family: "YuMincho", serif;
  font-weight: normal;
  display: grid;
  place-content: center;
  font-size: 16px;
  padding: 4px 5%;
}

.step__training-item-list {
  padding-inline-start: 16px;
}

.step__training-item dd {
  line-height: 1.8;
  width: 95%;
}

.step-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.step-contents__inner:first-child {
  margin-top: 100px;
}
.step-contents__inner:nth-child(4) {
  margin-top: 135px;
}
.step-contents__inner:nth-child(2),
.step-contents__inner:nth-child(5) {
  margin-top: 50px;
}
.step-contents__title {
  color: var(--color-main);
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step-contents__inner:nth-child(3) {
  position: relative;
}
.step-contents__title--note {
  position: absolute;
  font-size: 10px;
  bottom: 0;
  right: 30px;
}
.step-contents__data {
  margin-top: 20px;
}

.step-contents__data span {
  display: block;
  color: var(--color-main);
  font-family: "YuMincho", serif;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  padding: 3%;
  text-align: center;
}

.step-contents__data-list {
  padding-left: 20px;
  color: #c3967a;
  font-size: 13px;
  line-height: 1.5;
}
.step-contents__data-list a {
  color: #c3967a;
  text-decoration: underline;
}
.step-contents__carrer1 {
  background-color: #fffaee;
}
.step-contents__carrer2 {
  background-color: #fef4d8;
}
.step-contents__carrer3 {
  background-color: #fffaee;
}

.step-contents__data p {
  font-size: 13px;
  font-family: "Noto Sans JP", serif;
  line-height: calc(24 / 13);
  letter-spacing: 0.1em;
  width: 85%;
  margin-inline: auto;
}

/* ENVIRONMENT */
.environment {
  padding-top: 118px;
  padding-bottom: 110px;
}

.environment__title-img {
  display: block;
  aspect-ratio: 438/38;
  max-width: 440px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 38px;
}

.environment__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 650%;
  height: 1px;
  background-color: var(--color-sub2);
  z-index: 1;
  bottom: 0;
  left: 0;
}

.environment__title {
  font-size: 30px;
  line-height: calc(52 / 30);
  font-family: "YuMincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.environment__contents {
  margin-top: 34px;
}

.environment__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.environment__vm-stats {
  margin-top: 60px;
  max-width: 700px;
  margin-inline: auto;
}

.card01__img img {
  aspect-ratio: 336/224;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card01__head {
  font-family: "YuMincho", serif;
  font-size: 18px;
  line-height: 2;
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.card01__head::after {
  position: absolute;
  display: block;
  bottom: 9px;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-sub2);
  z-index: 0;
}

.card01__text {
  margin-top: 24px;
  font-size: 13px;
  line-height: calc(24 / 13);
}

/* PLACE */

.place__head {
  position: relative;
}

.place__head-main-img {
  aspect-ratio: 1366/642;
  width: 100%;
  height: 642px;
  object-fit: cover;
}

.place__title-wrap {
  position: absolute;
  bottom: -30px;
  left: 10%;
}

.place__title-img {
  display: block;
  aspect-ratio: 180/38;
  width: 180px;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 42px;
}

.place__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 650%;
  height: 1px;
  background-color: var(--color-white);
  z-index: 1;
  bottom: 0;
}

.place__title {
  color: var(--color-white);
  font-size: 40px;
  line-height: calc(60 / 40);
  font-family: "YuMincho", serif;
  margin-top: 57px;
}

.place__body {
  background-color: var(--color-white);
}

.place__description {
  margin-top: 50px;
}

.place__description p {
  font-size: 14px;
  line-height: 2;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}

.place__contents {
  margin-top: 52px;
  padding-bottom: 100px;
}

.place__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 16px;
}

.card__img {
  position: relative;
}

.card__img img {
  aspect-ratio: 260/174;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__place {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--color-white);
  background-color: var(--color-main);
  font-size: 13px;
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  display: grid;
  place-content: center;
  display: inline-block;
  padding: 6px 12px;
}

.card__head {
  margin-top: 18px;
  font-size: 13px;
  font-family: "YuMincho", serif;
  position: relative;
  z-index: 1;
}

.card__head::after {
  position: absolute;
  display: block;
  bottom: 4px;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-sub2);
  z-index: 0;
}

/* ENTRY */
.entry {
  padding-bottom: 160px;
}

.entry__title-img {
  display: block;
  aspect-ratio: 553/38;
  width: 553px;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 80px;
}

.entry__title-img::after {
  position: absolute;
  display: block;
  content: "";
  width: 650%;
  height: 1px;
  background-color: var(--color-main);
  z-index: 1;
  bottom: 0;
}

.entry__title {
  color: var(--color-main);
  font-family: "YuMincho", serif;
  font-size: 20px;
}

.entry__contents {
  max-width: 970px;
  width: 100%;
  margin-left: auto;
}

.entry-contents__inner {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-sub2);
}

.entry-contents__title {
  width: 10%;
  font-weight: normal;
  font-size: 13px;
  line-height: calc(24 / 13);
  font-family: "Noto Sans JP", serif;
}

.entry-contents__data {
  width: 90%;
  font-weight: normal;
  font-size: 13px;
  line-height: calc(24 / 13);
  font-family: "Noto Sans JP", serif;
}

.entry__contact {
  margin-top: 80px;
}

.entry__contact-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  margin-bottom: 60px;
}

.entry__contact-main-img {
  aspect-ratio: 383/255;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry__contact-title {
  font-family: "YuMincho", serif;
  font-size: 18px;
  position: relative;
}

.entry__contact-title::after {
  position: absolute;
  display: block;
  bottom: 4px;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-sub2);
  z-index: 0;
}

.entry__contact-text {
  font-family: "Noto Sans JP", serif;
}

.entry__contact-btn {
  margin-top: 30px;
}

.entry__link {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-main);
  padding: 14px 0;
  max-width: 285px;
  width: 100%;
  text-align: center;
}

.entry__link-text-contact,
.entry__link-text-entry {
  position: relative;
  padding-left: 30px;
}

.entry__link-text-contact::before,
.entry__link-text-entry::before {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}

.entry__link-text-contact::before {
  width: 27px;
  height: 19px;
  background-image: url(../image/icon_pc.svg);
  background-size: contain;
}

.entry__link-text-entry::before {
  width: 24px;
  height: 18px;
  background-image: url(../image/icon_mail.svg);
  background-size: contain;
}

.entry__pc-icon {
  width: 27px;
  height: 19px;
}

.vm-stats {
  padding: 4rem 2rem;
  background-color: #e6ded9;
}

.vm-stats__title {
  font-size: 1.8rem;
  font-family: "YuMincho", serif;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
}

.vm-stats__title--small {
  font-size: 12px;
  margin-left: 10px;
  font-weight: normal;
}

.vm-stats__title::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 1;
  bottom: 5px;
}

.vm-stats__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.vm-stats__item {
  background: #fff;
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}

.vm-stats__item--employees {
  grid-column: span 5;
}

.vm-stats__item--number-of-deals {
  grid-column: span 7;
}

.vm-stats__item--career,
.vm-stats__item--sex,
.vm-stats__item--old {
  grid-column: span 4;
}

.vm-stats__item--womens {
  grid-column: span 3;
}

.vm-stats__item--ikukyu {
  grid-column: span 3;
}

.vm-stats__item--number-of-locations {
  grid-column: span 6;
}

.vm-stats__item--keywords {
  grid-column: span 12;
}

.vm-stats__label {
  font-size: 1rem;
  color: #fff;
  background-color: #c3977a;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  padding: 4px 20px;
}

.vm-stats__value {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    #fcffd0 70%,
    #fcffd0 95%
  );
}

.vm-stats__value .unit {
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

.vm-stats__icon img {
  max-width: 70px;
  height: auto;
  margin-top: 0.5rem;
}

.vm-stats__subtitle {
  font-size: 1.1rem;
  color: #9a6e52;
  margin-bottom: 1rem;
}

.vm-stats__list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  text-align: left;
}

.vm-stats__list li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.vm-stats__note {
  font-size: 0.8rem;
  color: #888;
  text-align: right;
}

.step {
  background: linear-gradient(
    180deg,
    #e6ded9 0%,
    #e6ded9 38%,
    #fff 38%,
    #fff 100%
  );
}

.step__contents {
  position: relative;
}

.step__arrow {
  position: absolute;
  width: 45vw;
  right: 15%;
  top: 34%;
}

.step-arrow {
  width: 50vw;
}

.step-contents {
  row-gap: 150px;
}

/* 768px以上1024px以下のスタイル */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .message {
    margin-top: 0;
  }
  .message__img-main {
    object-fit: cover;
  }
  .message__img-title {
    margin-bottom: 40px;
  }
  .message__inner-bottom {
    column-gap: 2%;
  }
  .message__inner-bottom-text-wrap {
    padding-left: 5%;
  }
  .message__inner-top-message h2 {
    font-size: 2rem;
  }
  .message__inner-bottom-message h3 {
    font-size: 24px;
    padding-left: 5%;
  }
  .work__contents {
    column-gap: 10%;
  }
  .work__text-block {
    width: fit-content;
  }
  .step__arrow {
    top: 43%;
  }
  .step-contents__title--note {
    bottom: -60px;
  }
}

/* 767px以下のスタイル */
@media screen and (max-width: 767px) {
  .inner {
    max-width: 500px;
    padding-left: 30px;
    padding-right: 30px;
  }

  /* FV */
  .fv-img {
    aspect-ratio: 375 / 595;
  }

  .fv__title {
    height: 94%;
  }

  .message__img-main {
    width: 86%;
    aspect-ratio: 275/355;
    position: relative;
  }

  .message__img-main::before {
    position: absolute;
    display: block;
    content: "";
    width: 240px;
    height: 34px;
    z-index: 1;
    top: 50%;
    right: -24px;
    background-image: url(../image/sp/message_title.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  /* MESSAGE */
  .message {
    margin-top: 20px;
  }

  .message__inner-top {
    display: block;
  }

  .message__inner-top-message {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 14px;
  }

  .message__inner-top-message h2 {
    font-size: 1.8rem;
    line-height: calc(48 / 30);
  }

  .message__inner-top-text-wrap {
    margin-top: 14px;
  }

  .message__inner-top-text-wrap p {
    font-size: 13px;
    line-height: 2;
  }

  .message__inner-bottom {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  .message__inner-bottom-text-wrap {
    margin-top: 20px;
    padding-left: 0;
  }

  .message__inner-bottom-text-wrap p {
    font-size: 13px;
    line-height: 2;
  }

  .message__inner-bottom-message {
    padding-right: 27px;
    margin-left: 30px;
    margin-top: 10px;
  }

  .message__inner-bottom-message h3 {
    font-size: 24px;
    letter-spacing: 0.099em;
    padding-left: 0;
  }

  .message__inner-bottom-message h3 span::after {
    bottom: 8px;
  }

  .message__inner-bottom {
    margin-top: 0;
  }

  .message__inner-bottom-message-mt {
    margin-top: 55px;
  }

  .message__img-title {
    display: none;
  }

  .message__img01 {
    aspect-ratio: 275/355;
    margin-left: auto;
    width: 85%;
    text-align: right;
    margin-top: 26px;
  }

  .message__img02 {
    aspect-ratio: 345/217;
    margin-top: 20px;
    margin-left: calc(50% - 50vw);
    width: 95vw;
  }

  /* training-flow */
  .training-flow__course {
    padding: 40px 30px;
  }
  .training-flow__course {
    width: 1000px;
  }
  .training-flow__head {
    text-align: left;
    width: 30%;
  }
  .training-flow__steps {
    justify-content: start;
    column-gap: 4%;
    padding: 30px 16px;
  }
  .training-flow__title {
    text-align: center;
  }
  .training-flow__duration {
    text-align: center;
  }

  /* ESSENCE */
  .essence {
    padding-bottom: 14px;
    margin-top: 148px;
  }

  .essence__head-main-img {
    max-width: 100%;
  }

  .essence__title-wrap {
    bottom: -30px;
    left: 9%;
  }

  .essence__inner {
    margin-top: 30px;
  }

  .essence__title-img {
    max-width: 225px;
    margin-bottom: 38px;
  }

  .essence__title {
    font-size: 30px;
  }

  .essence__description {
    width: 100%;
  }

  /* WORK */
  .work {
    padding-bottom: 94px;
  }

  .work__inner.inner {
    padding-right: 0;
  }

  .work__title-wrap {
    width: 100%;
  }

  .work__title {
    font-size: 24px;
  }

  .work__description {
    padding-right: 30px;
  }

  .work__contents {
    grid-template-columns: initial;
    margin-left: initial;
    margin-top: 52px;
  }

  .work__img {
    margin-left: calc(50% - 50vw);
  }

  .work__img img {
    max-width: 75%;
  }

  .work__text-block {
    margin-top: 40px;
  }

  .work__sub-title {
    font-size: 24px;
  }

  .work-contents {
    margin-top: 50px;
    padding-right: 30px;
  }

  .work-contents__title {
    display: grid;
    grid-template-columns: 10% 90%;
    font-size: 17px;
    line-height: calc(28 / 17);
  }

  .work-contents__title::after {
    bottom: 6px;
  }

  .work-contents__data {
    width: 90%;
    margin-left: auto;
    padding-left: 0;
  }

  /* MEMBER */
  .member__profile {
    margin-top: 40px;
  }

  .member__title-img {
    aspect-ratio: 354 / 34;
    max-width: 354px;
  }

  /* STEP */
  .step {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .step__title-img {
    width: 344px;
  }

  .step__contents {
    grid-template-columns: initial;
    margin-left: initial;
  }

  #manager_training .training-toggle-btn,
  #chief_training .training-toggle-btn {
    display: inline-block !important;
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
    background: #D6C1B4;
    border: 1px solid #D6C1B4;
    padding: 6px 18px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s all;
  }
  .step__img {
    margin-left: calc(50% - 50vw);
  }

  .step__img img {
    max-width: 75%;
  }

  .step__training-item {
    grid-template-columns: initial;
    gap: 10px;
  }
  .step__training-item dt {
    width: fit-content;
  }
  .step-contents {
    margin-top: 40px;
    grid-template-columns: initial;
    row-gap: 20px;
  }

  .step-contents__inner {
    grid-template-columns: initial;
    row-gap: 20px;
  }

  .step-contents__inner:first-child,
  .step-contents__inner:nth-child(2),
  .step-contents__inner:nth-child(4),
  .step-contents__inner:nth-child(5) {
    margin-top: 0;
  }
  .step-contents__title--note {
    right: initial;
    left: initial;
    bottom: initial;
    margin-bottom: 20px;
  }
  .step-contents__data {
    width: 100%;
    margin-top: 16px;
  }
  .step-contents__data span {
    position: relative;
    font-size: 1.8rem;
    text-align: left;
    padding: 2%;
  }
  .step-contents__data span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-main);
    bottom: 4px;
    z-index: 1;
  }
  .step-contents__data p {
    margin-inline: initial;
  }
  /* ENVIRONMENT */
  .environment__title-img {
    width: 345px;
    /* margin-left: calc(50% - 50vw); */
  }

  .environment__title {
    font-size: 24px;
  }

  .environment__cards {
    grid-template-columns: initial;
  }

  .card01__img img {
    aspect-ratio: 315/210;
  }

  /* PLACE */

  .place__head-main-img {
    aspect-ratio: 1/1;
    height: auto;
  }

  .place__title-img {
    width: 164px;
  }

  .place__title {
    font-size: 30px;
  }

  .place__description p {
    font-size: 13px;
  }

  .place__cards {
    grid-template-columns: initial;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card__img img {
    aspect-ratio: 295/170;
    row-gap: 30px;
  }

  .entry {
    padding-bottom: 100px;
  }

  .entry__title-img {
    aspect-ratio: 255/85;
    width: 255px;
    margin-bottom: 60px;
  }

  .entry-contents__title {
    width: 25%;
  }

  .entry-contents__data {
    width: 75%;
  }

  .entry__contact-inner {
    margin-top: 40px;
  }

  .entry__contact-media {
    grid-template-columns: initial;
    margin-bottom: 40px;
  }

  .entry__contact-main-img {
    margin-bottom: 40px;
  }

  .entry__contact-btn {
    text-align: center;
  }

  .entry__link {
    margin-inline: auto;
  }

  .u-pc {
    display: none;
  }
  .vm-stats__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .vm-stats__item {
    display: grid;
    width: 46%;
  }

  .vm-stats__item--keywords {
    width: 100%;
  }

  .vm-stats__item--employees {
    order: 1;
  }

  .vm-stats__item--number-of-deals {
    order: 2;
  }

  .vm-stats__item--career {
    order: 3;
  }

  .vm-stats__item--sex {
    order: 4;
  }

  .vm-stats__item--old {
    order: 5;
  }

  .vm-stats__item--number-of-locations {
    order: 6;
  }

  /* 位置 */
  .vm-stats__item--womens {
    order: 7;
  }

  .vm-stats__item--ikukyu {
    order: 8;
  }

  .vm-stats__item--keywords {
    order: 9;
    width: 100%;
  }

  .vm-stats__icon--keywords {
    display: none;
  }
  .step {
    background: #e6ded9;
  }
  .step__arrow {
    display: none;
  }
  .step-contents {
    row-gap: 60px;
  }
}
@media screen and (min-width: 1920px) {
  .step__arrow {
    top: 28%;
  }
  .step-contents {
  row-gap: 200px;
}
}