@charset "utf-8";

/*------------------------------ 共通 ------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 1.6rem;
}

.large-container {
  margin-inline: auto;
}

.inner {
  margin-inline: auto;
}

.small-inner {
  margin-inline: auto;
}

.flex {
  display: flex;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: .5s ease;
}

.circle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  transition: .5s ease;
}

.circle.white {
  background: #fff;
}

.circle.blue {
  background: #024BB1;
}

.circle .arrow {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}

.circle .arrow::before {
  left: 0.8rem;
  opacity: 1;
}

.circle .arrow::after {
  left: 100%;
  opacity: 1;
}

.circle .arrow::before,
.circle .arrow::after {
  width: 1rem;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  transition: .5s ease;
}

.circle.white .arrow::before,
.circle.white .arrow::after {
  content: url('../img/common/btn-arrow-blue.svg');
}

.circle.blue .arrow::before,
.circle.blue .arrow::after {
  content: url('../img/common/btn-arrow-white.svg');
}

@keyframes arrowOut {
  0% {
    left: 0.8rem;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes arrowIn {
  0% {
    left: -100%;
    opacity: 0;
  }

  100% {
    left: 0.8rem;
    opacity: 1;
  }
}

.btn.arrow {
  height: 5.2rem;
  border-radius: 2.7rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn.arrow.blue {
  width: 18rem;
  color: #fff;
  background: #024BB1;
  border: 0.1rem solid #024BB1;
}

.btn.arrow.white {
  width: 22rem;
  background: #fff;
  border: 0.1rem solid #A8A8A8;
  font-family: "Prompt", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
}

.btn.arrow .txt {
  height: 100%;
  align-items: center;
  padding-left: 2.4rem;
  position: relative;
  z-index: 1;
}

.btn.arrow .circle {
  right: 1.4rem;
}

.btn.arrow:hover .circle {
  transform: scale(1.08) translateY(-50%) translateX(0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}

.btn.arrow:hover .circle .arrow::before {
  animation: arrowOut 0.5s forwards;
}

.btn.arrow:hover .circle .arrow::after {
  animation: arrowIn 0.5s forwards;
}

.btn.arrow.back {
  width: 25.6rem;
  height: 5.2rem;
  background: #fff;
  border-radius: 2.6rem;
  border: 0.1rem solid #A8A8A8;
  align-items: center;
  position: relative;
}

.btn.arrow.back .txt {
  font-weight: 600;
  align-items: center;
  padding-left: 9.2rem;
  position: relative;
}

.btn.arrow.back .circle {
  left: 1.4rem;
}

.btn.arrow.back .circle .arrow::before,
.btn.arrow.back .circle .arrow::after {
  content: url('../img/common/btn-arrow-back.svg');
}

.btn.arrow.back:hover .circle .arrow::before {
  animation: arrowOutBackBtn 0.5s forwards;
}

.btn.arrow.back .circle .arrow::after {
  right: -1rem;
}

.btn.arrow.back:hover .circle .arrow::after {
  animation: arrowInBackBtn 0.5s forwards;
}

@keyframes arrowOutBackBtn {
  0% {
    left: 0.8rem;
    opacity: 1;
  }

  100% {
    left: -100%;
    opacity: 0;
  }
}

@keyframes arrowInBackBtn {
  0% {
    right: -1rem;
    opacity: 0;
  }

  100% {
    left: 0.8rem;
    opacity: 1;
  }
}

.dib {
  display: inline-block;
}

.section-title.center {
  text-align: center;
}

.section-title .common-heading {
  font-family: "Prompt", sans-serif;
  color: #024BB1;
  font-weight: 500;
  line-height: 1.1;
  font-style: italic;
}

.common-heading .char,
.section-title p .char,
.interview-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title p {
  color: #3B4043;
  font-weight: 600;
  overflow: hidden;
}

.js-split-fade.active .common-heading .char .js-split-fade.active p .char,
.js-split-fade.active .interview-title .char {
  opacity: 1;
  transform: translateY(0);
}

.js-split-fade.active .common-heading .char:nth-child(n),
.js-split-fade.active p .char:nth-child(n),
.js-split-fade.active .interview-title .char:nth-child(n) {
  transition-delay: calc(0.06s * var(--i));
}

.js-split-fade.active .common-heading .char,
.js-split-fade.active p .char {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.04s * var(--i));
}

.js-flow-to-up {
  transform: translateY(2rem);
  opacity: 0;
  transition: .7s ease;
}

.js-flow-to-up.active {
  transform: translateY(0);
  opacity: 1;
}

.common-top {
  width: 100%;
  background-size: cover;
  position: relative;
}

.common-top::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #2180CC;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.common-top .section-title .common-heading,
.common-top .section-title p {
  color: #fff;
  position: relative;
  z-index: 2;
}

/*------------------------------ ヘッダー ------------------------------*/
header {
  width: 100%;
  background: #fff;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: .5s ease;
}

header.active {
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, .16);
}

header .logo-nav h1 a img,
header .logo-nav p a img {
  transition: 0.5s ease;
}

header .logo-nav h1 a img:hover,
header .logo-nav p a img:hover {
  opacity: 0.7;
}

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

トップページ

-----------------------------------------------------------------------------*/
/*------------------------------ ファーストビュー ------------------------------*/
#top .fv {
  position: relative;
}

