@charset "UTF-8";
/* 外部CSS */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
/* 00 variable */
:root {
  /* FONT */
  --text-weight-s: 300;
  --text-weight: 400;
  --text-weight-xm: 500;
  --text-weight-m: 700;
  --text-weight-l: 800;
  --text-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  --text-size-medium: clamp(1.5rem, 1.3846153846rem + 0.3076923077vw, 1.7rem);
  --font: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
  --font-icon: "Font Awesome 6 Free";
  /* COLOR PALLET */
  --color-white: #fff;
  --color-richblack: #222;
  --color-black: #1a1a1a;
  --color-asako: #cc0000;
  /* COLOR */
  --primary-color: #cc0000;
  --primary-light-color: #f09080;
  --primary-fleeting-color: #fef5f7;
  --secondary-color: #1fb8cb;
  --secondary-light-color: #E9F6F8;
  --background-color: #f4f3f4;
  --background-dark-color: #231815;
  --background-light-color: #f8f8f8;
  --text-color: #1a1a1a;
  --text-gray: #555555;
  --text-light-color: #888888;
  --text-footer: #A5A5A5;
  --button-bg-color: #595757;
  --border-color: #cccccc;
  --border-dark-color: #6C6C6C;
  --border-footer-color: #4b4b4b;
  --bg-light-color: #e1e1e1;
  --catgory-color: #1fa5b5;
  --slick-bullet-color: #D9D9D9;
  --column-color: var(--secondary-color);
  --casestudy-color: var(--primary-light-color);
  --solution-color: var(--color-richblack);
  --works-color: var(--primary-color);
  --donwload-color: var(--color-richblack);
  /* SIZE */
  --content-width-size: 1280px;
  --content-width-half-size: 1080px;
  --content-width: min(100%, var(--content-width-size));
  --content-width-half: min(100%, var(--content-width-half-size));
  --content-wrap-width: min(100%, var(--content-width-half-size));
  --content-width-small-size: 988px;
  --content-width-small: min(100%, var(--content-width-small-size));
  --content-width-article-size: 980px;
  --content-width-article: min(96%, var(--content-width-article-size));
  --content-padding: clamp(2.5rem, 1.6346153846rem + 2.3076923077vw, 4rem);
  --header-height: clamp(7.2rem, 6.1615384615rem + 2.7692307692vw, 9rem);
  --radius-button: 50vw;
  --radius: 1.2rem;
  --radius-large: 2.4rem;
  /* MARGIN */
  --section-margin: clamp(4.8rem, 2.9538461538rem + 4.9230769231vw, 8rem);
  --block-margin: clamp(8rem, 5.6923076923rem + 6.1538461538vw, 12rem);
  --container-margin: clamp(3rem, -11.9416342412rem + 19.4552529183vw, 8rem);
  --block-margin: clamp(8rem, -3.953307393rem + 15.5642023346vw, 12rem);
  --section-margin: clamp(5rem, 2.0116731518rem + 3.8910505837vw, 6rem);
  --content-margin: clamp(4rem, 1.0116731518rem + 3.8910505837vw, 5rem);
  --item-margin: clamp(4rem, 4rem + 0vw, 4rem);
  --lead-margin: clamp(4rem, -13.9299610895rem + 23.3463035019vw, 10rem);
  /* EFFECT */
  --trd-duration: 0.3s;
  --trd-timing: cubic-bezier(0.33, 1, 0.68, 1);
  --trd-hover-timing: linear;
  --trd-e-linear: linear;
  /* Z INDEX */
  --modal-index: 1000;
  --pagetop-index: 900;
  --nav-index: 800;
  --header-index: 800;
  --footer-index: 750;
  --content-index: 600;
  --side-index: 500;
  --main-index: 400;
  --section-index: 50;
}
@media (max-width: 767.98px) {
  :root {
    --content-padding: 5.3333333333vw;
    --header-height: 18.4vw;
    --section-margin: 12.8vw;
    --content-width-article: min(100%, var(--content-width-article-size));
  }
}

:is(.ua-ios, .ua-mac) {
  --text-weight: 300;
  --text-weight-m: 400;
  --text-weight-l: 600;
}

/* ユーティリティクラス（JSで制御） */
.is-open {
  /* JSで付与/除去 */
}

.footer-only {
  display: none;
}

