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

.large-container,
.inner,
.small-inner {
  width: calc(100% - 3.8rem);
  max-width: 142.8rem;
}

.section-title .common-heading {
  font-size: 5.2rem;
  margin-bottom: .1rem;
}

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

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

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

.common-top {
  padding: 7.3em 0 5.5rem;
  margin: 7.2rem 0 7.7rem;
}

.pc {
  display: none;
}

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

header .logo-nav {
  display: block;
}

header .logo-nav h1,
header .logo-nav p {
  padding-top: 1.8rem;
}

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

header .logo-nav .ham-btn {
  width: 7.2rem;
  height: 7.2rem;
  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: 2.9rem;
}


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: 3.6rem;
}


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


header .logo-nav .ham-btn span:nth-of-type(3) {
  top: 4.3rem;
}


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 - 7.2rem);
  background: #F5F5F5;
  gap: 0;
  padding: 2.8rem 1.9rem 4rem;
  position: fixed;
  top: 7.2rem;
  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;
}

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

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;
  list-style: none;
}

header .logo-nav .ham-wrap nav ul .nav-item .accordion summary::-webkit-details-marker {
  display: none;
}

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;
}

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;
  width: fit-content;
}

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

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

トップページ

-----------------------------------------------------------------------------*/
/*------------------------------ ファーストビュー ------------------------------*/
#top .fv .fv-copy {
  top: 9.6rem;
  left: 5.8rem;
}

#top .fv .fv-wrap .scroll {
  top: calc(100vh - 28rem);
  top: calc(100dvh - 28rem);
  left: 1.2rem;
}

#top .fv .fv-wrap .scroll .scroll-animation::before {
  top: 4.8rem;
  left:50%;
  transform: translateX(-50%);
}

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

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

#top .fv .fv-wrap .scroll p::before {
  top: calc(100% + 0.45rem);
  left:50%;
  transform: translateX(-50%);
}

#top .fv .fv-wrap .scroll p::after {
  top: calc(100% + 8.45rem);
  left:50%;
  transform: translateX(-50%);
}

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

#top .fv .fv-wrap .fv-message {
  /* height: calc(100vh + 58.7rem); */
  /* height: calc(100dvh + 58.7rem); */
  min-height: 95.8rem !important;
  padding-top: 27.1rem;
  margin-top: -7.8rem;
}

#top .fv .fv-wrap .fv-message .fv-message-txt {
  margin-left: 5.8rem;
}

#top .fv .fv-wrap .fv-message .fv-message-txt p {
  font-size: 1.5rem;
  line-height: 2.7;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(2) {
  width: 40.5%;
  aspect-ratio: 198 / 132;
  top: 19.6rem;
  right: 1.9rem;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(3) {
  width: 43.9%;
  aspect-ratio: 176 / 116;
  top: calc(44.1rem - 3.4%);
  left: 1.9rem;
}

#top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
  width: 60.5%;
  max-width: 50rem;
  aspect-ratio: 298 / 198;
  bottom: 3%;
  right: 1.9rem;
}

@media (max-width: 650px) {
  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(2) {
    top: 26.6rem;
  }

  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
    bottom: 8%;
  }
}

@media (max-width: 600px) {
  #top .fv .fv-wrap .fv-message {
    min-height: 107.8rem !important;
  }

  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(2) {
    top: 37.6rem;
  }

  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(3) {
    top: calc(44.1rem + 12.4%);
  }
}

@media (max-width: 550px) {
  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
    bottom: 10%;
  }
}

@media (max-width: 450px) {
  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(2) {
    width: 47.5%;
  }
  
  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(3) {
    width: 46.9%;
    top: calc(44.1rem + 12.4%);
  }
  
  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
    width: 79.5%;
  }
}

@media (max-width: 400px) {
  #top .fv .fv-wrap .fv-message .fv-message-txt {
    margin: 0;
    margin-inline: auto;
  }

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

  #top .fv .fv-wrap .fv-message .fv-message-img:nth-child(4) {
    bottom: 14%;
  }
}
/*------------------------------ Works ------------------------------*/
#top .works {
  padding: 11.7rem 0 4rem;
  margin-bottom: 7.7rem;
}

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

