@charset "UTF-8";
html {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img, h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"], h1 img[src$=".svg"], h2 img[src$=".svg"], h3 img[src$=".svg"], h4 img[src$=".svg"], h5 img[src$=".svg"], h6 img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #0175C2;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #0175C2;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 8rem;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 12rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 90%;
    padding-right: 0;
    margin: auto;
  }
}
.header__logo {
  width: auto;
  font-size: 4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: bold;
  transition: all ease-in-out 0.6s;
}
.header__logo.active {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden scroll;
    background-color: #fff;
    transition: all ease-in-out 0.6s;
    transform: translateX(100%);
    z-index: -1;
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__inner {
    background-color: #0175C2;
    padding: 18rem 6rem 6rem;
  }
}
.header .gnav__list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    display: block;
  }
}
.header .gnav__item a {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 2rem 0.4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    font-size: 3.6rem;
    color: #fff;
  }
  .header .gnav__item a::after {
    content: "";
    width: 3rem;
    height: 3rem;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
  }
}
.header .gnav__recruit {
  border-radius: 2rem;
  margin: 2rem;
  background-image: url("../img/recruit_img_sp.png");
  background-size: cover;
  background-position: center;
  padding: 8rem 6rem;
}
.header .gnav__recruit .secTitle {
  color: #fff;
}
.header .gnav__recruit .text {
  font-size: 3rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.header .gnav__recruit .btn {
  position: relative;
  display: block;
  width: 100%;
  line-height: 14rem;
  height: 14rem;
  background-color: #0175C2;
  color: #fff;
  font-weight: bold;
  font-size: 3.6rem;
  border-radius: 10rem;
  text-align: center;
  padding-right: 8rem;
}
.header .gnav__recruit .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7rem;
  background-image: url("../img/icon_arrow01.svg");
  width: 3.5rem;
  height: 3.5rem;
  margin: auto;
  background-size: cover;
}
.header__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active .bar {
  background-color: #fff;
}
.header__btn.active .bar:first-of-type {
  transform: translateY(1.5rem) rotate(30deg);
}
.header__btn.active .bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  transform: translateY(-1.2rem) rotate(-30deg);
  width: 100%;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 3rem;
  width: 7.5rem;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar {
  position: absolute;
  left: 0;
  background-color: #333;
  height: 0.4rem;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 1.4rem;
}
.header__btn .bar:last-of-type {
  bottom: 0;
}
.header__entry {
  position: fixed;
  top: 0;
  right: 0;
  height: 7rem;
  line-height: 7rem;
  width: 15rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(180deg, rgb(2, 130, 220), rgb(138, 216, 255));
  border-bottom-left-radius: 1rem;
  z-index: 10000;
}
@media only screen and (max-width: 767px) {
  .header__entry {
    position: absolute;
    top: 12rem;
    width: 28rem;
    height: 10rem;
    line-height: 10rem;
    border-bottom-left-radius: 2rem;
    z-index: 4;
  }
}
.header__entry::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  background-image: url("../img/icon_arrow01.svg");
  width: 1rem;
  height: 1rem;
  margin: auto;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .header__entry::after {
    right: 3rem;
    width: 2rem;
    height: 2rem;
  }
}

.main {
  line-height: 1.8;
}

.wrapper {
  max-width: 1000px;
  width: 80%;
  margin: auto;
}

.secTitle {
  margin-bottom: 4rem;
}
.secTitle .ja {
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .secTitle .ja {
    font-size: 2.4rem;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
  }
}
.secTitle .ja::before {
  content: "●";
  color: #0175C2;
  font-size: 1rem;
  position: absolute;
  top: 0.55rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .secTitle .ja::before {
    top: 0.4rem;
    font-size: 1.8rem;
  }
}
.secTitle .en {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .secTitle .en {
    font-size: 8rem;
  }
}

.mv {
  position: relative;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .mv {
    margin-top: 0;
  }
}
.mv__img {
  width: 100%;
  height: 74rem;
}
.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media only screen and (max-width: 767px) {
  .mv__img {
    min-height: 100svh;
  }
}
.mv__title {
  position: absolute;
  bottom: 14rem;
  left: 8%;
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .mv__title {
    font-size: 8rem;
    left: 5%;
    bottom: 40rem;
  }
}
.mv__scroll {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4rem;
  margin: auto;
  width: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .mv__scroll {
    width: 8rem;
    bottom: 6rem;
  }
}

.pageTop {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 10rem;
  height: 10rem;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .pageTop {
    display: none;
  }
}

