@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  color: #313131;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.obj-fit img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.title h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #0277B3;
  padding-top: 1.8rem;
}
@media screen and (max-width: 768px) {
  .title h2 {
    font-size: 1.6rem;
    padding-top: 1.2rem;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

.scroll {
  opacity: 0;
}

.active {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

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

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
header
*************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease;
}
header .header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header_inner .logo_wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
header .header_inner .logo_wrap .logo {
  width: 16rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  header .header_inner .logo_wrap .logo {
    width: 10rem;
  }
}
header .header_inner .logo_wrap .logo a {
  display: block;
}
header .header_inner .logo_wrap p {
  font-size: clamp(10px, 0.6944444444vw, 18px);
  letter-spacing: 0.05em;
  color: #fff;
  padding: 7px 31px;
  border: 1px solid #fff;
  border-radius: 999px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  header .header_inner .logo_wrap p {
    margin-left: 0.8rem;
    padding: 5px 16px;
  }
}
header .header_inner .nav .entry a {
  padding: 2.2rem 3.6rem;
  border: 1px solid #fff;
  transition: all 0.3s;
  display: inline-flex;
  font-size: clamp(12px, 0.8333333333vw, 20px);
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .entry a {
    padding: 1.6rem 2.4rem;
  }
}
header .header_inner .nav .entry a:hover {
  background-color: #0277B3;
  border: 1px solid #0277B3;
}
header .header_inner .nav .entry a img {
  width: 15px;
  height: auto;
  margin-right: 1.2rem;
}
@media screen and (max-width: 1024px) {
  header .header_inner .nav .entry a img {
    margin-right: 1rem;
  }
}
header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header.header-scrolled .logo_wrap p {
  border-color: #313131;
  color: #313131;
}
header.header-scrolled .nav {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  header.header-scrolled .nav {
    margin-top: initial;
  }
}
header.header-scrolled .nav .entry a {
  color: #313131;
  border: 1px solid #313131;
}
header.header-scrolled .nav .entry a:hover {
  color: #fff;
}
header.header-scrolled .nav .entry a img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}
header.header-scrolled .nav .entry a:hover img {
  filter: none;
}
header.header-scrolled.menu-open .logo_wrap p {
  color: #fff;
  border-color: #fff;
}
header.header-scrolled .hamburger span {
  background-color: #333;
}
header.header-scrolled .hamburger.active span {
  background-color: #fff;
}
header.menu-open .logo_wrap p {
  color: #fff;
  border-color: #fff;
}

/*************************************************
footer
*************************************************/
footer {
  position: sticky;
  top: 100%;
  height: 26.1rem;
  background-color: #0277B3;
}
@media screen and (max-width: 768px) {
  footer {
    height: 13rem;
  }
}

/*************************************************
top
*************************************************/
.fv {
  width: 100vw;
  height: 100vh;
}
.fv .mv_wrap {
  position: relative;
  width: 100%;
}
.fv .mv_wrap .mv {
  width: 100%;
  height: 100vh;
}
.fv .mv_wrap .mv img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fv .mv_wrap .mv img {
    -o-object-position: 35% center;
       object-position: 35% center;
  }
}
.fv .mv_wrap .copy_wrap {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  text-align: center;
}
.fv .mv_wrap .copy_wrap .copy {
  font-size: min(4.8611111111vw, 70px);
  font-weight: 800;
  line-height: 1.7;
  color: #fff;
  position: relative;
  white-space: nowrap;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.7));
}
@media screen and (max-width: 768px) {
  .fv .mv_wrap .copy_wrap .copy {
    font-size: min(8.7179487179vw, 34px);
  }
}
.fv .mv_wrap .copy_wrap h2 {
  font-size: min(1.7361111111vw, 25px);
  font-weight: 300;
  color: #222;
  margin-top: 3.6805555556vw;
  display: inline-block;
  padding: 9px 68px;
  background-color: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.18));
}
@media screen and (max-width: 768px) {
  .fv .mv_wrap .copy_wrap h2 {
    padding-top: 3.4rem;
    font-size: min(5.1282051282vw, 20px);
    line-height: 1.7;
    padding: 9px 20px;
  }
}