#top .works .txt-btn {
  display: block;
  margin-bottom: 2rem;
}

#top .works .txt-btn .txt {
  font-size: 1.5rem;
}

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

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

/* #top .works .works-contents .img-wrap {
  width: 100%;
  height: 21.1rem;
  gap: 1.4rem;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
}

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

#top .works .works-contents .img-wrap {
  --works-img-width: 16rem;
  --works-img-gap: 1.4rem;
  --works-img-count: 5;
  --works-marquee-duration: 28s;
  --works-img-interval: calc(var(--works-marquee-duration) / var(--works-img-count));
  --works-marquee-distance: calc((var(--works-img-width) + var(--works-img-gap)) * var(--works-img-count));
  position: relative;
  width: 100%;
  height: 21.1rem;
  overflow: hidden;
}

#top .works .works-contents .img-wrap .img {
  position: absolute;
  top: 0;
  left: 100%;
  width: var(--works-img-width);
  flex-shrink: 0;
  animation: sp-works-marquee var(--works-marquee-duration) linear infinite;
}

#top .works .works-contents .img-wrap .img:nth-child(1) { animation-delay: calc(var(--works-img-interval) * -0); }
#top .works .works-contents .img-wrap .img:nth-child(2) { animation-delay: calc(var(--works-img-interval) * -1); }
#top .works .works-contents .img-wrap .img:nth-child(3) { animation-delay: calc(var(--works-img-interval) * -2); }
#top .works .works-contents .img-wrap .img:nth-child(4) { animation-delay: calc(var(--works-img-interval) * -3); }
#top .works .works-contents .img-wrap .img:nth-child(5) { animation-delay: calc(var(--works-img-interval) * -4); }

@keyframes sp-works-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--works-marquee-distance)));
  }
}

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

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

#top .works .works-contents .work-contents-list .work-contents-list-item a .circle {
  right: 1.4rem;
}

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

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

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

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

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

#top .interview .txt-btn {
  display: block;
  margin-bottom: 3rem;
}

#top .interview .txt-btn .txt {
  font-size: 1.5rem;
}

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

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

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

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

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

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt p {
  font-size: 1.5rem;
  line-height: 2;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

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

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

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

#top .values .values-contents {
  width: 100%;
  margin-bottom: 3rem;
}

#top .values .values-contents:nth-last-of-type(1) {
  margin-bottom: 0;
}

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

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

#top .values .values-contents:nth-child(even) .img {
  margin-right: 3.8rem;
}

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

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

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

#top .values .values-contents .txt h3 {
  font-size: 2.4rem;
  padding: 1.6rem 2rem;
  margin-left: 1.9rem;
  margin-top: -6.6rem;
  position: relative;
  z-index: 1;
}

#top .values .values-contents .txt p {
  line-height: 1.9;
  padding: 4.1rem 1.9rem;
  margin-top: -3.3rem;
  position: relative;
  z-index: 0;
}

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

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

@media (max-width: 350px) {
  #top .values .values-contents .txt h3 {
    font-size: 2rem;
  }
}

/*------------------------------ Feature ------------------------------*/
#top .feature {
  margin-bottom: 4rem;
}

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

#top .feature .feature-contents {
  flex-direction: column;
  gap: 2rem;
}

#top .feature .feature-contents .feature-contents-item {
  width: 100%;
  padding: 2rem 2rem 2rem 3.8rem;
}

#top .feature .feature-contents .feature-contents-item .icon-txt {
  display: flex;
  gap: 1.8rem;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .icon {
  width: 30%;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .icon img {
  display: block;
  margin-inline: auto;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .txt {
    width: calc(70% - 2rem);
}

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

#top .feature .feature-contents .feature-contents-item .icon-txt .txt p {
  font-size: 1.5rem;
}

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

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

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

#top .numbers .numbers-contents {
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

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

#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.construction .construction-type-wrap {
  justify-content: center;
  gap: 1.8rem;
}

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