#top .fv .fv-copy {
  position: fixed;
  z-index: 10;
}

#top .fv .fv-copy h2 {
  color: #fff;
  font-size: 5.3rem;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 0 3rem rgba(0, 0, 0, .1);
  overflow: hidden;
}

#top .fv .fv-copy h2 span {
  display: inline-block;
  transform: translateX(-100%);
  transition: .5s ease;
}

#top .fv .fv-copy h2 .s1 {
  animation: fvCopyAnime 0.8s ease forwards;
}

#top .fv .fv-copy h2 .s2 {
  animation: fvCopyAnime 0.8s ease 0.6s forwards;
}

@keyframes fvCopyAnime {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

#top .fv .fv-wrap {
  height: auto;
  position: relative;
}

#top .fv .fv-wrap .scroll {
  position: absolute;
  z-index: 100;
}

#top .fv .fv-wrap .scroll .scroll-animation {
  position: relative;
}

#top .fv .fv-wrap .scroll .scroll-animation::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #333;
  border-radius: 50%;
  position: absolute;
  animation: moveDown 3s ease infinite, changeColor 3s ease infinite;
}

@keyframes changeColor {

  0%,
  35% {
    background: #333;
  }

  43% {
    background: #fff;
  }

  80% {
    background: #fff;
    opacity: 1;
  }

  100% {
    background: #fff;
    opacity: 0;
  }
}


#top .fv .fv-wrap .scroll p {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  writing-mode: vertical-rl;
  position: relative;
}

#top .fv .fv-wrap .scroll p::before {
  content: "";
  width: 0.1rem;
  height: 8.7rem;
  background: #333333;
  position: absolute;
}

#top .fv .fv-wrap .scroll p::after {
  content: "";
  width: 0.1rem;
  height: 4.1rem;
  background: #fff;
  position: absolute;
}

#top .fv .fv-wrap .fv-bg {
  background: #fff;
}

#top .fv .fv-wrap .fv-bg .swiper-wrapper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
  transform: scale(1);
}

#top .fv .fv-wrap .fv-bg .swiper-wrapper .swiper-slide[class*="-active"] picture img {
  transform: scale(1.1);
}

#top .fv .fv-wrap .fv-message {
  background: #2180CC;
  position: relative;
}

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

#top .fv .fv-wrap .fv-message .fv-message-txt p {
  color: #fff;
  font-weight: 500;
}

#top .fv .fv-wrap .fv-message .fv-message-img {
  border-radius: 1rem;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}

#top .fv .fv-wrap .fv-message .fv-message-img.is-visible {
  opacity: 1;
}

#top .fv .fv-wrap .fv-message .fv-message-img picture img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

/*------------------------------ Works ------------------------------*/
#top .works {
  background: #F5F5F5;
}

#top .works .txt-btn .txt {
  font-weight: 500;
  line-height: 1.9;
}

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

#top .works .works-contents .work-contents-list .work-contents-list-item {
  position: relative;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a {
  display: block;
  position: relative;
}

#top .works .works-contents .work-contents-list .work-contents-list-item:nth-child(1) a {
  border-top: 0.1rem solid #707070;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: #070707;
  position: absolute;
  bottom: 0;
  left: 0;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a::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;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a:hover::after {
  transform: scale(1);
}

#top .works .works-contents .work-contents-list .work-contents-list-item a:hover .circle .arrow::before {
  animation: arrowOut 0.5s forwards;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a:hover .circle .arrow::after {
  animation: arrowIn 0.5s forwards;
}

#top .works .works-contents .work-contents-list .work-contents-list-item h3 {
  font-weight: bold;
  margin-bottom: 0.4rem;
  transition: .5s ease;
}

#top .works .works-contents .work-contents-list .work-contents-list-item p {
  font-weight: 500;
  letter-spacing: 0.024em;
  transition: .5s ease;
}

#top .works .works-contents .work-contents-list .work-contents-list-item a:hover h3,
#top .works .works-contents .work-contents-list .work-contents-list-item a:hover p {
  transform: translateX(0.5rem);
}

/*------------------------------ Interview ------------------------------*/
#top .interview .txt-btn .txt {
  font-weight: 500;
  line-height: 1.9;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-img {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

#top .interview .interview-contents .interview-contents-item:hover .interview-contents-item-img::before {
  opacity: 1;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-img picture img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  transition: .5s ease;
}

#top .interview .interview-contents .interview-contents-item:hover .interview-contents-item-img picture img {
  transform: scale(1.1);
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt p {
  font-weight: 500;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt .post {
  color: #2180CC;
  margin-bottom: 0.8rem;
}

#top .interview .interview-contents .interview-contents-item .interview-contents-item-txt h3 {
  font-weight: bold;
}

/*------------------------------ Values ------------------------------*/
#top .values {
  background: #F5F5F5;
}

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

#top .values .values-contents .txt h3 {
  width: fit-content;
  color: #FFFFFF;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

#top .values .values-contents .txt h3 span {
  opacity: 0;
  transition: 0.5s ease 1s;
}

#top .values .values-contents.active .txt h3 span {
  opacity: 1;
}

#top .values .values-contents .txt h3:before {
  content: "";
  width: 0;
  height: 100%;
  background: #2180CC;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s ease 0.5s;
}

