@charset "utf-8";
/*-------------------共通-------------------*/
html {
  scroll-padding: 9.1rem;
}

.large-container {
  width: calc(100% - 6.6rem);
  max-width: 193.4rem;
  margin-inline: auto;
}

.inner {
  width: calc(100% - 30.8rem);
  max-width: 169.2rem;
}

.small-inner {
  width: calc(100% - 57.2rem);
  max-width: 142.8rem;
  margin-inline: auto;
}

.section-title .common-heading {
  font-size: 8.8rem;
  margin-bottom: .3rem;
}

.section-title p {
  font-size: 2.4rem;
  line-height: 2;
}

.section-title.js-split-fade .common-heading {
  letter-spacing: -1.5rem;
}

.section-title.js-split-fade p {
  letter-spacing: -0.27rem;
}

.common-top {
  height: 27.6rem;
  padding: 9rem 6rem;
  margin: 9.1rem 0 12.8rem;
}

.sp {
  display: none;
}

/*-------------------ヘッダー-------------------*/
header {
  height: 9.1rem;
}

header .logo-nav {
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

header .logo-nav h1 a img,
header .logo-nav p a img {
  width: 20.7rem;
}

header .logo-nav nav ul {
  height: 100%;
  align-items: center;
  gap: 3.6rem;
}

header .logo-nav nav ul .nav-item {
  cursor: pointer;
}

header .logo-nav nav ul .nav-item.drop-down {
  position: relative;
  padding-right: 1.6rem;
}

header .logo-nav nav ul .nav-item .nav-link {
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4.3rem;
}

header .logo-nav nav ul .nav-item .nav-link::before {
  content: "";
  width: 100%;
  height: .12rem;
  background: #333;
  position: absolute;
  top: 2.8rem;
  left: 0;
  z-index: 1;
  transform: scale(0, 1);
  transition: .5s;
  transform-origin: left;
}

header .logo-nav nav ul .nav-item:hover .nav-link::before {
    transform: scale(1, 1);
}

header .logo-nav nav ul .nav-item.drop-down .nav-link::after {
  content: "";
  width: 0.57rem;
  height: 0.57rem;
  border-top: 0.2rem solid #333;
  border-right: 0.2rem solid #333;
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 17%;
  right: -1.37rem;
  transition: transform .5s ease;
  cursor: auto;
}

header .logo-nav nav ul .nav-item.drop-down:hover .nav-link::after {
  top: 18%;
  transform: translateY(0) rotate(-45deg);
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap {
  position: absolute;
  top: 6.5rem;
  left: -4rem;
  width: 26.7rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: .1rem 0 .6rem rgba(0, 0, 0, .16);
  padding: 0 1.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
  overflow: hidden;
}

header .logo-nav nav ul .nav-item.drop-down:nth-of-type(1) .sub-menu-wrap {
  width: 29rem;
}

header .logo-nav nav ul .nav-item.drop-down:hover .sub-menu-wrap {
  opacity: 1;
  pointer-events: auto;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu {
  width: 100%;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .4s ease;
}

header .logo-nav nav ul .nav-item.drop-down:hover .sub-menu-wrap .sub-menu {
  clip-path: inset(0 0 0 0);
}

header .logo-nav nav ul .nav-item.drop-down:hover .sub-menu-wrap .sub-menu .sub-menu-item {
  width: 100%;
  border-bottom: 0.1rem solid #D9E1EC;
  display: block;
}

header .logo-nav nav ul .nav-item.drop-down:hover .sub-menu-wrap .sub-menu .sub-menu-item :nth-last-of-type(1) {
  border-bottom: none;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu .sub-menu-item a {
  width: 100%;
  padding: 1.85rem 0.3rem 1.75rem 1rem;
  position: relative;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu .sub-menu-item a:hover .circle .arrow::before {
  animation: arrowOut 0.5s forwards;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu .sub-menu-item a:hover .circle .arrow::after {
  animation: arrowIn 0.5s forwards;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu .sub-menu-item a .circle {
  right: 0;
}

header .logo-nav nav ul .nav-item.drop-down .sub-menu-wrap .sub-menu .sub-menu-item a p {
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

  header .sp {
    display: block;
  }

  header .logo-nav .ham-btn {
    width: 9.1rem;
    height: 9.1rem;
    background: #024BB1;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transition: .5s ease;
    cursor: pointer;
  }

  header .logo-nav .ham-btn:hover {
    opacity: .7;
  }

  header .logo-nav .ham-btn span {
    width: 2.75rem;
    height: 0.15rem;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
  }

  header .logo-nav .ham-btn span:nth-of-type(1) {
    top: calc(50% - 0.7rem);
  }

  header .logo-nav .ham-btn.active  span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  header .logo-nav .ham-btn span:nth-of-type(2) {
    top: 50%;
  }

  header .logo-nav .ham-btn.active  span:nth-of-type(2) {
    display: none;
  }

  header .logo-nav .ham-btn span:nth-of-type(3) {
    top: calc(50% + 0.7rem);
  }

  header .logo-nav .ham-btn.active  span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-225deg);
  }

  header .logo-nav .ham-wrap {
    width: 100%;
    height: calc(100vh - 9.1rem);
    background: #F5F5F5;
    gap: 0;
    padding: 2.8rem 1.9rem 4rem;
    position: fixed;
    top: 9.1rem;
    right: -100%;
    opacity: 0;
    transition: .5s ease;
    overflow-y: scroll;
  }

  header .logo-nav .ham-wrap.active {
    right: 0;
    opacity: 1;
  }

  header .logo-nav .ham-wrap nav {
    margin-bottom: 2.8rem;
  }

  header .logo-nav .ham-wrap nav ul {
    flex-direction: column;
    gap: 0;
  }

  header .logo-nav .ham-wrap nav ul .nav-item {
    width: 100%;
    padding-right: 0;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .nav-link {
    width: 100% !important;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview .nav-link {
    display: block;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion,
  header .logo-nav .ham-wrap nav ul .nav-item.interview {
    width: 100%;
    list-style: none;
    cursor: pointer;
    transition: .5s ease;
    position: relative;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion::before,
  header .logo-nav .ham-wrap nav ul .nav-item.interview::before {
    content: "";
    width: 100%;
    height: 0.1rem;
    background: #707070;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion::after,
  header .logo-nav .ham-wrap nav ul .nav-item.interview::after {
    content: "";
    width: 100%;
    height: 0.2rem;
    background: #024BB1;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: left;
    transition: 0.5s ease;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion:hover::after,
  header .logo-nav .ham-wrap nav ul .nav-item.interview:hover::after {
    transform: scale(1);
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion summary,
  header .logo-nav .ham-wrap nav ul .nav-item.interview a {
    padding: 2rem 0 2rem 2rem;
    display: block;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label,
  header .logo-nav .ham-wrap nav ul .nav-item.interview {
    transition: .5s ease;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview .circle {
    right: 1.6rem;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview a:hover .circle .arrow::before {
    animation: arrowOut 0.5s forwards;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview a:hover .circle .arrow::after {
    animation: arrowIn 0.5s forwards;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview:hover .nav-link::before {
    animation: arrowOutBtnHam 0.5s forwards;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview:hover .nav-link::after {
    animation: arrowInBtnHam 0.5s forwards;
  }

  @keyframes arrowOutBtnHam {
    0% {
    right: 1.9rem;
    opacity: 1;
    }
    100% {
    right: 0rem;
    opacity: 0;
    }
  }

  @keyframes arrowInBtnHam {
    0% {
    right: 3.5rem;
    opacity: 0;
    }
    100% {
    right: 1.9rem;
    opacity: 1;
    }
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
    overflow: hidden;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle .nav-arrow {
    width: 100%;
    height: 100%;
    position: relative;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle .nav-arrow::before,
  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle .nav-arrow::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.2rem solid #024BB1;
    border-right: 0.2rem solid #024BB1;
    position: absolute;
    right: 0.9rem;
    transition: transform .35s cubic-bezier(.22,.9,.35,1), top .35s cubic-bezier(.22,.9,.35,1), opacity .25s linear;
    z-index: 1;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle .nav-arrow::before {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    opacity: 1;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a .circle .nav-arrow::after {
    top: -50%;
    transform: translateY(-50%) rotate(135deg);
    opacity: 0;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion:not([open]):not(.closing) .label:hover a .circle .nav-arrow::before {
    animation: navArrowOutUp 0.5s forwards;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion:not([open]):not(.closing) .label:hover a .circle .nav-arrow::after {
    animation: navArrowInUp 0.5s forwards;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion.closing .label:hover a .circle .nav-arrow::before,
  header .logo-nav .ham-wrap nav ul .nav-item .accordion.closing .label:hover a .circle .nav-arrow::after {
    animation: none !important;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion[open] .label a .circle .nav-arrow::before {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
    opacity: 1;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion[open] .label a .circle .nav-arrow::after {
    transform: translateY(-50%) rotate(-45deg);
    top: -50%;
    opacity: 0;
  }

  @keyframes navArrowOutUp {
    0% {
      top: 50%;
      opacity: 1;
    }
    100% {
      top: 150%;
      opacity: 0;
    }
  }

  @keyframes navArrowInUp {
    0% {
      top: -50%;
      opacity: 0;
    }
    100% {
      top: 50%;
      opacity: 1;
    }
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .label a,
  header .logo-nav .ham-wrap nav ul .nav-item.interview .nav-link {
    color: #3B4043;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2;
    display: block;
    position: relative;
    pointer-events: none;
  }

  header .logo-nav .ham-wrap nav ul .nav-item.interview .nav-link {
    pointer-events: all;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .sub-menu {
    display: none;
    position: static;
    padding: 0 2rem 2rem 2rem;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion[open] .sub-menu {
    display: block;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .sub-menu .sub-menu-item {
    color: #3B4043;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    transition: .5s ease;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .sub-menu .sub-menu-item:hover {
    opacity: .7;
  }

  header .logo-nav .ham-wrap nav ul .nav-item .accordion .sub-menu .sub-menu-item:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  header .logo-nav .ham-wrap .btn {
    width: 100%;
    max-width: 33.7rem;
    display: flex;
    margin-bottom: 2.4rem;
    margin-inline: auto;
  }

  header .logo-nav .ham-wrap .btn .txt {
    justify-content: center;
    padding-top: 0;
  }

  header .logo-nav .ham-wrap .corporate-link {
    width: fit-content;
    height: fit-content;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    margin-inline: auto;
    display: flex;
  }

  header .logo-nav .ham-wrap .corporate-link:hover {
    opacity: .7;
  }

  header .logo-nav .ham-wrap .corporate-link p {
    border-bottom: 0.1rem solid #333333;
    padding: 0;
  }

  header .logo-nav .ham-wrap .corporate-link img {
    width: 1.2rem;
    display: block;
  }

}

/*----------------------------------------------------------------------------

トップページ

-----------------------------------------------------------------------------*/
/*------------------------------ ファーストビュー ------------------------------*/
#top .fv .fv-copy {
  top: 47.2%;
  left: 16.3%;
}

#top .fv .fv-wrap .scroll {
  position: absolute;
  top: calc(100vh - 36.4rem);
  top: calc(100dvh - 36.4rem);
  left: 3.52rem;
  z-index: 100;
}

#top .fv .fv-wrap .scroll .scroll-animation::before {
  top: 0;
  left: -0.37rem;
}

@keyframes moveDown {
  0% { top: 0; }
  100% { top: 12.1rem; }
}

#top .fv .fv-wrap .scroll p {
  font-size: 1.4rem;
  line-height: 1.9;
}

#top .fv .fv-wrap .scroll p::before {
  top: 0;
  left: 0;
}

#top .fv .fv-wrap .scroll p::after {
  top: 8.7rem;
  left: 0;
}

#top .fv .fv-wrap .fv-bg {
  height: calc(100vh - 9.1rem);
  height: calc(100dvh - 9.1rem);
  border-radius: 1rem;
  margin-top: 9.1rem;
  margin-left: 7.2rem;
}

#top .fv .fv-wrap .fv-message {
  height: calc(100vh - 14.2rem);
  height: calc(100dvh - 14.2rem);
  min-height: 95.4rem !important;
  background: #2180CC;
  padding-top: 26.6rem;
  margin-top: -18.6rem;
}

#top .fv .fv-wrap .fv-message .fv-message-txt {
  margin-inline: auto;
}

#top .fv .fv-wrap .fv-message .fv-message-txt p {
  line-height: 2.5;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(2) {
  width: 22.4%;
  aspect-ratio: 306 / 204;
  top: calc(18.6rem - 0.3%);
  right: 5.6%;
  z-index: 2;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(3) {
  width: 27.5%;
  aspect-ratio: 376 / 250;
  top: 65.4%;
  right: 13.2%;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
  width: 19.3%;
  aspect-ratio: 264 / 175;
  bottom: 27.4%;
  left: 8%;
}

@media (max-width: 1200px) {
  #top .fv .fv-copy {
    left: 13.3%;
  }

  #top .fv .fv-copy h2 {
    font-size: 4.3rem;
  }

  #top .fv .fv-wrap .fv-message .fv-message-txt p {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  #top .fv .fv-wrap .fv-message {
    padding-top: 42.6rem;
  }
}

/*------------------------------ Works ------------------------------*/
#top .works {
  padding: 11.4rem 0 13.6rem;
  margin-bottom: 11.4rem;
}

#top .works .section-title {
  margin-bottom: 2.8rem;
}

#top .works .txt-btn {
  justify-content: space-between;
  margin-bottom: 4.8rem;
}

#top .works .txt-btn .txt {
  width: 48%;
}

#top .works .txt-btn .btn .txt {
  width: 100%;
}

#top .works .works-contents {
  align-items: flex-end;
  justify-content: space-between;
}

#top .works .works-contents .fade-wrapper {
  width: 43.1%;
  height: 60rem;
  transition: opacity .5s ease;
}

#top .works .works-contents picture {
  transition: opacity .5s ease;
}

#top .works .works-contents .work-contents-list {
  width: 50%;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a {
  padding: 1.7rem 3rem;
}

#top .works .works-contents .work-contents-list .work-contents-list-item h3 {
  font-size: 2.4rem;
  line-height: 1.5;
}

#top .works .works-contents .work-contents-list .work-contents-list-item p {
  width: calc(100% - 5.6rem);
  font-size: 1.2rem;
  line-height: 2;
}

.fade-wrapper {
  position: relative;
}

.fade-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .6s ease;
}

.fade-wrapper img.fade-out {
  opacity: 0;
}

@media (max-width: 1200px) {
  #top .works .works-contents .work-contents-list .work-contents-list-item h3 {
    font-size: 2rem;
  }

  #top .works .works-contents .work-contents-list .work-contents-list-item p {
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  #top .works .works-contents {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  #top .works .txt-btn .txt {
    width: 100%;
  }
  
  #top .works .pc {
    display: none;
  }

  #top .works .sp {
    display: block;
  }

  #top .works .works-contents .sp {
    width: 100%;
    gap: 1.4rem;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
  }

  #top .works .works-contents .img-wrap .img {
    width: 25rem;
    flex-shrink: 0;
  }

  #top .works .works-contents .work-contents-list {
    width: 100%;
  }

  #top .works .btn.sp {
    margin-inline: auto;
  }
}