#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}

#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type p {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

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

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

#top .numbers .numbers-contents .orderer .graph-number .graph-number-label p,
#top .numbers .numbers-contents .type .graph-number .graph-number-label p {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

#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;
}

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

#top .numbers .notes {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2.5;
  text-align: right;
}

@media (max-width: 450px) {
  #top .numbers .numbers-contents .orderer .graph-number .graph svg,
  #top .numbers .numbers-contents .type .graph-number .graph svg {
    width: 13rem;
  }

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

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

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

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

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

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

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

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

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

@media (max-width: 400px) {
  #top .numbers .numbers-contents .numbers-contents-item strong .number,
  #top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type strong .number {
    font-size: 4.8rem;
  }
}

@media (max-width: 350px) {
  #top .numbers .numbers-contents .type .graph-number .graph-number-label {
    gap: 0.3rem;
  }

  #top .numbers .numbers-contents .orderer .graph-number .graph svg,
  #top .numbers .numbers-contents .type .graph-number .graph svg {
    width: 12rem;
  }

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

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

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

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

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

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

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

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

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

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

@media (max-width: 350px) {
  #top .numbers .numbers-contents .orderer .graph-number,
  #top .numbers .numbers-contents .type .graph-number {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

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

#top .message .bg {
  width: calc(100% - 1.9rem);
  padding: 5.7rem 1.9rem 9.6rem;
}

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

#top .message .bg .massage-txt {
  gap: 1.8rem;
  flex-direction: column;
}

#top .message .bg .massage-txt h3 {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.7;
}

#top .message .bg .massage-txt p {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.9;
}

#top .message .bg .name {
  font-size: 1.5rem;
}

#top .message .message-img {
  margin-top: -4rem;
}

#top .message .message-img .img {
  width: 59%;
  aspect-ratio: 200 / 236;
}

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

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

.join-us-btn .bg {
  background-image: url(../img/common/join-us-bg-sp.jpg);
  background-position: center top;
  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 {
  padding: 3rem 0 4.8rem;
}

footer .address-nav {
  gap: 3.05em;
  flex-direction: column-reverse;
  margin-bottom: 4rem;
}

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

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

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

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

footer .address-nav .nav .nav-item,
footer .address-nav .nav .nav-item .nav-link {
  width: 100%;
}

footer .address-nav .nav .nav-item .accordion {
  position: relative;
}

footer .address-nav .nav .nav-item .accordion,
footer .address-nav .nav .nav-item.interview {
  width: 100%;
  list-style: none;
  cursor: pointer;
  transition: .5s ease;
  position: relative;
}

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

footer .address-nav .nav .nav-item .accordion::after,
footer .address-nav .nav .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;
}

footer .address-nav .nav .nav-item .accordion:hover::after,
footer .address-nav .nav .nav-item.interview:hover::after {
  transform: scale(1);
}

footer .address-nav .nav .nav-item .accordion summary,
footer .address-nav .nav .nav-item.interview a {
  padding: 2rem 0 2rem 2rem;
  display: block;
}

footer .address-nav .nav .nav-item .accordion summary::-webkit-details-marker {
  display: none;
}

footer .address-nav .nav .nav-item .accordion .label,
footer .address-nav .nav .nav-item.interview {
  transition: .5s ease;
  list-style: none;
}

footer .address-nav .nav .nav-item.interview .circle {
  right: 1.6rem;
}

footer .address-nav .nav .nav-item.interview a:hover .circle .arrow::before {
  animation: arrowOut 0.5s forwards;
}

footer .address-nav .nav .nav-item.interview a:hover .circle .arrow::after {
  animation: arrowIn 0.5s forwards;
}

footer .address-nav .nav .nav-item.interview:hover .nav-link::before {
  animation: arrowOutBtnHam 0.5s forwards;
}