.philosophy {
  position: relative;
  padding: 15rem 0;
}
.philosophy__deco {
  position: absolute;
  width: 89rem;
  top: -4rem;
  right: -15rem;
  z-index: -2;
}
@media only screen and (max-width: 767px) {
  .philosophy__deco {
    width: 120rem;
    top: -10rem;
    right: -45rem;
  }
}
.philosophy .wrapper {
  position: relative;
  padding-left: 10rem;
}
@media only screen and (max-width: 767px) {
  .philosophy .wrapper {
    padding-left: 16rem;
  }
}
.philosophy .secTitle {
  position: absolute;
  top: -5rem;
  left: -18rem;
  height: 140%;
  padding: 10rem 4rem;
  writing-mode: vertical-rl;
  color: #fff;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .philosophy .secTitle {
    height: 115%;
    left: -6rem;
    padding: 4rem 5rem;
    display: flex;
    align-items: flex-start;
  }
}
.philosophy .secTitle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background-color: #0175C2;
  border-radius: 4rem;
  z-index: -1;
}
.philosophy .secTitle .en {
  font-size: 8rem;
}
@media only screen and (max-width: 767px) {
  .philosophy .secTitle .en {
    font-size: 7rem;
    margin: 3rem -2.5rem 0 0;
  }
}
.philosophy .secTitle .ja {
  padding-top: 2rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .philosophy .secTitle .ja {
    padding-top: 3rem;
  }
}
.philosophy .secTitle .ja::before {
  color: #1A6094;
  top: 0;
  left: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .philosophy .secTitle .ja::before {
    left: 3.6rem;
  }
}
.philosophy__item:not(:first-child) {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .philosophy__item:not(:first-child) {
    margin-top: 8rem;
  }
}
.philosophy__heading {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .philosophy__heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }
}
.philosophy__heading span {
  display: inline-block;
  position: relative;
  font-size: 3.4rem;
  font-weight: bold;
  padding: 0 0.7em;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .philosophy__heading span {
    font-size: 6rem;
  }
}
.philosophy__heading span::before, .philosophy__heading span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icon_strong.svg");
  background-size: cover;
  width: 1.2rem;
  height: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .philosophy__heading span::before, .philosophy__heading span::after {
    width: 2.2rem;
    height: 2rem;
  }
}
.philosophy__heading span::after {
  inset: auto 0 0 auto;
  transform: rotate(180deg);
}
.philosophy__text {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .philosophy__text {
    font-size: 2.8rem;
    text-align: center;
  }
}
.philosophy__text em {
  font-size: 2.4rem;
  color: #0175C2;
  font-weight: bold;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .philosophy__text em {
    font-size: 3.4rem;
  }
}
.philosophy__list {
  list-style: none;
}
.philosophy__list li {
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5rem 0 0.5rem 3.5rem;
  position: relative;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .philosophy__list li {
    font-size: 2.8rem;
    padding-left: 5rem;
    white-space: nowrap;
  }
}
.philosophy__list li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  background-image: url("../img/icon_check.svg");
  background-size: cover;
  width: 2.2rem;
  height: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .philosophy__list li::before {
    top: 1rem;
    width: 3rem;
    height: 3rem;
  }
}
.philosophy__img {
  position: absolute;
  right: 0;
  bottom: -4rem;
  width: 33rem;
}
@media only screen and (max-width: 767px) {
  .philosophy__img {
    position: static;
    width: 100%;
    margin: 4rem auto 0;
  }
}

.message {
  position: relative;
  background-color: #E9E9E9;
  padding: 10rem 0;
}
@media print, screen and (min-width: 768px) {
  .message__deco {
    display: none;
  }
}
.message__deco {
  position: absolute;
  width: 140rem;
  top: -53rem;
  left: -10rem;
}
.message .wrapper {
  position: relative;
  z-index: 2;
}
.message__content {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .message__content {
    display: block;
  }
}
.message__img {
  width: 50%;
  margin: 5rem 0 0 -10%;
}
@media only screen and (max-width: 767px) {
  .message__img {
    width: 112%;
    margin-left: -20%;
  }
}
.message__text {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .message__text {
    width: 100%;
    margin-top: -6rem;
  }
}