#top .values .values-contents.active .txt h3:before {
  width: 100%;
}

#top .values .values-contents .txt p {
  background: rgba(255, 255, 255, .8);
  font-weight: 500;
  position: relative;
}

#top .values .values-contents .img picture img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

/*------------------------------ Feature ------------------------------*/
#top .feature .feature-contents .feature-contents-item {
  background: #2180CC;
  border-radius: 1rem;
  position: relative;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .txt h3 {
  color: #fff;
  font-weight: 600;
}

#top .feature .feature-contents .feature-contents-item .icon-txt .txt p {
  color: #fff;
  line-height: 1.9;
  position: relative;
}

#top .feature .feature-contents .feature-contents-item .point {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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


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

#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 p {
  color: #3B4043;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 1.8rem;
}

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

#top .numbers .numbers-contents .numbers-contents-item strong,
#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type strong {
  color: #2180CC;
  text-align: center;
  gap: 1.2rem;
  justify-content: center;
  align-items: flex-end;
}


#top .numbers .numbers-contents .numbers-contents-item strong .number {
  font-family: "Prompt", sans-serif;
  font-size: 5.8rem;
  font-weight: 600;
  line-height: 1.2;
}

#top .numbers .numbers-contents .numbers-contents-item strong .unit,
#top .numbers .numbers-contents .numbers-contents-item strong .pre {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 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-family: "Prompt", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

#top .numbers .numbers-contents .numbers-contents-item .construction-type-wrap .construction-type .unit {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 1rem;
}

#top .numbers .numbers-contents .orderer,
#top .numbers .numbers-contents .type {
  padding-top: 3.8rem;
}

#top .numbers .numbers-contents .orderer p,
#top .numbers .numbers-contents .type p {
  margin-bottom: 0;
}

#top .numbers .numbers-contents .orderer .graph-number,
#top .numbers .numbers-contents .type .graph-number {
  position: relative;
}

#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 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 .orderer .graph-number .graph-number-label:nth-child(2) {
  position: absolute;
  top: 3.26rem;
  left: calc(50% + 10.5rem);
}

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

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

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

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

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

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

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

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

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

/*------------------------------ Message ------------------------------*/
#top .message .bg {
  background: #F5F5F5;
}

#top .message .bg .massage-txt {
  margin-bottom: 1.8rem;
}

#top .message .bg .massage-txt h3 {
  font-weight: 600;
}

#top .message .bg .massage-txt p {
  font-weight: 500;
}

#top .message .bg .name {
  font-weight: 500;
  line-height: 1.9;
  text-align: right;
}

#top .message .message-img {
  position: relative;
}

#top .message .message-img .img:nth-last-of-type(1) {
  position: absolute;
  right: 0;
}

#top .message .message-img .img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

/*------------------------------ join-us ------------------------------*/
.join-us-btn {
  position: relative;
}

.join-us-btn::after {
  content: "";
  width: 100%;
  background: #F5F5F5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.join-us-btn .bg {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}

.join-us-btn .join-us {
  width: 100%;
  opacity: 0.41;
  overflow: hidden;
  position: relative;
}

.join-us-btn .join-us .loop {
  flex: 0 0 auto;
}

.loop-container {
  display: flex;
  will-change: transform;
}

.join-us-btn .join-us .loop img {
  height: 100%;
  object-fit: contain;
}

.join-us-btn .btn-wrap .btn {
  border-radius: 1rem;
  align-items: center;
  position: relative;
}

.join-us-btn .btn-wrap .btn:hover .circle {
  transform: scale(1.1) translateY(-50%) translateX(0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}

.join-us-btn .btn-wrap .btn .txt .label {
  font-family: "Prompt", sans-serif;
  color: #fff;
  font-size: 3.7rem;
  font-weight: 500;
  font-style: italic;
}

.join-us-btn .btn-wrap .btn .txt p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}

.join-us-btn .btn-wrap .btn.info {
  background: #5AA9E6;
  border: 0.1rem solid #5AA9E6;
}

.join-us-btn .btn-wrap .btn.entry {
  background: #2180CC;
  border: 0.1rem solid #2180CC;
}

.join-us-btn .btn-wrap .btn:hover,
#information .join-us-btn .btn-wrap .btn.info:hover {
  background: #fff;
}

.join-us-btn .btn-wrap .btn.info:hover .txt p,
#information .join-us-btn .btn-wrap .btn.info:hover .txt p {
  color: #5AA9E6;
}

.join-us-btn .btn-wrap .btn.entry:hover .txt p {
  color: #2180CC;
}

.join-us-btn .btn-wrap .btn:hover .circle .arrow::before {
  animation: arrowOut 0.5s forwards;
}

.join-us-btn .btn-wrap .btn:hover .circle .arrow::after {
  animation: arrowIn 0.5s forwards;
}


/*------------------------------ フッター ------------------------------*/
footer {
  background: #F5F5F5;
}

footer .address-nav .logo-address .logo {
  width: 20.7rem;
  display: block;
}

footer .address-nav .logo-address .logo:hover {
  opacity: .7;
}

footer .address-nav .logo-address .logo img {
  width: 100%;
}