/* -------------------------------------- */
/* 1. ハンバーガーボタンの基本スタイル */
/* -------------------------------------- */
.nav-toggle {
  display: none; /* PCでは非表示 */
  z-index: 1000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 22px;
  height: 22px;
  aspect-ratio: 1/1;
  position: relative;
}
.nav-toggle__icon {
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  position: relative;
  -webkit-transition: -webkit-transform var(--trd-duration) ease;
  transition: -webkit-transform var(--trd-duration) ease;
  transition: transform var(--trd-duration) ease;
  transition: transform var(--trd-duration) ease, -webkit-transform var(--trd-duration) ease;
  width: 100%;
  position: absolute;
}
.nav-toggle__icon:nth-child(1) {
  top: calc(20% - 0.5px);
}
.nav-toggle__icon:nth-child(2) {
  top: calc(50% - 0.5px);
}
.nav-toggle__icon:nth-child(3) {
  top: calc(80% - 0.5px);
}
.nav-toggle {
  /* 開いた時のアニメーション */
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(2) {
  display: none;
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/* -------------------------------------- */
/* 2. ヘッダー全体のスタイル (PCデフォルト) */
/* -------------------------------------- */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}
.header__bar {
  border-top: 4px solid var(--primary-color);
  height: var(--header-height);
  background-color: var(--color-white);
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.header__logo {
  width: min(20%, 147px);
  padding-block: clamp(1rem, 1rem + 0vw, 1rem);
  margin-right: auto;
}
@media (min-width: 1025px) {
  .header__logo {
    width: 104px;
  }
}
.header__logo a {
  width: 100%;
  display: block;
}
.header__logo img {
  margin: 0;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: static;
  z-index: 10;
}
.header__nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
@media (max-width: 767.98px) {
  .header__nav .nav {
    position: relative;
    inset: 0;
  }
}
.header__nav .nav-container:not(.header__others) {
  margin-right: clamp(0.8rem, 0.3384615385rem + 1.2307692308vw, 1.6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2rem;
}
.header__nav .nav-container:not(.header__others)::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: var(--border-color);
  margin-left: clamp(1.5rem, 1.3846153846rem + 0.3076923077vw, 1.7rem);
}
.header__nav .nav__block {
  height: 100%;
}
.header__nav .nav__title {
  height: 100%;
  font-weight: 500;
}
.header__nav .nav__title-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1025px) {
  .header__nav .nav__title-link {
    font-size: 1.3rem;
  }
}
.can-hover .header__nav .nav__title-link:hover {
  color: var(--primary-color);
}
.touch-primary .header__nav .nav__title-link:active, .touch-primary .header__nav .nav__title-link.is-tapped {
  color: var(--primary-color);
}
.header__nav .nav__list {
  height: auto;
}
.header__nav .nav__summarize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
@media (max-width: 1210px) {
  .header__nav .nav__summarize {
    display: block;
  }
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__contact {
    gap: clamp(1rem, 0.7115384615rem + 0.7692307692vw, 1.5rem);
  }
}
.header__contact .button {
  min-width: 16.5rem;
  min-height: 4.4rem;
  padding: 0.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 0.8269230769rem + 0.4615384615vw, 1.3rem);
}
.header__contact .button::after {
  display: none;
}
.header__contact .button .button__text {
  padding-inline: 0;
}
.header__others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 2rem;
}
.header__others .header__other-item {
  font-weight: 500;
}
.header__others .header__other-link {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1211px) {
  .header__others .nav__list-wrapper {
    display: none;
  }
}
.header__others.nav-container {
  margin-right: 3rem;
  padding-right: 0;
}
.header__others.nav-container::before {
  display: none;
}

.nav-sp-only {
  display: block;
}
@media (min-width: 1211px) {
  .nav-sp-only {
    display: none;
  }
}