footer .address-nav .nav .nav-item.interview:hover .nav-link::after {
  animation: arrowInBtnHam 0.5s forwards;
}

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

footer .address-nav .nav .nav-item.interview .nav-link {
  pointer-events: all;
}

footer .address-nav .nav .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;
}

footer .address-nav .nav .nav-item .accordion .label a .circle .nav-arrow {
  width: 100%;
  height: 100%;
  position: relative;
}

footer .address-nav .nav .nav-item .accordion .label a .circle .nav-arrow::before,
footer .address-nav .nav .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;
}

footer .address-nav .nav .nav-item .accordion .label a .circle .nav-arrow::before {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  opacity: 1;
}

footer .address-nav .nav .nav-item .accordion .label a .circle .nav-arrow::after {
  top: -50%;
  transform: translateY(-50%) rotate(135deg);
  opacity: 0;
}

footer .address-nav .nav .nav-item .accordion:not([open]):not(.closing) .label:hover a .circle .nav-arrow::before {
  animation: navArrowOutUp 0.5s forwards;
}

footer .address-nav .nav .nav-item .accordion:not([open]):not(.closing) .label:hover a .circle .nav-arrow::after {
  animation: navArrowInUp 0.5s forwards;
}

footer .address-nav .nav .nav-item .accordion.closing .label:hover a .circle .nav-arrow::before,
footer .address-nav .nav .nav-item .accordion.closing .label:hover a .circle .nav-arrow::after {
  animation: none !important;
}

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

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

footer .address-nav .nav .nav-item .accordion .sub-menu {
  position: static;
  padding: 0 2rem 2rem 2rem;
}

footer .address-nav .nav .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;
}

footer .address-nav .nav .nav-item .accordion .sub-menu .sub-menu-item:hover {
  opacity: .7;
}

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

@media (max-width: 380px) {
  footer .copy-right-btn {
    flex-direction: column-reverse;
    gap: 2.4rem;
  }

  footer .copy-right-btn .btn {
    justify-content: flex-end;
  }
}

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

仕事を知る

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

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

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

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

#works .job-type .job-type-contents-item {
  gap: 2rem;
  flex-direction: column;
  margin-bottom: 4rem;
}

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

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

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

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

#works .job-type .job-type-contents-item .txt h3,
#works .job-type .job-type-contents-item .txt-interview .txt h3 {
  font-size: 2.4rem;
  padding: 1rem 1.6rem;
  margin-bottom: 1.4rem;
}

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

#works .job-type .job-type-contents-item .txt p,
#works .job-type .job-type-contents-item .txt-interview .txt p {
  font-size: 1.5rem;
}

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

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

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

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt .label {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt h4 {
  line-height: 1.6;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt .name {
  font-size: 1.5rem;
}

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

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

#works .process .process-contents-wrap {
  padding: 3rem 1.4rem;
}

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

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

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

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

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

#works .process .process-contents-wrap .icon-wrap .icon p {
  font-size: 1.5rem;
}

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

#works .process .process-contents-wrap .process-contents-item p {
  font-size: 1.5rem;
}

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

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

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

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

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .time {
  width: 6.6rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

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

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

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

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

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap p {
  font-size: 1.5rem;
}

#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%;
  border-radius: 1rem;
}

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

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

#works .sustainability .bg::before {
  width: calc(100% - 1.9rem);
  height: 50%;
  top: -8.8rem;
}

#works .sustainability .bg .txt-img p {
  width: calc(100% - 1.9rem);
  font-size: 1.5rem;
  margin-bottom: 3.2rem;
}

#works .sustainability .bg .txt-img .img.sp {
  width: 80.5%;
  margin: 0 -1.9rem 3.2rem auto;
}

#works .sustainability .bg .txt-img .img.sp img {
  width: 100%;
  border-radius: 1rem 0 0 1rem;
}

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

#works .sustainability .bg .txt-img .img-wrap .img {
  width: calc((100% - 3.8rem) / 3);
  aspect-ratio: 100 / 138;
}

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


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