/*------------------------------ Interview ------------------------------*/
#top .interview {
  margin-bottom: 13.6rem;
}

#top .interview .section-title {
  margin-bottom: 2.8rem;
}

#top .interview .txt-btn {
  justify-content: space-between;
  margin-bottom: 4.8rem;
}

#top .interview .txt-btn .txt {
  width: 48%;
}

#top .interview .txt-btn .btn {
  display: flex;
}

#top .interview .txt-btn .btn .txt {
  width: 100%;
}

#top .interview .interview-contents {
  gap: 5.2rem;
}

#top .interview .interview-contents .interview-contents-item {
  width: calc((100% - 10.4rem) / 3);
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-img {
  margin-bottom: 1.4rem;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-img picture img {
  height: 40rem;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt p {
  line-height: 1.9;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

@media (max-width: 1200px) {
  #top .interview .txt-btn .txt {
    width: 100%;
  }

  #top .interview .txt-btn .pc {
    display: none;
  }

  #top .interview .interview-contents {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  #top .interview .interview-contents .interview-contents-item {
    width: 100%;
  }

  #top .interview .sp {
    display: flex;
    margin-inline: auto;
  }
}

/*------------------------------ Values ------------------------------*/
#top .values {
  padding: 11.4rem 0 13.6rem;
  margin-bottom: 11.4rem;
}