.mission {
  background-color: rgba(162, 237, 255, 0.19);
  margin-top: 9.2rem;
  padding-bottom: 10.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mission {
    margin-top: 6rem;
    padding-bottom: 8rem;
  }
}
.mission .title {
  position: absolute;
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .mission .title {
    top: -3rem;
  }
}
.mission .title .mission-title {
  width: min(37.2916666667vw, 537px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .mission .title .mission-title {
    width: clamp(160px, 61.0256410256vw, 300px);
  }
}
.mission h3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
  padding-top: 13.6rem;
}
@media screen and (max-width: 768px) {
  .mission h3 {
    font-size: 2rem;
    padding-top: 6rem;
  }
}
.mission p {
  color: #0277B3;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 3.125;
  text-align: center;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .mission p {
    font-size: 1.4rem;
    padding-top: 4rem;
  }
}

.aboutus {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16.6rem 0 15.2rem 0;
}
@media screen and (max-width: 1024px) {
  .aboutus {
    margin: 0 2rem;
    padding: 8rem 0;
  }
}
.aboutus .title {
  text-align: center;
}
.aboutus .title .about-title {
  width: clamp(500px, 46.1805555556vw, 665px);
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .aboutus .title .about-title {
    width: clamp(180px, 73.3333333333vw, 350px);
  }
}
.aboutus .contents_wrap {
  display: flex;
  width: calc(100% + (100vw - 1040px) / 2);
  padding-top: 5.2rem;
  text-align: center;
  align-items: end;
}
@media screen and (max-width: 1024px) {
  .aboutus .contents_wrap {
    display: block;
    width: 100%;
  }
}
.aboutus .contents_wrap .text_wrap {
  margin-right: 13rem;
}
@media screen and (max-width: 1024px) {
  .aboutus .contents_wrap .text_wrap {
    margin-right: initial;
  }
}
.aboutus .contents_wrap .text_wrap h3 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .aboutus .contents_wrap .text_wrap h3 {
    font-size: 2rem;
  }
}
.aboutus .contents_wrap .text_wrap p {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 3.125;
  color: #0277B3;
  padding-top: 5.2rem;
}
@media screen and (max-width: 768px) {
  .aboutus .contents_wrap .text_wrap p {
    font-size: 1.4rem;
    padding-top: 3.2rem;
  }
}
.aboutus .contents_wrap .img_wrap {
  width: min(38.4027777778vw, 553px);
  height: min(25.5555555556vw, 368px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .aboutus .contents_wrap .img_wrap {
    margin: 4rem auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .aboutus .contents_wrap .img_wrap {
    width: 85.3846153846vw;
    height: 56.9230769231vw;
  }
}
.aboutus .contents_wrap .img_wrap img {
  position: relative;
  z-index: 2;
}
.aboutus .contents_wrap .img_wrap::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: min(38.4027777778vw, 553px);
  height: min(25.5555555556vw, 368px);
  background-color: #0277B3;
  transform: rotate(4deg); /* 4度傾ける */
  z-index: 1;
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .aboutus .contents_wrap .img_wrap::after {
    width: 85.3846153846vw;
    height: 56.9230769231vw;
  }
}

.rec-process .title {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .rec-process .title {
    display: block;
  }
}
.rec-process .title .recruitment-title {
  width: clamp(50px, 49.5833333333vw, 1000px);
}
@media screen and (max-width: 768px) {
  .rec-process .title .recruitment-title {
    width: 96.1538461538vw;
  }
}
.rec-process .title .inner_wrap {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .rec-process .title .inner_wrap {
    display: flex;
    flex-direction: row-reverse;
    margin-top: initial;
    justify-content: left;
    align-items: end;
    margin-left: 2rem;
  }
}
.rec-process .title .inner_wrap .rec-title {
  padding-top: initial;
  margin-left: 1rem;
}
.rec-process .title .inner_wrap h3 {
  color: #0277B3;
  font-size: clamp(50px, 4.8611111111vw, 90px);
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .rec-process .title .inner_wrap h3 {
    font-size: 10.2564102564vw;
  }
}
.rec-process .contents_wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 12.9rem;
}
@media screen and (max-width: 1120px) {
  .rec-process .contents_wrap {
    margin: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap {
    padding-bottom: 8rem;
  }
}
.rec-process .contents_wrap ul {
  display: flex;
  margin-top: 6.2rem;
  gap: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap ul {
    display: block;
    margin-top: 3.2rem;
  }
}
.rec-process .contents_wrap ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 85%;
  height: 2rem;
  background-color: #004097;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap ul::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 1.6rem;
    height: 100%;
  }
}
.rec-process .contents_wrap ul li {
  border: 3px solid #004097;
  background-color: #fff;
  border-radius: 2rem;
  width: 23%;
  height: auto;
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .rec-process .contents_wrap ul li:last-child {
    margin-bottom: 0;
  }
}
.rec-process .contents_wrap ul li .number {
  font-size: 4.6rem;
  font-family: "Bebas Neue", sans-serif;
  color: #ED5E5F;
}
.rec-process .contents_wrap ul li .img_wrap {
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap ul li .img_wrap {
    margin-top: -3rem;
  }
}
.rec-process .contents_wrap ul li .img_wrap img {
  max-height: 100%;
  width: auto;
}
.rec-process .contents_wrap ul li .p-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #004097;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap ul li .p-text {
    font-size: 1.4rem;
  }
}
.rec-process .contents_wrap .txt {
  font-size: 1.6rem;
  color: #0277B3;
  font-weight: 500;
  line-height: 1.813;
  letter-spacing: 0.03em;
  padding-top: 4.1rem;
}
@media screen and (max-width: 768px) {
  .rec-process .contents_wrap .txt {
    font-size: 1.4rem;
    padding-top: 2rem;
  }
}