footer .address-nav .logo-address address p:nth-child(1),
footer .address-nav .logo-address address a {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

footer .address-nav .logo-address address p:nth-child(2) {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

footer .address-nav .logo-address address a {
  margin-bottom: 0;
}

footer .address-nav .logo-address address a:hover,
footer .address-nav .logo-address .corporate-link:hover,
footer .address-nav .logo-address .instagram:hover {
  opacity: .7;
}

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

footer .address-nav .logo-address .corporate-link p {
  border-bottom: 0.1rem solid #333333;
}

footer .address-nav .logo-address .corporate-link img {
  width: 1.2rem;
  display: block;
}

footer .address-nav .logo-address .instagram {
  width: 1.9rem;
  display: block;
}

footer .copy-right-btn {
  justify-content: space-between;
}

footer .copy-right-btn small {
  color: #707070;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.024em;
  line-height: 2;
}

footer .copy-right-btn .btn {
  height: 2.2rem;
  align-items: center;
  position: relative;
  padding-right: 2.8rem;
}


footer .copy-right-btn .btn p {
  font-family: "Prompt", sans-serif;
  font-size: 1.4rem;
  line-height: 1.9;
}

footer .copy-right-btn .btn .circle {
  width: 2.2rem;
  height: 2.2rem;
  right: 0;
}

footer .copy-right-btn .btn .circle .arrow::before {
  width: fit-content;
  top: 50%;
  left: 0.35rem;
  transform: translateY(-50%) rotate(-90deg) scale(0.8);
}

footer .copy-right-btn .btn .circle .arrow::after {
  width: fit-content;
  top: 150%;
  left: 0.35rem;
  transform: translateY(-50%) rotate(-90deg) scale(0.8);
}


footer .copy-right-btn .btn:hover .circle .arrow::before {
  animation: arrowOutUp 0.5s forwards;
}

footer .copy-right-btn .btn:hover .circle .arrow::after {
  animation: arrowInUp 0.5s forwards;
}

@keyframes arrowOutUp {
  0% {
    top: 50%;
    opacity: 1;
  }

  100% {
    top: -30%;
    opacity: 0;
  }
}

@keyframes arrowInUp {
  0% {
    top: 150%;
    opacity: 0;
  }

  100% {
    top: 50%;
    opacity: 1;
  }
}

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

仕事を知る

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

/*------------------------------ 職種紹介 ------------------------------*/
#works .job-type .job-type-contents-item:nth-last-of-type(1) {
  margin-bottom: 0;
}

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

#works .job-type .job-type-contents-item .txt h3,
#works .job-type .job-type-contents-item .txt-interview .txt h3 {
  width: fit-content;
  color: #fff;
  font-weight: 600;
  position: relative;
}

#works .job-type .job-type-contents-item .txt h3::before,
#works .job-type .job-type-contents-item .txt-interview .txt h3::before {
  content: "";
  width: 0;
  height: 100%;
  background: #2180CC;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s ease .2s;
}

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

#works .job-type .job-type-contents-item .txt h3 span,
#works .job-type .job-type-contents-item .txt-interview .txt h3 span {
  opacity: 0;
  transition: .5s ease .7s;
}

#works .job-type .job-type-contents-item .txt.active h3 span,
#works .job-type .job-type-contents-item .txt-interview .txt.active h3 span {
  opacity: 1;
}

#works .job-type .job-type-contents-item .txt .sub-title,
#works .job-type .job-type-contents-item .txt-interview .txt .sub-title {
  color: #2180CC;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

#works .job-type .job-type-contents-item .txt p,
#works .job-type .job-type-contents-item .txt-interview .txt p {
  color: #3B4043;
  font-weight: 500;
  line-height: 1.9;
}

#works .job-type .job-type-contents-item .txt.active .sub-title,
#works .job-type .job-type-contents-item .txt-interview .txt.active .sub-title,
#works .job-type .job-type-contents-item .txt.active p,
#works .job-type .job-type-contents-item .txt-interview .txt.active p {
  opacity: 1;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: .5s ease;
}

#works .job-type .job-type-contents-item .txt-interview .interview:hover .interview-img img {
  transform: scale(1.1);
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt .label {
  color: #2180CC;
  font-weight: 500;
  line-height: 1.9;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt h4 {
  font-weight: bold;
  margin-bottom: 0.8rem;
}

#works .job-type .job-type-contents-item .txt-interview .interview .interview-txt .name {
  font-weight: 500;
  line-height: 1.9;
}

/*------------------------------ 工事の流れ ------------------------------*/
#works .process {
  background: #F5F5F5;
}

#works .process .process-contents-wrap {
  background: #fff;
  border-radius: 1rem;
  position: relative;
}

#works .process .process-contents-wrap::before,
#works .process .process-contents-wrap::after {
  content: "";
  width: 0.6rem;
  background: #C3D3E5;
  position: absolute;
  transform: translateX(-50%);
  z-index: 0;
}

#works .process .process-contents-wrap .icon-wrap {
  margin-bottom: 2.4rem;
}

#works .process .process-contents-wrap .icon-wrap .icon p {
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 1rem;
}

#works .process .process-contents-wrap .icon-wrap .icon .img {
  width: 11.8rem;
  height: 11.8rem;
  background: #fff;
  border-radius: 50%;
  border: 0.3rem solid #C3D3E5;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