#top .values .section-title {
  margin-bottom: 4.8rem;
}

#top .values .values-contents {
  width: calc(100% - 15.4rem);
  max-width: 184.6rem;
  position: relative;
  margin-bottom: 10rem;
  aspect-ratio: 1212 / 496;
}

#top .values .values-contents:nth-child(odd) {
  margin-right: auto;
}

#top .values .values-contents:nth-child(even) {
  margin-left: auto;
}

#top .values .values-contents .img {
  width: 55.4%;
  aspect-ratio: 672 / 496;
  position: absolute;
  top: 0;
}

#top .values .values-contents:nth-child(odd) .img {
  right: 0;
}

#top .values .values-contents:nth-child(even) .img {
  left: 0;
}

#top .values .values-contents .txt {
  width: 54.9%;
  position: absolute;
  bottom: 4rem;
  z-index: 1;
}

#top .values .values-contents:nth-child(odd) .txt {
  left: 0;
}

#top .values .values-contents:nth-child(even) .txt {
  right: 0;
}

#top .values .values-contents .txt h3 {
  font-size: 4rem;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  z-index: 2;
}

#top .values .values-contents:nth-child(odd) h3 {
  margin-left: 15.4rem;
}

#top .values .values-contents:nth-child(even) h3 {
  right: 0;
  margin-right: 15.4rem;
  margin-left: auto;
}


#top .values .values-contents .txt p {
  line-height: 2.5;
  padding: 6.8rem 6rem;
  margin-top: 5.6rem;
  z-index: 1;
}

#top .values .values-contents:nth-child(odd) .txt p {
  padding-left: 15.4rem;
}

#top .values .values-contents:nth-child(even) .txt p {
  padding-right: 15.4rem;
}

@media (max-width: 1200px) {
  #top .values .values-contents,
  #top .values .values-contents .txt,
  #top .values .values-contents .txt h3,
  #top .values .values-contents .img {
    position: static;
  }

  #top .values .values-contents {
    width: calc(100% - 30.8rem);
    max-width: 169.2rem;
    margin-inline: auto;
  }

  #top .values .values-contents .img {
    width: calc(100% - 4rem);
  }

  #top .values .values-contents:nth-child(odd) .img {
    margin-left: auto;
  }

  #top .values .values-contents .txt {
    width: calc(100% - 2rem);
    margin-top: -14rem;
  }

  #top .values .values-contents:nth-child(even) .txt {
    margin-left: auto;
  }

  #top .values .values-contents .txt h3 {
    font-size: 3rem;
    margin-left: 2rem;
    margin-right: 0;
    position: relative;
    z-index: 2;
  }

  #top .values .values-contents .txt p {
    padding: 4.8rem 4rem !important;
    margin-top: -3.2rem;
  }
}

/*------------------------------ Feature ------------------------------*/
#top .feature {
  margin-bottom: 13.6rem;
  position: relative;
}

#top .feature::before,
#top .feature::after {
  content: "";
  width: 81.8%;
  height: 27.4%;
  background: #F5F5F5;
  position: absolute;
  z-index: -1;
}

#top .feature::before {
  top: 36.9%;
  left: 0;
}

#top .feature::after {
  top: 80.3%;
  right: 0;
}

#top .feature .section-title {
  margin-bottom: 8rem;
}

#top .feature .feature-contents {
  flex-wrap: wrap;
  gap: 4.8rem 5.8rem;
}

#top .feature .feature-contents .feature-contents-item {
  width: calc((100% - 5.8rem) / 2);
  padding: 3rem 3.4rem 7.6rem;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .icon {
  width: fit-content;
  margin-bottom: 3.4rem;
  margin-inline: auto;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .txt h3 {
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 1.4rem;
}

#top .feature .feature-contents .feature-contents-item .point {
  width: calc(100% - 5.2rem);
}

@media (max-width: 1200px) {
  #top .feature .feature-contents {
    flex-direction: column;
  }

  #top .feature .feature-contents .feature-contents-item {
    width: 100%;
  }
}

/*------------------------------ Numbers ------------------------------*/
#top .numbers {
  background: #2180CC;
  padding: 14.4rem 0 13.6rem;
  margin-bottom: 8.6rem;
}

#top .numbers .section-title {
  margin-bottom: 8rem;
}

#top .numbers .section-title h2,
#top .numbers .section-title p {
  color: #fff;
}

#top .numbers .numbers-contents {
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

#top .numbers .numbers-contents .numbers-contents-item {
  width: calc((100% - 4rem) / 3);
  background: #fff;
  border-radius: 1rem;
  padding: 3.6rem 0;
}