/* -------------------------------------- */
/* 3. 文字が入らなくなる (max-width: 1024px) からのスタイル */
/* -------------------------------------- */
@media (max-width: 1210px) {
  .header {
    border-width: 3px;
  }
  .header__logo {
    width: min(20%, 104px);
    padding: 0;
  }
  .header .nav-toggle {
    display: block;
    margin-left: 15px;
    z-index: 1001;
  }
  .header__nav {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 4rem 2rem;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(100%, 700px);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background-color: var(--background-light-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform var(--trd-duration) ease-out;
    transition: -webkit-transform var(--trd-duration) ease-out;
    transition: transform var(--trd-duration) ease-out;
    transition: transform var(--trd-duration) ease-out, -webkit-transform var(--trd-duration) ease-out;
    z-index: 900;
  }
  .header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header .nav-container, .header .header__others {
    display: none;
  }
  .header .nav-container:not(.header__others)::after {
    display: none;
  }
  .header .nav-container__title {
    text-align: center;
    margin-bottom: 3rem;
  }
  .header .nav-container__title_main {
    font-family: var(--font-en);
    font-size: 3.6rem;
    font-weight: var(--text-weight-s);
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: normal;
  }
  .header .nav-container__title_sub {
    font-size: 1.2rem;
    font-weight: var(--text-weight-m);
    margin-top: 0.5rem;
  }
  .header__contact {
    display: none;
  }
  .header__nav.is-open .nav-container, .header__nav.is-open .header__others {
    display: block;
  }
  .header__nav.is-open__contact {
    display: none;
  }
  .header__nav.is-open .nav-container {
    margin-right: 0;
    padding-right: 0;
  }
  .header__nav.is-open .nav-container::before {
    display: none;
  }
  .header__nav.is-open .nav {
    display: block;
    background-color: transparent;
  }
  .header__nav.is-open .nav__block {
    height: auto;
  }
  .header__nav.is-open .nav__title {
    height: auto;
    border-top: 1px solid var(--border-color);
  }
  .header__nav.is-open .nav__title-link {
    padding: 2rem 1.6rem 2rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
    font-weight: var(--text-weight-m);
  }
  .header__nav.is-open .nav__title-link::after {
    content: "\f054";
    margin-left: auto;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.3rem;
    -webkit-transition: -webkit-transform ease var(--trd-duration);
    transition: -webkit-transform ease var(--trd-duration);
    transition: transform ease var(--trd-duration);
    transition: transform ease var(--trd-duration), -webkit-transform ease var(--trd-duration);
  }
  .header__nav.is-open .nav__title.js-accordion-trigger .nav__title-link::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header__nav.is-open .nav__title.is-accordion-open .nav__title-link::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header__nav.is-open .nav .has-mega-menu .nav__list-wrapper {
    height: 0;
    overflow: hidden;
  }
  .header__nav.is-open .nav .has-mega-menu .nav__title-link {
    pointer-events: none;
  }
  .header__nav.is-open .nav .js-accordion-trigger {
    cursor: pointer;
  }
  .header__nav.is-open .mega-menu__inner {
    display: block;
    padding: 0 2rem 2rem 2.5rem;
    width: 100%;
  }
  .header__nav.is-open .mega-menu__list-area {
    display: block;
  }
  .header__nav.is-open .header__others {
    display: block;
    height: auto;
    margin-right: 0;
  }
  .mega-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .mega-menu__item:first-child {
    font-weight: var(--text-weight-m);
  }
  .mega-menu__item:not(:first-child) {
    padding-left: 1.5rem;
  }
  .mega-menu__item:not(:last-child) {
    margin-bottom: 1.4rem;
  }
  .mega-menu__item::before {
    content: "\f054";
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 1rem;
  }
  .js-accordion-trigger {
    cursor: pointer;
    position: relative;
  }
  .drawer-menu {
    display: none;
  }
}
/* -------------------------------------- */
/* 4. SPのみ (max-width: 767px) のスタイル（個別調整と全画面化） */
/* -------------------------------------- */
@media (max-width: 767px) {
  .header {
    border-top-width: 0.8vw;
  }
  .header__logo {
    width: 17.6vw;
  }
}
/* -------------------------------------- */
/* 5. PC時メガメニューのホバースタイル (min-width: 1025px) */
/* -------------------------------------- */
@media (min-width: 1211px) {
  .nav__title-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .has-mega-menu {
    position: static;
  }
  .mega-menu {
    display: none;
  }
  .drawer-menu {
    position: fixed;
    top: var(--header-height);
    left: 50%;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
    width: 100vw;
    pointer-events: none;
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
    z-index: -1;
    background: rgba(255, 255, 255, 0.95);
  }
  .drawer-menu.is-active {
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .drawer-menu.is-active .drawer-menu__title, .drawer-menu.is-active .drawer-menu__list-area {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .drawer-menu__inner {
    width: min(90%, 810px);
    margin: clamp(3rem, 2.7115384615rem + 0.7692307692vw, 3.5rem) auto;
  }
  .drawer-menu__title {
    font-size: clamp(1.6rem, 1.4846153846rem + 0.3076923077vw, 1.8rem);
    font-weight: var(--text-weight-m);
    line-height: 1;
    margin-bottom: clamp(2rem, 1.7115384615rem + 0.7692307692vw, 2.5rem);
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .drawer-menu__title a {
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .drawer-menu__title a::before {
    content: "\f054";
    margin-right: 8px;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.7rem;
  }
  .can-hover .drawer-menu__title a:hover {
    color: var(--primary-color);
  }
  .touch-primary .drawer-menu__title a:active, .touch-primary .drawer-menu__title a.is-tapped {
    color: var(--primary-color);
  }
  .drawer-menu__list-area {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -ms-grid-columns: auto 5.5rem auto 5.5rem auto;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: auto 1.2rem auto 1.2rem auto;
    grid-template-rows: repeat(3, auto);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 1.2rem 5.5rem;
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -webkit-transition-delay: 0.35s;
            transition-delay: 0.35s;
  }
  .drawer-menu__list-area > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(7) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .drawer-menu__list-area > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .drawer-menu__list-area > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .drawer-menu__link {
    font-weight: var(--text-weight);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .can-hover .drawer-menu__link:hover {
    color: var(--primary-color);
  }
  .touch-primary .drawer-menu__link:active, .touch-primary .drawer-menu__link.is-tapped {
    color: var(--primary-color);
  }
  .drawer-menu__link::before {
    content: "\f054";
    margin-right: 8px;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.4rem;
  }
}
.footer {
  background-color: var(--background-dark-color);
  color: var(--color-white);
  --text-color: var(--color-white);
  padding: 0;
  overflow: hidden;
}
.footer a {
  color: var(--color-white);
  font-size: 1.3rem;
}
@media (max-width: 1024px) {
  .footer .pc_only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .footer .pc {
    display: none;
  }
}
@media (min-width: 1025px) {
  .footer .sp_only {
    display: none;
  }
}
.footer-conversion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
  padding-block: clamp(10rem, 9.4230769231rem + 1.5384615385vw, 11rem);
  background: var(--background-light-color);
}
@media (max-width: 767.98px) {
  .footer-conversion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-conversion .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  line-height: 1.27;
  text-align: center;
  width: clamp(25rem, 16.3461538462rem + 23.0769230769vw, 40rem);
  min-height: clamp(5rem, 3.6153846154rem + 3.6923076923vw, 7.4rem);
  padding-inline: clamp(2.5rem, 2.2115384615rem + 0.7692307692vw, 3rem);
}
@media (max-width: 767.98px) {
  .footer-conversion .button {
    min-width: auto;
  }
}
.footer-conversion .button::after {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: clamp(3rem, 2.7692307692rem + 0.6153846154vw, 3.4rem);
}
.footer-conversion .button .button__text {
  padding-right: 1em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767.98px) {
  .footer-conversion .button .button__text {
    padding-right: 0.8em;
  }
}
.footer-conversion .button--consult::after {
  height: clamp(2.2rem, 2.0269230769rem + 0.4615384615vw, 2.5rem);
  background: url(../img/common/icon-detail-consult.svg) center/contain no-repeat;
}
.can-hover .footer-conversion .button--consult:hover::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.touch-primary .footer-conversion .button--consult:active::after, .touch-primary .footer-conversion .button--consult.is-tapped::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.footer-conversion .button--download::after {
  height: clamp(2.6rem, 2.5423076923rem + 0.1538461538vw, 2.7rem);
  background: url(../img/common/icon-detail-download.svg) left center/contain no-repeat;
}
@media (max-width: 767.98px) {
  .footer-conversion .button--download::after {
    background-position: left center;
  }
}
.can-hover .footer-conversion .button--download:hover::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.touch-primary .footer-conversion .button--download:active::after, .touch-primary .footer-conversion .button--download.is-tapped::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .container {
    padding-inline: clamp(4rem, 2.8461538462rem + 3.0769230769vw, 6rem);
  }
}
.footer__logo {
  max-width: 13.5rem;
  line-height: 1;
  margin-right: 2rem;
}
.footer__logo h1 {
  width: min(100%, 104px);
}
@media (min-width: 1025px) {
  .footer__logo h1 {
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__logo h1 {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .footer__logo {
    width: 29.0666666667vw;
    margin-inline: auto;
    margin-bottom: 13.3333333333vw;
  }
  .footer__logo h1 {
    width: 100%;
  }
}
.footer__logo a, .footer__logo img {
  width: 100%;
}
.footer__en {
  width: 10rem;
}
@media (max-width: 767.98px) {
  .footer__en {
    width: auto;
    line-height: 1;
  }
}
.footer__en--link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #373737;
  border-radius: var(--radius-button);
  padding-block: 1.3rem;
}
@media (hover: hover) {
  .footer__en--link {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__en--link:hover {
  background-color: var(--primary-color);
}
.touch-primary .footer__en--link:active {
  background-color: transparent;
  color: var(--primary-color);
}
@media (max-width: 767.98px) {
  .footer__en--link {
    width: 29.3333333333vw;
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: transparent;
  }
}
.footer__en--link::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon-globe.svg) center/contain no-repeat;
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .footer__en--link::before {
    margin-right: 8px;
  }
}
.footer__en.sp_only {
  display: none;
}
@media (max-width: 767.98px) {
  .footer__en.sp_only {
    display: block;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .footer__nav {
    display: block;
    margin-bottom: 8vw;
  }
}
.footer__nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
  width: calc(100% - min(19.84vw, 254px));
}
@media (max-width: 767.98px) {
  .footer__nav_wrap {
    display: block;
    margin-left: 0;
    width: 100%;
  }
}
.footer__nav_list {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 1.3rem 1fr 1.3rem 1fr 1.3rem 1fr;
  grid-template-rows: repeat(4, 1fr);
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem 1em;
  width: 50%;
  margin-left: auto;
}
.footer__nav_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(9) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(12) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__nav_list {
    width: 66.5%;
  }
}
@media (max-width: 767.98px) {
  .footer__nav_list {
    grid-auto-flow: row;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.6666666667vw 0;
    width: 100%;
  }
  .footer__nav_list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__nav_list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.footer__nav_item {
  line-height: 1;
}
.footer__nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (hover: hover) {
  .footer__nav_link {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__nav_link:hover {
  color: var(--primary-color);
}
.touch-primary .footer__nav_link:active, .touch-primary .footer__nav_link.is-tapped {
  color: var(--primary-color);
}
.footer__nav_link::before {
  content: "\f054";
  margin-right: 8px;
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}
.footer__links {
  border-left: 1px solid var(--border-footer-color);
  padding-inline: clamp(4rem, 3.4230769231rem + 1.5384615385vw, 5rem) clamp(4rem, 2.8461538462rem + 3.0769230769vw, 6rem);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 4.5%;
    width: 100%;
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid var(--border-footer-color);
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
@media (max-width: 767.98px) {
  .footer__links {
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid var(--border-footer-color);
    margin-top: 10.6666666667vw;
    padding-top: 8vw;
  }
}
.footer__links a {
  color: var(--text-footer);
  font-size: 1.1rem;
}
@media (hover: hover) {
  .footer__links a {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__links a:hover {
  color: var(--primary-color);
}
.touch-primary .footer__links a:active, .touch-primary .footer__links a.is-tapped {
  color: var(--primary-color);
}
.footer__link-item {
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.footer__link-item:not(:last-child) {
  margin-bottom: 1.2rem;
}
.footer__copyright {
  display: block;
  width: 100%;
  padding-block: 2.6rem 3rem;
  margin-top: clamp(7rem, 5.2692307692rem + 4.6153846154vw, 10rem);
  border-top: solid 1px var(--border-footer-color);
  color: var(--text-footer);
  font-size: 1rem !important;
  letter-spacing: 0.04em;
  position: relative;
}
.footer-pagetop {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  aspect-ratio: 1/1;
  margin-left: auto;
  border-radius: var(--radius-button);
  border: 2px solid var(--color-white);
  background-color: rgba(35, 24, 21, 0.7);
  opacity: 0;
  z-index: 2;
}
@media (hover: hover) {
  .footer-pagetop {
    -webkit-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.footer-pagetop.is-show {
  opacity: 1;
}
@media (min-width: 1025px) {
  .footer-pagetop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .footer-pagetop {
    display: none;
    pointer-events: none;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    border-width: 1px;
  }
}
.footer-pagetop::after {
  content: "\f106";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  -webkit-transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .footer-pagetop:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover {
    border-color: var(--primary-color);
  }
  .footer-pagetop:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover::after {
    color: var(--primary-color);
  }
}

.fixed-conversion {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--footer-index);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.8666666667vw;
  padding: 3.2vw 2.6666666667vw;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
}
@media (min-width: 1025px) {
  .fixed-conversion {
    display: none !important;
  }
}
.fixed-conversion .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.2vw;
  line-height: 1.27;
  text-align: center;
  width: 100%;
  min-width: auto;
  padding: 2.6666666667vw 3.7333333333vw;
}
.fixed-conversion .button::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.fixed-conversion .button::before {
  display: none;
}
.fixed-conversion .button--consult::after {
  width: 5.3333333333vw;
  height: 3.4666666667vw;
  background: url(../img/common/icon-detail-consult.svg) center/contain no-repeat;
}
.can-hover .fixed-conversion .button--consult:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.can-hover .fixed-conversion .button--consult:hover::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.can-hover .fixed-conversion .button--consult:hover .button__text {
  color: var(--primary-color);
}
.touch-primary .fixed-conversion .button--consult:active, .touch-primary .fixed-conversion .button--consult.is-tapped {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.touch-primary .fixed-conversion .button--consult:active::after, .touch-primary .fixed-conversion .button--consult.is-tapped::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.touch-primary .fixed-conversion .button--consult:active .button__text, .touch-primary .fixed-conversion .button--consult.is-tapped .button__text {
  color: var(--primary-color);
}
.fixed-conversion .button--download {
  letter-spacing: normal;
}
.fixed-conversion .button--download::after {
  width: 3.2vw;
  height: 3.7333333333vw;
  background: url(../img/common/icon-detail-download.svg) center/contain no-repeat;
}
.can-hover .fixed-conversion .button--download:hover {
  color: var(--secondary-color);
  background-color: var(--color-white);
}
.can-hover .fixed-conversion .button--download:hover::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.can-hover .fixed-conversion .button--download:hover .button__text {
  color: var(--secondary-color);
}
.touch-primary .fixed-conversion .button--download:active, .touch-primary .fixed-conversion .button--download.is-tapped {
  color: var(--secondary-color);
  background-color: var(--color-white);
}
.touch-primary .fixed-conversion .button--download:active::after, .touch-primary .fixed-conversion .button--download.is-tapped::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.touch-primary .fixed-conversion .button--download:active .button__text, .touch-primary .fixed-conversion .button--download.is-tapped .button__text {
  color: var(--secondary-color);
}
.fixed-conversion .button__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
}

a[href*=".pdf"]:not(.is-noIcon)::after {
  content: "\f1c1";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
}

.button {
  --text-color: var(--color-black);
  border: 1px solid var(--border-dark-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.2115384615rem + 0.7692307692vw, 1rem);
  padding: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  border-radius: var(--radius-button);
  min-width: min(100%, 17.6rem);
  text-align: center;
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .button {
    gap: 0;
    min-width: min(100%, 66.6666666667vw);
    -webkit-transition: none;
    transition: none;
  }
}
.button__text {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  font-weight: var(--text-weight-m);
  color: var(--text-color);
  padding-right: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  line-height: 1;
}
.button__text_normal {
  line-height: 1.1;
}
.button__arrow {
  position: absolute;
  right: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  block-size: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  direction: rtl;
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: 1/2;
  -ms-grid-columns: (clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem))[2];
  grid-template-columns: repeat(2, clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
  place-items: center;
  width: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  overflow: hidden;
  z-index: 1;
  -webkit-transition: background-color var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: background-color var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
}
.button__arrow::after, .button__arrow::before {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--color-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.2rem, 0.9692307692rem + 0.6153846154vw, 1.6rem);
  -webkit-transition: -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
}
.button__circle {
  position: absolute;
  right: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  border-radius: var(--radius-button);
  background-color: var(--text-color);
  width: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  aspect-ratio: 1/1;
  -webkit-transition: all var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: all var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 767.98px) {
  .button__circle {
    -webkit-transition: none;
    transition: none;
  }
}
.can-hover .button:hover:not(.button--more) {
  background-color: var(--text-color);
}
.can-hover .button:hover:not(.button--more) .button__text {
  color: var(--color-white);
}
.can-hover .button:hover:not(.button--more) .button__arrow::after, .can-hover .button:hover:not(.button--more) .button__arrow::before {
  color: var(--text-color);
  -webkit-transform: translateX(1.9em);
          transform: translateX(1.9em);
}
@media (max-width: 767.98px) {
  .can-hover .button:hover:not(.button--more) .button__arrow::after, .can-hover .button:hover:not(.button--more) .button__arrow::before {
    -webkit-transform: translateX(2.4em);
            transform: translateX(2.4em);
  }
}
.can-hover .button:hover:not(.button--more) .button__circle {
  background-color: var(--color-white);
  -webkit-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.touch-primary .button:active:not(.button--more), .touch-primary .button.is-tapped:not(.button--more) {
  background-color: var(--text-color);
}
.touch-primary .button:active:not(.button--more) .button__text, .touch-primary .button.is-tapped:not(.button--more) .button__text {
  color: var(--color-white);
}
.touch-primary .button:active:not(.button--more) .button__arrow::after, .touch-primary .button:active:not(.button--more) .button__arrow::before, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::after, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::before {
  color: var(--text-color);
  -webkit-transform: translateX(1.9em);
          transform: translateX(1.9em);
}
@media (max-width: 767.98px) {
  .touch-primary .button:active:not(.button--more) .button__arrow::after, .touch-primary .button:active:not(.button--more) .button__arrow::before, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::after, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::before {
    -webkit-transform: translateX(2.4em);
            transform: translateX(2.4em);
  }
}
.touch-primary .button:active:not(.button--more) .button__circle, .touch-primary .button.is-tapped:not(.button--more) .button__circle {
  background-color: var(--color-white);
  -webkit-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.button--small {
  padding: clamp(0.6rem, 0.5423076923rem + 0.1538461538vw, 0.7rem);
  min-width: min(100%, 17.6rem);
  min-height: clamp(3.8rem, 3.6846153846rem + 0.3076923077vw, 4rem);
  gap: clamp(0.7rem, 0.2961538462rem + 1.0769230769vw, 1.4rem);
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
}
.button--small::after {
  font-size: clamp(2rem, 1.7115384615rem + 0.7692307692vw, 2.5rem);
}
.button--small.button--anime .button__text {
  padding-right: clamp(2.8rem, 2.8rem + 0vw, 2.8rem);
}
.button--small.button--anime .button__arrow {
  right: clamp(0.6rem, 0.5423076923rem + 0.1538461538vw, 0.7rem);
  block-size: 2.8rem;
  -ms-grid-columns: (2.8rem)[2];
  grid-template-columns: repeat(2, 2.8rem);
  width: 2.8rem;
  right: 5px;
}
.button--small.button--anime .button__arrow::after, .button--small.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
}
.button--small.button--anime .button__circle {
  position: absolute;
  right: clamp(0.6rem, 0.6rem + 0vw, 0.6rem);
  width: clamp(2.8rem, 2.8rem + 0vw, 2.8rem);
}
.can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2em);
          transform: translateX(2em);
}
@media (max-width: 767.98px) {
  .can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(2.2em);
            transform: translateX(2.2em);
  }
}
.can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__circle {
  -webkit-transform: translateY(-50%) scale(1.15);
          transform: translateY(-50%) scale(1.15);
}
.touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2em);
          transform: translateX(2em);
}
@media (max-width: 767.98px) {
  .touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(2.2em);
            transform: translateX(2.2em);
  }
}
.touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__circle, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__circle {
  -webkit-transform: translateY(-50%) scale(1.15);
          transform: translateY(-50%) scale(1.15);
}
.button--large {
  padding-block: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  min-width: min(100%, 35rem);
  min-height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
}
.button--large .button__text {
  line-height: 1;
  padding-inline: 1em clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
}
@media (max-width: 767.98px) {
  .button--large .button__text {
    padding-left: 0.8em;
  }
}
.button--large .button__text_normal {
  line-height: 1.1;
}
.button--large.button--anime .button__arrow {
  right: clamp(0.6rem, 0.3692307692rem + 0.6153846154vw, 1rem);
  block-size: clamp(2.8rem, 2.1076923077rem + 1.8461538462vw, 4rem);
  -ms-grid-columns: (clamp(2.8rem, 2.1076923077rem + 1.8461538462vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(2.8rem, 2.1076923077rem + 1.8461538462vw, 4rem));
  width: clamp(2.8rem, 2.1076923077rem + 1.8461538462vw, 4rem);
}
.button--large.button--anime .button__arrow::after, .button--large.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--large.button--anime .button__circle {
  position: absolute;
  right: clamp(0.6rem, 0.3692307692rem + 0.6153846154vw, 1rem);
  width: clamp(2.8rem, 2.1076923077rem + 1.8461538462vw, 4rem);
}
.can-hover .button--large.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--large.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
.touch-primary .button--large.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--large.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--large.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--large.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
.button--consult, .button--download, .button--secondary {
  border: none;
  color: var(--color-white);
  border: 1px solid;
}
@media (min-width: 1025px) {
  .button--consult, .button--download, .button--secondary {
    -webkit-transition: var(--trd-duration);
    transition: var(--trd-duration);
  }
}
.button--consult .button__text, .button--download .button__text, .button--secondary .button__text {
  color: var(--color-white);
  padding-right: 0;
  text-align: center;
}
.can-hover .button--consult:hover, .can-hover .button--download:hover, .can-hover .button--secondary:hover {
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
}
.can-hover .button--consult:hover.button--anime, .can-hover .button--download:hover.button--anime, .can-hover .button--secondary:hover.button--anime {
  background-color: var(--color-white);
}
.touch-primary .button--consult:active, .touch-primary .button--consult.is-tapped, .touch-primary .button--download:active, .touch-primary .button--download.is-tapped, .touch-primary .button--secondary:active, .touch-primary .button--secondary.is-tapped {
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
}
.touch-primary .button--consult:active.button--anime, .touch-primary .button--consult.is-tapped.button--anime, .touch-primary .button--download:active.button--anime, .touch-primary .button--download.is-tapped.button--anime, .touch-primary .button--secondary:active.button--anime, .touch-primary .button--secondary.is-tapped.button--anime {
  background-color: var(--color-white);
}
.button--consult {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.can-hover .button--consult:hover.button--anime {
  color: var(--primary-color);
}
.can-hover .button--consult:hover.button--anime .button__text {
  color: var(--primary-color);
}
.touch-primary .button--consult:active.button--anime, .touch-primary .button--consult.is-tapped.button--anime {
  color: var(--primary-color);
}
.touch-primary .button--consult:active.button--anime .button__text, .touch-primary .button--consult.is-tapped.button--anime .button__text {
  color: var(--primary-color);
}
.button--download {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.can-hover .button--download:hover.button--anime {
  color: var(--secondary-color);
}
.can-hover .button--download:hover.button--anime .button__text {
  color: var(--secondary-color);
}
.touch-primary .button--download:active.button--anime, .touch-primary .button--download.is-tapped.button--anime {
  color: var(--secondary-color);
}
.touch-primary .button--download:active.button--anime .button__text, .touch-primary .button--download.is-tapped.button--anime .button__text {
  color: var(--secondary-color);
}
.button--primary {
  background-color: var(--primary-color);
}
.button--secondary {
  background-color: var(--secondary-color);
}
.button--back {
  width: clamp(23rem, 17.8076923077rem + 13.8461538462vw, 32rem);
  height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  min-width: auto;
  background-color: var(--color-white);
  border-color: var(--border-dark-color);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  padding: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.button--back.button--anime .button__text {
  padding-inline: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem) 1em;
  margin-left: 0;
}
.button--back.button--anime .button__text .sp-br {
  display: none;
}
@media (max-width: 767.98px) {
  .button--back.button--anime .button__text {
    padding-right: 0.8em;
  }
  .button--back.button--anime .button__text .sp-br {
    display: block;
  }
}
.button--back.button--anime .button__arrow {
  left: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  right: inherit;
  scale: -1 1;
  block-size: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  -ms-grid-columns: (clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
.button--back.button--anime .button__arrow::after, .button--back.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--back.button--anime .button__circle {
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  left: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  right: inherit;
}
.can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.button--relation {
  width: clamp(23rem, 17.8076923077rem + 13.8461538462vw, 32rem);
  height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  min-width: auto;
  background-color: var(--color-white);
  border-color: var(--border-dark-color);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  padding: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.button--relation.button--anime .button__text {
  padding-inline: 1em clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
@media (max-width: 767.98px) {
  .button--relation.button--anime .button__text {
    padding-left: 0.8em;
  }
}
.button--relation.button--anime .button__arrow {
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  block-size: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  -ms-grid-columns: (clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
.button--relation.button--anime .button__arrow::after, .button--relation.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--relation.button--anime .button__circle {
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
  margin-top: clamp(8rem, 5.6923076923rem + 6.1538461538vw, 12rem);
  margin-bottom: clamp(8rem, 5.6923076923rem + 6.1538461538vw, 12rem);
}
@media (max-width: 767.98px) {
  .button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3333333333vw;
    margin-top: 26.6666666667vw;
    margin-bottom: 26.6666666667vw;
  }
}
.button-container--relation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-block: 0 clamp(8rem, 5.6923076923rem + 6.1538461538vw, 12rem);
}

.swiper-button {
  --swiper-theme-color: var(--color-white);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
}
.swiper-button-prev::after {
  content: "\f053";
}
.swiper-button-next::after {
  content: "\f054";
}

.slide-image :is(picture, img) {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

* a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.container {
  width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-padding);
  position: relative;
  z-index: var(--section-index);
}
.container--small {
  width: var(--content-width-small);
}
.container--article {
  width: var(--content-width-article);
}
@media (max-width: 767.98px) {
  .container--article {
    padding-inline: 0;
  }
}

.nav__title-link, .drawer-menu__link, .drawer-menu__title a {
  color: var(--color-black);
}

.header ul, .header ol, .footer ul, .footer ol {
  list-style: none;
}
.header, .footer {
  letter-spacing: 0.05em;
}
.header :where(a:not(.is-nostyle)), .footer :where(a:not(.is-nostyle)) {
  text-decoration: none;
  -webkit-transition: color var(--trd-hover-duration) var(--trd-e-linear), background-color var(--trd-hover-duration) var(--trd-e-linear), opacity var(--trd-duration) var(--trd-timing);
  transition: color var(--trd-hover-duration) var(--trd-e-linear), background-color var(--trd-hover-duration) var(--trd-e-linear), opacity var(--trd-duration) var(--trd-timing);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header :where(.main button, nav button), .footer :where(.main button, nav button) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color var(--trd-hover-duration) var(--trd-e-linear), background-color var(--trd-hover-duration) var(--trd-e-linear), opacity var(--trd-duration) var(--trd-timing);
  transition: color var(--trd-hover-duration) var(--trd-e-linear), background-color var(--trd-hover-duration) var(--trd-e-linear), opacity var(--trd-duration) var(--trd-timing);
}

.header {
  position: fixed;
  z-index: 1000;
}
.header .nav {
  height: 100%;
}
.header ul, .header ol {
  padding: 0;
  margin: 0;
}
.header .drawer-menu__link {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  line-height: 1.5;
}
.header .nav-container__title_main {
  font-size: 36px;
}
.header .nav-container__title_sub {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-black);
  margin-top: 5px;
}
.header .mega-menu__item {
  font-size: 12px;
  margin-bottom: 14px;
}
.header .mega-menu__item a {
  color: var(--color-black);
}
@media (max-width: 1210px) {
  .header .header__nav {
    padding: 40px 20px;
  }
  .header .nav-container__title {
    margin-bottom: 30px;
  }
  .header .header__nav.is-open .nav__title-link {
    padding: 20px 16px 20px 20px;
    font-size: 12px;
    line-height: 1.82;
  }
  .header .header__nav.is-open .nav__title-link::after {
    font-size: 13px;
  }
  .header .mega-menu__item::before, .header .nav__title-link::before {
    font-size: 10px;
    margin-right: 10px;
  }
  .header .mega-menu__item {
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
  .header .header__nav.is-open .mega-menu__inner {
    padding: 0 20px 20px 25px;
  }
}

.footer ul {
  margin-block: 0;
}
.footer .footer__nav_list {
  padding-left: 0;
}
.footer .footer__nav_item {
  line-height: 0.85;
}
.footer .footer__nav_list {
  padding-left: 0;
}
.footer .footer__link-text {
  letter-spacing: 0.033em;
}
.footer .footer__copyright {
  margin-top: clamp(6.5rem, 4.4807692308rem + 5.3846153846vw, 10rem);
  line-height: 1.65;
}
@media (max-width: 767.98px) {
  .footer a {
    font-size: 13px;
  }
  .footer .footer__logo {
    line-height: 0.91;
  }
  .footer .footer__nav {
    margin-top: 50px;
  }
  .footer .footer__nav_list {
    gap: 6.4vw 0;
  }
  .footer .footer__link-text {
    font-size: 11px;
  }
  .footer .footer__nav_link::before {
    font-size: 12px;
  }
  .footer .footer__links {
    margin-top: 10.6666666667vw;
  }
  .footer .footer__link-item {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .footer .footer__copyright {
    font-size: 10px !important;
    padding-block: 26px 30px;
    line-height: 1.8;
  }
  .footer .footer__nav_list {
    padding: 0;
  }
  .footer .footer-pagetop {
    display: none;
  }
  .footer .footer__nav_list {
    padding: 0;
  }
}

.p-recruit-index .footer .footer__nav_item {
  line-height: 0.85;
}
.p-recruit-index .footer .footer__nav_list {
  padding-left: 0;
}
.p-recruit-index .footer .footer__link-text {
  letter-spacing: 0.033em;
}
.p-recruit-index .footer .footer__copyright {
  margin-top: clamp(6rem, 3.6923076923rem + 6.1538461538vw, 10rem);
  line-height: 1.65;
}
@media (max-width: 767.98px) {
  .p-recruit-index .footer a {
    font-size: 13px;
  }
  .p-recruit-index .footer .footer__logo {
    line-height: 0.91;
  }
  .p-recruit-index .footer .footer__nav {
    margin-top: 50px;
  }
  .p-recruit-index .footer .footer__nav_list {
    gap: 6.4vw 0;
  }
  .p-recruit-index .footer .footer__link-text {
    font-size: 11px;
  }
  .p-recruit-index .footer .footer__nav_link::before {
    font-size: 12px;
  }
  .p-recruit-index .footer .footer__links {
    margin-top: 10.6666666667vw;
  }
  .p-recruit-index .footer .footer__link-item {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .p-recruit-index .footer .footer__copyright {
    font-size: 10px !important;
    padding-block: 26px 30px;
    line-height: 1.8;
  }
  .p-recruit-index .footer .footer__nav_list {
    padding: 0;
  }
}

.head_margin {
  display: block;
  height: var(--header-height);
}

.p-rec-sect__ttl img {
  margin: 0;
}