#works .process .process-contents-wrap .icon-wrap .icon .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#works .process .process-contents-wrap .process-contents-item {
  justify-content: center;
  align-items: center;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 1;
}

#works .process .process-contents-wrap .process-contents-item-wrap:nth-last-of-type(1) .process-contents-item {
  margin-bottom: 0;
}

#works .process .process-contents-wrap .process-contents-item.client,
#works .process .process-contents-wrap .process-contents-item.iwazawa {
  height: 4.8rem;
  background: #F0F3F5;
  border-radius: 2.4rem;
}

#works .process .process-contents-wrap .process-contents-item.iwazawa {
  margin-left: auto;
}

#works .process .process-contents-wrap .process-contents-item.blue {
  width: 100%;
  height: 5.8rem;
  background: #2180CC;
  border-radius: 2.9rem;
}

#works .process .process-contents-wrap .process-contents-item p {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

#works .process .process-contents-wrap .process-contents-item.blue p {
  color: #fff;
}

/*------------------------------ 1日のスケジュール ------------------------------*/
#works .schedule .schedule-contents-wrap {
  justify-content: space-between;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .time {
  font-family: "Prompt", sans-serif;
  color: #2180CC;
  font-weight: 600;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap {
  font-weight: 600;
  line-height: 1.8;
  position: relative;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap::before {
  content: "";
  width: 0.2rem;
  background: #C3D3E5;
  position: absolute;
  top: 2.25rem;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li:last-child .label-wrap::before {
  content: none;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .label {
  font-weight: bold;
  position: relative;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap .label::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: #2180CC;
  border-radius: 50%;
  position: absolute;
}

#works .schedule .schedule-contents-wrap .schedule-contents-txt-wrap ul li .label-wrap p {
  color: #3B4043;
  font-weight: 500;
  line-height: 1.9;
}

/*------------------------------ 社会への取り組み ------------------------------*/
#works .sustainability .bg {
  position: relative;
}

#works .sustainability .bg::before {
  content: "";
  background: #F5F5F5;
  position: absolute;
  left: 0;
  z-index: -1;
}

#works .sustainability .bg .txt-img p {
  font-weight: 500;
  line-height: 1.9;
}

#works .sustainability .bg .txt-img .img-wrap .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

人を知る

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

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

#interview .anchor ul li {
  position: relative;
  transition: .5s ease;
}

#interview .anchor ul li:hover {
  opacity: .7;
}

#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 {
  text-align: center;
  font-weight: 500;
}

#interview .anchor ul li a .name {
  background: #F0F3F5;
  font-size: 1.4rem;
  line-height: 2.1;
  text-align: center;
  padding: 0.4rem 0;
}


/*------------------------------ インタビュー ------------------------------*/
#interview .common-interview .interview-title-img {
  background: #2180CC;
}

#interview .common-interview .interview-title-img .inner {
  position: relative;
}

#interview .common-interview .interview-title-img .inner h2,
#interview .common-interview .interview-title-img .inner h3,
#interview .common-interview .interview-title-img .inner p {
  position: relative;
  z-index: 1;
}

#interview .common-interview .interview-title-img .inner h2 {
  font-family: "Prompt", sans-serif;
  color: #D9E1EC;
  font-weight: 500;
  font-style: italic;
  text-shadow: 0 0 3rem rgba(0, 0, 0, .1);
  opacity: 0.4;
}

#interview .common-interview .interview-title-img .inner h3 {
  width: fit-content;
  color: #2180CC;
  font-weight: 600;
  padding: 1.5rem 2rem;
  position: relative;
}

#interview .common-interview .interview-title-img .inner h3::before {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s ease 0.7s;
}

#interview .common-interview .interview-title-img .inner.active h3::before {
  width: 100%;
}

#interview .common-interview .interview-title-img .inner h3 span {
  opacity: 0;
  transition: 0.5s ease 1.2s;
  position: relative;
}

#interview .common-interview .interview-title-img .inner.active h3 span {
  opacity: 1;
}

#interview .common-interview .interview-title-img .inner p {
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.9;
}

#interview .common-interview .interview-title-img .inner .img {
  position: absolute;
}

#interview .common-interview .interview-title-img .inner .img img {
  width: 100%;
  height: 100%;
}

#interview .common-interview .question-img .img {
  position: relative;
  z-index: 1;
}

#interview .common-interview .question-img .img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

#interview .common-interview .question-img dl {
  position: relative;
}

#interview .common-interview .question-img dl dt .q {
  background: #5AA9E6;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 600;
  justify-content: center;
}

#interview .common-interview .question-img dl dt span {
  color: #2180CC;
  font-weight: bold;
}

#interview .common-interview .question-img dl dd {
  font-weight: 500;
}

#interview .common-interview .question-img dl dd:nth-last-of-type(1) {
  margin-bottom: 0;
}

#interview .common-interview .img-message {
  background: #F5F5F5;
  border-radius: 1rem;
}

#interview .common-interview .img-message .img {
  width: 16rem;
  height: 16rem;
}

#interview .common-interview .img-message .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#interview .common-interview .img-message .message .label {
  color: #2180CC;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#interview .common-interview .img-message .message p {
  color: #3B4043;
  font-weight: 500;
  line-height: 1.9;
}

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

働く環境・制度

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

