@charset "UTF-8";
/* CSS Document */
body {
  width: 100vw;
}
/*fadein*/
.js-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}
.js-fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
/*loading*/
.loading {
  position: fixed;
  inset: 0;
  z-index: 10;
  height: 100svh;
  background-color: #e9e9e9;
}

.loading__inner {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  row-gap: 10px;
}

.loading__text {
  font-size: max(12px, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  color: #333;
  writing-mode: vertical-rl;

  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.loading__logo {
  margin: 0 auto;
  width: min(400px, 100%);
}
@media screen and (max-width: 768px) {
  .loading__text {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .loading__logo {
    width: 250px;
  }
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100vw;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 100%;
  transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* スクロール時のコンテンツサイズ縮小（8割） */
.header.scrolled .header_inner {
  padding: 0.6rem 2rem;
}
.header_logo {
  display: flex;
  align-items: center;
  width: 100%;
  /* max-width: 250px; */
  max-width: 140px;
  min-width: 100px;
  margin-right: 5%;
  transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled .header_logo {
  /* max-width: 200px; */
  max-width: 110px;
}
.header_nav ul {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  align-items: center;
}

.header_nav li {
  flex-shrink: 0;
}
.header_nav a {
  font-size: clamp(0.9rem, 0.8vw, 1.2rem);
  color: #232323;
  font-weight: 600;
  transition: color 0.2s;
  text-decoration: none;
  letter-spacing: 0.05rem;
  white-space: nowrap;
  transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled .header_nav a {
  font-size: clamp(0.8rem, 0.75vw, 1rem);
}

.header_nav a:hover {
  color: var(--link-color);
}

.header_cta:hover {
  opacity: 0.9;
}
.nav_contact {
  width: clamp(150px, 13vw, 240px);
}
.nav_contact a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background: var(--link-color);
  color: white;
  border-radius: 50px;
  width: 100%;
  padding: 0.42rem 0.41rem 0.41rem 1.5rem;
  transition: all 0.3s ease;
  min-width: 150px;
  transition: all 0.3s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled .nav_contact a {
  padding: 0.2rem 0.31rem 0.2rem 1.5rem;
  transition: all 0.3s ease;
}
.nav_contact a:hover {
  transform: translateY(-1px);
  color: white;
}

.nav_contact a::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/assets/img/white-arrow.svg");
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.nav_contact a:hover::after {
  transform: translateX(2px);
}
/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #232323;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ハンバーガーメニューが開いているときのアニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* モバイルメニュー */
.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding-top: 80px;
}
.mobile_menu .header_logo {
  margin-left: 2rem;
  max-width: 160px;
}
.mobile_menu.active {
  transform: translateX(0);
}

.mobile_menu ul {
  list-style: none;
  padding: 2rem;
}

.mobile_menu li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile_menu a {
  font-size: 1rem;
  color: #232323;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 1rem 0;
}

.mobile_menu .nav_contact a {
  background: var(--link-color);
  color: white;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  display: inline-flex;
  font-size: 1rem;
  min-width: 300px;
}

.mobile_men .nav_contact a::after {
  width: 25px;
  height: 25px;
  background-size: 25px 25px;
}

@media (max-width: 1100px) {
  .header_nav ul {
    gap: 0.8rem;
  }
  .nav_contact a {
    padding: 0.22rem 0.41rem 0.21rem 1.5rem;
  }
  .nav_contact a::after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}

@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
  .header_logo {
    width: 100%;
    /* max-width: 160px; */
    max-width: 60px;
  }
  .hamburger {
    display: flex;
  }

  .header .header_inner {
    padding: 0.8rem 1.5rem;
  }
  .header.scrolled .header_inner {
    padding: 0.5rem 1.5rem;
  }
  .header.scrolled .header_logo {
    /* max-width: 150px; */
    max-width: 50px;
  }
}
@media (max-width: 380px) {
  .mobile_menu {
    padding-top: 30px;
  }
}
/*あしらい*/
.figure {
  position: absolute;
}
/* ==ページトップのレイアウト==*/
.page-top-section {
  padding: 10rem 0 8rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.page-top-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-top-content {
  width: 100%;
  max-width: 520px;
}

.page-top-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5rem;
}

.page-top-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1rem;
}

.page-top-description {
  font-size: var(--font-base);
  width: 90%;
}
.page-top-description p {
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: justify;
}
.page-top-visual {
  width: 100%;
  max-width: 620px;
}

.page-top-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
@media (min-width: 1500px) {
  .page-top-visual {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .page-top-section {
    padding: 8rem 0 0rem 0;
  }
  .page-top-hero {
    display: block;
    gap: 4rem;
  }

  .page-top-content {
    margin-bottom: 2rem;
    margin: 0 auto 2rem auto;
  }

  .page-top-subtitle {
    font-size: 1rem;
  }
  .page-top-description p {
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .page-top-description {
    width: 100%;
  }
}

.section-title-discription {
  width: 45%;
  font-size: var(--font-base);
  margin: -3rem auto 5rem auto;
  text-align: justify;
}
/* section共通 */
.section-title-box {
  display: flex;
  margin-bottom: 10rem;
}
.section_title {
  margin-right: 8%;
  margin-bottom: 3rem;
}
.section_title h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: -0.5rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.section_subtitle {
  font-size: 1rem;
  display: block;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 2;
}
.section-text-box {
  margin: 10% 0 1% 0;
  z-index: 2;
}
.section-text-box p {
  font-size: var(--font-base);
}
.title_slash {
  color: var(--link-color);
}
.section-line {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden; /* 追加：はみ出た部分を隠す */
  z-index: 3;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .section-title-discription {
    width: 100%;
    font-size: var(--font-base);
  }
  .section-title-box {
    display: block;
    margin-bottom: 0;
  }

  .section_title h2 {
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .section-line {
    height: 200px;
  }
}

/* --セクションタブ--*/
.tab-section {
  position: relative;
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
  padding: 6rem 0;
}
.tab-section::before {
  content: "";
  position: absolute;
  top: -105px;
  left: 0;
  max-width: 640px;
  height: 105px;
  width: 100%;
  /* セクションと全く同じグラデーション設定 */
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
  background-size: 100vw 100%; /* ビューポート幅に合わせる */
  background-position: 0 0; /* 位置を合わせる */
  mask: url(/assets/img/section-tab.svg) no-repeat;
  mask-size: contain;
  -webkit-mask: url(/assets/img/section-tab.svg) no-repeat;
  -webkit-mask-size: contain;
}

.tab-section .section-title-tab {
  position: absolute;
  top: -10%;
  left: 7%;
}
@media (max-width: 768px) {
  .tab-section {
    padding: 5rem 0;
  }
  .tab-section::before {
    display: none;
  }
  .tab-section .section-title-tab {
    position: relative;
  }
}
/*--共通のコンテンツレイアウト--*/
.content-title-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.content-title-box .content-number {
  margin-top: 1rem;
  margin-right: 4%;
  font-weight: 600;
  color: var(--link-color);
}
.content_title {
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  letter-spacing: 0.2rem;
  font-size: var(--font-base);
  font-weight: 700;
}
.content_title .content-subtitle {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08rem;
  margin-top: -0.5rem;
  font-weight: 500;
}
/* スライダー用スタイル */
.slider-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}
.slide-container {
  display: flex;
  align-items: center;
  width: max-content;
  transition: none;
  align-items: end;
}
.slide-item {
  width: 340px;
  min-width: 340px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 8px;
}
.slide-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.is-right .scroll-wrapper {
  animation: infiniteScrollDown 20s linear infinite;
}

@media (max-width: 768px) {
  .slider-wrapper {
    max-width: 100vw;
  }
  .slide-container {
    display: flex;
    align-items: center;
    width: max-content;
    transition: none;
    align-items: end;
  }
  .slide-item {
    width: 220px;
    min-width: 220px;
    padding: 0 10px;
  }
}

/* ==共通のレイアウト==*/

.common-list-content .content-title-box {
  margin-bottom: 3rem;
}
.common-list-content .content-title-box .content-number {
  margin-top: 0rem;
  margin-right: 3%;
  font-weight: 400;
  color: var(--link-color);
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
.common-list-content .content_title {
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
}
.common-list-content .content_title .content-subtitle {
  display: block;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.08rem;
  margin-top: -0.5rem;
  font-weight: 400;
}
.common-list-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 10rem;
}
.common-list-content-2 .common-list-image {
  order: 2;
}
.common-list-content-2 .common-list-text-box {
  order: 1;
}
.common-list-text {
  list-style: none;
  padding: 0 2% 0 8%;
  margin-bottom: 2rem;
}

.common-list-block {
  list-style: none;
  padding: 0;
  padding-left: 8%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.common-list-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 8%;
}
.common-list-block li {
  border: 1px solid var(--link-color);
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.common-list-block li h4 {
  color: var(--link-color);
  font-size: var(--font-base);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
.common-list-text-box {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
  .common-list-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .common-list-content .content-title-box {
    margin-bottom: 1.5rem;
  }
  .common-list-text {
    padding: 0 2% 0 2%;
  }
  .common-list-block {
    padding-left: 0%;
    gap: 1rem;
  }
  .common-list-title {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
  }
  .common-list-block li {
    padding: 0.5rem;
    min-height: 74px;
  }
  .common-list-block li h4 {
    font-size: 13px;
  }
}

.common-list-image {
  text-align: center;
}

.common-list-image img {
  width: 100%;
  border-radius: 8px;
}
.common-list-content-2 .common-text-list {
  margin-left: 8%;
}
.common-list-content-2 .common-text-list .common-text-list-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.common-list-content-2 .common-text-list h4 {
  font-size: var(--font-lg);
  color: var(--link-color);
  margin-bottom: 0.5rem;
}

.common-list-content-2 .common-text-list p {
  font-size: var(--font-base);
}

@media (max-width: 768px) {
  .common-list-content-2 .common-text-list {
    margin-left: 0%;
  }
}

/*--プロセスレイアウト--*/
.process-list {
  max-width: 850px;
  margin: 0 auto;
}
.process-list li {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
  min-height: 140px;
  background-color: #fff;
  position: relative;
}
.process-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  background-image: url(/assets/img/hiring-process-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 160px;
}
.process-list li:last-child {
  margin-bottom: 0;
}
.process-list li:nth-child(2)::after {
  background-image: url(/assets/img/hiring-process-02.svg);
}
.process-list li:nth-child(3)::after {
  background-image: url(/assets/img/hiring-process-03.svg);
}
.process-list li:nth-child(4)::after {
  background-image: url(/assets/img/hiring-process-04.svg);
}

.process-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 17px;
  background: linear-gradient(45deg, transparent 50%, var(--link-color) 50%), linear-gradient(-45deg, transparent 50%, var(--link-color) 50%);
  background-size: 0.94rem 20px;
  background-position: left, right;
  background-repeat: no-repeat;
  z-index: 2;
}

.process-step-number {
  background-color: var(--link-color);
  color: white;
  padding: 50px 70px 50px 47px;
  font-size: 23px;
  font-weight: 300;
  min-width: 180px;
  text-align: center;
  margin-right: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: ellipse(140px 120px at 59px 69px);
}
.process-list .step-content {
  flex: 1;
  padding: 10px 23% 10px 2%;
}
.process-list .step-title {
  font-size: var(--font-lg);
  color: var(--link-color);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5%;
  letter-spacing: 0.1rem;
}
.step-description {
  line-height: 1.6;
  letter-spacing: 0.05rem;
}

@media (max-width: 768px) {
  .process-list li {
    flex-direction: column;
    margin-bottom: 70px;
  }
  .process-list li:not(:last-child)::before {
    bottom: -45px;
  }
  .process-list li::after {
    top: -20%;
    right: -4.5%;
    width: 120px;
    height: 110px;
  }

  .process-step-number {
    padding: 10px 0px;
    min-width: 100%;
    margin-right: 0px;
    clip-path: none;
  }
  .process-list .step-content {
    padding: 30px 5%;
  }
  .process-list .step-title {
    font-size: 18px;
    margin-bottom: 1.2%;
    text-align: center;
  }
  .step-description {
    font-size: 14px;
  }
}

/*--パララックス ライン--*/
.separate {
  display: block;
  overflow: hidden;
  height: 23vw;
}
.separate img {
  width: 100%;
}
.separate_sp {
  display: none;
}
@media (max-width: 768px) {
  .separate {
    display: none;
  }
  .separate_sp {
    display: block;
    height: 60vw;
    overflow: hidden;
  }
}

/* ボタン */
.btn-arrow::after {
  transition: transform 0.4s ease;
}
.btn-arrow::after:hover {
  animation: arrowBounce 0.6s ease-in-out;
}
/* footer-content*/
.footer-contact-faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 500px;
  line-height: 1;
}

.footer-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
}

.footer-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.footer-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
  transition: background 0.3s ease;
}

.footer-card:hover .footer-card__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.footer-card__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.footer-card__number {
  font-size: 1.6rem;
  color: var(--link-color);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
}

.footer-card__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 0.2rem;
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
}

.footer-card__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.15rem;
}

.footer-card__description {
  font-size: var(--font-am);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 320px;
  text-align: left;
  letter-spacing: 0.12rem;
  text-align: justify;
}

.hover-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 1.2rem 6rem 1.2rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-base);
  overflow: visible;
  cursor: pointer;
  border: none;
  transition: padding 0.6s ease;
}