#top .numbers .numbers-contents .numbers-contents-item.construction .construction-type-wrap {
  justify-content: center;
  gap: 2.7rem;
}

#top .numbers .numbers-contents .numbers-contents-item.construction p {
  margin-bottom: 1rem;
}

#top .numbers .numbers-contents .numbers-contents-item strong,
#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type strong {
  gap: 1.2rem;
}

#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type p {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1;
  margin-bottom: 0.5rem;
}

#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type strong .number {
  font-size: 4rem;
}

#top .numbers .numbers-contents .numbers-contents-item.orderer ,
#top .numbers .numbers-contents .numbers-contents-item.type {
  width: calc((100% - 2rem) / 2);
  padding: 2.6rem 0 0;
}

#top .numbers .numbers-contents .orderer .graph-number,
#top .numbers .numbers-contents .type .graph-number {
  padding: 6.1rem 0 7.23rem;
}

#top .numbers .numbers-contents .orderer .graph-number .graph,
#top .numbers .numbers-contents .type .graph-number .graph {
  width: fit-content;
  margin-inline: auto;
}

#top .numbers .numbers-contents .type .graph-number .graph svg {
  transform: rotate(5deg);
}

#top .numbers .numbers-contents .orderer .graph-number .graph-number-label strong .number,
#top .numbers .numbers-contents .type .graph-number .graph-number-label strong .number {
  font-size: 4rem;
}

@media (max-width: 1400px) {
  #top .numbers .numbers-contents .numbers-contents-item.construction .construction-type-wrap {
    gap: 1.7rem;
  }

  #top .numbers .numbers-contents .numbers-contents-item.orderer,
  #top .numbers .numbers-contents .numbers-contents-item.type {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .small-inner {
    width: calc(100% - 30.8rem);
  }

  #top .numbers .numbers-contents .numbers-contents-item {
    width: calc((100% - 2rem) / 2);
  }

  #top .numbers .numbers-contents .numbers-contents-item.construction,
  #top .numbers .numbers-contents .numbers-contents-item.orderer,
  #top .numbers .numbers-contents .numbers-contents-item.type {
    width: 100%;
  }

  #top .numbers .numbers-contents .numbers-contents-item .graph svg {
    width: 13.9rem;
  }

  #top .numbers .numbers-contents .orderer .graph-number {
    padding: 6.1rem 0 4.23rem;
  }

  #top .numbers .numbers-contents .type .graph-number {
    padding: 6.1rem 0 6.23rem;
  }

  #top .numbers .numbers-contents .orderer .graph-number .graph-number-label:nth-child(2)  {
    left: calc(50% + 7.5rem);
  }

  #top .numbers .numbers-contents .orderer .graph-number .graph-number-label:nth-child(3)  {
    right: calc(50% + 9rem);
  }

  #top .numbers .numbers-contents .orderer .graph-number .graph-number-label:nth-child(4)  {
    right: calc(50% + 5rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(2)  {
    left: calc(50% + 7.1rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(3)  {
    left: calc(50% + 6rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(4)  {
    right: calc(50% + 5rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(5)  {
    right: calc(50% + 7.25rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(6)  {
    right: calc(50% + 10.1rem);
  }

  #top .numbers .numbers-contents .type .graph-number .graph-number-label:nth-child(7)  {
    right: calc(50% + 4.4rem);
  }
}

/*------------------------------ Message ------------------------------*/
#top .message {
  margin-bottom: 20rem;
}

#top .message .bg {
  width: 83.3%;
  padding: 6.8rem 8.7rem 20rem 15.4rem;
}

#top .message .bg .section-title {
  margin-bottom: 4.8rem;
}

#top .message .bg .massage-txt {
  gap: 6rem;
}

#top .message .bg .massage-txt h3 {
  width: 28rem;
  font-size: 4rem;
  line-height: 1.6;
}

#top .message .bg .massage-txt p {
  width: calc(100% - 34rem);
  line-height: 2.1;
}

#top .message .message-img {
  gap: 7.4rem;
  margin-top: -15.8rem;
}

#top .message .message-img .img {
  width: calc((100% - 7.4rem) / 2);
  aspect-ratio: 492 / 544;
}

#top .message .message-img .img:nth-last-of-type(1) {
  top: 10rem;
}

@media (max-width: 1200px) {
  #top .message .bg .massage-txt {
    flex-direction: column;
  }

  #top .message .bg .massage-txt h3,
  #top .message .bg .massage-txt p {
    width: 100%;
  }
}

/*------------------------------ join-us ------------------------------*/
.join-us-btn::after {
  height: 9.7rem;
}

.join-us-btn .bg {
  background-image: url(../img/common/join-us-bg-pc.jpg);
  background-position: center;
  height: 52.8rem;
  top: 8.6rem;
}

.join-us-btn .join-us {
  height: 17.3rem;
  margin-bottom: 34.3rem;
}

.join-us-btn .join-us .loop {
  width: 91.2rem;
  height: 17.3rem;
  margin-right: 20rem;
}

.join-us-btn .join-us .loop img {
  width: 100%;
  width: 91.2rem;
}

.join-us-btn .btn-wrap {
  gap: 2.2rem;
}

.join-us-btn .btn-wrap .btn {
  width: calc((100% - 2.2rem) /2);
  height: 19.5rem;
  padding: 0 4rem 0 4.4rem;
}

.join-us-btn .btn-wrap .btn .circle {
  right: 4rem;
}

@media (max-width: 1000px) {
  .join-us-btn::after {
    height: 21.3rem;
  }

  .join-us-btn .bg {
    height: 26rem;
    top: 3.7rem;
  }

  .join-us-btn .join-us {
    height: 7.4rem;
    margin-bottom: 15.6rem;
  }

  .join-us-btn .join-us .loop {
    width: 37.5rem;
    height: 7.4rem;
    margin-right: 8rem;
  }

  .join-us-btn .join-us .loop img {
    width: 37.5rem;
  }

  .join-us-btn .btn-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .join-us-btn .btn-wrap .btn {
    width: 100%;
    height: 13.5rem;
    padding: 0 2.4rem;
  }
}

/*------------------------------ フッター ------------------------------*/
footer {
  background: #F5F5F5;
  padding: 8rem 0 2rem;
}

footer .address-nav {
  justify-content: space-between;
  margin-bottom: 8.7rem;
}

footer .address-nav .logo-address .logo {
  margin-bottom: 2.9rem;
}

footer .address-nav .logo-address address {
  margin-bottom: 2.6rem;
}

footer .address-nav .logo-address .corporate-link {
  margin-bottom: 1.4rem;
}

footer .address-nav .nav.sp {
  display: none;
}

footer .address-nav .nav {
  gap: 5.8rem;
}

footer .address-nav .nav .nav-item .nav-link {
  width: fit-content;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  display: block;
  position: relative;
}

footer .address-nav .nav .nav-item .nav-link::before {
  content: "";
  width: 100%;
  height: .12rem;
  background: #333;
  position: absolute;
  top: 2.8rem;
  left: 0;
  z-index: 1;
  transform: scale(0, 1);
  transition: .5s;
  transform-origin: left;
}

footer .address-nav .nav .nav-item .nav-link:hover::before{
  transform: scale(1, 1);
}