/*------------------------------ 福利厚生 ------------------------------*/
#system .welfare .welfare-contents-wrap {
  border: 0.1rem solid #2180CC;
}

#system .welfare .welfare-contents-wrap {
  flex-wrap: wrap;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item {
  border: 0.1rem solid #2180CC;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .img {
  background: #F0F3F5;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt h3 {
  color: #2180CC;
  font-weight: bold;
}

#system .welfare .welfare-contents-wrap .welfare-contents-item .txt p {
  color: #3B4043;
  font-weight: 500;
}

/*------------------------------ キャリアパスイメージ ------------------------------*/
#system .career-path {
  background: #F5F5F5;
  border-radius: 1rem;
  margin-bottom: 8rem;
  position: relative;
}

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

#system .career-path .career-path-contents-wrap {
  gap: 1.5rem;
  align-items: flex-end;
  overflow-x: scroll;
  position: relative;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item {
  flex: 0 0 20rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.6rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item .img {
  width: 10rem;
  margin-inline: auto;
  margin-bottom: 0.4rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item .step {
  padding: 1rem 0;
  margin-bottom: 0.4rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item .step p {
  font-family: "Prompt", sans-serif;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 0;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(1) .step {
  background: #AABBCE;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(2) .step {
  background: #A8D4F4;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(3) .step {
  background: #5AA9E6;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(4) .step {
  background: #2180CC;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(5) .step {
  background: #024BB1;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(1) .detail {
  background: #AABBCE;
  padding: 2.8rem 1.4rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(2) .detail {
  background: #A8D4F4;
  padding: 3.4rem 1.4rem;

}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(3) .detail {
  background: #5AA9E6;
  padding: 4.2rem 1.4rem 6.2rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(4) .detail {
  background: #2180CC;
  padding: 5.6rem 1.4rem 13.7rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item:nth-child(5) .detail {
  background: #024BB1;
  padding: 8rem 1.4rem 12.1rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item .detail .label {
  background: #fff;
  font-size: 1.4rem;
  color: #333333;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
  padding: 0.4rem 0;
  margin-bottom: 0.8rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item p {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
  margin-bottom: 1.8rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item ul li {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.4rem;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

#system .career-path .career-path-contents-wrap .career-path-contents-item ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}

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

募集要項

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

/*------------------------------ 募集要項 ------------------------------*/
#information .info {
  background: #2180CC;
}

#information .info .accordion .accordion-item {
  background: #fff;
  border-radius: 1rem;
}

#information .info .accordion .accordion-item.off {
  background: #F0F3F5;
  pointer-events: none;
}

#information .info .accordion .accordion-item:nth-last-of-type(1) {
  margin-bottom: 0;
}

#information .info .accordion .accordion-item dt {
  position: relative;
}

#information .info .accordion .accordion-item dt::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: #2180CC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: .5s ease;
  pointer-events: none;
}

#information .info .accordion .accordion-item dt:hover::after {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.3);
}

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

#information .info .accordion .accordion-item.off dt::before {
  content: "現在は募集していません";
  background: #AABBCE;
  border-radius: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#information .info .accordion .accordion-item dt button {
  width: 100%;
  font-weight: bold;
  position: relative;
  transition: .5s ease;
}

#information .info .accordion .accordion-item dt:hover button {
  color: #2180CC;
}

#information .info .accordion .accordion-item.off dt button {
  color: #AABBCE;
}

#information .info .accordion .accordion-item dt button.active {
  border-bottom: 0.1rem solid #C3D3E5;
}

#information .info .accordion .accordion-item dt button::before,
#information .info .accordion .accordion-item dt button::after {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  transition: .5s ease;
  pointer-events: none;
}

#information .info .accordion .accordion-item dt button::after {
  transform: translateY(-50%) rotate(90deg);
}

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

#information .info .accordion .accordion-item dt button.active::after {
  transform: translateY(-50%);
}

#information .info .accordion .accordion-item dt button span {
  font-family: "Prompt", sans-serif;
  color: #C3D3E5;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.6;
  padding-left: 2.6rem;
}

#information .info .accordion .accordion-item.off dt button span {
  color: #AABBCE;
}

#information .info .accordion .accordion-item dd {
  transition: max-height 0.5s ease, padding 0.5s ease;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail {
  border-bottom: 0.1rem solid #707070;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail .label {
  color: #2180CC;
  font-weight: bold;
  line-height: 2.3;
}

#information .info .accordion .accordion-item dd .info-contents-item-detail p {
  color: #3B4043;
  font-weight: 500;
}

#information .info .accordion .accordion-item dd .btn {
  margin-inline: auto;
}

/*------------------------------ 選考の流れ ------------------------------*/
#information .flow {
  position: relative;
}

#information .flow::before {
  content: "";
  height: 100%;
  background: #F5F5F5;
  border-radius: 0 1rem 1rem 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

#information .flow .flow-contents-wrap {
  position: relative;
}

#information .flow .flow-contents-wrap::before {
  content: "";
  width: 0.2rem;
  height: 80%;
  background: #C3D3E5;
  position: absolute;
  top: 10%;
}

#information .flow .flow-contents-wrap .flow-contents-item {
  position: relative;
  z-index: 1;
}

#information .flow .flow-contents-wrap .flow-contents-item:nth-last-of-type(1) {
  margin-bottom: 0;
}

