@charset "UTF-8";
/*////////////////////////////////////////////////
基本設定
////////////////////////////////////////////////*/
main {
  background-color: #F5F5F5;
}

button#close_btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: fixed;
  bottom: auto;
  top: 20px;
  right: 20px;
  z-index: 2;
}
button#close_btn:hover {
  transform: rotate(360deg);
}

button#close_btn::before,
button#close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #333;
  transform-origin: center;
}

button#close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

button#close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

section {
  position: relative;
}
section .section-inner {
  max-width: 78.6vw;
}
@media (max-width: 767px) {
  section .section-inner {
    max-width: 92vw;
  }
}
section .section-inner h1 {
  font-size: 1.15vw;
  padding-left: 1.5vw;
  position: relative;
}
@media (max-width: 767px) {
  section .section-inner h1 {
    font-size: 4vw;
    padding-left: 3vw;
    margin-bottom: 1vw;
  }
}
section .section-inner h1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 0.7px;
  background: var(--accent);
  border-radius: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
@media (max-width: 767px) {
  section .section-inner h1::before {
    width: 2vw;
    height: 2vw;
  }
}
section .section-inner h2 {
  margin: 0 0 3vw;
  border-left: solid 0.4vw #E9561D;
  padding-left: 1vw;
  line-height: 1;
  font-size: 2.3vw;
  z-index: 1;
}
section .section-inner h2::before {
  content: none;
}
@media (max-width: 767px) {
  section .section-inner h2 {
    margin: 0 0 8vw;
    font-size: 5.8vw;
    border-left: solid 1.4vw #E9561D;
    padding-left: 2vw;
  }
}

/*////////////////////////////////////////////////
動くテキスト
 ////////////////////////////////////////////////*/
.reveal-text {
  font-size: 2.88vw;
}
@media (max-width: 767px) {
  .reveal-text {
    font-size: 7vw;
  }
}

/*////////////////////////////////////////////////
仕事の役割
////////////////////////////////////////////////*/
#job_head {
  padding-top: 12.5vw;
  margin-top: 80px;
}
#job_head::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about2.svg);
  background-size: 100%;
  width: 11.5vw;
  height: 21vw;
  right: 0;
  bottom: -13vw;
}
#job_head::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about1.svg);
  background-size: 100%;
  width: 11.5vw;
  height: 16vw;
  left: 0;
  top: 1vw;
}

.job_role_wrap {
  z-index: 1;
  position: relative;
}

.job_role {
  background: #fff;
  border-radius: 0.5vw;
  width: 52.8vw;
  margin-top: 1.5vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 2.5vw 5vw;
  font-size: 1.144vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .job_role {
    margin-top: 5vw;
    font-size: 3.9vw;
    width: 92vw;
    padding: 7vw 4vw;
    border-radius: 0.8vw;
  }
}
.job_role .job_title {
  display: flex;
  gap: 1vw;
  align-items: baseline;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .job_role .job_title {
    gap: 3vw;
  }
}
@media (max-width: 767px) {
  .job_role .job_title img {
    width: 22vw;
  }
}
.job_role .role_block {
  margin-top: 1vw;
}
.job_role p {
  margin: 0;
}

.img_wrap .job_img {
  background: url(../img/cm_job.webp);
  background-size: 100%;
  padding: 7vw 7vw 33vw;
  position: absolute;
  width: 60vw;
  top: 0;
  right: 0;
  border-radius: 0.5vw 0 0 0.5vw;
}
@media (max-width: 767px) {
  .img_wrap .job_img {
    position: relative;
    top: -5vw;
    width: 88vw;
    right: -8vw;
    padding: 29vw 7vw;
    border-radius: 1.5vw 0 0 1.5vw;
  }
}
.img_wrap .job_img.wtw {
  background: url(../img/wtw_job.webp);
  background-size: 100%;
}

/*////////////////////////////////////////////////
1日
 ////////////////////////////////////////////////*/
#day {
  padding-top: 5vw;
  position: relative;
}
#day::after {
  content: "";
  background: url(../img/cm_day.svg);
  background-size: 100%;
  position: absolute;
  top: 6vw;
  left: 0;
  width: 13vw;
  height: 76.8vw;
}
@media (max-width: 1200px) {
  #day::after {
    top: 9vw;
    width: 25vw;
    height: 147.8vw;
  }
}