footer .address-nav .nav .nav-item .nav-link-wrap .nav-link:nth-child(1) {
  margin-bottom: 3rem;
}

footer .address-nav .nav .nav-item ul li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

footer .address-nav .nav .nav-item ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}

footer .address-nav .nav .nav-item ul li a {
  width: fit-content;
  transition: .5s ease;
}

footer .address-nav .nav .nav-item ul li a:hover {
  opacity: .7;
}

footer .copy-right-btn {
  border-top: 0.1rem solid #707070;
  padding-top: 1.5rem;
}

@media (max-width: 1300px) {
  footer .address-nav {
    flex-direction: column;
    gap: 6rem;
  }
}

@media (max-width: 1000px) {
  footer .address-nav .nav {
    flex-wrap: wrap;
  }
}

/*----------------------------------------------------------------------------

仕事を知る

-----------------------------------------------------------------------------*/

#works .common-top {
  background-image: url(../img/works/works-top-pc.jpg);
}

/*------------------------------ 職種紹介 ------------------------------*/
#works .job-type {
  margin-bottom: 13.6rem;
}

#works .job-type .section-title {
  margin-bottom: 8rem;
}

#works .job-type .job-type-contents-item {
  justify-content: space-between;
  margin-bottom: 10rem;
}

#works .job-type .job-type-contents-item .img {
  width: 54.8%;
  aspect-ratio: 580 / 418;
}

#works .job-type .job-type-contents-item .img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

#works .job-type .job-type-contents-item .txt,
#works .job-type .job-type-contents-item .txt-interview {
  width: 40.5%;
}

#works .job-type .job-type-contents-item .txt-interview .txt {
  width: 100%;
  margin-bottom: 3rem;
}

#works .job-type .job-type-contents-item .txt h3,
#works .job-type .job-type-contents-item .txt-interview .txt h3 {
  font-size: 4rem;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  margin-bottom: 1.8rem;
}

#works .job-type .job-type-contents-item .txt .sub-title,
#works .job-type .job-type-contents-item .txt-interview .txt .sub-title {
  font-size: 2rem;
  line-height: 1.5;
}

#works .job-type .job-type-contents-item .txt-interview .interview {
  gap: 2.3rem;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-img {
  width: 14rem;
  height: 14rem;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt {
  width: calc(100% - 16.3rem);
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt .label {
  margin-bottom: 1.2rem;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt h4 {
  font-size: 2rem;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  #works .job-type .job-type-contents-item {
    flex-direction: column;
    gap: 5rem;
  }

  #works .job-type .job-type-contents-item:nth-child(even) {
    flex-direction: column-reverse;
  }

  #works .job-type .job-type-contents-item .txt,
  #works .job-type .job-type-contents-item .img,
  #works .job-type .job-type-contents-item .txt-interview {
    width: 100%;
  }
}

/*------------------------------ 工事の流れ ------------------------------*/
#works .process {
  padding: 11.4rem 13.6rem;
  margin-bottom: 11.4rem;
}

#works .process .section-title {
  margin-bottom: 4.8rem;
}

#works .process .process-contents-wrap {
  padding: 4.5rem 11.5rem;
}

#works .process .process-contents-wrap::before,
#works .process .process-contents-wrap::after {
  height: calc(100% - 26.7rem);
  top: 19.7rem;
}

#works .process .process-contents-wrap::before {
  left: calc(11.5rem + (100% - 28.5rem) / 2 - ((100% - 28.5rem) / 4));
}

#works .process .process-contents-wrap::after {
  left: calc(17rem + (100% - 28.5rem) / 2 + ((100% - 28.5rem) / 4));
}

#works .process .process-contents-wrap .icon-wrap {
  gap: 5.55rem;
}

#works .process .process-contents-wrap .icon-wrap .icon {
  width: calc((100% - 5.55rem) / 2);
}

#works .process .process-contents-wrap .process-contents-item.client,
#works .process .process-contents-wrap .process-contents-item.iwazawa {
  width: calc((100% - 5.55rem) / 2);
}

@media (max-width: 1200px) {
  #works .process .process-contents-wrap {
    padding: 4.5rem 5.5rem;
  }

  #works .process .process-contents-wrap::before {
    left: calc(8.5rem + (100% - 28.5rem) / 2 - ((100% - 28.5rem) / 4));
  }

  #works .process .process-contents-wrap::after {
    left: calc(20rem + (100% - 28.5rem) / 2 + ((100% - 28.5rem) / 4));
  }

  #works .process .process-contents-wrap .process-contents-item.client,
  #works .process .process-contents-wrap .process-contents-item.iwazawa {
    width: calc((100% - 2rem) / 2);
  }
}

/*------------------------------ 1日のスケジュール ------------------------------*/
#works .schedule {
  margin-bottom: 16.4rem;
}

#works .schedule .section-title {
  margin-bottom: 8rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-img-wrap {
  width: 35.7%;
  gap: 2.4rem;
  flex-direction: column;
  justify-content: center;
}

#works .schedule .schedule-contents-wrap .schedule-contents-img-wrap .img {
  width: 84.7%;
  max-width: 36rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-img-wrap .img:nth-child(even) {
  margin-left: auto;
}

#works .schedule .schedule-contents-wrap .schedule-contents-img-wrap .img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap {
  width: 59.1%;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li {
  gap: 8.5rem;
  margin-bottom: 1.85rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .time {
  width: 8rem;
  font-size: 2.8rem;
  line-height: 1.3;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap {
  width: calc(100% - 16.5rem);
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap::before {
  height: calc(100% + 1.85rem);
  left: -3.55rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .label {
  font-size: 2rem;
  line-height: 1.8;
  margin: 0.65rem 0 0.8rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .label::before {
  top: calc((100% - 1.45rem) / 2);
  left: -4.25rem;
}

@media (max-width: 1200px) {

  #works .schedule .schedule-contents-wrap .schedule-contents-img-wrap {
    gap: 8rem;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  #works .schedule .section-title .common-heading {
    font-size: 7.7rem;
  }

  #works .schedule .pc {
    display: none;
  }

  #works .schedule .sp {
    display: block;
  }

  #works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap {
    width: 100%;
  }

  #works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .img {
    width: 100%;
    margin-top: 1.2rem;
  }

  #works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .img img {
    width: 100%;
    display: block;
  }
}

/*------------------------------ 社会への取り組み ------------------------------*/
#works .sustainability {
  margin-bottom: 13.6rem;
}

#works .sustainability .section-title {
  margin-bottom: 2.8rem;
}

#works .sustainability .bg::before {
  width: 63.5%;
  height: calc(100% + 10.6rem);
  top: -13.2rem;
}

#works .sustainability .bg .txt-img p {
  width: 50%;
  margin-bottom: 6rem;
}

#works .sustainability .bg .txt-img .img.sp {
  display: none;
}

#works .sustainability .bg .txt-img .img-wrap {
  gap: 2.4rem;
}

#works .sustainability .bg .txt-img .img-wrap .img {
  width: 14.2rem;
  height: 20rem;
}