人を知る

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

/*------------------------------ アンカーリンク ------------------------------*/
#interview .anchor {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 13.3rem;
}

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

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

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

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

#interview .anchor ul li a .img {
  width: 10rem;
  height: 10rem;
  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 {
  width: fit-content;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  margin-inline: auto;
}

#interview .anchor ul li a .name {
  background: #F0F3F5;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.1;
  padding: 0.6rem;
  text-align: center;
}

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

#interview .common-interview .interview-title-img {
  padding: 18.4rem 0 24.2rem;
}

#interview .common-interview .interview-title-img .inner h2 {
  font-size: 5.2rem;
  letter-spacing: -1rem;
}

#interview .common-interview .interview-title-img .inner h3 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

#interview .common-interview .interview-title-img .inner p {
  font-size: 1.5rem;
}

#interview .common-interview .interview-title-img .inner .img {
  width: calc(100% + 3.8rem);
  max-height: 26.9rem;
  aspect-ratio: 375 / 269;
  top: -24.3rem;
  left: -1.9rem;
}

#interview .common-interview .interview-title-img .inner .img img {
  object-fit: cover;
}

#interview .common-interview .question-img {
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
}

#interview .common-interview .question-img::before {
  content: "";
  width: calc(100% + 3.8rem);
  height: 100%;
  background: #F5F5F5;
  position: absolute;
  top: 0;
  left: -1.9rem;
  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: "";
  width: calc(100% + 3.8rem);
  height: 100%;
  background: #F5F5F5;
  position: absolute;
  top: 0;
  left: -1.9rem;
  z-index: -1; */
}

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

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

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

#interview .common-interview .question-img dl dd {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 3rem;
}

#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%;
}

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

働く環境・制度

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

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

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

#system .welfare .welfare-contents-wrap .welfare-contents-item {
  width: 100%;
  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);
}

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

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt p {
  font-size: 1.5rem;
  line-height: 2;
}

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

#system .career-path .career-path-contents-wrap {
  padding-bottom: 1.2rem;
}

#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-sp.jpg);
}

@media (max-width: 350px) {
  #information .common-top .section-title .common-heading {
    font-size: 4.2rem;
  }
}
/*------------------------------ 募集要項 ------------------------------*/
#information .info {
  padding: 6rem 0 4rem;
  margin-bottom: 6rem;
}

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

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

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

#information .info .accordion .accordion-item dt button {
  font-size: 1.8rem;
  line-height: 2;
  padding: 1.4rem 1.6rem;
}

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

#information .info .accordion .accordion-item dd {
  padding: 2rem 1.6rem 4rem;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail {
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

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

#information .info .accordion .accordion-item dd .info-contents-item-detail p {
  font-size: 1.5rem;
  line-height: 2;
}

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

@media (max-width: 350px) {
  #information .info .accordion .accordion-item dt::after {
    width: 3rem;
    height: 3rem;
  }

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

  #information .info .accordion .accordion-item.off dt::before {
    font-size: 1.2rem;
  }
}

/*------------------------------ 選考の流れ ------------------------------*/
#information .flow {
  gap: 4rem;
  flex-direction: column;
  padding: 5.7rem 0 4rem;
  margin-bottom: 6rem;
}

#information .flow::before {
  width: calc(100% + 1.9rem);
  left: -1.9rem;
}

#information .flow .flow-contents-wrap {
  padding-right: 1.9rem;
}

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

#information .flow .flow-contents-wrap .flow-contents-item {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

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

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

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

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step {
  display: flex;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step p,
#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step .number {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.6;
}

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

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

/*------------------------------ 必要なスキル ------------------------------*/
#information .skill {
  gap: 4rem;
  flex-direction: column;
  padding: 5.7rem 0 4rem;
}

#information .skill::before {
  width: calc(100% + 1.9rem);
  right: -1.9rem;
}

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

#information .skill .skill-contents-wrap {
  flex-direction: column;
  gap: 1.4rem;
}