.day_work {
  padding-left: 8.5vw;
  padding-right: 6vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .day_work {
    padding-left: 12vw;
  }
}
.day_work::before {
  content: "";
  border-left: solid 1px #000;
  position: absolute;
  left: 6vw;
  width: 1px;
  height: 80.3vw;
  bottom: 0;
}
@media (max-width: 767px) {
  .day_work::before {
    width: 2px;
    top: 2vw;
    left: 4.5vw;
    bottom: 0;
    border-left: solid 2px #000;
    height: 99.5%;
  }
}
.day_work .works:not(:last-child) {
  margin-bottom: 5vw;
}
.day_work .works h3 {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  font-size: 1.85vw;
  position: relative;
  margin: 1vw 0;
}
.day_work .works h3::before {
  content: "";
  position: absolute;
  width: 1vw;
  height: 1vw;
  border: solid 1px #000;
  display: block;
  left: -3.05vw;
  border-radius: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .day_work .works h3 {
    gap: 2vw;
    font-size: 4.2vw;
    margin-bottom: 2vw;
  }
  .day_work .works h3::before {
    width: 3vw;
    height: 3vw;
    left: -9.05vw;
  }
}
.day_work .works h3 img {
  width: 4.5vw;
}
@media (max-width: 767px) {
  .day_work .works h3 img {
    width: 7vw;
  }
}
.day_work .works .work_wrap {
  display: block;
}
.day_work .works .work_wrap:not(:last-child) {
  margin-bottom: 1.5vw;
}
@media (max-width: 767px) {
  .day_work .works .work_wrap:not(:last-child) {
    margin-bottom: 6vw;
  }
}
.day_work .works .work {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.day_work .works .work .img {
  width: 21.45vw;
}
@media (max-width: 767px) {
  .day_work .works .work .img {
    width: 74vw;
    margin-bottom: 3vw;
  }
}
.day_work .works .work .text {
  width: 40vw;
}
@media (max-width: 767px) {
  .day_work .works .work .text {
    width: 74vw;
  }
}
.day_work .works .work .text .title {
  font-size: 1.73vw;
  font-weight: 600;
  margin: 0 0 1vw;
}
@media (max-width: 767px) {
  .day_work .works .work .text .title {
    font-size: 4.2vw;
  }
}
.day_work .works .work .text .description {
  margin: 0;
  font-size: 1.14vw;
}
@media (max-width: 767px) {
  .day_work .works .work .text .description {
    font-size: 3.8vw;
  }
}

/*////////////////////////////////////////////////
勉強会
////////////////////////////////////////////////*/
#study {
  padding-top: 5vw;
  position: relative;
}
@media (max-width: 767px) {
  #study {
    padding-top: 10vw;
  }
}
#study::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about2.svg);
  background-size: 100%;
  width: 11.5vw;
  height: 21vw;
  right: 0;
  bottom: -11vw;
}

.study-panel {
  background: var(--accent);
  padding: 5vw 0vw 2vw 11vw;
  width: 83vw;
  border-radius: 0 0.5vw 0.5vw 0;
  margin-left: -11vw;
  position: relative;
}
@media (max-width: 767px) {
  .study-panel {
    padding: 10vw 0vw 20vw 4vw;
    width: 94vw;
    border-radius: 0 1.5vw 1.5vw 0;
    margin-left: -4vw;
  }
}
.study-panel h2 {
  color: #fff;
  border-left: solid 0.4vw #FFF !important;
  margin-bottom: 2vw !important;
}
@media (max-width: 767px) {
  .study-panel h2 {
    border-left: solid 1vw #FFF !important;
  }
}
.study-panel p {
  font-size: 1.14vw;
  color: #fff;
  padding-left: 1.8vw;
  width: 39vw;
  margin: 0 0 2vw;
}
@media (max-width: 767px) {
  .study-panel p {
    font-size: 3.8vw;
    color: #fff;
    padding-left: 2vw;
    width: 87vw;
    margin: 0;
    z-index: 1;
    position: relative;
  }
}
.study-panel span.text-img {
  width: 87vw;
  margin-left: -10.7vw;
  display: block;
}
@media (max-width: 767px) {
  .study-panel span.text-img {
    width: 126vw;
    margin-left: -6.5vw;
    display: block;
    position: relative;
    top: -10vw;
  }
}
.study-panel .study-box {
  position: absolute;
  bottom: -6.2vw;
  right: -62px;
  width: 31vw;
  height: 29vw;
}
@media (max-width: 767px) {
  .study-panel .study-box {
    position: absolute;
    bottom: -31vw;
    right: -6vw;
    width: 83vw;
    height: 78vw;
  }
}
.study-panel .study-box .study {
  content: "";
  background: url(../img/cm_study2.webp);
  background-size: 100%;
  width: 100%;
  height: 100%;
  border-radius: 0.8vw;
  overflow: hidden;
}