.hover-button__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d71717;
  border-radius: 50px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right center;
  z-index: 1;
}

.hover-button__text {
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
  white-space: nowrap;
}

.hover-button__circle {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  z-index: 3;
}

.hover-button__circle::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
  margin-left: -1px;
}

/* ホバー時の状態（円形に縮む） */
.hover-button:hover {
  padding: 1.2rem 6rem 1.2rem 2rem;
}

.hover-button:hover .hover-button__background {
  width: 50px;
  height: 50px;
  left: calc(100% - 50px - 0.2rem);
  transform: translateY(-50%);
  top: 50%;
  border-radius: 50%;
}

.hover-button:hover .hover-button__text {
  color: white;
  margin-right: 2rem;
}

.hover-button:hover .hover-button__circle {
  opacity: 1;
}

/* 左側のCONTACTカード */
.contact-card .footer-card__background {
  background-image: url("/assets/img/footer-contact.webp");
  background-position: center;
  background-size: cover;
}

/* 右側のFAQカード */
.faq-card .footer-card__background {
  background-image: url("/assets/img/footer-faq.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Footer */
.footer {
  background: #232323;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
  justify-content: space-between;
}

.footer_link_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /* gap: 1.5rem 3rem; */
  gap: 0rem 3rem;
  margin: 0 0 0 auto;
}
.footer_link_box a {
  font-size: 14px;
}
.footer_section {
  /* max-width: 250px; */
  max-width: 200px;
  transition: color 0.3s;
}

.footer_section a:hover {
  color: white;
}

.footer_bottom {
  font-size: 10px;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-weight: 200;
  align-items: flex-end;
}
.footer_bottom a {
  cursor: pointer;
  display: flex;
}
.footer_bottom a::after {
  content: "";
  display: block;
  width: 10px;
  height: 13px;
  background-image: url("/assets/img/jump-link-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 30px;
}
.footer_bottom .footer-banner-box a::after {
  display: none;
}
.footer_bottom p {
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  letter-spacing: 0.1rem;
  text-align: end;
}

/* バナー */
.footer_bottom .sp-none {
  display: flex;
}
.footer_bottom .sp-only {
  display: none;
}
.footer_bottom .footer-banner-box {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  max-width: 500px;
  margin-bottom: 1rem;
}
.footer-bnr {
  max-width: 120px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer_bottom .sp-none {
    display: none;
  }
  .footer_bottom .sp-only {
    display: flex;
  }
  .footer-contact-faq-section {
    grid-template-columns: 1fr;
    height: auto;
  }
  .footer_logo {
    width: 65%;
  }
  .footer-card {
    height: 400px;
  }
  .footer-card__number {
    font-size: 1.3rem;
  }
  .footer-card__title {
    font-size: 2rem;
  }
  .footer-card__subtitle {
    font-size: 1rem;
    letter-spacing: 0.15rem;
    margin-bottom: 2rem;
  }
  .footer-card__description {
    font-size: 0.9rem;
  }
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer .container {
    padding: 0 2rem;
  }
  .footer_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 0rem;
  }
  .footer_link_box {
    grid-template-columns: repeat(2, 1fr); /* SP: 2列 */
    grid-template-rows: repeat(3, 1fr); /* SP: 3行 */
    gap: 1rem 2rem;
    margin: 0;
    max-width: 70%;
  }

  .footer_link_box a {
    font-size: 12px;
  }

  .footer_bottom {
    font-size: 10px;
    display: block;
  }
  .footer_bottom a {
    margin-bottom: 10px;
  }
  .footer_bottom p {
    text-align: start;
  }
}