#works .sustainability .sustainability-img .img {
  width: 50%;
  margin-left: auto;
  margin-top: -21rem;
}

#works .sustainability .sustainability-img .img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

@media (max-width: 1300px) {
  #works .sustainability .bg {
    margin-bottom: 3rem;
  }

  #works .sustainability .sustainability-img .img {
    width: 60%;
    margin-top: 0;
  }
}

@media (max-width: 1000px) {
  #works .sustainability .section-title .common-heading {
    font-size: 7.6rem;
  }

  #works .sustainability .bg .txt-img p {
    width: 60%;
    margin-bottom: 3rem;
  }
}

/*----------------------------------------------------------------------------

人を知る

-----------------------------------------------------------------------------*/
#interview .common-top {
  margin-bottom: 10rem;
  background-image: url(../img/interview/interview-top-pc.jpg);
}

/*------------------------------ アンカーリンク ------------------------------*/
#interview .anchor {
  margin-bottom: 11.8rem;
}

#interview .anchor ul {
  gap: 3.6rem;
}

#interview .anchor ul li {
  padding-bottom: 1.8rem;
}

#interview .anchor ul li::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-top: 0.3rem solid #024BB1;
  border-right: 0.3rem solid #024BB1;
  transform: translate(-50%, -50%) rotate(135deg);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transition: .5s ease;
}

#interview .anchor ul li:hover::after {
  bottom: -2.5rem;
}

#interview .anchor ul li a .img {
  width: 16rem;
  height: 16rem;
  margin-bottom: 1.8rem;
  margin-inline: auto;
}

#interview .anchor ul li a .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#interview .anchor ul li a .label {
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

#interview .anchor ul li a .name {
  width: 100%;
  min-width: 23.2rem;
  font-size: 1.4rem;
  line-height: 2.1;
  text-align: center;
  padding: 0.4rem 0;
}

@media (max-width: 900px) {
  #interview .anchor ul li a .name {
    min-width: auto;
  }
}

/*------------------------------ インタビュー ------------------------------*/
#interview .common-interview {
  margin-bottom: 13.6rem;
}

#interview .common-interview .interview-title-img {
  padding: 5.9rem 0 4.5rem;
  margin-bottom: 23.2rem;
}

#interview .common-interview .interview-title-img .inner h2 {
  font-size: 9.7rem;
  letter-spacing: -1.8rem;
  margin-bottom: 1.9rem;
}

#interview .common-interview .interview-title-img .inner h3 {
  font-size: 4rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

#interview .common-interview .interview-title-img .inner p {
  margin-bottom: 0.6rem;
}

#interview .common-interview .interview-title-img .inner p:nth-last-of-type(1) {
  margin-bottom: 0;
}

#interview .common-interview .interview-title-img .inner .img {
  width: calc(50% + 3.1rem);
  max-width: 56rem;
  aspect-ratio: 56 / 40;
  bottom: -6.8rem;
  right: 0;
  left: calc(50% - 3.1rem);
}

#interview .common-interview .interview-title-img .inner .img img {
  border-radius: 1rem;
}

#interview .common-interview .question-img {
  justify-content: space-between;
  margin-bottom: 12.8rem;
}

#interview .common-interview .question-img:nth-last-of-type(2) {
  margin-bottom: 15.7rem;
}

#interview .common-interview .question-img .img {
  width: 50%;
  aspect-ratio: 529 / 660;
}

#interview .common-interview .question-img dl {
  width: 43.3%;
  height: fit-content;
}

#interview .common-interview .question-img dl::before {
  content: "";
  width: 170%;
  height: calc(100% + 12.8rem);
  background: #F5F5F5;
  position: absolute;
  top: -6.4rem;
  right: -32%;
  z-index: -1;
}

#interview .common-interview .question-img dl dt {
  gap: 1rem;
  margin-bottom: 1.8rem;
}

#interview .common-interview .question-img dl dt .q {
  width: 3.7rem;
  height: 3.7rem;
  font-size: 2.2rem;
}

#interview .common-interview .question-img dl dt span {
  width: calc(100% - 4.7rem);
  font-size: 2rem;
  line-height: 1.5;
}

#interview .common-interview .question-img dl dd {
  line-height: 1.9;
  margin-bottom: 3.6rem;
}

#interview .common-interview .img-message {
  align-items: center;
  gap: 4.8rem;
  padding: 3.6rem 11.8rem;
}

#interview .common-interview .img-message .message {
  width: calc(100% - 20.8rem);
}

@media (max-width: 2000px) {
  #interview .common-interview .question-img dl::before {
    width: calc(100% + 32.2rem);
    right: -15.4rem;
  }
}

@media (max-width: 1350px) {
  #interview .common-interview .question-img {
    margin-bottom: 20.8rem;
  }
}

@media (max-width: 1100px) {
  #interview .anchor {
    margin-bottom: 17.7rem;
  }

  #interview .common-interview .interview-title-img {
    padding: 18.4rem 0 24.2rem;
    margin-bottom: 0;
  }
  
  #interview .common-interview .interview-title-img .inner .img {
    width: calc(100% + 30.8rem);
    max-width: none;
    max-height: 26.9rem;
    aspect-ratio: 375 / 269;
    top: -24.3rem;
    left: -15.4rem;
  }
  
  #interview .common-interview .interview-title-img .inner .img img {
    object-fit: cover;
    border-radius: 0;
  }

  #interview .common-interview .question-img {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    margin-bottom: 0;
  }
  
  #interview .common-interview .question-img::before {
    content: "";
    width: calc(100% + 30.8rem);
    height: 100%;
    background: #F5F5F5;
    position: absolute;
    top: 0;
    left: -15.4rem;
    z-index: -1;
  }
  
  #interview .common-interview .question-img:nth-last-child(3) {
    margin-top: -22rem;
  }
  
  #interview .common-interview .question-img:nth-last-child(2) {
    flex-direction: column-reverse;
    margin-bottom: 11rem;
  }
  
  #interview .common-interview .question-img:nth-last-of-type(1) {
    margin-bottom: 8.8rem;
  }
  
  #interview .common-interview .question-img .img {
    width: calc(100% - 4.2rem);
    aspect-ratio: 295 / 367;
    margin-inline: auto;
    position: relative;
  }
  
  #interview .common-interview .question-img .img img {
    object-fit: cover;
  }
  
  #interview .common-interview .question-img dl {
    width: 100%;
    padding-bottom: 3rem;
  }

  #interview .common-interview .question-img dl::before {
    content: none;
  }
  
  #interview .common-interview .question-img dl dt {
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
    
  #interview .common-interview .img-message {
    display: block;
    padding: 10.4rem 2.4rem 2.4rem;
    position: relative;
  }
  
  #interview .common-interview .img-message .img {
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  #interview .common-interview .img-message .message {
    width: 100%;
  }
  
}

@media (max-width: 850px) {
  #interview .common-interview .interview-title-img .inner h2 {
    font-size: 8.9rem;
  }

  #interview .common-interview .interview-title-img .inner h3 {
    font-size: 3rem;
  }
}

/*----------------------------------------------------------------------------

働く環境・制度

-----------------------------------------------------------------------------*/
#system .common-top {
  background-image: url(../img/system/system-top-pc.jpg);
}