/*////////////////////////////////////////////////
新入社員の教育体制
////////////////////////////////////////////////*/
#education_system {
  padding-top: 10vw;
}
@media (max-width: 767px) {
  #education_system {
    padding-top: 40vw;
  }
}
#education_system::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url(../img/about4.svg);
  background-size: 100%;
  width: 17.5vw;
  height: 17vw;
  left: -9vw;
  bottom: -15vw;
}

.education {
  padding-left: 4vw;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .education {
    padding-left: 0;
  }
}
.education .system {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7vw;
  padding-bottom: 6vw;
  border-top: solid 1px #D5D5D5;
  padding-top: 1.5vw;
  position: relative;
}
@media (max-width: 767px) {
  .education .system {
    padding-top: 4.5vw;
    padding-bottom: 8vw;
  }
}
.education .system .img {
  width: 23.58vw;
}
@media (max-width: 767px) {
  .education .system .img {
    width: 100%;
  }
}
.education .system .text {
  width: 43.88vw;
  position: relative;
}
@media (max-width: 767px) {
  .education .system .text {
    width: 100%;
    padding: 0 3vw;
  }
}
.education .system .text p.title {
  font-size: 1.88vw;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 767px) {
  .education .system .text p.title {
    font-size: 5vw;
    padding-bottom: 2vw;
  }
}
.education .system .text p.description {
  font-size: 1.155vw;
  margin: 0;
}
@media (max-width: 767px) {
  .education .system .text p.description {
    font-size: 3.5vw;
  }
}
.education .system.education1::before {
  content: "";
  background: url(../img/cm_education_01.svg);
  background-size: 100%;
  width: 9.3vw;
  height: 12.215vw;
  position: absolute;
  left: 26vw;
  display: block;
}
@media (max-width: 767px) {
  .education .system.education1::before {
    left: 0;
    top: 57vw;
    width: 14vw;
    height: 18vw;
  }
}
.education .system.education2::before {
  content: "";
  background: url(../img/cm_education_02.svg);
  background-size: 100%;
  width: 11.5vw;
  height: 12.215vw;
  position: absolute;
  left: 26vw;
  display: block;
}
@media (max-width: 767px) {
  .education .system.education2::before {
    left: 0;
    top: 57vw;
    width: 17vw;
    height: 18vw;
  }
}

/*////////////////////////////////////////////////
戻る
////////////////////////////////////////////////*/
#page_back {
  padding-bottom: 0;
}
#page_back .regions__footer {
  position: relative;
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 130px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
#page_back .regions__footer .button {
  padding: 0.2vw 2vw;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 767px) {
  #page_back .regions__footer .button {
    font-size: 4.5vw;
    padding: 0.3vw 5vw;
  }
}
@media (hover: hover) {
  #page_back .regions__footer .button:hover {
    color: var(--accent);
    background: #fff;
  }
}
@media (hover: none) {
  #page_back .regions__footer .button:active {
    color: var(--accent);
    background: #fff;
  }
}
#page_back .regions__footer::before {
  content: "";
  background-image: url(../img/modal_footer_1.webp);
  background-size: 100%;
  position: absolute;
  bottom: 0;
  height: 17vw;
  width: 25.5vw;
  left: 4vw;
}
@media (max-width: 767px) {
  #page_back .regions__footer::before {
    height: 36vw;
    width: 47vw;
    left: -18vw;
  }
}
#page_back .regions__footer::after {
  content: "";
  background-image: url(../img/modal_footer_2.webp);
  background-size: 100%;
  position: absolute;
  bottom: 0;
  height: 14.55vw;
  width: 25vw;
  right: 4vw;
}
@media (max-width: 767px) {
  #page_back .regions__footer::after {
    height: 28vw;
    width: 33vw;
    right: -5vw;
  }
}

@media (min-width: 1201px) {
  #page_back .regions__footer::before {
    content: "";
    background-image: url(../img/modal_footer_1.webp);
    background-size: 100%;
    position: absolute;
    height: 235px;
    width: 370px;
    left: 50px;
    bottom: 0;
  }
  #page_back .regions__footer::after {
    content: "";
    background-image: url(../img/modal_footer_2.webp);
    background-size: 100%;
    position: absolute;
    height: 205px;
    width: 370px;
    right: 50px;
    bottom: 0;
  }
}/*# sourceMappingURL=other.css.map */