@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-collapse: collapse;
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol) {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
  text-decoration: none;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

:where(iframe[src*=youtube]) {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

[data-anim-elm] {
  opacity: 0;
}

[v-cloak] {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button {
  outline: none;
  background: none;
}

/**/
.contact_block {
  width: 100%;
  margin: 140px 0 160px;
}
.contact_block img {
  margin: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 游ゴシック, "Yu Gothic ", YuGothic, Osaka, メイリオ, Meiryo, "MS Pゴシック", "MS P Gothic", sans-serif;
  background: #fff;
  background: #F8F8F2;
}

a {
  transition: opacity 0.3s;
}

.company_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.company_list__img {
  width: 236px;
}
.company_list__img img {
  width: 100%;
}

.contact_section {
  margin-top: 160px;
  padding-inline: 20px;
}
.contact_section__inner {
  margin: 0 auto;
  max-width: 1220px;
}

.footer_block {
  background: #353535;
  background-blend-mode: multiply;
  margin-top: 170px;
}
.footer_block__inner {
  width: min(100%, 1260px);
  padding: 64px 20px 22px;
  margin-inline: auto;
}
.footer_block__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer_block .footer_menu__list {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 677px);
}
.footer_block .footer_menu__item a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}
.footer_block__logo {
  width: 330px;
  margin-top: 10px;
}
.footer_block__logo img {
  width: 100%;
}
.footer_block__copyright {
  color: #FFF;
  font-family: "Inter";
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 106px;
  text-align: right;
  letter-spacing: 0.025em;
}

.header_block {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding-left: 34px;
  background: #fff;
  transition: background 0.3s;
}
.header_block.is-top {
  position: fixed;
  background: transparent;
}
.header_block.is-top.scrolled {
  background: #fff;
}
.header_block.is-top.scrolled .header_menu__item a {
  color: #000;
}
.header_block.is-top.scrolled .header_menu__item--contact a {
  color: #FFF;
}
.header_block.is-top .header_menu__item a {
  color: #FFF;
}
.header_block.is-active .header_menu__btn {
  background: #353535;
  display: grid;
  place-items: center;
}
.header_block.is-active .header_menu__btn span {
  grid-area: 1/-1;
}
.header_block.is-active .header_menu__btn span:nth-child(1) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.header_block.is-active .header_menu__btn span:nth-child(2) {
  -webkit-transform: translateY(calc(-3 / 393 * 100vw)) rotate(-225deg);
          transform: translateY(calc(-3 / 393 * 100vw)) rotate(-225deg);
}
.header_block__logo {
  width: calc(302 / 1728 * 100vw);
}
.header_block__logo img {
  width: 100%;
}
.header_block .header_menu__list {
  display: flex;
  align-items: center;
  gap: calc(45 / 1728 * 100vw);
}
.header_block .header_menu__item a {
  color: #000;
  font-size: calc(15 / 1728 * 100vw);
  font-weight: 700;
  letter-spacing: 0.75px;
}
.header_block .header_menu__item--contact {
  width: calc(230 / 1728 * 100vw);
  height: 100%;
  margin-left: calc(14 / 1728 * 100vw);
}
.header_block .header_menu__item--contact a {
  color: #FFF;
  background: #AE0003;
  padding: calc(37 / 1728 * 100vw) calc(10 / 1728 * 100vw);
  display: block;
  font-size: calc(14 / 1728 * 100vw);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.header_block .header_menu__btn {
  position: relative;
  display: none;
  transition: background 0.3s;
}
.header_block .header_menu__btn.close {
  display: none;
}
.header_block .header_menu__btn span {
  display: block;
  width: calc(28 / 393 * 100vw);
  height: 2px;
  background: #fff;
  margin-inline: auto;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header_block .header_menu__btn span + span {
  margin-top: calc(7 / 393 * 100vw);
}

.hamburger_block {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
}
.hamburger_block.is-open {
  opacity: 1;
  visibility: visible;
  background: #353535;
  z-index: 100;
}
.hamburger_block__inner {
  padding: calc(125 / 393 * 100vw) calc(30 / 393 * 100vw);
}
.hamburger_block__item + .hamburger_block__item {
  margin-top: calc(40 / 393 * 100vw);
}
.hamburger_block__item a {
  color: #FFF;
  font-size: calc(18 / 393 * 100vw);
  font-weight: 400;
  letter-spacing: 0.9px;
}

.member_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.member_list__item {
  display: flex;
  gap: 16px;
  width: 281px;
  align-items: center;
}
.member_list__img {
  width: 84px;
}
.member_list__img img {
  width: 100%;
}
.member_list__body {
  width: 281px;
}
.member_list__role {
  color: #8C141C;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  /* 14.4px */
  letter-spacing: 0.72px;
}
.member_list__name {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  /* 21.6px */
  letter-spacing: 0.9px;
}
.member_list__company {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  /* 14.4px */
}
.member_list__company + .member_list__company {
  margin-top: 8px;
}

.subpage_head_img {
  background: url("../img/common/bg_subpage_head_img.svg") left/cover no-repeat;
  max-height: 324px;
}
.subpage_head_img__bg {
  display: block;
  max-height: 324px;
  padding: 0 30px;
}
.subpage_head_img__inner {
  margin: auto;
  max-width: 1260px;
  max-height: 324px;
}
.subpage_head_img__title_wrapper {
  padding: 93px 0;
}
.subpage_head_img__title {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 89px;
  font-weight: 700;
  letter-spacing: 1.788px;
}
.subpage_head_img__description {
  color: #FFF;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 8px 0 0 10px;
}
.subpage_head_img__img {
  width: calc(1012 / 1728 * 100vw);
}
.subpage_head_img__img img {
  width: 100%;
}

.subpage_head {
  background: url("../img/common/bg_subpage_head.svg") center center/cover no-repeat;
  min-height: 265px;
}
.subpage_head__inner {
  width: min(100%, 1360px);
  margin-inline: auto;
  padding: 51px 60px 26px;
}
.subpage_head__title {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 89px;
  font-weight: 700;
  letter-spacing: 1.788px;
}
.subpage_head__description {
  color: #FFF;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 8px 0 0 10px;
}

.about_page {
  overflow: hidden;
}
.about_page .subpage_head_img__bg {
  background: url("/assets/img/about/pic_sub_head_03.webp") right/contain no-repeat;
}
.about_page .mission_section {
  margin-top: 110px;
  margin-bottom: 210px;
  padding: 0 30px;
}
.about_page .mission_section__inner {
  margin: 0 auto;
  max-width: 1220px;
}
.about_page .mission_section__head {
  display: flex;
  gap: 25px;
}
.about_page .mission_section__img {
  width: 588px;
  margin-right: calc(50% - 50vw);
}
.about_page .mission_section__img img {
  width: 100%;
}
.about_page .mission_section__lead {
  font-size: 20px;
  letter-spacing: 0.12rem;
  line-height: 2.6rem;
  position: relative;
}
.about_page .mission_section__label {
  margin-top: -110px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.about_page .mission_section__label:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.about_page .mission_section_body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.about_page .mission_section_body:before {
  content: "";
  position: absolute;
  top: 170px;
  left: 1vw;
  width: 100vw;
  height: 100%;
  background: url("/assets/img/about/deco_mission.svg") no-repeat;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.about_page .mission_section_body__img {
  max-width: 526px;
  position: relative;
}
.about_page .mission_section_body__img img {
  width: 100%;
}
.about_page .mission_section_body__img::after {
  content: url("/assets/img/about/deco_mission_sp.svg");
  position: absolute;
  display: none;
  bottom: calc(127 / 393 * 100vw);
  left: calc(-30 / 393 * 100vw);
  z-index: -1;
}
.about_page .mission_section_body .mission_body_content {
  margin-top: 50px;
}
.about_page .mission_section_body .mission_body_content__title {
  color: #AE0003;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
  /* 56px */
  letter-spacing: 0.96px;
}
.about_page .mission_section_body .mission_body_content__description {
  margin-top: 45px;
  max-width: 540px;
  line-height: 222%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.56px;
}
.about_page .vision_section {
  margin-inline: auto;
  background: linear-gradient(90deg, #A80003 0%, #A80003 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
  padding-bottom: 30px;
}
.about_page .vision_section__inner {
  display: flex;
  max-width: 1729px;
  width: 100%;
  height: 722px;
  justify-content: flex-start;
  background: #fff;
  margin-inline: auto;
}
.about_page .vision_section .vision_section_header {
  color: #fff;
  height: calc(100% + 30px);
  width: 867px;
  background-image: url("/assets/img/about/bg_vision_section.png");
  background-size: cover;
  background-position: center;
  padding: 70px 0 0 315px;
  margin-left: -60px;
}
.about_page .vision_section .vision_section_header span {
  font-size: 20px;
  margin-bottom: 28px;
}
.about_page .vision_section .vision_section_header span::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.about_page .vision_section .vision_section_header h3 {
  color: #FFF;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
  /* 56px */
  letter-spacing: 0.96px;
  margin-top: 30px;
}
.about_page .vision_section .vision_section_body {
  padding: 80px 76px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin-bottom: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
}
.about_page .vision_section .vision_section_body div:first-child {
  padding-top: 0;
}
.about_page .vision_section .vision_section_body .vision_section_content {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 100px;
  border-bottom: solid 2px #E1E1E1;
  padding-bottom: 30px;
}
.about_page .vision_section .vision_section_body .vision_section_content::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 2px;
  bottom: -2px;
  background-color: #D12F31;
}
.about_page .vision_section .vision_section_body .vision_section_content__title_wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.about_page .vision_section .vision_section_body .vision_section_content__number {
  color: #AE0003;
  font-size: calc(23 / 1728 * 100vw);
  font-weight: 700;
}
.about_page .vision_section .vision_section_body .vision_section_content__icon img {
  width: 100%;
}
.about_page .vision_section .vision_section_body .vision_section_content:last-child {
  border-bottom: none;
}
.about_page .vision_section .vision_section_body .vision_section_content:last-child::after {
  display: none;
}
.about_page .value_section {
  margin-bottom: 187px;
  padding: 0 30px;
}
.about_page .value_section__inner {
  margin: 0 auto;
  max-width: 1230px;
}
.about_page .value_section__label {
  margin-top: 140px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.about_page .value_section__label:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.about_page .value_section__image {
  max-width: 426px;
}
.about_page .value_section__image img {
  width: 100%;
}
.about_page .value_section .value_section_header__title {
  color: #AE0003;
  font-size: 90px;
  letter-spacing: -0.3rem;
  margin-top: 50px;
}
.about_page .value_section .value_section_header__sub_title {
  color: #8C141C;
  letter-spacing: 0.12rem;
  line-height: 2.6rem;
  margin-top: 26px;
}
.about_page .value_section .value_section_body {
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
}
.about_page .value_section .value_section_body__description {
  max-width: 560px;
  line-height: 2.8rem;
  font-size: 17px;
  font-weight: 500;
}
.about_page .message_section {
  padding-bottom: 80px;
  position: relative;
}
.about_page .message_section:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 610px;
  background-color: #AE0003;
  z-index: -1;
}
.about_page .message_section:after {
  content: "";
  position: absolute;
  top: -80px;
  left: 10vw;
  width: 100%;
  height: 100%;
  background: url("/assets/img/about/deco_message.svg") no-repeat;
  z-index: -1;
}
.about_page .message_section__inner {
  margin: 0 auto;
  max-width: calc(1260 / 1728 * 100vw);
  display: flex;
  position: relative;
}
.about_page .message_section__image {
  display: block;
  width: calc(300 / 1728 * 100vw);
  margin-right: calc(-50 / 1728 * 100vw);
  z-index: 2;
  padding-left: calc(30 / 1728 * 100vw);
  flex: 1;
}
.about_page .message_section__image img {
  width: 100%;
}
.about_page .message_section .message_content {
  width: calc(746 / 1728 * 100vw);
  background-color: #fff;
  border-radius: 10px;
  padding: calc(86 / 1728 * 100vw) calc(70 / 1728 * 100vw) calc(78 / 1728 * 100vw) calc(150 / 1728 * 100vw);
  margin: calc(40 / 1728 * 100vw) 0 0 0;
}
.about_page .message_section .message_content .container_header__label {
  margin-top: 140px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #E1E1E1;
}
.about_page .message_section .message_content .container_header__label:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.about_page .message_section .message_content .container_header__role {
  font-size: calc(18 / 1728 * 100vw);
  font-weight: 700;
}
.about_page .message_section .message_content .message_content_user {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-top: 20px;
  padding-bottom: 30px;
}
.about_page .message_section .message_content .message_content_user__name {
  font-size: calc(33 / 1728 * 100vw);
  font-weight: 700;
}
.about_page .message_section .message_content .message_content_user__kana {
  font-size: calc(11.6 / 1728 * 100vw);
  color: #B1B1A8;
  font-weight: 500;
}
.about_page .message_section .message_content__text {
  font-size: calc(14 / 1728 * 100vw);
  line-height: 2rem;
  line-height: 205%;
  letter-spacing: 0.018rem;
}
.about_page .organisation_chart_section {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 1220px;
  position: relative;
  padding: 0 30px;
}
.about_page .organisation_chart_section:before {
  content: "";
  position: absolute;
  top: 80px;
  left: 18vw;
  width: 100%;
  height: 100%;
  background: url("/assets/img/about/deco_organisation.svg") no-repeat;
  z-index: -1;
}
.about_page .organisation_chart_section__inner {
  margin: 0 auto;
  max-width: 1220px;
}
.about_page .organisation_chart_section__label {
  margin-top: 140px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.about_page .organisation_chart_section__label:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.about_page .organisation_chart_section h1 {
  font-size: 60px;
  letter-spacing: 0.4rem;
  margin-top: 38px;
}
.about_page .organisation_chart_section__img {
  margin-top: 100px;
}
.about_page .organisation_chart_section__img img {
  width: 100%;
}
.about_page .profile_section {
  margin-top: 160px;
  margin-inline: auto;
  padding: 0 30px;
}
.about_page .profile_section__inner {
  margin: 0 auto;
  max-width: 1260px;
}
.about_page .profile_section__label {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.about_page .profile_section__label:before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.about_page .profile_section h1 {
  font-size: 60px;
  letter-spacing: 0.1rem;
  margin-top: 38px;
}
.about_page .profile_section .profile_contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  row-gap: 60px;
  margin-top: 64px;
}
.about_page .profile_section .profile_contents .profile_content__role {
  color: #8C141C;
  margin-top: 30px;
}
.about_page .profile_section .profile_contents .profile_content__name {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 6px;
}
.about_page .profile_section .profile_contents .profile_content__name h2 {
  font-size: 20px;
  letter-spacing: 0.12rem;
}
.about_page .profile_section .profile_contents .profile_content__name p {
  color: #B1B1A8;
  font-size: 12px;
}
.about_page .profile_section .profile_contents .profile_content__position {
  margin-top: 17px;
}
.about_page .profile_section .profile_contents .profile_content__position p {
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.049;
}
.about_page .profile_section .profile_contents .profile_content__position p:nth-child(2) {
  margin-top: 8px;
}
.about_page .profile_section .profile_contents .profile_content__description {
  margin-top: 20px;
  line-height: 1.7rem;
  letter-spacing: 0.01rem;
  font-size: 15px;
  text-align: justify;
  line-height: 189%;
  /* 28.35px */
}

.business_page .subpage_head_img__bg {
  background: url("/assets/img/business/pic_sub_head_01.webp") right/contain no-repeat;
}
.business_page .main_block {
  margin: 110px auto 120px;
  width: min(100%, 1340px);
  padding-inline: 60px;
}
.business_page .main_block .head_block {
  display: flex;
  gap: 43px;
}
.business_page .main_block .head_block__left {
  width: 623px;
}
.business_page .main_block .head_block__lead {
  color: #000;
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.9px;
}
.business_page .main_block .head_block__image {
  width: 556px;
  padding-top: 28px;
}
.business_page .main_block .head_block__buttons_wrapper {
  margin-top: 37px;
}
.business_page .main_block .head_block__buttons_wrapper h2 {
  margin-top: 41px;
  color: #8C141C;
  font-size: 1.5946rem;
  font-weight: 700;
  letter-spacing: 0.1435rem;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.business_page .main_block .head_block__buttons_wrapper h2::after {
  content: "";
  background: #8C141C;
  height: 1px;
  width: 383px;
  display: block;
}
.business_page .main_block .head_block__item {
  margin-top: 30px;
  max-width: 510px;
}
.business_page .main_block .head_block__item + .head_block__item {
  margin-top: 43px;
}
.business_page .main_block .head_block__button {
  border-radius: 8.616px;
  border: 2px solid #AE0003;
  background: #FFF;
  position: relative;
}
.business_page .main_block .head_block__button a {
  display: flex;
  gap: 20px;
  padding: 18px 36px 9px 23px;
  align-items: center;
}
.business_page .main_block .head_block__button a::after {
  content: "";
  background: url("/assets/img/common/ico_btn_circle.svg") no-repeat;
  background-size: contain;
  width: 31px;
  height: 31px;
  right: 35px;
  bottom: 30px;
  margin-left: auto;
}
.business_page .main_block .head_block__button a p {
  padding-top: 5px;
  color: #1E1E1D;
  font-family: "Roboto Condensed";
  font-size: 2.3355rem;
  font-weight: 700;
  letter-spacing: 0.0701rem;
  line-height: 75%;
}
.business_page .main_block .head_block__button a span {
  color: #000;
  font-family: "Roboto Condensed";
  font-size: 0.6747rem;
  font-weight: 700;
  line-height: 0;
  letter-spacing: 0.0607rem;
  text-transform: uppercase;
}
.business_page .main_block .head_block__button--second a p {
  color: #1E1E1D;
  font-family: "Roboto Condensed";
  font-size: 1.466rem;
  font-weight: 700;
  line-height: 100%;
  /* 23.456px */
  letter-spacing: 0.044rem;
}
.business_page .main_block .head_block__text {
  margin-top: 13px;
  font-size: 0.978rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.0489rem;
}
.business_page .main_block .schedule_block__head {
  width: 100%;
}
.business_page .main_block .schedule_block__head img {
  width: 100%;
}
.business_page .main_block .schedule_block__contents {
  margin-top: 50px;
  width: 100%;
}
.business_page .main_block .schedule_block__contents img {
  width: 100%;
}
.business_page .main_block .contents_block {
  margin-top: 212px;
  padding-bottom: 200px;
}
.business_page .main_block .contents_block__unit + .contents_block__unit {
  margin-top: 200px;
}
.business_page .main_block .contents_block__head {
  border-bottom: 3px solid #CCCCC1;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.business_page .main_block .contents_block__head::before {
  position: absolute;
  content: "";
  width: 514px;
  height: 3px;
  bottom: -3px;
  background-color: #D12F31;
}
.business_page .main_block .contents_block__head_img {
  width: 403px;
}
.business_page .main_block .contents_block__num {
  color: #8C141C;
  font-family: "Roboto Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.business_page .main_block .contents_block__title {
  color: #1E1E1D;
  font-family: "Roboto Condensed";
  font-size: 5.625rem;
  font-weight: 700;
  letter-spacing: 0.1688rem;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 20px;
}
.business_page .main_block .contents_block__title_ja {
  font-family: "Roboto Condensed";
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.1406rem;
  text-transform: uppercase;
  margin-top: 30px;
}
.business_page .main_block .contents_block__body {
  margin-top: 116px;
  display: flex;
  gap: 100px;
  align-items: center;
}
.business_page .main_block .contents_block__body_left {
  width: 489px;
}
.business_page .main_block .contents_block__body_left h4 {
  color: #AE0003;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.18rem;
}
.business_page .main_block .contents_block__body_left p {
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 500;
  line-height: 207%;
  letter-spacing: 0.02rem;
}
.business_page .main_block .contents_block__text {
  margin-top: 40px;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 207%;
  letter-spacing: 0.02rem;
}
.business_page .main_block .contents_block__image {
  width: 632px;
}
.business_page .main_block .contents_block__foot_image {
  margin-top: 64px;
}

.contact_page .main_block {
  width: min(100%, 1340px);
  margin: 90px auto 140px;
  padding-inline: 60px;
}
.contact_page .main_block__lead {
  color: #000;
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 1.95px;
}
.contact_page .contact_block {
  margin-top: 80px;
  background: #fff;
  border-radius: 20px;
}
.contact_page .contact_block__inner {
  width: min(100%, 940px);
  margin-inline: auto;
  padding: 86px 20px 90px;
}
.contact_page .contact_block__alert {
  color: #8C141C;
  font-size: 16px;
  letter-spacing: 1.28px;
}
.contact_page .contact_block__alert strong {
  font-weight: 500;
}
.contact_page .contact_form {
  margin-top: 40px;
}
.contact_page .contact_form__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact_page .contact_form__item + .contact_form__item,
.contact_page .contact_form__item + .contact_form__textarea {
  margin-top: 40px;
}
.contact_page .contact_form__label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  flex: 1 1 180px;
}
.contact_page .contact_form__label span {
  color: #8C141C;
}
.contact_page .contact_form .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  width: min(100%, 700px);
}
.contact_page .contact_form .menu-xxx {
  position: relative;
}
.contact_page .contact_form .menu-xxx::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-select {
  border-radius: 4px;
  border: 1px solid #CBCBBB;
  width: 100%;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 12px;
  -webkit-appearance: none;
  appearance: none;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-select::-webkit-input-placeholder {
  color: #CBCBBB;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-select::placeholder {
  color: #CBCBBB;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-text, .contact_page .contact_form .wpcf7-form-control.wpcf7-textarea {
  border-radius: 4px;
  border: 1px solid #CBCBBB;
  width: 100%;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 12px;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, .contact_page .contact_form .wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder {
  color: #CBCBBB;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-text::placeholder, .contact_page .contact_form .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #CBCBBB;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-textarea {
  height: 280px;
  resize: none;
}
.contact_page .contact_form .wpcf7-form-control.wpcf7-submit {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding: 33px;
  display: block;
  width: 100%;
  background: #8C141C;
  border-radius: 7px;
}
.contact_page .contact_form__textarea {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact_page .contact_form__btn {
  margin: 34px 0 0 auto;
  width: min(100%, 700px);
  transition: opacity 0.3s;
}

.index_page .mainvisual_block {
  position: relative;
  background: url("/assets/img/top/bg_mainvisual.svg") no-repeat center center/cover;
  width: 100%;
  padding: calc(125 / 1728 * 100vw) 0 calc(70 / 1728 * 100vw);
}
.index_page .mainvisual_block::before {
  content: "SCROLL";
  color: #FFF;
  font-family: "Roboto";
  font-size: calc(10 / 1728 * 100vw);
  font-weight: 700;
  letter-spacing: 0.15em;
  position: absolute;
  bottom: 0;
  right: calc(31 / 1728 * 100vw);
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  border-left: 1px solid #FFF;
  padding: 0 0 calc(8 / 1728 * 100vw) calc(4 / 1728 * 100vw);
}
.index_page .mainvisual_block__slide {
  width: 80%;
  box-sizing: border-box;
  margin-inline: auto;
}
.index_page .mainvisual_block__slide img {
  margin: auto;
  width: 100%;
}
.index_page .swiper-pagination {
  margin-bottom: 18px;
}
.index_page .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 9px !important;
  background-color: #fff;
}
.index_page .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8C141C;
}
.index_page .dummy_contents {
  width: 100%;
  padding: 0 60px;
}
.index_page .dummy_contents--wide {
  padding: 0;
}
.index_page .dummy_contents--wide img {
  width: 100%;
}
.index_page .dummy_contents img {
  margin: auto;
  text-align: center;
}
.index_page .lead_block {
  background-image: url(/assets/img/top/bg_top_lead.png);
  background-size: cover;
}
.index_page .lead_block__inner {
  margin: 0 auto;
  max-width: 1351px;
  padding: 50px 20px;
}
.index_page .lead_block__contents {
  display: flex;
  justify-content: space-between;
  max-width: calc(1265 / 1728 * 100vw);
  width: 100%;
  margin-left: auto;
}
.index_page .lead_block__caption {
  color: #FFF;
  font-size: calc(30 / 1728 * 100vw);
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 9.105px;
}
.index_page .lead_block__text-wrapper {
  margin-right: calc(-45 / 1728 * 100vw);
  margin-top: calc(50 / 1728 * 100vw);
}
.index_page .lead_block__paragraph {
  color: #C08688;
  font-size: calc(15 / 1728 * 100vw);
  margin-top: calc(44 / 1728 * 100vw);
  line-height: 230%;
  letter-spacing: 0.7px;
}
.index_page .lead_block__image {
  width: calc(610 / 1728 * 100vw);
  margin-top: calc(10 / 1728 * 100vw);
}
.index_page .lead_block__image img {
  width: 100%;
}
.index_page .about_block {
  margin-top: 130px;
  overflow: hidden;
}
.index_page .about_block__inner {
  margin: 0 auto;
  max-width: 1260px;
  padding-inline: 20px;
}
.index_page .about_block__header {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.index_page .about_block__header::before {
  content: url("/assets/img/top/deco_about.png");
  position: absolute;
  right: -250px;
  bottom: -90px;
  z-index: -1;
}
.index_page .about_block__main {
  text-align: left;
}
.index_page .about_block__subtitle {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.index_page .about_block__subtitle::before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.index_page .about_block__title {
  margin-top: 30px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 5.4px;
}
.index_page .about_block__btn {
  display: inline-block;
  position: relative;
  margin-top: 76px;
  padding: 10px 60px 13px;
  border-radius: 9999px;
  background: #3E3E3E;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.38px;
  width: 235px;
}
.index_page .about_block__btn::after {
  position: absolute;
  content: "";
  background: url("/assets/img/top/ico_btn.svg") center center no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 33px;
  top: 50%;
}
.index_page .about_block__description {
  width: 630px;
  text-align: left;
  font-weight: 500;
  font-size: 19px;
  line-height: 220%;
  letter-spacing: 1px;
}
.index_page .values_block {
  margin-top: 70px;
  display: flex;
  justify-content: space-around;
  background-color: #fff;
  padding: 70px 20px 76px;
  border-radius: 10px;
}
.index_page .values_block__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 45px;
}
.index_page .values_block__item + .values_block__item {
  border-left: 1px solid #CBCBBB;
}
.index_page .values_block__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 195%;
  letter-spacing: 0.48px;
  margin-top: 40px;
}
.index_page .values_block__value-list {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48px;
  margin-top: 40px;
}
.index_page .values_block__value-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.index_page .values_block__value-list li + li {
  margin-top: 8px;
}
.index_page .values_block__value-list span {
  color: #8C141C;
}
.index_page .values_block__description-bolder {
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
.index_page .values_block__description-sub {
  margin-top: 12px;
  text-align: center;
}
.index_page .buisinesses_block {
  margin-top: 157px;
}
.index_page .buisinesses_block__inner {
  margin: 0 auto;
  max-width: 1260px;
  padding-inline: 20px;
}
.index_page .buisinesses_block__main {
  text-align: left;
}
.index_page .buisinesses_block__subtitle {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.index_page .buisinesses_block__subtitle::before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.index_page .buisinesses_block__title {
  margin-top: 30px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 5.4px;
}
.index_page .buisinesses_block__description {
  margin-top: 52px;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.54px;
}
.index_page .sections_block {
  margin-top: 50px;
  display: flex;
  gap: 61px;
}
.index_page .sections_block__item {
  background-color: #FFFFFF;
  flex: 1;
  border-radius: 13px;
}
.index_page .sections_block__inner {
  padding: 42px 50px 57px;
}
.index_page .sections_block__header {
  text-align: left;
}
.index_page .sections_block__number {
  display: inline-block;
  color: #8C141C;
  font-family: "Roboto Condensed";
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.88px;
  border-bottom: 5px solid #8C141C;
  padding-bottom: 7px;
}
.index_page .sections_block__title {
  margin-top: 43px;
  font-family: "Roboto Condensed";
  font-size: 64.544px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3.227px;
}
.index_page .sections_block__title-right {
  margin-top: 26px;
  font-family: "Roboto Condensed";
  font-size: 46.544px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.931px;
  line-height: 1.05em;
}
.index_page .sections_block__subtitle {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.34px;
}
.index_page .sections_block__subtitle-right {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.34px;
  line-height: 100%;
}
.index_page .sections_block__caption {
  display: inline-block;
  margin-top: 22px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 2.4px;
}
.index_page .sections_block__image {
  margin-top: 33px;
}
.index_page .sections_block__paragraph {
  margin-top: 24px;
  font-weight: 500;
  line-height: 207%;
  letter-spacing: 1.1px;
}
.index_page .sections_block__btn {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  padding: 14px 30px 40px;
  border-radius: 9999px;
  background: #3E3E3E;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.85px;
  width: 330px;
  height: 57px;
}
.index_page .sections_block__btn::after {
  position: absolute;
  content: url("/assets/img/top/ico_btn.svg");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  top: 50%;
}
.index_page .sections_block__note {
  padding-top: 13px;
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 207%;
  letter-spacing: 0.7px;
}
.index_page .participating_block {
  margin-top: 160px;
  overflow: hidden;
}
.index_page .participating_block__inner {
  margin: 0 auto;
  max-width: 1260px;
  padding-inline: 20px;
  width: 100%;
}
.index_page .participating_block__main {
  text-align: left;
}
.index_page .participating_block__subtitle {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.index_page .participating_block__subtitle::before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.index_page .participating_block__title {
  margin-top: 35px;
  font-size: 60px;
  font-weight: 700;
  position: relative;
  letter-spacing: 5.4px;
}
.index_page .participating_block__title::before {
  content: url("/assets/img/top/deco_participating.png");
  position: absolute;
  left: -250px;
  z-index: -1;
}
.index_page .participating_block__btn {
  text-align: left;
}
.index_page .participating_block__btn a {
  margin-top: 80px;
  padding: 15px 80px 15px 60px;
  border-radius: 9999px;
  border: 1px solid #3E3E3E;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.34px;
  display: inline-block;
  position: relative;
}
.index_page .participating_block__btn a::after {
  position: absolute;
  content: url("/assets/img/top/ico_btn_black.svg");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 33px;
  top: 50%;
}
.index_page .member_block {
  margin-top: 80px;
}
.index_page .company_block {
  margin-top: 80px;
}
.index_page .gallary_block {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.index_page .gallary_block__item img {
  width: 100%;
}
.index_page .application_block {
  margin-top: 155px;
}
.index_page .application_block__inner {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
  padding-inline: 20px;
}
.index_page .application_block__header {
  text-align: left;
}
.index_page .application_block__main {
  text-align: left;
}
.index_page .application_block__subtitle {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.index_page .application_block__subtitle::before {
  content: "";
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #AE0003;
}
.index_page .application_block__title {
  margin-top: 37px;
  font-family: "Roboto Condensed";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 6px;
}
.index_page .application_block__description {
  margin-top: 39px;
  font-family: "Noto Sans JP";
  line-height: 200%;
  letter-spacing: 0.54px;
  font-size: 18px;
}
.index_page .wanted_block {
  margin-top: 51px;
  padding: 47px 50px;
  border-radius: 13px;
  background: #FFF;
}
.index_page .wanted_block__deco {
  display: block;
  width: 9px;
  height: 45px;
  background: #8C141C;
}
.index_page .wanted_block__title {
  font-family: "Roboto Condensed";
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3.78px;
  position: relative;
}
.index_page .wanted_block__title::before {
  content: "";
  display: block;
  width: 9px;
  height: 45px;
  background-color: #8C141C;
  position: absolute;
  left: -51px;
  top: -4px;
}
.index_page .wanted_block__contents {
  display: flex;
  gap: 40px;
  margin-top: 39px;
}
.index_page .benefits_block {
  width: 53.5%;
}
.index_page .benefits_block__title {
  padding: 13px 21px 10px;
  border-radius: 3px;
  background: #28333F;
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.89px;
}
.index_page .benefits_block__content {
  margin-top: 31px;
  display: flex;
  gap: 35px;
}
.index_page .benefits_block__subtitle {
  display: inline-block;
  font-family: "Roboto Condensed";
  font-weight: 700;
  line-height: 100%;
  min-width: 122px;
  letter-spacing: 1.461px;
  font-size: 19px;
}
.index_page .benefits_block__subtitle h5 {
  padding-bottom: 9px;
  border-bottom: solid #28333F;
  display: inline-block;
}
.index_page .benefits_block__list {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.35px;
}
.index_page .benefits_block__list li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}
.index_page .benefits_block__list li + li {
  margin-top: 7px;
}
.index_page .benefits_block__list li::before {
  content: "◎";
}
.index_page .fee_block__title {
  padding: 13px 21px 10px;
  border-radius: 3px;
  background: #28333F;
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.89px;
}
.index_page .fee_block__price {
  margin-top: 37px;
  display: flex;
  align-items: center;
}
.index_page .fee_block__label {
  display: inline-block;
  padding: 2px 9px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  white-space: nowrap;
  letter-spacing: 0.3px;
  border: solid #000;
}
.index_page .fee_block__mount {
  margin-left: 30px;
}
.index_page .fee_block__tax {
  color: #28333F;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.72px;
  text-align: right;
}
.index_page .fee_block__note {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}
.index_page .fee-limited_block__title {
  margin-top: 27px;
  color: #8C141C;
  font-size: 17px;
  padding: 6px 10px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.7px;
  border: solid #8C141C;
}
.index_page .fee-limited_block__note {
  margin-top: 16px;
  color: #8C141C;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 130%;
  letter-spacing: 0.26px;
}
.index_page .fee-limited_block__price {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.index_page .fee-limited_block__label {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 11px;
  background: #8C141C;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.index_page .fee-limited_block__mount {
  margin-top: 18px;
  margin-left: 55px;
  color: #8C141C;
  font-family: "Roboto Condensed";
  font-size: 90px;
  font-weight: 700;
}
.index_page .fee-limited_block__mount span {
  font-family: "Roboto Condensed";
  font-size: 65px;
}
.index_page .fee-limited_block__tax {
  color: #8C141C;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.72px;
  text-align: right;
}
.index_page .partnership_block {
  border-radius: 13px;
  background: #FFF;
  margin-top: 40px;
  padding: 43px 40px 28px 50px;
  position: relative;
}
.index_page .partnership_block::before {
  content: "";
  display: block;
  width: 9px;
  height: 45px;
  background-color: #8C141C;
  position: absolute;
  left: 0;
  top: 39px;
}
.index_page .partnership_block__contents {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.index_page .partnership_block__caption {
  margin-top: 23px;
  font-size: 23px;
  font-weight: 700;
  line-height: 180%;
  /* 41.4px */
  letter-spacing: 1.15px;
}
.index_page .partnership_block__note {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
}
.index_page .partnership_block__image {
  margin-top: -40px;
}
.index_page .information_block {
  margin-top: 160px;
  overflow: hidden;
}
.index_page .information_block__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1260px;
  padding-inline: 20px;
  width: 100%;
}
.index_page .information_block__title {
  font-family: Roboto;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.2px;
  position: relative;
}
.index_page .information_block__bg_text {
  position: absolute;
  right: -226px;
  top: 13px;
  z-index: -1;
}
.index_page .article_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
}
.index_page .article_block__item a {
  display: block;
}
.index_page .article_block__image {
  aspect-ratio: 380/220;
  overflow: hidden;
}
.index_page .article_block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.index_page .article_block__label {
  margin-top: 12px;
  border-radius: 4px;
  background: #8C141C;
  display: inline-flex;
  padding: 2px 12px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.04px;
}
.index_page .article_block__date {
  margin-top: 14px;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
.index_page .article_block__article-title {
  margin-top: 6px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.64px;
  color: #000;
  display: block;
}
.index_page .contact_block {
  margin-top: 158px;
  padding-inline: 20px;
}
.index_page .contact_block__inner {
  max-width: 1220px;
  width: 100%;
  background: url(/assets/img/common/bt_contact.png) center center no-repeat;
  background-size: cover;
  margin: 0 auto;
  max-width: 1220px;
  border-radius: 13px;
  position: relative;
}
.index_page .contact_block__inner::after {
  content: "";
  background: url("/assets/img/common/icon_contact_cicle.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 75px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 62px;
  height: 62px;
  aspect-ratio: 1;
}
.index_page .contact_block__text-wrapper {
  padding: 54px 70px 54px;
}
.index_page .contact_block__text-main {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 7.222px;
}
.index_page .contact_block__text-sub {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.414px;
  margin-top: 20px;
}

.information_detail_page .information_detail {
  padding-inline: 30px;
}
.information_detail_page .information_detail__inner {
  max-width: 1280px;
  width: 100%;
  padding: 88px 30px 90px;
  margin: 47px auto 140px;
  background: #fff;
  border-radius: 10px;
}
.information_detail_page .information_detail__wrapper {
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}
.information_detail_page .information_detail__title {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.information_detail_page .information_detail__head {
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.information_detail_page .information_detail__category {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #8C141C;
  padding: 7px 10px;
  border-radius: 5px;
}
.information_detail_page .information_detail__date {
  color: #000;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 500;
}
.information_detail_page .information_detail__thumbnail {
  margin-top: 50px;
  width: 100%;
}
.information_detail_page .information_detail__thumbnail img {
  width: 100%;
}
.information_detail_page .information_detail__contents #ez-toc-container {
  border: 1px solid #DEDEDE;
  padding: 34px 50px;
  border-radius: 10px;
  margin-top: 90px;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-title {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-page-1.ez-toc-heading-level-2 {
  padding-top: 23px;
  margin-top: 14px;
  border-top: 1px solid #D9D9D9;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-page-1.ez-toc-heading-level-2 > a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 {
  margin-top: 11px;
}
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-3 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-4 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-5 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-3 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-4 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-5 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-3 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-4 > a,
.information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-5 > a {
  color: #3E3E3E;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
}
.information_detail_page .information_detail__contents > p {
  margin-top: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
}
.information_detail_page .information_detail__contents > p + p {
  margin-top: 35px;
}
.information_detail_page .information_detail__contents > p a {
  color: #8C141C;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
}
.information_detail_page .information_detail__contents > h2 {
  color: #000;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-left: 20px;
  border-left: 8px solid #8C141C;
  margin-top: 90px;
  line-height: 1.5;
}
.information_detail_page .information_detail__contents > h3 {
  color: #8C141C;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 70px;
}
.information_detail_page .information_detail__contents > h3 + p {
  margin-top: 23px;
}
.information_detail_page .information_detail__contents > h4 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 70px;
}
.information_detail_page .information_detail__contents > h4 + p {
  margin-top: 23px;
}
.information_detail_page .information_detail__btn {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  width: 227px;
  margin: 80px auto 0;
  border: 1px solid #3e3e3e;
  border-radius: 100px;
  position: relative;
}
.information_detail_page .information_detail__btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 8px solid #3e3e3e;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}
.information_detail_page .information_detail__btn a {
  color: #000;
  display: block;
  padding: 14px 15px 15px;
  text-align: center;
  margin-right: 8px;
}

.information_page .information_block__inner {
  max-width: 1263px;
  width: 100%;
  padding-inline: 30px;
  margin: 90px auto 130px;
}
.information_page .information_block__text {
  color: #000;
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
}
.information_page .information_block .article_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px 40px;
  margin-top: 70px;
}
.information_page .information_block .article_block__item a {
  display: block;
}
.information_page .information_block .article_block__image {
  aspect-ratio: 380/220;
  overflow: hidden;
}
.information_page .information_block .article_block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.information_page .information_block .article_block__label {
  margin-top: 12px;
  border-radius: 4px;
  background: #8C141C;
  display: inline-flex;
  padding: 2px 12px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.04px;
}
.information_page .information_block .article_block__date {
  margin-top: 14px;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
.information_page .information_block .article_block__article-title {
  margin-top: 6px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.64px;
  color: #000;
  display: block;
}
.information_page .information_block .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 110px;
}
.information_page .information_block .wp-pagenavi a {
  color: #767676;
}
.information_page .information_block .wp-pagenavi .pages {
  display: none;
}
.information_page .information_block .wp-pagenavi .page {
  font-size: 34px;
  font-weight: 700;
  font-family: "Roboto Condensed";
  color: #767676;
  border: none;
}
.information_page .information_block .wp-pagenavi .current {
  font-size: 34px;
  color: #8C141C;
  border-bottom: none;
  font-weight: 700;
  margin-bottom: 3px;
  border: none;
}
.information_page .information_block .wp-pagenavi .previouspostslink,
.information_page .information_block .wp-pagenavi .nextpostslink {
  width: 21px;
  aspect-ratio: 1;
  background: url("/assets/img/common/ico_arrow_red.svg") center center no-repeat;
  background-size: contain;
  border: none;
}
.information_page .information_block .wp-pagenavi .nextpostslink {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  margin-left: 30px;
}
.information_page .information_block .wp-pagenavi .previouspostslink {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-right: 30px;
}

.partner_page .subpage_head_img__bg {
  background: url("/assets/img/partner/pic_sub_head_02.webp") right/contain no-repeat;
}
.partner_page .subpage_head_img__title {
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.partner_page .subpage_head_img__description {
  margin: 19px 0 0 0;
}
.partner_page .main_block {
  margin: 110px auto 120px;
  width: min(100%, 1340px);
  padding-inline: 60px;
}
.partner_page .main_block__lead {
  color: #000;
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.9px;
}
.partner_page .main_block .season_block {
  display: flex;
  margin-top: 56px;
  cursor: pointer;
}
.partner_page .main_block .season_block__button {
  position: relative;
  padding-inline: 1%;
  flex-basis: 17.86%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.34;
}
.partner_page .main_block .season_block__button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000;
  border-radius: 1px;
}
.partner_page .main_block .season_block__button:nth-of-type(1) {
  flex-basis: 14.1%;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  text-align: flex-start;
}
.partner_page .main_block .season_block__button:nth-last-of-type(1) {
  flex-basis: 14.4%;
  padding-inline: 0;
  text-align: end;
}
.partner_page .main_block .season_block__button > span {
  position: relative;
}
.partner_page .main_block .season_block__button > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -21px;
  right: 0;
  width: 14px;
  height: 12px;
  margin-inline: auto;
  background: url("/assets/img/partner/ico_btn.svg") left top/cover no-repeat;
}
.partner_page .main_block .season_block__button span span {
  display: inline-block;
}
.partner_page .main_block .partner_block {
  margin-top: 183px;
}
.partner_page .main_block .partner_block__title {
  margin-bottom: 106px;
  padding: 0 0 2px 20px;
  border-left: 9px solid #8C141C;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.partner_page .main_block .partner_block__member_list {
  margin-bottom: 120px;
}
.partner_page .main_block .partner_block__member_title {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 3px solid #CCCCC1;
  position: relative;
}
.partner_page .main_block .partner_block__member_title::before {
  position: absolute;
  content: "";
  width: 217px;
  height: 3px;
  bottom: -3px;
  background-color: #D12F31;
}
.partner_page .main_block .partner_block__company_title {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 3px solid #CCCCC1;
  position: relative;
}
.partner_page .main_block .partner_block__company_title::before {
  position: absolute;
  content: "";
  width: 217px;
  height: 3px;
  bottom: -3px;
  background-color: #D12F31;
}
.partner_page .main_block .partner_block_contents {
  display: flex;
  justify-content: space-between;
  padding: 51px 5% 45px;
  background: #FFF;
  border-radius: 10px;
}
.partner_page .main_block .partner_block_list {
  width: 46.35%;
}
.partner_page .main_block .partner_block_list__title {
  position: relative;
  margin-bottom: 29px;
  padding-bottom: 20px;
  color: #000;
  font-family: "DIN 2014", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.partner_page .main_block .partner_block_list__title::before, .partner_page .main_block .partner_block_list__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
}
.partner_page .main_block .partner_block_list__title::before {
  z-index: 2;
  width: 42.71%;
  background: #AE0003;
}
.partner_page .main_block .partner_block_list__title::after {
  z-index: 1;
  width: 100%;
  background: #CCCCC1;
}
.partner_page .main_block .partner_block_list_ul li {
  padding: 12px 1% 11px 0;
  border-bottom: 1px solid #D9D9D9;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.thanks_page .main_block {
  width: min(100%, 1340px);
  margin: 90px auto 330px;
  padding-inline: 60px;
}
.thanks_page .main_block__title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.thanks_page .main_block__text {
  color: #000;
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.75px;
  margin-top: 40px;
}
.thanks_page .main_block__btn {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 1.2px;
  border-radius: 7px;
  border: 2px solid #CBCBBB;
  background: #FFF;
  width: 370px;
  display: block;
  padding: 20px;
  margin: 82px auto 0;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .contact_block {
    margin: calc(80 / 393 * 100vw) 0 calc(60 / 393 * 100vw);
  }
  .contact_block img {
    width: 100%;
    padding: 0 calc(30 / 393 * 100vw);
  }
  html {
    font-size: calc(16 / 393 * 100vw);
  }
  .company_list__img {
    width: calc(160 / 393 * 100vw);
  }
  .contact_section {
    margin-top: calc(80 / 393 * 100vw);
    border-radius: 10px;
    padding-inline: calc(30 / 393 * 100vw);
  }
  .contact_section__inner {
    max-width: calc(333 / 393 * 100vw);
  }
  .contact_section__inner img {
    width: 100%;
  }
  .footer_block {
    margin-top: calc(60 / 393 * 100vw);
  }
  .footer_block__inner {
    padding: calc(35 / 393 * 100vw) calc(30 / 393 * 100vw) calc(30 / 393 * 100vw);
  }
  .footer_block__main {
    flex-direction: column;
    gap: calc(70 / 393 * 100vw);
  }
  .footer_block .footer_menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(15 / 393 * 100vw);
  }
  .footer_block .footer_menu__item a {
    font-size: calc(14 / 393 * 100vw);
  }
  .footer_block__logo {
    width: calc(273 / 393 * 100vw);
    margin-inline: auto;
    margin-top: 0;
  }
  .footer_block__copyright {
    color: #adadad;
    text-align: center;
    font-size: calc(8 / 393 * 100vw);
    margin-top: calc(30 / 393 * 100vw);
  }
  .header_block.is-top {
    position: -webkit-sticky;
    position: sticky;
    background: #fff;
    padding: 0;
    padding-left: 15px;
  }
  .header_block.is-active {
    background: #353535;
  }
  .header_block {
    padding: 0;
    padding-left: calc(14 / 393 * 100vw);
  }
  .header_block__logo {
    width: calc(183 / 393 * 100vw);
  }
  .header_block .header_menu__list {
    display: none;
  }
  .header_block .header_menu__btn {
    display: block;
    background: #AE0003;
    width: calc(60 / 393 * 100vw);
    height: calc(60 / 393 * 100vw);
    aspect-ratio: 1;
  }
  .member_list__item {
    gap: calc(16 / 393 * 100vw);
  }
  .member_list__img {
    width: calc(64 / 393 * 100vw);
  }
  .member_list__body {
    width: calc(223 / 393 * 100vw);
  }
  .member_list__role {
    font-size: calc(11 / 393 * 100vw);
  }
  .member_list__name {
    margin-top: calc(4 / 393 * 100vw);
    font-size: calc(18 / 393 * 100vw);
  }
  .member_list__company {
    margin-top: calc(8 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
  }
  .member_list__company + .member_list__company {
    margin-top: calc(4 / 393 * 100vw);
  }
  .subpage_head_img {
    background: url("../img/common/bg_subpage_head_img_sp.svg") center center/cover no-repeat;
    max-height: calc(160 / 393 * 100vw);
  }
  .subpage_head_img__bg {
    max-height: calc(160 / 393 * 100vw);
  }
  .subpage_head_img__description {
    font-size: calc(14 / 393 * 100vw);
    margin: calc(4 / 393 * 100vw) 0 0 0;
  }
  .subpage_head_img__img {
    width: calc(160 / 393 * 100vw);
  }
  .subpage_head {
    background: url("../img/common/bg_subpage_head_sp.svg") center center/cover no-repeat;
    min-height: calc(160 / 393 * 100vw);
  }
  .subpage_head__inner {
    padding: calc(45 / 393 * 100vw) calc(30 / 393 * 100vw) calc(33 / 393 * 100vw) calc(30 / 393 * 100vw);
  }
  .subpage_head__title {
    font-size: calc(38 / 393 * 100vw);
  }
  .subpage_head__description {
    font-size: calc(14 / 393 * 100vw);
    margin: calc(4 / 393 * 100vw) 0 0 0;
  }
  .about_page .subpage_head_img__bg {
    background: url("/assets/img/about/pic_sub_head_03_sp.webp") right/contain no-repeat;
  }
  .about_page .mission_section__inner {
    max-width: calc(333 / 393 * 100vw);
  }
  .about_page .mission_section__head {
    display: block;
  }
  .about_page .mission_section__img {
    margin: calc(60 / 393 * 100vw) calc(50% - 50vw) 0 0;
    width: calc(365 / 393 * 100vw);
  }
  .about_page .mission_section__lead {
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: 0.094rem;
    font-weight: 500;
    line-height: 190%;
  }
  .about_page .mission_section__label {
    margin-top: calc(80 / 393 * 100vw);
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
    gap: calc(8 / 393 * 100vw);
  }
  .about_page .mission_section__label:before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .about_page .mission_section_body {
    display: block;
  }
  .about_page .mission_section_body:before {
    display: none;
  }
  .about_page .mission_section_body__img {
    margin-top: calc(25 / 393 * 100vw);
  }
  .about_page .mission_section_body__img::after {
    display: block;
  }
  .about_page .mission_section_body .mission_body_content {
    margin-top: calc(20 / 393 * 100vw);
  }
  .about_page .mission_section_body .mission_body_content__title {
    font-size: calc(26 / 393 * 100vw);
    font-weight: 700;
    letter-spacing: 0.098rem;
    line-height: 155%;
  }
  .about_page .mission_section_body .mission_body_content__description {
    margin-top: calc(30 / 393 * 100vw);
    margin-bottom: calc(25 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    font-weight: 500;
    letter-spacing: 0.038rem;
    line-height: 185%;
    letter-spacing: 0.6px;
  }
  .about_page .vision_section .vision_section_body .vision_section_content::after {
    width: calc(13 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_body .vision_section_content__number {
    font-size: calc(13 / 393 * 100vw);
  }
  .about_page .value_section {
    margin-top: calc(80 / 393 * 100vw);
    margin-bottom: 0;
  }
  .about_page .value_section__inner {
    max-width: calc(333 / 393 * 100vw);
  }
  .about_page .value_section__label {
    gap: calc(8 / 393 * 100vw);
  }
  .about_page .value_section__label:before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .about_page .value_section__label {
    margin-top: calc(80 / 393 * 100vw);
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
  }
  .about_page .value_section__image {
    margin-top: calc(25 / 393 * 100vw);
    width: calc(336 / 393 * 100vw);
    max-width: none;
  }
  .about_page .value_section .value_section_header__title {
    font-size: calc(54 / 393 * 100vw);
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.068rem;
    margin-top: calc(20 / 393 * 100vw);
  }
  .about_page .value_section .value_section_header__sub_title {
    font-size: calc(18 / 393 * 100vw);
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.135rem;
    margin-top: calc(29 / 393 * 100vw);
  }
  .about_page .value_section .value_section_body {
    display: block;
    margin-top: calc(31 / 393 * 100vw);
  }
  .about_page .value_section .value_section_body__description {
    font-size: calc(15 / 393 * 100vw);
    font-weight: 500;
    line-height: 190%;
    letter-spacing: 0.038rem;
  }
  .about_page .message_section {
    margin-top: 135px;
    height: calc(1450 / 393 * 100vw);
  }
  .about_page .message_section:before {
    height: calc(1350 / 393 * 100vw);
    top: calc(264 / 393 * 100vw);
  }
  .about_page .message_section:after {
    background: url("/assets/img/about/deco_message_sp.svg") no-repeat;
    top: calc(-57 / 393 * 100vw);
    left: calc(14 / 393 * 100vw);
  }
  .about_page .message_section__inner {
    display: block;
    max-width: 100%;
    padding-inline: calc(31 / 393 * 100vw) calc(19 / 393 * 100vw);
  }
  .about_page .message_section__image {
    width: calc(313 / 393 * 100vw);
    padding-left: 0;
    margin-right: 0;
  }
  .about_page .message_section .message_content {
    width: calc(323 / 393 * 100vw);
    padding: calc(94 / 393 * 100vw) calc(20 / 393 * 100vw) calc(35 / 393 * 100vw) calc(20 / 393 * 100vw);
    margin: calc(-70 / 393 * 100vw) 0 0 auto;
  }
  .about_page .message_section .message_content .container_header__label {
    gap: calc(8 / 393 * 100vw);
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
    margin-top: 0;
    padding-bottom: calc(26 / 393 * 100vw);
  }
  .about_page .message_section .message_content .container_header__label:before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .about_page .message_section .message_content .container_header__role {
    font-size: calc(18 / 393 * 100vw);
    font-weight: 700;
    margin-top: calc(26 / 393 * 100vw);
  }
  .about_page .message_section .message_content .message_content_user {
    display: block;
    margin-top: calc(2 / 393 * 100vw);
  }
  .about_page .message_section .message_content .message_content_user__name {
    font-size: calc(40 / 393 * 100vw);
    font-weight: 700;
    line-height: 180%;
    /* 72px */
    letter-spacing: 2px;
  }
  .about_page .message_section .message_content .message_content_user__kana {
    font-family: Roboto;
    font-size: calc(14 / 393 * 100vw);
    line-height: 100%;
    letter-spacing: calc(1.12 / 393 * 100vw);
    margin-top: calc(7 / 393 * 100vw);
  }
  .about_page .message_section .message_content__text {
    font-size: calc(16 / 393 * 100vw);
    font-weight: 500;
    text-align: justify;
    line-height: 188%;
  }
  .about_page .organisation_chart_section {
    margin-top: calc(233 / 393 * 100vw);
  }
  .about_page .organisation_chart_section:before {
    background: url("/assets/img/about/deco_organisation_sp.svg") no-repeat;
    top: calc(25 / 393 * 100vw);
    left: calc(157 / 393 * 100vw);
  }
  .about_page .organisation_chart_section__inner {
    max-width: calc(333 / 393 * 100vw);
  }
  .about_page .organisation_chart_section__label {
    gap: calc(8 / 393 * 100vw);
  }
  .about_page .organisation_chart_section__label:before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .about_page .organisation_chart_section__label {
    margin-top: calc(80 / 393 * 100vw);
    font-family: Roboto;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
  }
  .about_page .organisation_chart_section h1 {
    font-size: calc(36 / 393 * 100vw);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.113rem;
    margin-top: calc(20 / 393 * 100vw);
  }
  .about_page .organisation_chart_section__img {
    margin-top: calc(40 / 393 * 100vw);
    width: calc(333 / 393 * 100vw);
  }
  .about_page .profile_section {
    margin-top: calc(120 / 393 * 100vw);
  }
  .about_page .profile_section__inner {
    max-width: calc(333 / 393 * 100vw);
  }
  .about_page .profile_section__label {
    font-family: Roboto;
    font-size: calc(14 / 393 * 100vw);
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.28px;
    gap: calc(8 / 393 * 100vw);
  }
  .about_page .profile_section__label:before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .about_page .profile_section h1 {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(17 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents {
    display: block;
    margin-top: calc(55 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content {
    margin-bottom: calc(100 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__role {
    font-size: calc(15 / 393 * 100vw);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.056rem;
    margin-top: calc(20 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__name {
    margin-top: calc(11 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__name h2 {
    font-size: calc(32 / 393 * 100vw);
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.1rem;
    margin-right: calc(19 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__name p {
    font-size: calc(15 / 393 * 100vw);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.056rem;
  }
  .about_page .profile_section .profile_contents .profile_content__position {
    margin-top: calc(11 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__position p {
    font-size: calc(16 / 393 * 100vw);
    font-weight: 700;
    line-height: 145%;
    letter-spacing: 0.06rem;
    margin-top: calc(11 / 393 * 100vw);
  }
  .about_page .profile_section .profile_contents .profile_content__description {
    margin-top: calc(21 / 393 * 100vw);
    text-align: justify;
    font-family: "Noto Sans JP";
    font-size: calc(16 / 393 * 100vw);
    font-weight: 500;
    line-height: 190%;
  }
  .business_page .subpage_head_img__bg {
    background: url("/assets/img/business/pic_sub_head_01_sp.webp") right/contain no-repeat;
  }
  .business_page .main_block {
    margin: calc(40 / 393 * 100vw) auto calc(60 / 393 * 100vw);
    padding-inline: calc(30 / 393 * 100vw);
    width: 100%;
  }
  .business_page .main_block .head_block__left {
    width: 100%;
  }
  .business_page .main_block .head_block__lead {
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.9;
  }
  .business_page .main_block .head_block__image {
    width: 100%;
    padding: 0;
  }
  .business_page .main_block .head_block__buttons_wrapper {
    margin-top: calc(30 / 393 * 100vw);
  }
  .business_page .main_block .head_block__buttons_wrapper h2 {
    font-size: 1.375rem;
    letter-spacing: 0.1237rem;
    gap: calc(10 / 393 * 100vw);
  }
  .business_page .main_block .head_block__buttons_wrapper h2::after {
    width: calc(226 / 393 * 100vw);
  }
  .business_page .main_block .head_block__item + .head_block__item {
    margin-top: calc(50 / 393 * 100vw);
  }
  .business_page .main_block .head_block__item {
    margin-top: calc(32 / 393 * 100vw);
    max-width: unset;
  }
  .business_page .main_block .head_block__button {
    height: calc(90 / 393 * 100vw);
  }
  .business_page .main_block .head_block__button a {
    height: 100%;
    gap: calc(15 / 393 * 100vw);
    padding: calc(10 / 393 * 100vw) calc(21 / 393 * 100vw) calc(10 / 393 * 100vw) calc(16 / 393 * 100vw);
  }
  .business_page .main_block .head_block__button a::after {
    right: calc(22 / 393 * 100vw);
    bottom: calc(18 / 393 * 100vw);
  }
  .business_page .main_block .head_block__button a p {
    font-size: 1.625rem;
    letter-spacing: 0.0488rem;
    text-transform: uppercase;
  }
  .business_page .main_block .head_block__button a span {
    font-size: 0.6875rem;
    letter-spacing: 0.0619rem;
  }
  .business_page .main_block .head_block__button a img {
    width: calc(47 / 393 * 100vw);
  }
  .business_page .main_block .head_block__button--second a p {
    font-size: 1.25rem;
    line-height: 1.1;
  }
  .business_page .main_block .head_block__button--second::after {
    right: calc(22 / 393 * 100vw);
    bottom: calc(18 / 393 * 100vw);
  }
  .business_page .main_block .head_block__text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.0437rem;
  }
  .business_page .main_block .schedule_block__contents {
    margin-top: calc(20 / 393 * 100vw);
  }
  .business_page .main_block .contents_block {
    margin-top: calc(70 / 393 * 100vw);
    padding-bottom: calc(140 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__unit + .contents_block__unit {
    margin-top: calc(140 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__head {
    padding-bottom: calc(28 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__head::before {
    width: calc(142 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__head_img {
    display: none;
  }
  .business_page .main_block .contents_block__num {
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
  .business_page .main_block .contents_block__title {
    color: #1E1E1D;
    font-size: 3.5rem;
    letter-spacing: 0.105rem;
    margin-top: calc(9 / 393 * 100vw);
    margin-bottom: calc(10 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__title_ja {
    font-size: 1.5625rem;
    letter-spacing: 0.1406rem;
  }
  .business_page .main_block .contents_block__body {
    flex-direction: column;
    margin-top: calc(60 / 393 * 100vw);
    gap: calc(40 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__body_left {
    width: initial;
  }
  .business_page .main_block .contents_block__body_left h4 {
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
  }
  .business_page .main_block .contents_block__body_left p {
    color: #000;
    text-align: justify;
    font-size: 0.875rem;
    line-height: 190%;
    /* 26.6px */
    letter-spacing: 0.0525rem;
  }
  .business_page .main_block .contents_block__text {
    margin-top: calc(24 / 393 * 100vw);
  }
  .business_page .main_block .contents_block__image {
    width: initial;
  }
  .business_page .main_block .contents_block__foot_image {
    margin-top: calc(45 / 393 * 100vw);
  }
  .contact_page .main_block {
    margin: calc(42 / 393 * 100vw) auto calc(120 / 393 * 100vw);
    padding-inline: calc(30 / 393 * 100vw);
  }
  .contact_page .main_block__lead {
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: 0.1em;
    line-height: 1.85;
  }
  .contact_page .contact_block {
    margin-top: calc(40 / 393 * 100vw);
    border-radius: 10px;
  }
  .contact_page .contact_block__inner {
    padding: calc(23 / 393 * 100vw) calc(25 / 393 * 100vw) calc(40 / 393 * 100vw);
  }
  .contact_page .contact_block__alert {
    font-size: calc(15 / 393 * 100vw);
  }
  .contact_page .contact_form {
    margin-top: calc(18 / 393 * 100vw);
  }
  .contact_page .contact_form__item {
    gap: calc(12 / 393 * 100vw);
    flex-direction: column;
  }
  .contact_page .contact_form__item + .contact_form__item,
  .contact_page .contact_form__item + .contact_form__textarea {
    margin-top: calc(28 / 393 * 100vw);
  }
  .contact_page .contact_form__label {
    flex: 1 1 auto;
    font-size: calc(18 / 393 * 100vw);
  }
  .contact_page .contact_form .wpcf7-form-control-wrap {
    width: 100%;
  }
  .contact_page .contact_form .wpcf7-form-control.wpcf7-select {
    font-size: calc(14 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw);
  }
  .contact_page .contact_form .wpcf7-form-control.wpcf7-text, .contact_page .contact_form .wpcf7-form-control.wpcf7-textarea {
    font-size: calc(14 / 393 * 100vw);
    padding: calc(12 / 393 * 100vw);
  }
  .contact_page .contact_form .wpcf7-form-control.wpcf7-textarea {
    height: calc(190 / 393 * 100vw);
  }
  .contact_page .contact_form .wpcf7-form-control.wpcf7-submit {
    font-size: calc(21 / 393 * 100vw);
    padding: calc(18 / 393 * 100vw);
  }
  .contact_page .contact_form__textarea {
    gap: calc(12 / 393 * 100vw);
    flex-direction: column;
  }
  .contact_page .contact_form__btn {
    margin: calc(20 / 393 * 100vw) 0 0;
  }
  .index_page .mainvisual_block {
    height: auto;
    padding: calc(20 / 393 * 100vw) calc(30 / 393 * 100vw) calc(25 / 393 * 100vw);
  }
  .index_page .mainvisual_block::before {
    display: none;
  }
  .index_page .mainvisual_block__slide {
    width: 100%;
  }
  .index_page .mainvisual_block__slide img {
    width: 100%;
  }
  .index_page .dummy_contents {
    padding: 0;
  }
  .index_page .dummy_contents img {
    width: 100%;
  }
  .index_page .lead_block__inner {
    padding: calc(43 / 393 * 100vw) calc(30 / 393 * 100vw) calc(60 / 393 * 100vw);
  }
  .index_page .lead_block__contents {
    flex-direction: column;
  }
  .index_page .lead_block__caption {
    font-size: calc(19 / 393 * 100vw);
    letter-spacing: 0.17em;
  }
  .index_page .lead_block__paragraph {
    font-size: calc(13 / 393 * 100vw);
    margin-top: calc(40 / 393 * 100vw);
    line-height: 2;
  }
  .index_page .lead_block__image {
    width: 100%;
    margin-top: calc(30 / 393 * 100vw);
  }
  .index_page .about_block {
    margin-top: calc(110 / 393 * 100vw);
  }
  .index_page .about_block__inner {
    padding-inline: calc(30 / 393 * 100vw);
  }
  .index_page .about_block__subtitle {
    font-size: calc(14 / 393 * 100vw);
    gap: calc(7 / 393 * 100vw);
  }
  .index_page .about_block__subtitle::before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .index_page .about_block__title {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(12 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
  .index_page .about_block__btn::after {
    width: calc(10 / 393 * 100vw);
    height: calc(10 / 393 * 100vw);
    right: calc(37 / 393 * 100vw);
  }
  .index_page .about_block__btn.is-pc {
    display: none;
  }
  .index_page .about_block__description {
    margin-top: calc(40 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    width: 100%;
    line-height: 1.85;
  }
  .index_page .values_block__item + .values_block__item {
    border-top: 1px solid #cbcbcb;
    border-left: none;
  }
  .index_page .values_block__icon {
    width: calc(153 / 393 * 100vw);
  }
  .index_page .values_block__description {
    margin-top: calc(22 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.75;
  }
  .index_page .values_block__value-list {
    margin-top: calc(22 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
  }
  .index_page .values_block__value-list li + li {
    margin-top: calc(4 / 393 * 100vw);
  }
  .index_page .values_block__description-bolder {
    font-size: calc(17 / 393 * 100vw);
  }
  .index_page .values_block__description-sub {
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: 0.02em;
  }
  .index_page .buisinesses_block {
    margin-top: calc(116 / 393 * 100vw);
  }
  .index_page .buisinesses_block__inner {
    padding-inline: calc(30 / 393 * 100vw);
  }
  .index_page .buisinesses_block__subtitle {
    font-size: calc(14 / 393 * 100vw);
    margin-top: 0;
    gap: calc(8 / 393 * 100vw);
  }
  .index_page .buisinesses_block__subtitle::before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .index_page .buisinesses_block__title {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(12 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
  .index_page .buisinesses_block__description {
    margin-top: calc(36 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.9;
    letter-spacing: 0.13em;
  }
  .index_page .sections_block__inner {
    padding: calc(22 / 393 * 100vw) calc(30 / 393 * 100vw) calc(38 / 393 * 100vw);
  }
  .index_page .sections_block__number {
    font-size: calc(13 / 393 * 100vw);
    border-bottom: 3px solid #8C141C;
    padding-bottom: calc(2 / 393 * 100vw);
  }
  .index_page .sections_block__title {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(17 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
  .index_page .sections_block__title-right {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(17 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
  .index_page .sections_block__subtitle {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(2 / 393 * 100vw);
  }
  .index_page .sections_block__subtitle-right {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(15 / 393 * 100vw);
    letter-spacing: 0.1em;
  }
  .index_page .sections_block__caption {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(18 / 393 * 100vw);
    letter-spacing: 0.1em;
  }
  .index_page .sections_block__image {
    margin-top: calc(16 / 393 * 100vw);
  }
  .index_page .sections_block__paragraph {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(22 / 393 * 100vw);
    line-height: 1.9;
  }
  .index_page .sections_block__btn {
    width: 100%;
    height: auto;
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(15 / 393 * 100vw);
    padding: calc(22 / 393 * 100vw) calc(5 / 393 * 100vw) calc(22 / 393 * 100vw) calc(25 / 393 * 100vw);
  }
  .index_page .sections_block__btn::after {
    right: calc(25 / 393 * 100vw);
    top: 50%;
  }
  .index_page .sections_block__note {
    font-size: calc(13 / 393 * 100vw);
    letter-spacing: 0.03em;
    line-height: 1.85;
  }
  .index_page .participating_block {
    margin-top: calc(125 / 393 * 100vw);
  }
  .index_page .participating_block__inner {
    padding-inline: calc(30 / 393 * 100vw);
  }
  .index_page .participating_block__subtitle {
    font-size: calc(14 / 393 * 100vw);
    gap: calc(8 / 393 * 100vw);
    line-height: 1.2;
  }
  .index_page .participating_block__subtitle::before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
    margin-top: calc(-20 / 393 * 100vw);
  }
  .index_page .participating_block__title {
    margin-top: calc(20 / 393 * 100vw);
    font-size: calc(36 / 393 * 100vw);
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .index_page .participating_block__btn a {
    width: 100%;
    margin-top: calc(40 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
    padding: calc(10 / 393 * 100vw) calc(10 / 393 * 100vw) calc(8 / 393 * 100vw);
  }
  .index_page .participating_block__btn a::after {
    right: calc(30 / 393 * 100vw);
  }
  .index_page .member_block {
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .company_block {
    margin-top: calc(40 / 393 * 100vw);
  }
  .index_page .application_block {
    margin-top: calc(116 / 393 * 100vw);
  }
  .index_page .application_block__inner {
    padding-inline: calc(30 / 393 * 100vw);
  }
  .index_page .application_block__subtitle {
    font-size: calc(14 / 393 * 100vw);
    gap: calc(6 / 393 * 100vw);
  }
  .index_page .application_block__subtitle::before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
  }
  .index_page .application_block__title {
    font-size: calc(36 / 393 * 100vw);
    margin-top: calc(16 / 393 * 100vw);
    letter-spacing: 0.05em;
  }
  .index_page .application_block__description {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(32 / 393 * 100vw);
    line-height: 1.9;
    letter-spacing: 0.18em;
  }
  .index_page .wanted_block {
    margin-top: calc(28 / 393 * 100vw);
    padding: calc(30 / 393 * 100vw) calc(18 / 393 * 100vw);
  }
  .index_page .wanted_block__title {
    font-size: calc(26 / 393 * 100vw);
    margin-left: calc(12 / 393 * 100vw);
  }
  .index_page .wanted_block__title::before {
    width: calc(7 / 393 * 100vw);
    height: calc(31 / 393 * 100vw);
    left: calc(-30 / 393 * 100vw);
    top: calc(-1 / 393 * 100vw);
  }
  .index_page .wanted_block__contents {
    flex-direction: column;
    margin-top: calc(25 / 393 * 100vw);
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .benefits_block__title {
    font-size: calc(15 / 393 * 100vw);
    padding: calc(6 / 393 * 100vw) calc(12 / 393 * 100vw);
  }
  .index_page .benefits_block__content + .benefits_block__content {
    margin-top: calc(28 / 393 * 100vw);
  }
  .index_page .benefits_block__subtitle {
    font-size: calc(17 / 393 * 100vw);
    letter-spacing: 0.1em;
  }
  .index_page .benefits_block__subtitle h5 {
    padding-bottom: calc(1 / 393 * 100vw);
  }
  .index_page .benefits_block__list li {
    margin-top: calc(10 / 393 * 100vw);
  }
  .index_page .benefits_block__list li + li {
    margin-top: calc(7 / 393 * 100vw);
  }
  .index_page .fee_block__title {
    font-size: calc(15 / 393 * 100vw);
    padding: calc(7 / 393 * 100vw) calc(13 / 393 * 100vw) calc(5 / 393 * 100vw);
  }
  .index_page .fee_block__detail {
    padding-inline: calc(10 / 393 * 100vw);
  }
  .index_page .fee_block__price {
    flex-direction: column;
    align-items: flex-start;
    margin-top: calc(27 / 393 * 100vw);
    gap: calc(15 / 393 * 100vw);
  }
  .index_page .fee_block__label {
    font-size: calc(12 / 393 * 100vw);
    padding: calc(1 / 393 * 100vw) calc(5 / 393 * 100vw);
  }
  .index_page .fee_block__mount {
    margin-left: calc(10 / 393 * 100vw);
    width: calc(204 / 393 * 100vw);
  }
  .index_page .fee_block__tax {
    font-size: calc(12 / 393 * 100vw);
    margin-right: calc(20 / 393 * 100vw);
    margin-top: calc(-24 / 393 * 100vw);
  }
  .index_page .fee_block__note {
    font-size: calc(13 / 393 * 100vw);
    text-align: left;
    margin-top: calc(15 / 393 * 100vw);
    letter-spacing: 0.06em;
  }
  .index_page .fee-limited_block__title {
    font-size: calc(14 / 393 * 100vw);
    margin: calc(27 / 393 * 100vw) calc(10 / 393 * 100vw) 0;
    padding: calc(4 / 393 * 100vw) 0 calc(3 / 393 * 100vw);
    letter-spacing: 0.04em;
  }
  .index_page .fee-limited_block__note {
    font-size: calc(12/ 393 * 100vw);
    margin-top: calc(7 / 393 * 100vw);
  }
  .index_page .fee-limited_block__price {
    flex-direction: column;
    align-items: flex-start;
    margin-top: calc(20 / 393 * 100vw);
    padding-inline: calc(10 / 393 * 100vw);
  }
  .index_page .fee-limited_block__label {
    font-size: calc(12 / 393 * 100vw);
    padding: calc(2 / 393 * 100vw) calc(7 / 393 * 100vw);
  }
  .index_page .fee-limited_block__mount {
    margin: calc(19 / 393 * 100vw) 0 0 calc(10 / 393 * 100vw);
    width: calc(204 / 393 * 100vw);
  }
  .index_page .fee-limited_block__tax {
    font-size: calc(11 / 393 * 100vw);
    margin: calc(-23 / 393 * 100vw) calc(32 / 393 * 100vw) 0 0;
  }
  .index_page .partnership_block {
    padding: calc(30/ 393 * 100vw) calc(30 / 393 * 100vw) calc(40 / 393 * 100vw);
  }
  .index_page .partnership_block::before {
    top: calc(30 / 393 * 100vw);
    left: 0;
    height: calc(30 / 393 * 100vw);
    width: calc(6 / 393 * 100vw);
  }
  .index_page .partnership_block__caption {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(29 / 393 * 100vw);
    letter-spacing: 0.1em;
  }
  .index_page .partnership_block__note {
    margin-top: calc(8 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
  }
  .index_page .information_block {
    margin-top: calc(125 / 393 * 100vw);
  }
  .index_page .information_block__inner {
    padding-inline: calc(30 / 393 * 100vw);
  }
  .index_page .information_block__title {
    font-size: calc(36 / 393 * 100vw);
  }
  .index_page .information_block__bg_text {
    width: calc(400 / 393 * 100vw);
    right: calc(0 / 393 * 100vw);
  }
  .index_page .article_block {
    grid-template-columns: repeat(1, 1fr);
    margin-top: calc(40 / 393 * 100vw);
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .article_block__label {
    font-size: calc(12 / 393 * 100vw);
    padding: calc(2 / 393 * 100vw) calc(9 / 393 * 100vw);
    margin-top: calc(9 / 393 * 100vw);
  }
  .index_page .article_block__date {
    font-size: calc(12 / 393 * 100vw);
    margin-top: calc(7 / 393 * 100vw);
  }
  .index_page .article_block__article-title {
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(3 / 393 * 100vw);
  }
  .index_page .contact_block__inner::after {
    bottom: calc(30 / 393 * 100vw);
    right: calc(30 / 393 * 100vw);
    top: auto;
  }
  .information_detail_page .information_detail__inner {
    margin: calc(50 / 393 * 100vw) auto calc(80 / 393 * 100vw);
    padding: calc(42 / 393 * 100vw) calc(20 / 393 * 100vw) calc(80 / 393 * 100vw);
  }
  .information_detail_page .information_detail__wrapper {
    max-width: 100%;
  }
  .information_detail_page .information_detail__title {
    font-size: calc(22 / 393 * 100vw);
    line-height: 1.3;
  }
  .information_detail_page .information_detail__head {
    gap: calc(25 / 393 * 100vw);
    margin-top: calc(24 / 393 * 100vw);
  }
  .information_detail_page .information_detail__category {
    font-size: calc(12 / 393 * 100vw);
    padding: calc(5 / 393 * 100vw) calc(8 / 393 * 100vw) calc(6 / 393 * 100vw);
  }
  .information_detail_page .information_detail__date {
    font-size: calc(16 / 393 * 100vw);
  }
  .information_detail_page .information_detail__thumbnail {
    margin-top: calc(32 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container {
    margin-top: calc(40 / 393 * 100vw);
    padding: calc(30 / 393 * 100vw) calc(30 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-title {
    font-size: calc(16 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-page-1.ez-toc-heading-level-2 {
    padding-top: calc(12 / 393 * 100vw);
    margin-top: calc(10 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-page-1.ez-toc-heading-level-2 > a {
    font-size: calc(14 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 {
    margin-top: calc(10 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-3 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-4 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-3 .ez-toc-heading-level-5 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-3 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-4 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-4 .ez-toc-heading-level-5 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-3 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-4 > a,
  .information_detail_page .information_detail__contents #ez-toc-container .ez-toc-list-level-5 .ez-toc-heading-level-5 > a {
    font-size: calc(12 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > p {
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(25 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > p + p {
    margin-top: calc(30 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > p a {
    font-size: calc(14 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > h2 {
    font-size: calc(22 / 393 * 100vw);
    border-left: calc(6 / 393 * 100vw) solid #8C141C;
    padding-left: calc(15 / 393 * 100vw);
    margin-top: calc(60 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > h3 {
    font-size: calc(18 / 393 * 100vw);
    margin-top: calc(40 / 393 * 100vw);
  }
  .information_detail_page .information_detail__contents > h4 {
    font-size: calc(17 / 393 * 100vw);
    margin-top: calc(40 / 393 * 100vw);
  }
  .information_detail_page .information_detail__btn {
    font-size: calc(15 / 393 * 100vw);
    margin: calc(80 / 393 * 100vw) auto 0;
  }
  .information_page .information_block__inner {
    margin: calc(40 / 393 * 100vw) auto calc(120 / 393 * 100vw);
    padding-inline: calc(30 / 393 * 100vw);
  }
  .information_page .information_block__text {
    font-size: calc(15 / 393 * 100vw);
  }
  .information_page .information_block .article_block {
    grid-template-columns: repeat(1, 1fr);
    margin-top: calc(40 / 393 * 100vw);
    gap: calc(30 / 393 * 100vw);
  }
  .information_page .information_block .article_block__label {
    font-size: calc(12 / 393 * 100vw);
    padding: calc(2 / 393 * 100vw) calc(9 / 393 * 100vw);
    margin-top: calc(9 / 393 * 100vw);
  }
  .information_page .information_block .article_block__date {
    font-size: calc(12 / 393 * 100vw);
    margin-top: calc(7 / 393 * 100vw);
  }
  .information_page .information_block .article_block__article-title {
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(3 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi {
    margin-top: calc(60 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi {
    gap: calc(22 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi .page {
    font-size: calc(24 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi .current {
    font-size: calc(24 / 393 * 100vw);
    margin-bottom: calc(4 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi .previouspostslink,
  .information_page .information_block .wp-pagenavi .nextpostslink {
    width: calc(14 / 393 * 100vw);
    height: calc(14 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi .nextpostslink {
    margin-left: calc(18 / 393 * 100vw);
  }
  .information_page .information_block .wp-pagenavi .previouspostslink {
    margin-right: calc(18 / 393 * 100vw);
  }
  .partner_page .subpage_head_img__bg {
    background: url("/assets/img/partner/pic_sub_head_02_sp.webp") right/contain no-repeat;
  }
  .partner_page .subpage_head_img__title {
    font-size: calc(28 / 393 * 100vw);
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
  .partner_page .subpage_head_img__description {
    margin-top: calc(7 / 393 * 100vw);
  }
  .partner_page .main_block {
    margin: calc(41 / 393 * 100vw) auto calc(60 / 393 * 100vw);
    padding-inline: calc(30 / 393 * 100vw);
    width: 100%;
  }
  .partner_page .main_block__lead {
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.9;
    letter-spacing: 0.06em;
  }
  .partner_page .main_block .season_block {
    display: block;
    margin-top: calc(35 / 393 * 100vw);
  }
  .partner_page .main_block .season_block__button {
    width: 100%;
    padding: calc(16 / 393 * 100vw) 0 calc(15 / 393 * 100vw);
    border-bottom: 1px solid #000;
    text-align: flex-start;
    font-size: calc(15 / 393 * 100vw);
  }
  .partner_page .main_block .season_block__button + button::before {
    display: none;
  }
  .partner_page .main_block .season_block__button:nth-last-of-type(1) {
    text-align: flex-start;
  }
  .partner_page .main_block .season_block__button > span {
    display: block;
    width: 100%;
  }
  .partner_page .main_block .season_block__button > span::after {
    left: auto;
    top: 0;
    right: calc(10 / 393 * 100vw);
    bottom: calc(2 / 393 * 100vw);
    margin: auto;
  }
  .partner_page .main_block .partner_block {
    margin-top: calc(80 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block__title {
    margin-bottom: calc(63 / 393 * 100vw);
    font-size: calc(25 / 393 * 100vw);
    border-left: calc(6 / 393 * 100vw) solid #8C141C;
  }
  .partner_page .main_block .partner_block__member_list {
    margin-bottom: calc(60 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block__member_title {
    margin-bottom: calc(20 / 393 * 100vw);
    padding-bottom: calc(16 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block__member_title::before {
    width: calc(120 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block__company_title {
    margin-bottom: calc(20 / 393 * 100vw);
    padding-bottom: calc(16 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block__company_title::before {
    width: calc(120 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block_contents {
    display: block;
    padding: calc(36 / 393 * 100vw) calc(25 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block_list {
    width: 100%;
  }
  .partner_page .main_block .partner_block_list + div {
    margin-top: calc(52 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block_list__title {
    margin-bottom: calc(20 / 393 * 100vw);
    padding-bottom: calc(15 / 393 * 100vw);
    font-size: calc(22 / 393 * 100vw);
  }
  .partner_page .main_block .partner_block_list_ul li {
    padding: calc(12 / 393 * 100vw) 0 calc(16 / 393 * 100vw);
    font-size: calc(13 / 393 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
  .thanks_page .main_block {
    margin: calc(60 / 393 * 100vw) auto calc(120 / 393 * 100vw);
    padding-inline: calc(30 / 393 * 100vw);
  }
  .thanks_page .main_block__title {
    font-size: calc(25 / 393 * 100vw);
  }
  .thanks_page .main_block__text {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(40 / 393 * 100vw);
    line-height: 1.9;
  }
  .thanks_page .main_block__btn {
    margin-top: calc(55 / 393 * 100vw);
    font-size: calc(20 / 393 * 100vw);
    width: 100%;
    padding: calc(17 / 393 * 100vw);
  }
}

@media screen and (max-width: 1023px) {
  .company_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .member_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .index_page .about_block__header {
    flex-direction: column;
    gap: 30px;
  }
  .index_page .about_block__btn {
    margin-top: 40px;
  }
  .index_page .values_block {
    padding: 50px 20px 60px;
  }
  .index_page .values_block__item {
    padding-inline: 20px;
  }
  .index_page .sections_block {
    flex-direction: column;
  }
  .index_page .gallary_block {
    grid-template-columns: repeat(2, 1fr);
  }
  .index_page .benefits_block {
    width: auto;
  }
  .index_page .benefits_block__content {
    flex-direction: column;
    gap: 10px;
  }
  .index_page .partnership_block__contents {
    align-items: center;
  }
  .index_page .partnership_block__image {
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) and (max-width: 768px) {
  .company_list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(11 / 393 * 100vw);
  }
  .member_list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(24 / 393 * 100vw);
  }
  .index_page .about_block__header {
    gap: 0;
  }
  .index_page .about_block__btn {
    width: 100%;
    margin-top: calc(28 / 393 * 100vw);
    text-align: center;
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: 0.05em;
    padding: calc(19 / 393 * 100vw) calc(10 / 393 * 100vw) calc(23 / 393 * 100vw);
  }
  .index_page .values_block {
    flex-direction: column;
    margin-top: calc(42 / 393 * 100vw);
    padding: calc(0 / 393 * 100vw) calc(30 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .index_page .values_block__item {
    padding: calc(30 / 393 * 100vw) 0;
  }
  .index_page .sections_block {
    margin-top: calc(25 / 393 * 100vw);
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .gallary_block {
    margin-top: calc(20 / 393 * 100vw);
    gap: calc(18 / 393 * 100vw);
  }
  .index_page .benefits_block__content {
    padding-inline: calc(10 / 393 * 100vw);
    margin-top: calc(16 / 393 * 100vw);
    gap: calc(0 / 393 * 100vw);
  }
  .index_page .partnership_block__contents {
    flex-direction: column;
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .partnership_block__image {
    width: 100%;
  }
}

@media screen and (1728px <= width) {
  .header_block__logo {
    width: 302px;
  }
  .header_block .header_menu__list {
    gap: 45px;
  }
  .header_block .header_menu__item a {
    font-size: 15px;
  }
  .header_block .header_menu__item--contact {
    width: 230px;
    margin-left: 14px;
  }
  .header_block .header_menu__item--contact a {
    font-size: 14px;
    padding: 37px 10px;
  }
  .about_page .message_section__inner {
    max-width: 1260px;
  }
  .about_page .message_section__image {
    width: 300px;
    margin-right: -50px;
    padding-left: 30px;
  }
  .about_page .message_section .message_content {
    width: 746px;
    padding: 86px 70px 78px 150px;
    margin: 40px 0 0 0;
  }
  .index_page .lead_block__contents {
    width: 1265px;
  }
  .index_page .lead_block__caption {
    font-size: 30px;
  }
  .index_page .lead_block__text-wrapper {
    margin-top: 50px;
    margin-right: -45px;
  }
  .index_page .lead_block__paragraph {
    font-size: 15px;
    margin-top: 44px;
  }
  .index_page .lead_block__image {
    width: 610px;
    margin-top: 10px;
  }
}

@media (max-width: 1502px) {
  .subpage_head_img__title_wrapper {
    padding: 6.1917443409vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .subpage_head_img__title {
    font-size: 5.3262316911vw;
  }
}

@media (max-width: 1200px) {
  .about_page .mission_section {
    margin-top: calc(50 / 393 * 100vw);
    margin-bottom: 5.8333333333vw;
  }
  .about_page .mission_section__label {
    margin-top: 3.3333333333vw;
  }
  .about_page .mission_section_body {
    flex-direction: column;
  }
  .about_page .mission_section_body__img {
    margin: 5vw auto;
    max-width: 630px;
  }
  .about_page .mission_section_body .mission_body_content__description {
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .subpage_head_img__title_wrapper {
    padding: calc(44 / 393 * 100vw) 0 calc(50 / 393 * 100vw) 0;
  }
  .subpage_head_img__title {
    font-size: calc(38 / 393 * 100vw);
  }
}

@media screen and (max-width: 1569px) {
  .about_page .vision_section {
    padding-bottom: 1.9108280255vw;
  }
  .about_page .vision_section__inner {
    height: 45.9872611465vw;
  }
  .about_page .vision_section .vision_section_header {
    padding: 5.7324840764vw 0 0 20.0636942675vw;
    width: 55.2229299363vw;
    margin-left: -3.821656051vw;
    height: calc(100% + 1.9108280255vw);
  }
  .about_page .vision_section .vision_section_header span {
    font-size: 1.2738853503vw;
    margin-bottom: 1.7834394904vw;
  }
  .about_page .vision_section .vision_section_header span::before {
    width: 0.6369426752vw;
    height: 0.6369426752vw;
    top: -0.127388535vw;
    margin-right: 0.6369426752vw;
  }
  .about_page .vision_section .vision_section_header h3 {
    font-size: 2.0382165605vw;
    line-height: 3.5668789809vw;
  }
  .about_page .vision_section .vision_section_body {
    padding: 5.0955414013vw 4.8407643312vw;
    gap: 1.847133758vw;
    margin-bottom: 1.9108280255vw;
  }
  .about_page .vision_section .vision_section_body .vision_section_content {
    gap: 6.3694267516vw;
  }
  .about_page .vision_section .vision_section_body .vision_section_content__title {
    font-size: 1.5286624204vw;
  }
  .about_page .vision_section .vision_section_body .vision_section_content__title_wrapper {
    gap: 1.9108280255vw;
  }
  .about_page .vision_section .vision_section_body .vision_section_content__icon {
    width: 3.949044586vw;
  }
}

@media screen and (max-width: 1569px) and (max-width: 768px) {
  .about_page .vision_section {
    background: #fff;
  }
  .about_page .vision_section__inner {
    display: block;
    height: auto;
  }
  .about_page .vision_section .vision_section_header {
    background-image: url("/assets/img/about/bg_vision_section_sp.png");
    padding: 10.941475827vw 0 26.7175572519vw 7.6335877863vw;
    margin: 0;
    width: 100%;
    height: auto;
  }
  .about_page .vision_section .vision_section_header span {
    font-size: calc(14 / 393 * 100vw);
    margin-bottom: calc(20 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_header span::before {
    width: calc(6 / 393 * 100vw);
    height: calc(6 / 393 * 100vw);
    top: calc(-2 / 393 * 100vw);
    margin-right: calc(8 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_header h3 {
    line-height: 1.75;
    font-size: calc(26 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_body {
    padding-bottom: calc(45 / 393 * 100vw);
    margin-top: calc(30 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_body .vision_section_content {
    padding: calc(15 / 393 * 100vw) calc(10 / 393 * 100vw) calc(15 / 393 * 100vw) calc(10 / 393 * 100vw);
    border-bottom: solid 2px #E1E1E1;
    gap: calc(16 / 393 * 100vw);
  }
  .about_page .vision_section .vision_section_body .vision_section_content__title {
    font-size: calc(18 / 393 * 100vw);
    font-weight: 700;
  }
  .about_page .vision_section .vision_section_body .vision_section_content__title_wrapper {
    gap: calc(14 / 393 * 100vw);
    letter-spacing: 0.056rem;
  }
  .about_page .vision_section .vision_section_body .vision_section_content__icon {
    width: calc(47 / 393 * 100vw);
  }
}

@media (max-width: 386px) {
  .business_page .main_block .head_block__button--second a p {
    font-size: 1.1rem;
  }
}

@media screen and (769px <= width) {
  .index_page .about_block__btn.is-sp {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
  .contact_page .contact_form__btn:hover {
    opacity: 0.7;
  }
  .index_page .article_block__item:hover .article_block__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .information_page .information_block .article_block__item:hover .article_block__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}