/*------------------------------ 福利厚生 ------------------------------*/
#system .welfare {
  margin-bottom: 13.6rem;
}

#system .welfare .section-title {
  margin-bottom: 8rem;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item {
  width: 50%;
  gap: 3rem;
  padding: 4.8rem;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .img {
  width: 10rem;
  height: 10rem;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt {
  width: calc(100% - 13rem);
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt p {
  font-weight: 500;
  line-height: 1.9;
}

@media (max-width: 1200px) {
  #system .welfare .welfare-contents-wrap .welfare-contents-item {
    gap: 1.4rem;
    padding: 2rem 1.6rem;
  }
  
  #system .welfare .welfare-contents-wrap .welfare-contents-item .img {
    width: 5.2rem;
    height: 5.2rem;
  }
  
  #system .welfare .welfare-contents-wrap .welfare-contents-item .img img {
    width: 2.48rem;
  }
  
  #system .welfare .welfare-contents-wrap .welfare-contents-item .txt {
    width: calc(100% - 6.6rem);
  }
}

@media (max-width: 900px) {
  #system .welfare .welfare-contents-wrap .welfare-contents-item {
    width: 100%;
  }
}

/*------------------------------ キャリアパスイメージ ------------------------------*/
#system .career-path {
  padding: 11.4rem 12.1rem 13.6rem;
}

#system .career-path .career-path-contents-wrap {
  justify-content: center;
}

@media (max-width: 1400px) {
  #system .career-path .career-path-contents-wrap {
    justify-content: flex-start;
  }

  #system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(1) {
    position: relative;
  }
  
  #system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(1)::before {
    content: "scroll";
    font-family: "Prompt", sans-serif;
    font-size: 1.4rem;
    color: #024BB1;
    position: absolute;
    top: -5rem;
    left: 0;
    transform: translateY(-50%);
  }
  
  #system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(1)::after {
    content: "";
    width: 4rem;
    height: 0.1rem;
    font-size: 1.8rem;
    background: #024BB1;
    position: absolute;
    top: -5rem;
    left: 4rem;
    transform: translateY(-50%);
    transform-origin: left center;
    animation: careerSlide 2s ease-in-out infinite;
  }
  
  @keyframes careerSlide {
    0% {
      transform-origin: left center;
      transform: scaleX(0);
    }
    50% {
      transform-origin: left center;
      transform: scaleX(1);
    }
    51% {
      transform-origin: right center;
      transform: scaleX(1);
    }
    100% {
      transform-origin: right center;
      transform: scaleX(0);
    }
  }
}

/*----------------------------------------------------------------------------

募集要項

-----------------------------------------------------------------------------*/
#information .common-top {
  margin-bottom: 0;
  background-image: url(../img/information/information-top-pc.jpg);
}

/*------------------------------ 募集要項 ------------------------------*/
#information .info {
  padding: 10rem 0 8.6rem;
  margin-bottom: 13.6rem;
}

#information .info .accordion .accordion-item {
  margin-bottom: 1.8rem;
}

#information .info .accordion .accordion-item dt::after {
  right: 4rem;
}

#information .info .accordion .accordion-item.off dt::after {
  display: none;
}

#information .info .accordion .accordion-item.off dt::before {
  line-height: 2.6;
  padding: 0.6rem 1.8rem;
  right: 4rem;
}

#information .info .accordion .accordion-item dt button {
  font-size: 2.4rem;
  line-height: 1.5;
  padding: 2.2rem 4rem 2.2rem 5.6rem;
}

#information .info .accordion .accordion-item dt button::before,
#information .info .accordion .accordion-item dt button::after {
  right: 5.2rem;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail {
  align-items: baseline;
  padding: 3.6rem 0;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail .label {
  width: 18.6%;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail p {
  width: 81.4%;
  line-height: 1.9;
}

#information .info .accordion .accordion-item dd .btn {
  margin-top: 3.6rem;
}

@media (max-width: 1200px) {
  #information .info .accordion .accordion-item dd .info-contents-item-detail {
    flex-direction: column;
  }

  #information .info .accordion .accordion-item dd .info-contents-item-detail p {
    width: 100%;
  }
}

@media (max-width: 900px) {
  #information .info .accordion .accordion-item dt button span {
    display: block;
    line-height: 1;
    padding: 0.5rem 0 0;
  }
}

/*------------------------------ 選考の流れ ------------------------------*/
#information .flow {
  gap: 16.4%;
  padding: 8.6rem 0;
  margin-bottom: 13.6rem;
}

#information .flow::before {
  width: 130%;
  right: 0;
}

#information .flow .section-title {
  margin-top: 2.8rem;
}

#information .flow .flow-contents-wrap::before {
  left: 5.5rem;
}

#information .flow .flow-contents-wrap .flow-contents-item {
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .img {
  width: 11rem;
  height: 11rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt {
  gap: 1rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step {
  width: 6.5rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step p {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step .number {
  font-size: 4rem;
  line-height: 0.9;
}


#information .flow .flow-contents-wrap .flow-contents-item .txt {
  align-self: center;
}

#information .skill .skill-contents-wrap .skill-contents-item .number-label .number {
  margin-bottom: 2rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .txt .label {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

#information .flow .flow-contents-wrap .flow-contents-item .txt p {
  line-height: 1.9;
}

@media (max-width: 2000px) {
  #information .flow::before {
    width: calc(100% + 15.4rem);
  }
}

@media (max-width: 1250px) {
  #information .flow {
    flex-direction: column;
    gap: 4rem;
  }

  #information .flow .flow-contents-wrap {
    width: calc(100% - 2rem);
  }

  #information .flow .flow-contents-wrap .flow-contents-item .step-txt {
    width: calc(100% - 12.8rem);
  }
}

/*------------------------------ 必要なスキル ------------------------------*/
#information .skill {
  gap: 6%;
  padding: 8.6rem 0;
  margin-bottom: 16.4rem;
}

#information .skill::before {
  width: 130%;
  left: 0;
}

#information .skill .section-title {
  margin-left: 10rem;
}

#information .skill .skill-contents-wrap {
  width: calc(94% - 26rem);
  flex-wrap: wrap;
  gap: 2.2rem;
}

#information .skill .skill-contents-wrap .skill-contents-item {
  width: calc((100% - 4.4rem) / 3);
  padding: 2.2rem;
}

#information .skill .skill-contents-wrap .skill-contents-item .number-label  {
  margin-bottom: 1rem;
}

#information .skill .skill-contents-wrap .skill-contents-item p {
  line-height: 1.9;
}

@media (max-width: 2000px) {
  #information .skill::before {
    width: calc(100% + 15.4rem);
  }
}

@media (max-width: 1250px) {
  #information .skill {
    flex-direction: column;
    gap: 4rem;
    padding-left: 10rem;
  }

  #information .skill .section-title {
    margin-left: 0;
  }

  #information .skill .skill-contents-wrap {
    width: 100%;
  }

  #information .skill .skill-contents-wrap .skill-contents-item {
    width: calc((100% - 2.2rem) / 2);
  }
}