#information .skill .skill-contents-wrap .skill-contents-item {
  width: calc(100% - 2.4rem);
  padding: 2rem 1.8rem;
  margin-left: auto;
}

#information .skill .skill-contents-wrap .skill-contents-item .number-label {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

#information .skill .skill-contents-wrap .skill-contents-item p {
  font-size: 1.5rem;
  line-height: 2;
}

/*------------------------------ よくある質問 ------------------------------*/
#information .faq {
  padding-top: 7.7rem;
  margin-bottom: 8rem;
}

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

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

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

#information .faq .faq-contents-wrap dt button {
  padding: 1.4rem 1.6rem;
  gap: 0.8rem;
}

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

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

#information .faq .faq-contents-wrap dd {
  padding: 2rem 1.6rem;
}

#information .faq .faq-contents-wrap dd p {
  font-size: 1.5rem;
  line-height: 2;
}

/*------------------------------ join-us ------------------------------*/
#information .join-us-btn .btn-wrap .btn {
  padding: 0 2.4rem;
}

#information .join-us-btn .btn-wrap .btn.info {
  background: #5AA9E6;
  margin-bottom: 0;
}

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

エントリー

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

/*------------------------------ ステップ ------------------------------*/
#entry .entry-process {
  width: calc(100% - 3.8rem);
  max-width: 50rem;
  margin-bottom: 4rem;
}

#entry .entry-process ul {
  width: 100%;
  justify-content: space-between;
}

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

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

#entry .entry .entry-form-wrap {
  padding: 4rem 1.6rem;
  margin-bottom: 4rem;
}

#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: 1.4rem;
  margin-bottom: 3rem;
}

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

#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-form-label-wrap .note {
  margin-bottom: 0;
}

#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 .radiobox {
  gap: 1rem;
  flex-direction: column;
}

#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 {
  font-size: 1.5rem;
  line-height: 2;
  padding: 1.5rem 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 {
  font-size: 1.5rem;
  line-height: 2;
}

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

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

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

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

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip {
  display: flex;
  gap: 0.8rem;
}

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

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip button {
  min-width: 14rem;
  border-radius: 3.4rem;
  padding: 1.2rem 1rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group {
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set p {
  font-size: 1.5rem;
  line-height: 2;
}

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

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

#entry .entry .entry-form-input-policy .policy {
  width: calc(100% - 7rem);
  padding: 1.2rem 0.8rem;
  margin-inline: auto;
}

@media (max-width: 400px) {
  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip {
    flex-direction: column;
  }

  #entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip button {
    text-align: center;
  }
}

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

#entry .confirm .entry-form-confirm-wrap {
  padding: 4rem 1.6rem;
  margin-bottom: 6rem;
}


#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item {
  flex-direction: column;
  gap: 0.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 {
  margin-bottom: 3rem;
  flex-direction: column;
}

#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: 100%;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .js-confirm-item,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item {
  font-size: 1.5rem;
  line-height: 2;
}

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

#entry .confirm .entry-form-submit {
  gap: 1.4rem;
  flex-direction: column-reverse;
}

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

#entry .comp .entry-form-comp-txt {
  padding: 4rem 1.6rem;
  margin-bottom: 6rem;
}

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

#entry .comp .entry-form-comp-txt p {
  font-size: 1.5rem;
  line-height: 2;
}

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

404ページ

-----------------------------------------------------------------------------*/
#notFound .common-top {
  background-image: url(../img/not-found/not-found-top-sp.jpg);
}

#notFound .not-found {
  padding: 4rem 1.6rem;
  margin-bottom: 6rem;
}

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

#notFound .not-found p {
  font-size: 1.5rem;
  line-height: 2;
}

#notFound .btn {
  width: 33.7rem;
  justify-content: center;
  margin-bottom: 8rem;
}

#notFound .btn .txt {
  padding-left: 4rem;
}

@media (max-width: 400px) {
  #notFound .btn {
    width: calc(100% - 3.8rem);
  }
}