.service {
  background-color: #fff;
  padding: 10rem 0;
  position: relative;
}
.service__deco01 {
  position: absolute;
  width: 98rem;
  top: 46rem;
  left: -30rem;
}
@media only screen and (max-width: 767px) {
  .service__deco01 {
    width: 150rem;
    top: -17rem;
    left: -48rem;
  }
}
.service__deco02 {
  position: absolute;
  width: 98rem;
  top: -25rem;
  right: -20rem;
}
@media only screen and (max-width: 767px) {
  .service__deco02 {
    display: none;
  }
}
.service .wrapper {
  position: relative;
  z-index: 2;
}
.service__list {
  margin-left: 2.5vw;
}
@media only screen and (max-width: 767px) {
  .service__list {
    margin-left: 4vw;
  }
}
.service__item {
  background-color: #0175C2;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  margin-top: 0.5rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .service__item {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    margin-top: 1rem;
  }
}
.service__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 15rem;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .service__head {
    padding: 5rem 4rem;
    gap: 3rem;
  }
}
.service__head.active {
  padding-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .service__head.active {
    padding-top: 5rem;
  }
}
.service__head.active::after {
  transform: rotate(315deg);
  top: 4rem;
}
@media only screen and (max-width: 767px) {
  .service__head.active::after {
    top: 6rem;
  }
}
.service__head::after {
  position: absolute;
  top: 4rem;
  right: 15rem;
  content: "";
  width: 2rem;
  height: 2rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(135deg);
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .service__head::after {
    top: 6rem;
    right: 4rem;
    width: 3rem;
    height: 3rem;
  }
}
.service__head .icon {
  width: 5rem;
}
.service__head .icon.size01 {
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  .service__head .icon.size01 {
    width: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__head .icon {
    width: 8rem;
  }
}
.service__head .title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .service__head .title {
    font-size: 3.6rem;
  }
}
.service__content01 {
  display: none;
  padding: 0 15rem 7rem 15rem;
}
@media only screen and (max-width: 767px) {
  .service__content01 {
    padding: 0 4rem 7rem;
  }
}
.service__content01 .content {
  display: flex;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .service__content01 .content {
    display: block;
  }
}
.service__content01 .img {
  width: 47rem;
}
@media only screen and (max-width: 767px) {
  .service__content01 .img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.service__content02 {
  display: none;
}
.service__content02 .list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .service__content02 .list {
    display: block;
  }
}
.service__content02 .item {
  position: relative;
  width: 33.3333%;
  padding: 3rem 3rem 6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .service__content02 .item {
    width: 100%;
    border-right: 0;
    padding: 4rem;
  }
}
.service__content02 .item .nmb {
  position: absolute;
  right: 2rem;
  bottom: 6.5rem;
  font-weight: bold;
  font-size: 15rem;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  background: linear-gradient(180deg, #0282DC 0%, #8AD8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .service__content02 .item .nmb {
    font-size: 24rem;
    right: 4rem;
    bottom: 9.5rem;
  }
}
.service__content02 .item .subtitle {
  font-weight: bold;
  font-size: 2rem;
  margin: 2rem 0 1.5rem;
}
@media only screen and (max-width: 767px) {
  .service__content02 .item .subtitle {
    font-size: 3.2rem;
    margin: 3rem 0 2rem;
  }
}

.company {
  padding: 10rem 0 20rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .company {
    padding-bottom: 25rem;
  }
}
.company__deco {
  position: absolute;
  width: 89rem;
  bottom: -10rem;
  left: -20rem;
}
@media only screen and (max-width: 767px) {
  .company__deco {
    width: 130rem;
    bottom: -20rem;
    left: -40rem;
  }
}
.company .wrapper {
  position: relative;
  z-index: 2;
  max-width: 940px;
}
@media only screen and (max-width: 767px) {
  .company .wrapper {
    width: 90%;
  }
}
.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table th, .company__table td {
  padding: 1.8rem 0;
  border-bottom: 2px solid #e0e0e0;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .company__table th, .company__table td {
    padding: 3rem 0;
  }
}
.company__table th {
  width: 14rem;
  text-align: center;
  border-bottom-color: #0175C2;
}
@media only screen and (max-width: 767px) {
  .company__table th {
    width: 18rem;
  }
}
.company__table td {
  padding-left: 5rem;
}
.company__table td a {
  text-decoration: underline;
}

.footer {
  position: relative;
  z-index: 2;
  background-color: #0175C2;
  color: #fff;
  padding-bottom: 2rem;
}
.footer:not(:has(.footer__recruit)) {
  padding-top: 10rem;
  margin-top: -5rem;
}
.footer__recruit {
  display: flex;
  position: relative;
  top: -8rem;
  width: 94rem;
  margin: auto;
  border-radius: 2rem;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgb(2, 130, 220), rgb(138, 216, 255));
}
@media only screen and (max-width: 767px) {
  .footer__recruit {
    top: -12rem;
    width: 94%;
    background-image: url("../img/recruit_img_sp.png");
    background-size: cover;
    background-position: center;
    padding: 8rem 6rem;
  }
}
.footer__recruit .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer__recruit .content {
    width: 100%;
    padding: 0;
  }
}
.footer__recruit .content .secTitle {
  margin-bottom: 2rem;
}
.footer__recruit .content .text {
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .footer__recruit .content .text {
    font-size: 3rem;
  }
}
.footer__recruit .content .btn {
  position: relative;
  display: block;
  margin-top: 3rem;
  border-radius: 10rem;
  border: 1px solid #fff;
  width: 24rem;
  height: 5rem;
  line-height: 4.8rem;
  text-align: center;
  padding-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__recruit .content .btn {
    width: 100%;
    line-height: 14rem;
    height: 14rem;
    background-color: #0175C2;
    color: #fff;
    font-weight: bold;
    font-size: 3.6rem;
    padding-right: 8rem;
    border: none;
    margin-top: 6rem;
  }
}
.footer__recruit .content .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  background-image: url("../img/icon_arrow01.svg");
  width: 1rem;
  height: 1rem;
  margin: auto;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .footer__recruit .content .btn::after {
    right: 7rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
.footer__recruit .img {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .footer__recruit .img {
    display: none;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
  max-width: 1050px;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    width: 90%;
  }
}
.footer__logo {
  font-size: 7rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    font-size: 10rem;
  }
}
.footer__detail {
  line-height: 1.6;
  margin-top: 2rem;
}
.footer__nav {
  margin-top: 2rem;
  display: flex;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid #fff;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    order: -1;
    flex-wrap: wrap;
    padding: 0 5rem 8rem;
    gap: 6rem;
    margin-bottom: 5rem;
  }
}
.footer__copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.4rem;
  }
}