@media (max-width: 950px) {
  #information .skill .skill-contents-wrap .skill-contents-item {
    width: 100%;
  }
}
/*------------------------------ よくある質問 ------------------------------*/
#information .faq {
  margin-bottom: 13rem;
}

#information .faq .section-title {
  margin-bottom: 8rem;
}

#information .faq .faq-contents-wrap dl {
  margin-bottom: 3rem;
}

#information .faq .faq-contents-wrap dt::after {
  right: 4rem;
}

#information .faq .faq-contents-wrap dt button {
  padding: 2.2rem 4rem;
  gap: 1rem;
}

#information .faq .faq-contents-wrap dt button::before,
#information .faq .faq-contents-wrap dt button::after {
  right: 5.2rem;
}

#information .faq .faq-contents-wrap dt span {
  width: calc(100% - 9.7rem);
  font-size: 2rem;
  line-height: 1.5;
}

#information .faq .faq-contents-wrap dd p {
  line-height: 1.9;
}

/*------------------------------ join-us ------------------------------*/
#information .join-us-btn .btn-wrap .btn.info {
  background: #5AA9E6;
  padding: 0 4rem 0 4.4rem;
  margin-bottom: 0;
}


/*----------------------------------------------------------------------------

エントリー

-----------------------------------------------------------------------------*/
#entry .common-top {
  margin-bottom: 10rem;
  background-image: url(../img/entry/entry-top-pc.jpg);
}

/*------------------------------ ステップ ------------------------------*/
#entry .entry-process {
  width: fit-content;
  margin-bottom: 8rem;
}

#entry .entry-process ul {
  gap: 11.2rem;
}

#entry .entry-process ul li {
  padding: 0 2.6rem;
}

/*------------------------------ 入力画面 ------------------------------*/
#entry .entry {
  margin-bottom: 13.6rem;
}

#entry .entry .entry-form-wrap {
  padding: 5.6rem 6.8rem;
  margin-bottom: 5.6rem;
}

#entry .entry .entry-form-wrap .entry-form-item,
#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-sub-item {
  gap: 5.8rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap {
  width: 20.4rem;
  gap: 0.8rem;
  align-items: center;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap p {
  width: 16rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap .note {
  margin-bottom: 0.4rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap,
#entry .entry .entry-form-wrap .entry-form-item .entry-form-textarea-wrap {
  width: calc(100% - 26.2rem);
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox {
  gap: 2rem;
  flex-wrap: wrap;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox .radiobox-item .radiobox-item-name {
  line-height: 1.9;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input,
#entry .entry .entry-form-wrap .entry-form-item .entry-form-textarea-wrap textarea {
  line-height: 1.9;
  padding: 1.3rem 2rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input::placeholder,
#entry .entry .entry-form-wrap .entry-form-item .entry-form-textarea-wrap textarea::placeholder {
  line-height: 1.9;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input.small {
  width: 60.6%;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap {
  width: 43.4%;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap::after {
  right: 2.2rem;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap select {
  padding: 1.3rem 2rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip input {
  margin-right: 1.3rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip button {
  border-radius: 3rem;
  padding: 1.2rem 2rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group {
  gap: 2.4rem;
  margin-bottom: 0.8rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set p {
  line-height: 1.9;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set button {
  width: 23.2rem;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox label .checkbox-item-name {
  line-height: 1.9;
}

#entry .entry .entry-form-input-policy {
  margin-bottom: 6.4rem;
}

#entry .entry .entry-form-input-policy .policy {
  width: 40rem;
  padding: 1.2rem 2.6rem 0 1.6rem;
}

#entry .entry .entry-form-submit button .txt {
  padding-left: 3.6rem;
}

@media (max-width: 1200px) {
  #entry .entry .entry-form-wrap {
    padding: 3.6rem 4.8rem;
  }

  #entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap p {
    width: fit-content;
  }

  #entry .entry .entry-form-wrap .entry-form-item,
  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-sub-item {
    flex-direction: column;
    gap: 2rem;
  }

  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap,
  #entry .entry .entry-form-wrap .entry-form-item .entry-form-textarea-wrap {
  width: 100%;
 }

 #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input.small,
 #entry .entry .entry-form-wrap .entry-form-item .birth-wrap {
  min-width: 40rem;
 }

 #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input.small[data-name=zip] {
  min-width: auto;
 }
}

@media (max-width: 950px) {
  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group {
    flex-direction: column;
    gap: 1rem;
  }

  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set button {
    width: 30.5rem;
  }
}

@media (max-width: 850px) {
  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap input.small[data-name=zip] {
    width: 52.7%;
   }
 }

/*------------------------------ 確認画面 ------------------------------*/
#entry .confirm {
  margin-bottom: 13.6rem;
}

#entry .confirm .entry-form-confirm-wrap {
  padding: 5.8rem 9rem;
  margin-bottom: 6.4rem;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-sub-item {
  justify-content: space-between;
  margin-bottom: 4rem;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .title,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-label-wrap {
  width: 20.5%;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .js-confirm-item,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item {
  line-height: 1.9;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .js-confirm-item,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .birth-wrap,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .file-wrap,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-item-checkbox-wrap {
  width: 71.4%;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-item-checkbox-wrap .js-confirm-item {
  width: fit-content;
}


#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .file-wrap .entry-form-confirm-file:nth-last-of-type(2) {
  margin-bottom: 1.2rem;
}

#entry .confirm .entry-form-submit {
  gap: 4.8rem;
}

#entry .confirm .entry-form-submit button.white .txt {
  font-size: 1.6rem;
}

#entry .confirm .entry-form-submit button.blue .txt {
  padding-left: 3.6rem;
}

@media (max-width: 1200px) {
  #entry .confirm .entry-form-confirm-wrap {
    padding: 3.6rem 4.8rem;
  }

  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-sub-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .title,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-label-wrap,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .js-confirm-item,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .birth-wrap,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .file-wrap,
  #entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-item-checkbox-wrap {
    width: 100%;
  }
}

/*------------------------------ 完了画面 ------------------------------*/
#entry .comp {
  margin-bottom: 13.6rem;
}

#entry .comp .entry-form-comp-txt {
  padding: 5.8rem 10rem;
  margin-bottom: 6.4rem;
}

#entry .comp .entry-form-comp-txt h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2.2rem;
}

#entry .comp .entry-form-comp-txt p {
  line-height: 1.9;
}

@media (max-width: 1200px) {
  #entry .comp .entry-form-comp-txt {
    padding: 3.6rem 4.8rem;
  }
}

/*----------------------------------------------------------------------------

404ページ

-----------------------------------------------------------------------------*/
#notFound .common-top {
  margin-bottom: 10rem;
  background-image: url(../img/not-found/not-found-top-pc.jpg);
}

#notFound .not-found {
  padding: 5.8rem 10rem;
  margin-bottom: 6.4rem;
}

#notFound .not-found h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2.2em;
}

#notFound .not-found p {
  line-height: 1.9;
}

#notFound .btn {
  width: 25.6rem;
  margin-bottom: 13.6rem;
}

#notFound .btn .txt {
  font-weight: bold;
  padding-left: 7.6rem;
}