#information .flow .flow-contents-wrap .flow-contents-item .img {
  border-radius: 50%;
  background: #fff;
  border: 0.1rem solid #C3D3E5;
  align-items: center;
  justify-content: center;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .step p {
  font-family: "Prompt", sans-serif;
  color: #2180CC;
  font-weight: bold;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .txt .label {
  font-weight: bold;
}

#information .flow .flow-contents-wrap .flow-contents-item .step-txt .txt p {
  font-weight: 500;
}

/*------------------------------ 必要なスキル ------------------------------*/
#information .skill {
  position: relative;
}

#information .skill::before {
  content: "";
  height: 100%;
  background: #F5F5F5;
  border-radius: 1rem 0 0 1rem;
  position: absolute;
  top: 0;
  z-index: -1;
}

#information .skill .skill-contents-wrap .skill-contents-item {
  background: #fff;
  border-radius: 1rem;
}

#information .skill .skill-contents-wrap .skill-contents-item .number-label .number {
  font-family: "Prompt", sans-serif;
  color: #2180CC;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
}

#information .skill .skill-contents-wrap .skill-contents-item .number-label .label {
  color: #3B4043;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

#information .skill .skill-contents-wrap .skill-contents-item p {
  color: #3B4043;
  font-weight: 500;
}

/*------------------------------ よくある質問 ------------------------------*/
#information .faq .faq-contents-wrap dl {
  width: 100%;
  background: #2180CC;
  border: 0.1rem solid #2180CC;
  border-radius: 1rem;
}

#information .faq .faq-contents-wrap dl:nth-last-of-type(1) {
  margin-bottom: 0;
}

#information .faq .faq-contents-wrap dt {
  position: relative;
  transition: .5s ease;
}

#information .faq .faq-contents-wrap dt:hover {
  opacity: .7;
}

#information .faq .faq-contents-wrap dt::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: .5s ease;
  pointer-events: none;
}

#information .faq .faq-contents-wrap dt:hover::after {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.3);
}

#information .faq .faq-contents-wrap dt button {
  width: 100%;
  background: #2180CC;
  border-radius: 1rem;
  align-items: center;
  position: relative;
  transition: border .5s ease;
}

#information .faq .faq-contents-wrap dt button.active {
  border-radius: 1rem 1rem 0 0;
}

#information .faq .faq-contents-wrap dt button::before,
#information .faq .faq-contents-wrap dt button::after {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #5AA9E6;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  transition: .5s ease;
  pointer-events: none;
}

#information .faq .faq-contents-wrap dt button::after {
  transform: translateY(-50%) rotate(90deg);
}

#information .faq .faq-contents-wrap dt button.active::after {
  transform: translateY(-50%);
}

#information .faq .faq-contents-wrap dt button .q {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: #5AA9E6;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2;
  align-items: center;
  justify-content: center;
}

#information .faq .faq-contents-wrap dt span {
  color: #fff;
  font-weight: bold;
}

#information .faq .faq-contents-wrap dd {
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

#information .faq .faq-contents-wrap dd p {
  font-weight: 500;
}

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

エントリー

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

/*------------------------------ ステップ ------------------------------*/
#entry .entry-process {
  margin-inline: auto;
}

#entry .entry-process ul {
  position: relative;
}

#entry .entry-process ul::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #D9E1EC;
  position: absolute;
  top: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
}

#entry .entry-process ul li {
  background: #fff;
  position: relative;
  z-index: 1;
  display: block;
}

#entry .entry-process ul li .number {
  width: 4.4rem;
  height: 4.4rem;
  background: #D9E1EC;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.1rem;
}

#entry .entry-process ul li.active .number {
  background: #fff;
  border: 0.2rem solid #2180CC;
  font-family: "Prompt", sans-serif;
  color: #2180CC;
}

#entry .entry-process ul li.step-comp .number {
  background: #2180CC;
  border: 0.2rem solid #2180CC;
  font-family: "Prompt", sans-serif;
  color: #A8D4F4;
}

#entry .entry-process ul li p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

#entry .entry-process ul li.active p {
  font-weight: bold;
}

#entry .entry-process ul li.step-comp p {
  color: #AABBCE;
}

/*------------------------------ 入力画面 ------------------------------*/
#entry .entry .p-country-name {
  display: none;
}

#entry .entry .entry-form-wrap {
  background: #F5F5F5;
  border-radius: 1rem;
}

#entry .entry .entry-form-wrap .contact-form-7 {
  display: none;
}