.workstyle .title .workstyle-title {
  width: min(56.0416666667vw, 807px);
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .workstyle .title .workstyle-title {
    width: 92.0512820513vw;
  }
}
.workstyle .title h2 {
  text-align: center;
  padding-top: 4.7rem;
}
@media screen and (max-width: 768px) {
  .workstyle .title h2 {
    padding-top: 2.4rem;
  }
}
.workstyle .contents_wrap {
  background-color: rgba(162, 237, 255, 0.19);
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap {
    margin-top: 2.4rem;
  }
}
.workstyle .contents_wrap .job-container {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .workstyle .contents_wrap .job-container {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-container {
    flex-direction: column;
  }
}
.workstyle .contents_wrap .job-container .check-badge {
  bottom: 50px;
  font-size: 14px;
  padding: 6px 20px;
}
.workstyle .contents_wrap .job-container .job-title {
  padding: 10px;
  font-size: 16px;
}
.workstyle .contents_wrap .job-container:last-child {
  margin-bottom: 0;
}
.workstyle .contents_wrap .job-card {
  position: relative;
  flex: 1;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-card {
    width: 100%;
    height: 100%;
    aspect-ratio: 17/8;
    margin-bottom: 1px;
  }
}
.workstyle .contents_wrap .job-card a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.workstyle .contents_wrap .job-card a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.57);
  transition: opacity 0.3s ease;
}
.workstyle .contents_wrap .job-card a:hover::before {
  opacity: 0;
}
.workstyle .contents_wrap .job-card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.workstyle .contents_wrap .job-card a .check-badge {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-color: #0277B3;
  color: #fff;
  padding: 8px 28px;
  border-radius: 999px;
  font-size: clamp(12px, 1.1805555556vw, 17px);
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-card a .check-badge {
    font-size: 1.4rem;
  }
}
.workstyle .contents_wrap .job-card a .job-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0277B3;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: clamp(12px, 1.3888888889vw, 20px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-card a .job-title {
    font-size: 1.5rem;
  }
}
.workstyle .contents_wrap .job-card.active a::before {
  opacity: 0;
}
.workstyle .contents_wrap .job-details {
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 16rem;
}
@media screen and (max-width: 1024px) {
  .workstyle .contents_wrap .job-details {
    margin: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details {
    padding-top: 8rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content {
  display: none;
}
.workstyle .contents_wrap .job-details .job-detail-content.active {
  display: block;
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap {
  max-width: 1040px;
  margin: 0 auto;
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-profile_heading {
  font-size: min(4.8611111111vw, 70px);
  text-shadow: 4px 4px rgb(255, 255, 255);
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 1130px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-profile_heading {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-profile_heading {
    font-size: 8.7179487179vw;
    text-shadow: 2px 2px rgb(255, 255, 255);
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card {
  display: flex;
  justify-content: right;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card {
    flex-direction: column;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card .img_wrap {
  width: min(46.875vw, 675px);
  height: min(24.5138888889vw, 353px);
  aspect-ratio: 675/374;
  margin: -25px auto 0 auto;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card .img_wrap {
    width: 90%;
    height: auto;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card .img_wrap::after {
  position: absolute;
  content: "";
  top: 21px;
  right: -40px;
  width: min(46.875vw, 675px);
  height: min(24.5138888889vw, 353px);
  background-color: #0277B3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card .img_wrap::after {
    width: 100%;
    height: 100%;
    top: 21px;
    right: -21px;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .staff-card .img_wrap img {
  height: 100%;
  position: relative;
  z-index: 2;
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .contents_title {
  margin-top: 11.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .contents_title {
    margin-top: 6rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .contents_title span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #0277B3;
  padding: 18px 140px 18px 150px;
  background-color: #fff;
  box-shadow: 7px 7px 0 0 #0277B3;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .contents_title span {
    padding: 12px 20px 12px 20px;
    font-size: 1.8rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule {
  margin-top: 4.5rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule {
    margin-top: 5rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .img_wrap {
  width: 523px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .img_wrap {
    display: none;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .img_wrap img {
  height: 100%;
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap {
  margin-left: 6.7361111111vw;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap {
    margin-left: initial;
    padding-top: initial;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text {
  padding-bottom: 6.2rem;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text {
    padding-bottom: 3.5rem;
  }
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text:last-child {
    padding-bottom: 0;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .img_wrap_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .img_wrap_sp {
    display: block;
    width: 100%;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap {
    padding-top: 1.6rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap .time {
  font-size: 5rem;
  font-family: "Bebas Neue", sans-serif;
  color: #0277B3;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap .time {
    font-size: 3.6rem;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap .time_detail {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: 1.6rem;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .time_wrap .time_detail {
    margin-left: 1rem;
    line-height: 1.5;
  }
}
.workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .schedule_text {
  padding-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .job-details .job-detail-content .job-detail_wrap .time-schedule .time-schedule_text_wrap .time-schedule_text .schedule_text {
    font-size: 1.4rem;
  }
}
.workstyle .contents_wrap .employee-message_wrap {
  display: flex;
  margin-top: 97px;
  padding-bottom: 217px;
  align-items: flex-start; /* 上揃え */
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap {
    display: block;
    padding-bottom: 100px;
  }
}
.workstyle .contents_wrap .employee-message_wrap .employee-message_img {
  width: min(24.1666666667vw, 348px);
  height: min(27.3611111111vw, 394px);
  aspect-ratio: 174/197;
  position: relative;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .employee-message_img {
    width: 70%;
    height: 63.5897435897vw;
    margin: 0 auto;
  }
}
.workstyle .contents_wrap .employee-message_wrap .employee-message_img .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: min(24.1666666667vw, 348px);
  height: min(27.3611111111vw, 394px);
  transform: rotate(-7deg);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .employee-message_img .img-wrapper {
    width: 100%;
    height: 100%;
  }
}
.workstyle .contents_wrap .employee-message_wrap .employee-message_img .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.workstyle .contents_wrap .employee-message_wrap .employee-message_img .background-element {
  position: absolute;
  top: 0;
  left: -10px;
  width: min(24.0972222222vw, 347px);
  height: min(29.1666666667vw, 420px);
  background-color: #0277B3;
  transform: rotate(-10deg);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .employee-message_img .background-element {
    width: 100%;
    height: 100%;
  }
}
.workstyle .contents_wrap .employee-message_wrap .text_wrap {
  flex: 1;
  padding: 40px 30px 30px 30px;
  background-color: #fff;
  margin-top: 4.3rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  max-width: 608px;
  height: auto;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .text_wrap {
    margin-top: initial;
    margin-left: initial;
    max-width: 100%;
    padding: 40px 20px 20px 20px;
  }
}
.workstyle .contents_wrap .employee-message_wrap .text_wrap .employee-message_heading {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .text_wrap .employee-message_heading {
    font-size: 2.4rem;
  }
}
.workstyle .contents_wrap .employee-message_wrap .text_wrap p {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .workstyle .contents_wrap .employee-message_wrap .text_wrap p {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

.btn {
  text-align: center;
  margin: 12.1rem auto 13.4rem auto;
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 8rem auto;
  }
}
.btn a {
  background-color: #0277B3;
  padding: 2.3rem 13.5rem;
  font-size: 5rem;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.btn a:hover {
  background-color: #fff;
  border: 3px solid #0277B3;
  color: #0277B3;
}
@media screen and (max-width: 768px) {
  .btn a:hover {
    border: 2px solid #0277B3;
  }
}
@media screen and (max-width: 768px) {
  .btn a {
    padding: 1.6rem 6rem;
    font-size: 3rem;
  }
}
.btn a img {
  width: 3.3rem;
  height: 3.3rem;
  margin-left: 2.3rem;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn a img {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1.6rem;
  }
}
.btn a:hover img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(97%) saturate(1242%) hue-rotate(176deg) brightness(80%) contrast(101%);
}

footer {
  height: 260px;
  background-color: #0277B3;
}
@media screen and (max-width: 768px) {
  footer {
    height: 130px;
  }
}/*# sourceMappingURL=style.css.map */