#entry .entry .entry-form-wrap .entry-form-item:nth-last-of-type(1),
#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-sub-item :nth-last-of-type(1) {
  margin-bottom: 0;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap p {
  color: #3B4043;
  font-weight: bold;
  line-height: 1.5;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap .required {
  width: fit-content;
  height: fit-content;
  background: #2180CC;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 0.6rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-label-wrap .note {
  color: #333;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox .radiobox-item {
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox .radiobox-item input {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 0.1rem solid #CDD6DD;
  border-radius: 50%;
  padding: 0;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox .radiobox-item input:checked::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  background: #2180CC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .radiobox .radiobox-item .radiobox-item-name {
  font-weight: 500;
}

#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 {
  width: 100%;
  background: #fff;
  border: 0.1rem solid #C3D3E5;
  font-weight: 500;
}

#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 {
  color: #C3D3E5;
  font-weight: 400;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap {
  justify-content: space-between;
}

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

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.2rem solid #2180CC;
  border-right: 0.2rem solid #2180CC;
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 2.2rem;
  pointer-events: none;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap.year {
  width: 38.5%;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap.month,
#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap.day {
  width: 27.5%;
}

#entry .entry .entry-form-wrap .entry-form-item .birth-wrap .entry-form-select-wrap select {
  width: 100%;
  background: #fff;
  border: 0.1rem solid #C3D3E5;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip button {
  background: #fff;
  border: 0.2rem solid #2180CC;
  color: #2180CC;
  font-weight: bold;
  line-height: 1.9;
  transition: .5s ease;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .entry-form-input-zip button:hover {
  opacity: .7;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-wrap .note {
  color: #707070;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.4rem;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set p {
  font-weight: 400;
  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 button {
  height: 5.2rem;
  background: #2180CC;
  border-radius: 2.7rem;
  color: #fff;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: .5s ease;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .entry-form-file-group .js-form-file-set button:hover {
  opacity: .7;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-input-file-wrap .note {
  color: #707070;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

#entry .entry .entry-form-wrap .entry-form-item .entry-form-textarea-wrap textarea {
  height: 14rem;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox {
  gap: 1.4rem 2rem;
  flex-wrap: wrap;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox label {
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox label input {
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
  position: relative;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox label input:checked::before {
  content: url('../img/entry/checkbox.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox label .checkbox-item-name {
  font-weight: 500;
}

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

#entry .entry .entry-form-wrap .entry-form-item .checkbox .checkbox-other label {
  width: fit-content;
  margin-bottom: 0.8rem;
}

#entry .entry .entry-form-wrap .entry-form-item .checkbox .checkbox-other label .checkbox-other-detail {
  width: 100%;
}

#entry .entry .entry-form-input-policy {
  width: fit-content;
  margin-bottom: 6.4rem;
  margin-inline: auto;
}

#entry .entry .entry-form-input-policy .policy {
  height: 14rem;
  background: #fff;
  border: 0.1rem solid #C3D3E5;
  margin-bottom: 3.2rem;
  overflow-y: scroll;
}

#entry .entry .entry-form-input-policy .policy p {
  color: #3B4043;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}

#entry .entry .entry-form-input-policy .policy p:nth-last-of-type(1) {
  margin-bottom: 0;
}

#entry .entry .entry-form-input-policy label {
  width: fit-content;
  gap: 1rem;
  align-items: center;
  margin-inline: auto;
  cursor: pointer;
}

#entry .entry .entry-form-input-policy label input {
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid #C3D3E5;
  position: relative;
  cursor: pointer;
}

#entry .entry .entry-form-input-policy label input:checked::before {
  content: url('../img/entry/checkbox.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#entry .entry .entry-form-input-policy label p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

#entry .entry .entry-form-submit button {
  width: 25.6rem;
  margin-inline: auto;
}

.u-validation {
  font-size: 1.2rem;
  color: #DB4C33;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.3rem;
}

#entry .entry .entry-form-input-policy .u-validation {
  text-align: center;
}

#entry .entry .entry-form-submit button .txt {
  font-weight: bold;
}

/*------------------------------ 確認画面 ------------------------------*/
#entry .confirm {
  display: none;
}

#entry .confirm .entry-form-confirm-wrap {
  background: #F5F5F5;
  border-radius: 1rem;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item:nth-last-of-type(1) {
  margin-bottom: 0;
}

#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 {
  font-weight: bold;
  line-height: 1.5;
}

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

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .entry-form-confirm-item-checkbox-wrap {
  flex-wrap: wrap;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .note {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.4rem;
}

#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item .js-confirm-item,
#entry .confirm .entry-form-confirm-wrap .entry-form-confirm-item {
  font-weight: 500;
}

#entry .confirm .entry-form-submit {
  width: fit-content;
  margin-inline: auto;
}

#entry .confirm .entry-form-submit button {
  width: 25.6rem;
}

#entry .confirm .entry-form-submit button .txt {
  font-weight: bold;
}

/*------------------------------ 完了画面 ------------------------------*/
#entry .comp {
  display: none;
}

#entry .comp .entry-form-comp-txt {
  background: #F5F5F5;
  border-radius: 1rem;
}

#entry .comp .entry-form-comp-txt h2 {
  color: #2180CC;
  font-weight: bold;
}

#entry .comp .entry-form-comp-txt p {
  font-weight: 500;
  margin-bottom: 2rem;
}

#entry .comp .entry-form-comp-txt p:nth-last-of-type(1) {
  margin-bottom: 0;
}

#entry .comp .btn {
  margin-inline: auto;
}

#entry .comp .btn .txt {
  font-weight: bold;
}

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

404ページ

-----------------------------------------------------------------------------*/
#notFound .not-found {
  background: #F5F5F5;
  border-radius: 1rem;
}

#notFound .not-found h2 {
  color: #2180CC;
  font-weight: bold;
}

#notFound .not-found p {
  color: #3B4043;
  font-weight: 500;
}

#notFound .btn {
  margin-inline: auto;
}