@charset "UTF-8";
/* CSS Document */
/* ============================================
  Font
============================================  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-base: #333;
  --color-primary: #0D2588;
  --color-secondary: #12B7A4;
  --color-accent: #E58220;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --vw: 1vw;
  --vh: 1vh;
  interpolate-size: allow-keywords;
}

/* ============================================
  base
============================================  */
html {
  font-size: 62.5% !important; /* 62.5%を指定すると「1.0 rem = 10px」 */
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  width: 100%;
  color: var(--color-base);
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background-color: #F7F7F7;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
  }
}
body.is-load {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
body.is-load.active {
  opacity: 1;
}

p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p:not([class]) {
    font-size: 1.4rem;
  }
}

sup {
  vertical-align: super;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

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

img[src$=".svg"] {
  max-width: 100%;
}

/*  pc表示時に電話発信させない
------------------------- */
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*  メールリンクの装飾を削除
------------------------- */
a[href^="mailto:"] {
  text-decoration: none;
}

/* ============================================
  header
============================================  */
.l-header {
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100px;
  width: calc(100% - var(--container-margin));
  z-index: 90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  padding: 10px 15px 10px 50px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1600px) {
  .l-header {
    padding: 10px 15px 10px 30px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header {
    padding: 10px 15px 10px 20px;
  }
}
@media screen and (max-width: 1250px) {
  .l-header {
    padding: 10px 30px 10px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .l-header {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    padding: 10px 20px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 159px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding-top: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 40px;
    width: 100px;
    padding-top: 0 !important;
  }
}
.l-header__nav-area {
  height: 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0s ease-in-out 0s;
    transition: 0s ease-in-out 0s;
    padding-top: 2rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: auto;
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .l-header__nav-area {
    width: 100%;
  }
}
.l-header__nav-area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column {
    gap: 4rem;
    width: 100%;
  }
}
.l-header__nav-area__column__sub {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__column__sub {
    font-size: 1.4rem;
    gap: 1em;
  }
}
.l-header__nav-area__column__sub .gtranslate_wrapper {
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__sub .gtranslate_wrapper {
    height: 2em;
  }
}
.l-header__nav-area__column__sub .gtranslate_wrapper .glink {
  position: relative;
  height: 1.5em;
}
.l-header__nav-area__column__sub .gtranslate_wrapper .glink::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.l-header__nav-area__column__sub .gtranslate_wrapper .glink:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.l-header__nav-area__column__sub .gtranslate_wrapper .glink.gt-current-lang {
  color: var(--color-primary);
}
.l-header__nav-area__column__sub .gtranslate_wrapper .glink.gt-current-lang::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.l-header__nav-area__column__sub__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  position: relative;
}
.l-header__nav-area__column__sub__item__search-icon {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../img/icon-search.png");
          mask-image: url("../img/icon-search.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
  cursor: pointer;
}
.l-header__nav-area__column__sub__item__search-form {
  position: absolute;
  top: -5px;
  right: -10px;
  z-index: 95;
  width: 0;
  height: calc(100% + 10px);
  border-radius: 10px;
  font-weight: regular;
  padding-right: 40px;
  padding-left: 5px;
  background-color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__column__sub__item__search-form {
    height: 40px;
  }
}
.l-header__nav-area__column__sub__item__search-form .p-search-bar {
  height: 100% !important;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 2px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  opacity: 0;
}
.l-header__nav-area__column__sub__item__search-form .p-search-bar .l-header__nav-area__column__sub__item__search-form__icon-close {
  position: absolute;
  top: 5px;
  right: -28px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-mask-image: url(../img/icon-close.svg);
          mask-image: url(../img/icon-close.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-header__nav-area__column__sub__item__search-form .p-search-bar input {
  width: 100%;
  height: 100% !important;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.6rem;
  font-weight: 400 !important;
}
.l-header__nav-area__column__sub__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.l-header__nav-area__column__sub__item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.l-header__nav-area__column__main {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 1550px) {
  .l-header__nav-area__column__main {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1400px) {
  .l-header__nav-area__column__main {
    gap: 1.5em;
  }
}
@media screen and (max-width: 1350px) {
  .l-header__nav-area__column__main {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__column__main {
    font-size: 1.7rem;
  }
}
.l-header__nav-area__column__main__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1251px) {
  .l-header__nav-area__column__main__item {
    height: 30px;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    left: 2rem;
    display: block;
    width: 1em;
    height: 1em;
    font-size: 0.8rem;
    background-color: var(--color-primary);
    border-radius: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__column__main__item::before {
    left: 1rem;
  }
}
.l-header__nav-area__column__main__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item::after {
    display: none;
  }
}
.l-header__nav-area__column__main__item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.l-header__nav-area__column__main__item > a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 175px;
}
@media only screen and (max-width: 1550px) {
  .l-header__nav-area__column__main__item > a {
    max-width: 155px;
  }
}
@media only screen and (max-width: 1350px) {
  .l-header__nav-area__column__main__item > a {
    max-width: 145px;
  }
}
@media only screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item > a {
    max-width: none;
  }
}
@media screen and (min-width: 1251px) {
  .l-header__nav-area__column__main__item > a {
    height: 30px;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
    color: #777;
    padding-left: 2em;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__column__main__item > a {
    font-size: 1.6rem;
    gap: 1em;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item > a:hover {
    color: var(--color-primary);
  }
}
@media screen and (min-width: 1251px) {
  .l-header__nav-area__column__main__item--hasMenu > a {
    padding-right: 18px;
  }
}
.l-header__nav-area__column__main__item--hasMenu > a::before, .l-header__nav-area__column__main__item--hasMenu > a::after {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #666;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item--hasMenu > a::before, .l-header__nav-area__column__main__item--hasMenu > a::after {
    display: none;
  }
}
.l-header__nav-area__column__main__item--hasMenu > a::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-header__nav-area__column__main__item--hasMenu.is-active > a::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.l-header__nav-area__column__main__item__menu {
  position: fixed;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(30px);
  border-radius: 0 0 10px 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 60px;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item__menu {
    display: none;
  }
}
.l-header__nav-area__column__main__item__menu.is-active {
  height: auto;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.l-header__nav-area__column__main__item__menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.l-header__nav-area__column__main__item__menu__inner__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
.l-header__nav-area__column__main__item__menu__inner__title__en {
  color: var(--color-primary);
  font-family: "Roboto";
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-transform: uppercase;
}
.l-header__nav-area__column__main__item__menu__inner__title__ja {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
.l-header__nav-area__column__main__item__menu__inner__title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.l-header__nav-area__column__main__item__menu__inner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.l-header__nav-area__column__main__item__menu__inner__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  padding-bottom: 21px;
  padding-right: 30px;
  padding-top: 20px;
  position: relative;
  border-bottom: solid 1px #333;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media only screen and (max-width: 1250px) {
  .l-header__nav-area__column__main__item__menu__inner__list__item {
    font-size: 1.6rem;
  }
}
.l-header__nav-area__column__main__item__menu__inner__list__item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  background: var(--color-primary);
  height: 1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.l-header__nav-area__column__main__item__menu__inner__list__item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-header__nav-area__column__main__item__menu__inner__list__item::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
}
.l-header__nav-area__column__main__item__menu__inner__list__item:hover::before {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-header__nav-area__column__main__item__menu__inner__list__item:nth-child(3n) {
  margin-right: 0;
}
.l-header__nav-area__button-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 60px;
  width: 395px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1550px) {
  .l-header__nav-area__button-area {
    width: 315px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header__nav-area__button-area {
    width: 275px;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__button-area {
    width: 100%;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__button-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.l-header__nav-area__button-area__button {
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 190px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1550px) {
  .l-header__nav-area__button-area__button {
    font-size: 1.5rem;
    max-width: 150px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header__nav-area__button-area__button {
    font-size: 1.4rem;
    max-width: 130px;
    gap: 5px;
  }
}
@media screen and (max-width: 1250px) {
  .l-header__nav-area__button-area__button {
    font-size: 1.7rem;
    max-width: none;
    width: calc(50% - 8px);
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-area__button-area__button {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
  }
}
.l-header__nav-area__button-area__button--recruit {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav-area__button-area__button--recruit::before {
  content: "";
  display: block;
  width: 20px;
  height: 19px;
  -webkit-mask-image: url("../img/icon-business.svg");
          mask-image: url("../img/icon-business.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1300px) {
  .l-header__nav-area__button-area__button--recruit::before {
    width: 16px;
    height: 14px;
  }
}
.l-header__nav-area__button-area__button--recruit:hover {
  background-color: #fff;
  color: var(--color-accent);
}
.l-header__nav-area__button-area__button--recruit:hover::before {
  background-color: var(--color-accent);
}
.l-header__nav-area__button-area__button--contact {
  background-image: -webkit-gradient(linear, left top, right top, from(#0D2588), color-stop(51%, #12B7A4), to(#0D2588));
  background-image: linear-gradient(to right, #0D2588 0%, #12B7A4 51%, #0D2588 100%);
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header__nav-area__button-area__button--contact:hover {
  background-position: right center;
}
.l-header__nav-area__button-area__button--contact::before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  -webkit-mask-image: url("../img/icon-mail.svg");
          mask-image: url("../img/icon-mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 1300px) {
  .l-header__nav-area__button-area__button--contact::before {
    width: 16px;
    height: 14px;
  }
}

.is-menuActive .l-header {
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1250px) {
  .is-menuActive .l-header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.l-header__nav-area__column__main__item.is-current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* search area
============================================  */
.is-search-area-open .l-header__nav-area__column__sub__item__search-form {
  opacity: 1;
  visibility: visible;
  width: 300px;
}
.is-search-area-open .l-header__nav-area__column__sub__item__search-form .p-search-bar {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* is-header-active
============================================  */
.is-header-active .l-header {
  top: 10px;
  height: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .is-header-active .l-header {
    height: 60px;
    top: 10px;
  }
}
.is-header-active .l-header__logo {
  padding-top: 5px;
}
@media only screen and (min-width: 1251px) {
  .is-header-active .l-header__nav-area {
    height: 60px;
  }
}
.is-header-active .l-header__nav-area__column__main__item__menu {
  top: 70px;
}
.is-header-active .l-hamburger__line {
  top: 29px;
}
@media screen and (max-width: 767px) {
  .is-header-active .l-hamburger__line {
    top: 19px;
  }
}

/* ============================================

hamburger

============================================  */
.l-hamburger__line {
  position: absolute;
  right: 30px;
  top: 39px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  display: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .l-hamburger__line {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__line {
    top: 19px;
    right: 20px;
  }
}
.l-hamburger__line__item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger__line__item--1 {
  top: 0;
}
.l-hamburger__line__item--2 {
  top: 10px;
}
.l-hamburger__line__item--3 {
  top: 20px;
}
.l-hamburger__line:hover .l-hamburger__line__item--1 {
  top: 2px;
}
.l-hamburger__line:hover .l-hamburger__line__item--3 {
  top: 18px;
}

/* 表示された時用のCSS */
.is-hamburger-open .l-hamburger__line__item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-hamburger-open .l-hamburger__line__item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-hamburger-open .l-hamburger__line__item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}
.is-hamburger-open .l-header {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .is-hamburger-open .l-header {
    height: calc(var(--vh, 1vh) * 100 - 30px);
  }
}
.is-hamburger-open .l-header__nav-area {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}
/* ============================================
  英語版調整
============================================  */
@media only screen and (min-width: 1251px) {
  html[lang=en] .l-header__nav-area__column__main {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1251px) {
  html[lang=en] .l-header__nav-area__column__main__item {
    height: 100% !important;
  }
}
html[lang=en] .l-header__nav-area__column__main__item > a {
  max-width: 125px;
  height: 100% !important;
  text-align: center;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1550px) {
  html[lang=en] .l-header__nav-area__column__main__item > a {
    max-width: 100px;
  }
}
@media only screen and (max-width: 1350px) {
  html[lang=en] .l-header__nav-area__column__main__item > a {
    max-width: 100px;
  }
}
@media only screen and (max-width: 1250px) {
  html[lang=en] .l-header__nav-area__column__main__item > a {
    max-width: none;
  }
}
@media screen and (min-width: 1251px) {
  html[lang=en] .l-header__nav-area__column__main__item > a {
    max-height: 40px !important;
  }
}
html[lang=en] .l-header__nav-area__column__main__item__menu {
  top: 90px;
}
html[lang=en] .is-header-active .l-header__nav-area__column__main__item__menu {
  top: 71px;
}
html[lang=en] .l-header__nav-area__column__main__item__menu__inner__list__item {
  font-size: 1.3rem;
}

/* ============================================
  subvisual
============================================  */
.l-subvisual {
  padding: 170px 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-subvisual {
    padding: 100px 0 20px;
  }
}
.l-subvisual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background-image: url(../img/subvisual_bg.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.l-subvisual__inner {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-subvisual__inner {
    width: 88%;
  }
}
.l-subvisual__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-height: 300px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .l-subvisual__title {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title {
    min-height: 150px;
  }
}
.l-subvisual__title__en {
  color: var(--color-primary);
  font-family: "Syncopate";
  text-transform: uppercase;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-subvisual__title__en {
    width: 50%;
  }
}
@media only screen and (max-width: 1300px) {
  .l-subvisual__title__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title__en {
    font-size: 3rem;
  }
}
.l-subvisual__title__jp {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-subvisual__title__jp {
    width: 50%;
  }
}
@media only screen and (max-width: 1300px) {
  .l-subvisual__title__jp {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title__jp {
    font-size: 1.5rem;
  }
}
.l-subvisual__title__images {
  width: 45%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .l-subvisual__title__images {
    position: relative;
    width: 100%;
    height: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title__images {
    height: 24.5vw;
  }
}
.l-subvisual__title__images__img {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
}
.l-subvisual__title__images__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-subvisual__title__images__img--01 {
  top: 0;
  right: 0;
  width: 314px;
  height: 229px;
}
@media screen and (max-width: 1200px) {
  .l-subvisual__title__images__img--01 {
    width: 70%;
    height: auto;
    aspect-ratio: 1/0.729;
  }
}
@media screen and (max-width: 1000px) {
  .l-subvisual__title__images__img--01 {
    width: 35%;
    top: auto;
    bottom: 45%;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title__images__img--01 {
    bottom: 8%;
  }
}
.l-subvisual__title__images__img--02 {
  top: 100px;
  right: 270px;
  width: 183px;
  height: 216px;
}
@media screen and (max-width: 1200px) {
  .l-subvisual__title__images__img--02 {
    top: 38%;
    right: 60%;
    width: 40%;
    height: auto;
    aspect-ratio: 1/1.18;
  }
}
@media screen and (max-width: 1000px) {
  .l-subvisual__title__images__img--02 {
    top: auto;
    bottom: 0;
    right: 30%;
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual__title__images__img--02 {
    right: 32%;
  }
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 15px 0 30px;
}
@media screen and (max-width: 767px) {
  .l-panNav {
    padding: 10px 0 20px;
  }
}
.l-panNav__list {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-panNav__list {
    width: 88%;
  }
}
.l-panNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-panNav__list__item {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-panNav__list__item {
    font-size: 1.2rem;
  }
}
.l-panNav__list__item::after {
  content: "/";
  font-weight: 400;
  padding: 0 5px;
}
.l-panNav__list__item:last-child::after {
  display: none;
}
.l-panNav__list__item a {
  color: #666;
  font-weight: 400;
  text-decoration: none;
}
.l-panNav__list__item a:hover {
  text-decoration: underline;
}

/* ============================================
  anchor-list
============================================  */
.l-anchor-list {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-anchor-list {
    width: 88%;
  }
}
.l-anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 0 0 70px;
}
@media only screen and (max-width: 1000px) {
  .l-anchor-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .l-anchor-list {
    padding: 0 0 35px;
    gap: 10px;
  }
}
.l-anchor-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  background-color: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 1000px) {
  .l-anchor-list__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .l-anchor-list__item {
    width: calc(50% - 5px);
    font-size: 1.4rem;
    padding: 10px;
    gap: 10px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
  }
}
.l-anchor-list__item:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.l-anchor-list__item::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  -webkit-mask-image: url(../img/icon_arrow_bottom.svg);
          mask-image: url(../img/icon_arrow_bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .l-anchor-list__item::after {
    width: 10px;
    height: 14px;
  }
}

/* ============================================
  wrapper
============================================  */
.l-wrapper {
  overflow: hidden;
}

/* ============================================
  main
============================================  */
.l-main {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main {
    width: 88%;
  }
}
.l-main {
  padding: 0 0 100px;
}

/* ============================================
  section
============================================  */
.l-section {
  padding: 60px 0 100px;
  overflow: hidden;
}

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}

/* ============================================
  h
============================================  */
/* ============================================
  contact-area
============================================  */
.l-contact-area {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#0D2588), to(#12B7A4));
  background-image: linear-gradient(90deg, #0D2588, #12B7A4);
  padding: 50px 0 40px;
}
@media screen and (max-width: 767px) {
  .l-contact-area {
    padding: 40px 0 30px;
  }
}
.l-contact-area__title {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-contact-area__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.l-contact-area__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .l-contact-area__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns {
    gap: 20px;
  }
}
.l-contact-area__columns__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-contact-area__columns__column__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.l-contact-area__columns__column__contents__title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__title {
    font-size: 1.6rem;
  }
}
.l-contact-area__columns__column__contents__text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__text {
    font-size: 1.4rem;
  }
}
.l-contact-area__columns__column__contents__button {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__button {
    height: 50px;
    font-size: 1.6rem;
  }
}
.l-contact-area__columns__column__contents__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.l-contact-area__columns__column__contents__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__button span {
    gap: 10px;
  }
}
.l-contact-area__columns__column__contents__button span::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  -webkit-mask-image: url(../img/icon-mail.svg);
          mask-image: url(../img/icon-mail.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.l-contact-area__columns__column__contents__button:hover {
  color: #fff;
}
.l-contact-area__columns__column__contents__button:hover span::before {
  background-color: #fff;
}
.l-contact-area__columns__column__contents__button:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.l-contact-area__columns__column__contents__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.l-contact-area__columns__column__contents__tel__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}
.l-contact-area__columns__column__contents__tel__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__tel__number {
    font-size: 4rem;
  }
}
.l-contact-area__columns__column__contents__time {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-contact-area__columns__column__contents__time {
    font-size: 1.4rem;
  }
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #eee;
  padding: 70px 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 50px 0 30px;
  }
}
.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 70px 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .l-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    margin-bottom: 80px;
    gap: 50px;
  }
}
.l-footer__contents__company-info {
  width: calc(45% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 20px;
}
@media screen and (max-width: 1200px) {
  .l-footer__contents__company-info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.l-footer__contents__company-info__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__contents__company-info__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__contents__company-info__column--license {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__contents__company-info__column--license {
    gap: 15px;
  }
}
.l-footer__contents__company-info__column__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
  margin-bottom: 0;
}
.l-footer__contents__company-info__column__logo img {
  mix-blend-mode: multiply;
}
.l-footer__contents__company-info__column__logo figcaption {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__contents__company-info__column__logo figcaption {
    font-size: 1.4rem;
    margin-top: 5px;
    text-align: center;
  }
}
.l-footer__contents__company-info__column__text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-footer__contents__company-info__column__text {
    text-align: center;
    font-size: 1.4rem;
  }
}
.l-footer__contents__company-info__column__license-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.l-footer__contents__company-info__column__license-list__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  width: 160px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 10px;
  color: var(--color-primary);
  background-color: #fff;
  border: solid 2px var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer__contents__company-info__column__license-list__item {
    font-size: 1.4rem;
  }
}
.l-footer__contents__nav-list {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px 20px;
}
@media screen and (max-width: 1200px) {
  .l-footer__contents__nav-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contents__nav-list {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__contents__nav-list__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.l-footer__contents__nav-list__item__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-footer__contents__nav-list__item__box__parent {
  font-size: 1.6rem;
  font-weight: bold;
}
.l-footer__contents__nav-list__item__box__child-list {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-left: 1em;
}
.l-footer__contents__nav-list__item a {
  text-decoration: none;
}
.l-footer__contents__nav-list__item a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  font-size: 1.2rem;
  text-align: center;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(13, 37, 136, 0.7);
  -webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: rgb(13, 37, 136);
}

.l-pagetop.is-pagetop-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

.c-text-read {
  font-size: 3rem !important;
  font-weight: bold;
  line-height: 1.4 !important;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-text-read {
    font-size: 2rem !important;
    margin-bottom: 10px;
  }
}

/* ============================================
  col
============================================  */
.col_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col_box > .col2 {
  width: 48%;
}

.col_box > .col3 {
  width: 32%;
}

.col_box > .col4 {
  width: 23.5%;
}

@media only screen and (max-width: 767px) {
  .col_box > .col2 {
    width: 100%;
    margin-bottom: 40px;
  }
  .col_box > .col2:last-child {
    margin-bottom: 0;
  }
  .col_box > .col3,
  .col_box > .col4 {
    width: 48%;
    margin-top: 20px;
  }
  .col_box > .col3:nth-child(1),
  .col_box > .col3:nth-child(2),
  .col_box > .col4:nth-child(1),
  .col_box > .col4:nth-child(2) {
    margin-top: 0;
  }
}
/* ============================================
  ul
============================================  */
ul.c-list li {
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}
ul.c-list li::before {
  content: "●";
}
ul.c-list--other li {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}
ul.c-list--other li span {
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
  dl
============================================  */
dl.list {
  width: 100%;
  border-bottom: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

dl.list dt,
dl.list dd {
  padding: 20px;
  line-height: 1.6;
}

dl.list dt {
  width: 180px;
  font-size: 1.8rem;
  font-weight: bold;
}

dl.list dd {
  width: calc(100% - 180px);
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  dl.list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  dl.list dt {
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 20px 10px 20px;
  }
  dl.list dd {
    width: 100%;
    font-size: 1.5rem;
    padding: 0 20px 20px 20px;
  }
}
.c-note {
  font-size: 1.4rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-note__ttl {
  width: 1.5em;
}
.c-note__txt {
  width: calc(100% - 1.5em);
}

/* ============================================
  btn
============================================  */
/* gradientBtn
------------------------- */
.c-button {
  display: block;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 290px;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#0D2588), color-stop(51%, #12B7A4), to(#0D2588));
  background-image: linear-gradient(to right, #0D2588 0%, #12B7A4 51%, #0D2588 100%);
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: 270px;
    font-size: 1.4rem;
    padding: 8px 15px;
  }
}
.c-button span {
  display: block;
  padding-right: 36px;
  position: relative;
}
.c-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.c-button:hover {
  background-position: right center;
}
.c-button:hover span::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.c-button--accent {
  background-color: var(--color-accent);
  background-image: none;
}
.c-button--accent:hover {
  background-color: #fff;
  color: var(--color-accent) !important;
}
.c-button--accent:hover span::before {
  background-color: rgba(229, 130, 32, 0.5);
}
.c-button--accent:hover span::after {
  background-color: var(--color-accent);
}

/* ============================================
  balloon
============================================  */
.c-balloon {
  position: relative;
}
.c-balloon::before {
  content: "";
  border: 25px solid transparent;
  border-top: 43px solid #006;
  width: 0px;
  height: 0px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ============================================
  youtube
============================================  */
.c-youtube {
  position: relative;
  width: 100%;
  height: auto !important;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ============================================
  gmap
============================================  */
.c-gmap {
  height: auto;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/1;
}
.c-gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ============================================
  検索バー
============================================  */
.p-search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .p-search-bar {
    height: 40px;
    padding: 5px 10px;
  }
}
.p-search-bar input {
  color: #333;
  font-size: 1.6rem;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 23px;
}
@media screen and (max-width: 767px) {
  .p-search-bar input {
    font-size: 1.4rem;
  }
}
.p-search-bar .icon-submit_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-search-bar .search_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  width: 18px;
  -webkit-mask-image: url(../img/icon-search.png);
          mask-image: url(../img/icon-search.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}

/* ============================================
  トップ
============================================  */
/* トップ共通
============================================  */
.p-top-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-h2 {
    margin-bottom: 30px;
  }
}
.p-top-h2__main {
  font-family: "Syncopate";
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-top-h2__main {
    font-size: 2.5rem;
  }
}
.p-top-h2__sub {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-top-h2__sub {
    font-size: 1.4rem;
  }
}

/* メインビジュアル
============================================  */
.p-top-mainvisual {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
  background-color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .p-top-mainvisual {
    min-height: 600px;
  }
}
.p-top-mainvisual .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.p-top-mainvisual__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.p-top-mainvisual__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.p-top-mainvisual__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 37, 136, 0.2);
  z-index: 3;
}
.p-top-mainvisual__copy {
  width: calc(100% - 100px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1450px) {
  .p-top-mainvisual__copy {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy {
    width: 100%;
    gap: 10px;
  }
}
.p-top-mainvisual__copy__main {
  opacity: 0;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  font-size: 8rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 1450px) {
  .p-top-mainvisual__copy__main {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1150px) {
  .p-top-mainvisual__copy__main {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy__main {
    font-size: 2.2rem;
    line-height: 2.4;
  }
}
.p-top-mainvisual__copy__main__emphasis {
  font-family: "noto serif jp";
  color: var(--color-primary);
  font-size: 11rem;
  display: inline-block;
  padding: 0 5px 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), to(rgba(225, 229, 248, 0.7)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(225, 229, 248, 0.7));
  backdrop-filter: blur(30px);
  line-height: 1;
  margin-right: 5px;
}
@media screen and (max-width: 1450px) {
  .p-top-mainvisual__copy__main__emphasis {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1150px) {
  .p-top-mainvisual__copy__main__emphasis {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy__main__emphasis {
    font-size: 3.4rem;
    padding: 5px;
  }
}
.p-top-mainvisual__copy__sub {
  font-size: 3.3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1450px) {
  .p-top-mainvisual__copy__sub {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1150px) {
  .p-top-mainvisual__copy__sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy__sub {
    font-size: 1.4rem;
  }
}
.p-top-mainvisual__copy__sub__emphasis {
  font-family: "noto serif jp";
  color: var(--color-primary);
  font-size: 4rem;
  display: inline-block;
  padding: 0px 5px 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), to(rgba(225, 229, 248, 0.7)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(225, 229, 248, 0.7));
  backdrop-filter: blur(30px);
  line-height: 1;
  margin-right: 5px;
}
@media screen and (max-width: 1450px) {
  .p-top-mainvisual__copy__sub__emphasis {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1150px) {
  .p-top-mainvisual__copy__sub__emphasis {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy__sub__emphasis {
    padding: 5px;
    font-size: 1.6rem;
  }
}
.p-top-mainvisual__scroll-down {
  position: absolute;
  right: 90px;
  bottom: 40px;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down {
    right: 20px;
    bottom: 20px;
  }
}
.p-top-mainvisual__scroll-down a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down a {
    gap: 10px;
  }
}
.p-top-mainvisual__scroll-down__text {
  color: #fff;
  font-family: "syncopate";
  font-size: 3rem;
  font-weight: var(--font-weight-regular);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.7;
  -webkit-transform: translate(-0.15em, 0);
          transform: translate(-0.15em, 0);
}
@media screen and (min-width: 768px) and (max-height: 800px) {
  .p-top-mainvisual__scroll-down__text {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-height: 720px) {
  .p-top-mainvisual__scroll-down__text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-height: 640px) {
  .p-top-mainvisual__scroll-down__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__text {
    font-size: 1.2rem;
  }
}
.p-top-mainvisual__scroll-down__text span {
  font-weight: var(--font-weight-bold);
}
.p-top-mainvisual__scroll-down__arrow {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-inline: auto;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
  background-color: rgba(13, 37, 136, 0.4);
  backdrop-filter: blur(30px);
  -webkit-box-shadow: 0 0 20px rgb(255, 255, 255);
          box-shadow: 0 0 20px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__arrow {
    width: 50px;
    height: 50px;
  }
}
.p-top-mainvisual__scroll-down__arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-mask-image: url(../../img/icon-scrolldown-arrow.svg);
          mask-image: url(../../img/icon-scrolldown-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 36px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__arrow::after {
    width: 18px;
    height: 16px;
  }
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__video {
  opacity: 1;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__copy__main {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__copy__sub {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__scroll-down {
  opacity: 1;
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ABOUT
============================================  */
.p-top-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 130px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .p-top-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-about__contents {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25%;
  max-width: 540px;
  padding-top: 120px;
  padding-bottom: 250px;
  margin-left: var(--container-margin);
}
@media screen and (max-width: 1200px) {
  .p-top-about__contents {
    width: auto;
    max-width: none;
    padding-bottom: 0;
    margin-right: var(--container-margin);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents {
    padding-top: 60px;
  }
}
.p-top-about__contents .c-button {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents .c-button {
    margin-top: 30px;
  }
}
.p-top-about__bg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: url(../../img/about-bg.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-right: calc(var(--container-margin) / 2);
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .p-top-about__bg {
    background-position: left top;
    padding-right: var(--container-margin);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.p-top-about__bg__images {
  position: relative;
  padding-top: 75%;
}
@media screen and (max-width: 1200px) {
  .p-top-about__bg__images {
    padding-top: 60vw;
  }
}
.p-top-about__bg__images__img {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
}
.p-top-about__bg__images__img--01 {
  left: -10%;
  bottom: 0;
  width: 40%;
  height: auto;
  aspect-ratio: 1/1.25;
}
@media screen and (max-width: 1200px) {
  .p-top-about__bg__images__img--01 {
    left: 10%;
    bottom: 0;
    width: 30%;
  }
}
.p-top-about__bg__images__img--02 {
  left: 40%;
  bottom: 5%;
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1200px) {
  .p-top-about__bg__images__img--02 {
    left: 45%;
    bottom: 5%;
    width: 20%;
  }
}
.p-top-about__bg__images__img--03 {
  left: 50%;
  bottom: 55%;
  width: 50%;
  height: auto;
  aspect-ratio: 1/0.75;
}
@media screen and (max-width: 1200px) {
  .p-top-about__bg__images__img--03 {
    left: 50%;
    bottom: none;
    top: 0;
    width: 50%;
  }
}
.p-top-about__bg__images__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* TECHNOLOGY
============================================  */
.p-top-technology {
  margin-bottom: 120px;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-technology {
    margin-bottom: 80px;
    padding: 60px 0;
  }
}
.p-top-technology::before {
  content: "";
  display: block;
  width: calc(100% - var(--container-margin) / 2);
  height: 100%;
  background-color: #E5F1F8;
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-technology::before {
    border-radius: 20px 0 0 20px;
  }
}
.p-top-technology .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-top-technology .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-technology__contents {
  width: calc(50% - 50px);
}
@media screen and (max-width: 1200px) {
  .p-top-technology__contents {
    width: 100%;
  }
}
.p-top-technology__contents__slider {
  width: calc(50% - 50px);
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .p-top-technology__contents__slider {
    width: 100%;
    aspect-ratio: 1/0.5;
    position: static;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__slider {
    margin-bottom: 30px;
  }
}
.p-top-technology__contents__slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p-top-technology__contents__slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-top-technology__contents__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-technology__contents__thumbnail {
  width: 100%;
}
.p-top-technology__contents__thumbnail__list {
  border-top: solid 1px #ccc;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-technology__contents__thumbnail__list__item {
  text-decoration: none;
  padding: 30px 20px;
  border-bottom: solid 1px #ccc;
  position: relative;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list__item {
    padding: 25px 15px;
  }
}
.p-top-technology__contents__thumbnail__list__item::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color-primary);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list__item::before {
    width: 30px;
    height: 30px;
    right: 15px;
  }
}
.p-top-technology__contents__thumbnail__list__item::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list__item::after {
    right: 24px;
    width: 12px;
    height: 8px;
  }
}
.p-top-technology__contents__thumbnail__list__item__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 1550px) {
  .p-top-technology__contents__thumbnail__list__item__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list__item__title {
    font-size: 1.8rem;
  }
}
.p-top-technology__contents__thumbnail__list__item__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list__item__text {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.p-top-technology__contents__thumbnail__list__item.swiper-slide-thumb-active {
  background-color: var(--color-primary);
  color: #fff;
}
.p-top-technology__contents__thumbnail__list__item.swiper-slide-thumb-active::before {
  background-color: #fff;
}
.p-top-technology__contents__thumbnail__list__item.swiper-slide-thumb-active::after {
  background-color: var(--color-primary);
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item {
  padding-right: 90px;
}
@media screen and (max-width: 767px) {
  .p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item {
    padding-right: 60px;
  }
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item::before {
  display: block;
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item::after {
  display: block;
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item:hover {
  background-color: #39498b !important;
  color: #fff !important;
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item:hover::before {
  background-color: #fff;
}
.p-top-technology__contents__thumbnail__list a.p-top-technology__contents__thumbnail__list__item:hover::after {
  background-color: #39498b;
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}

/* TOPICS
============================================  */
.p-top-topics {
  margin: 120px 0;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-topics {
    margin: 80px 0;
    padding: 60px 0;
  }
}
.p-top-topics::before {
  content: "";
  display: block;
  width: calc(100% - var(--container-margin) / 2);
  height: 100%;
  background-color: #EFEFEF;
  border-radius: 0 30px 30px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-topics::before {
    border-radius: 0 20px 20px 0;
  }
}
.p-top-topics .p-topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .p-top-topics .p-topics-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-top-topics .p-topics-list {
    gap: 20px;
  }
}
.p-top-topics .p-topics-list__item {
  opacity: 0;
}

.is-scroll-animation-active .p-topics-list__item {
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
}
.is-scroll-animation-active .p-topics-list__item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.is-scroll-animation-active .p-topics-list__item:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.is-scroll-animation-active .p-topics-list__item:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.is-scroll-animation-active .p-top-product__list__item {
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.is-scroll-animation-active .p-top-product__list__item:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

/* PRODUCT
============================================  */
.p-top-product {
  margin: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-top-product {
    margin: 80px 0;
  }
}
.p-top-product__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .p-top-product__search {
    gap: 20px;
    margin: 0 auto 40px;
  }
}
.p-top-product__search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-top-product__search__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-product__search__form .c-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-product__search__form .c-button {
    width: 88%;
  }
}
.p-top-product__search__form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-product__search__form__input {
    width: 88%;
  }
}
.p-top-product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-product__list {
    gap: 20px;
  }
}
.p-top-product__list__item {
  display: block;
  width: calc(25% - 30px);
  background-color: #fff;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .p-top-product__list__item {
    width: calc(33.333% - 26.666px);
  }
}
@media screen and (max-width: 1000px) {
  .p-top-product__list__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item {
    width: calc(50% - 10px);
  }
}
.p-top-product__list__item__thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.p-top-product__list__item__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-top-product__list__item__title-area {
  padding: 20px 25px 30px;
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item__title-area {
    padding: 15px 10px 20px;
  }
}
.p-top-product__list__item__title-area__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  padding-right: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item__title-area__title {
    font-size: 1.3rem;
    padding-right: 25px;
  }
}
.p-top-product__list__item__title-area__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(13, 37, 136, 0.5);
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item__title-area__title::before {
    right: 15px;
  }
}
.p-top-product__list__item__title-area__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item__title-area__title::after {
    width: 10px;
    height: 8px;
  }
}
.p-top-product__list__item__title-area__text {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-product__list__item__title-area__text {
    font-size: 1.2rem;
  }
}
.p-top-product__list__item:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.p-top-product__list__item:hover .p-top-product__list__item__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-top-product__list__item:hover .p-top-product__list__item__title-area__title::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.p-top-product__list__item:hover .p-top-product__list__item__title-area__title::after {
  background-color: #fff;
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}

/* RECRUIT
============================================  */
.p-top-recruit {
  margin: 120px 0;
  padding: 150px 0 400px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    margin: 80px 0;
    padding: 100px 0 300px;
  }
}
.p-top-recruit__bg {
  content: "";
  display: block;
  width: calc(100% - var(--container-margin) / 2);
  height: 100%;
  border-radius: 0 30px 30px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-secondary)), to(var(--color-primary)));
  background-image: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__bg {
    border-radius: 0 20px 20px 0;
  }
}
.p-top-recruit__bg__img {
  /* 1. 右上を基準点にする */
  position: absolute;
  top: 45%;
  right: 45%;
  /* 2. 右上を軸にして回転させる */
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(30deg) translateX(25%);
          transform: rotate(30deg) translateX(25%);
  /* 3. サイズを大きくする（右上基準なので、左下に向かって広がります） */
  width: 300%;
  height: 300%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__bg__img {
    top: 50%;
    right: 50%;
    width: 400%;
    height: 400%;
  }
}
.p-top-recruit .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-top-recruit .p-top-h2 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-top-recruit .p-top-h2__main {
  color: #fff;
}
.p-top-recruit p {
  text-shadow: 0 0 10px var(--color-primary), 0 0 10px var(--color-primary);
}
.p-top-recruit .c-button {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit .c-button {
    margin-top: 25px;
  }
}

.infinite-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-diagonal 60s linear infinite;
          animation: scroll-diagonal 60s linear infinite;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* アニメーション：右から左へ流れる場合 */
@-webkit-keyframes scroll-diagonal {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    /* ちょうど画像1枚分（50%）移動した瞬間にループさせる */
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes scroll-diagonal {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    /* ちょうど画像1枚分（50%）移動した瞬間にループさせる */
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-top-recruit-images {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 6830px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-images {
    width: 3415px;
  }
}
.p-top-recruit-images__group {
  width: 33.3333%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.p-top-recruit-images__group__large {
  grid-row: 1/3;
  aspect-ratio: 1/1;
}
.p-top-recruit-images__group__large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-recruit-images__group__small-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* COLUMN AREA
============================================  */
.p-top-column-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-column-area__col {
  width: 50%;
  padding: 90px calc(var(--container-margin) / 2);
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .p-top-column-area__col {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column-area__col {
    padding: 60px calc(var(--container-margin) / 2);
  }
}
.p-top-column-area__col--sustainability {
  background-image: url(../../img/sustainability.avif);
  background-position: left bottom;
}
.p-top-column-area__col--company {
  background-image: url(../../img/company.avif);
  background-position: center;
}
.p-top-column-area__col__inner {
  padding: 70px 45px 80px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-column-area__col__inner {
    padding: 50px 30px 60px;
  }
}
.p-top-column-area .p-top-h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-column-area .p-top-h2 {
    margin-bottom: 20px;
  }
}
.p-top-column-area .c-button {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-column-area .c-button {
    margin-top: 30px;
  }
}

/* NEWS
============================================  */
.p-top-news {
  margin: 120px 0;
  padding: 120px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin: 80px 0;
    padding: 60px 0;
  }
}
.p-top-news::before {
  content: "";
  display: block;
  width: calc(100% - var(--container-margin) / 2);
  height: 100%;
  background-color: #EFEFEF;
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-news::before {
    border-radius: 20px 0 0 20px;
  }
}
.p-top-news .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 140px;
}
@media screen and (max-width: 1000px) {
  .p-top-news .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-news__list-area {
  width: 100%;
}
.p-top-news__list-area__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-top-news__list-area__list__item {
  color: #333 !important;
  width: 100%;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-top-news__list-area__list__item {
    padding: 15px 20px;
  }
}
.p-top-news__list-area__list__item__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-top-news__list-area__list__item__date {
    font-size: 1rem;
  }
}
.p-top-news__list-area__list__item__date span {
  display: block;
  font-size: 4rem;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-area__list__item__date span {
    font-size: 3rem;
  }
}
.p-top-news__list-area__list__item__title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  width: 100%;
  padding-right: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-area__list__item__title {
    font-size: 1.4rem;
  }
}
.p-top-news__list-area__list__item__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(13, 37, 136, 0.5);
}
.p-top-news__list-area__list__item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
.p-top-news__list-area__list__item:hover {
  color: #fff !important;
  background-color: var(--color-primary);
}
.p-top-news__list-area__list__item:hover .p-top-news__list-area__list__item__title::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.p-top-news__list-area__list__item:hover .p-top-news__list-area__list__item__title::after {
  background-color: #fff;
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.p-top-news__list-area .c-button {
  margin: 45px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-area .c-button {
    margin: 30px 0 0 auto;
  }
}

/* 年別検索欄
============================================  */
.p-news__search-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-news__search-year {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.p-news__search-year__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-top: 0.6em;
}
@media screen and (max-width: 767px) {
  .p-news__search-year__title {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.p-news__search-year__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding-left: 0 !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-news__search-year__list {
    gap: 5px;
  }
}
.p-news__search-year__list > li {
  list-style: none !important;
}
.p-news__search-year__list > li a {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 20px;
  background-color: #fff;
  border: solid 1px #333;
  text-align: center;
  border-radius: 9999px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news__search-year__list > li a {
    font-size: 1.2rem;
    padding: 5px 15px;
  }
}
.p-news__search-year__list > li a:hover, .p-news__search-year__list > li a[aria-current=page] {
  color: #fff;
  background-color: var(--color-primary);
  border: solid 1px var(--color-primary);
}

/* ============================================
  お知らせ詳細
============================================  */
.p-single h2 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .p-single h2 {
    margin-bottom: 10px !important;
  }
}
.p-single h3 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .p-single h3 {
    margin-top: 50px !important;
  }
}
.p-single__date {
  font-size: 1.6rem;
  color: #666;
  text-align: right;
  margin-bottom: 40px;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.p-single__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
.p-single__thumb img {
  mix-blend-mode: multiply;
}
.p-single .wp-block-image img {
  mix-blend-mode: multiply;
}
.p-single__btn-area {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-single__btn-area {
    margin-top: 50px;
  }
}
.p-single .wp-element-caption {
  text-align: center !important;
}

/* ============================================
  製品・サービス情報
============================================  */
/* PRODUCT SEARCH
============================================  */
.p-product-search {
  background-color: var(--color-primary);
  padding: 30px 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-product-search {
    margin-bottom: 35px;
    padding: 30px 20px;
    border-radius: 5px;
  }
}
.p-product-search__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #fff;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-product-search__area {
    padding: 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-product-search__area:first-child {
  padding-top: 0;
}
.p-product-search__area:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-product-search__area__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding-right: 1em;
  width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px 1em;
}
@media screen and (max-width: 767px) {
  .p-product-search__area__title {
    font-size: 1.6rem;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 0;
  }
}
.p-product-search__area__title .p-product-search__label span {
  text-align: center;
  min-width: 100px;
}
.p-product-search__area__content {
  width: 100%;
}
.p-product-search__area__content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.p-product-search__area__content .p-search-bar {
  max-width: 520px;
  height: 40px;
}
.p-product-search__area__content .p-product-search-example {
  color: #fff;
  margin-top: 10px;
}
.p-product-search__label input {
  display: none;
}
.p-product-search__label input:checked + span {
  background-color: var(--color-accent);
  color: #fff;
}
.p-product-search__label span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  background-color: #fff;
  text-decoration: none;
  padding: 5px 16px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-product-search__label span {
    font-size: 1.2rem;
    padding: 3px 8px;
    border-radius: 5px;
  }
}

/* PRODUCT LIST
============================================  */
.p-product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-product-list {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-product-list__item {
  display: block;
  width: calc(25% - 30px);
  background-color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .p-product-list__item {
    width: calc(33.33% - 27px);
  }
}
@media screen and (max-width: 1000px) {
  .p-product-list__item {
    width: calc(50% - 20px);
  }
}
.p-product-list__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color-primary);
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-product-list__item::before {
    width: 30px;
    height: 30px;
    right: 5px;
    bottom: 5px;
  }
}
.p-product-list__item::after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-product-list__item::after {
    width: 12px;
    height: 9px;
    right: 15px;
    bottom: 13px;
  }
}
.p-product-list__item__thumb {
  width: 100%;
  aspect-ratio: 1/0.816;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #fff;
}
.p-product-list__item__thumb img {
  width: auto;
  max-width: calc(100% - 20px);
  height: calc(100% - 20px);
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-product-list__item__inner {
  padding: 0 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-product-list__item__inner {
    padding: 0 15px 40px;
    gap: 5px;
  }
}
.p-product-list__item__inner__title {
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-product-list__item__inner__title {
    font-size: 1.4rem;
  }
}
.p-product-list__item__inner__category {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: #eee;
  padding: 5px 20px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-product-list__item__inner__category {
    font-size: 1.2rem !important;
    padding: 5px 10px;
    border-radius: 3px;
  }
}
.p-product-list__item:hover::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.p-product-list__item:hover .p-top-topics__list__item__thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.p-product-list__item.is-hidden {
  display: none;
}

/* 製品・サービス情報 詳細
============================================  */
.p-product {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-product {
    width: 88%;
  }
}
.p-product {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-bottom: 50px;
  }
}
.p-product__main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 15px 10px 15px 30px;
  margin-bottom: 40px;
  border-top: solid 5px;
  -o-border-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
     border-image: -webkit-gradient(linear, left top, right top, from(var(--color-primary)), to(var(--color-secondary)));
     border-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  border-image-slice: 1;
}
@media screen and (max-width: 767px) {
  .p-product__main-title {
    padding: 10px 5px 10px 20px;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-product__main-title__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-product__main-title__title {
    font-size: 2rem;
  }
}
.p-product__main-title__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #eee;
  border: solid 1px #ccc;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-product__main-title__category {
    font-size: 1.4rem;
    padding: 5px 20px;
    margin-left: auto;
    margin-right: 0;
  }
}
.p-product__sub-title {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-product__sub-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.p-product__sub-title::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 34px;
  height: 29px;
  -webkit-mask-image: url(../img/logo_A.svg);
          mask-image: url(../img/logo_A.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-product__sub-title::before {
    width: 24px;
    height: 21px;
  }
}
.p-product__catchcopy__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-product__catchcopy__title {
    font-size: 1.6rem;
  }
}
.p-product__catchcopy__title span {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: var(--color-primary);
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .p-product__catchcopy__title span {
    padding: 5px 10px;
  }
}
.p-product__catchcopy__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-product__catchcopy__text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.p-product__images {
  padding: 70px 0 120px;
  background-color: var(--color-primary);
  margin-top: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6%;
}
@media screen and (max-width: 767px) {
  .p-product__images {
    margin-top: 30px;
    padding: 30px 0 70px;
  }
}
.p-product__images::before, .p-product__images::after {
  content: "";
  display: block;
  width: var(--container-margin);
  height: 100%;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
}
.p-product__images::before {
  left: 100%;
}
.p-product__images::after {
  right: 100%;
}
.p-product__images__slider {
  width: 57.8%;
  position: relative;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.p-product__images__slider .swiper-wrapper {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.p-product__images__slider__img {
  width: 100%;
  aspect-ratio: 1/0.833;
  background-color: #fff;
}
.p-product__images__slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__images__slider__caption {
  position: absolute;
  top: calc(100% + 10px);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-product__images__slider__caption {
    font-size: 1.4rem;
  }
}
.p-product__images__thumbnail {
  width: 36%;
}
.p-product__images__thumbnail__list {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.p-product__images__thumbnail__list__item__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: solid 5px #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background-color: #fff;
}
.p-product__images__thumbnail__list__item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__images__thumbnail__list__item__img:hover {
  cursor: pointer;
  border-color: var(--color-accent);
}
.p-product__images__thumbnail__list__item.swiper-slide-thumb-active .p-product__images__thumbnail__list__item__img {
  border-color: var(--color-accent);
}
.p-product__features {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-product__features {
    margin-top: 50px;
  }
}
.p-product__features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-product__features__list {
    gap: 20px;
  }
}
.p-product__features__list__item {
  list-style: none;
}
.p-product__features__list__item__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: solid 1px var(--color-primary);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-product__features__list__item__title {
    font-size: 1.8rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
.p-product__features__list__item__title::first-letter {
  font-size: 4rem;
  color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .p-product__features__list__item__title::first-letter {
    font-size: 2.4rem;
  }
}
.p-product__features__list__item__text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-product__features__list__item__text {
    font-size: 1.4rem;
  }
}
.p-product__scenes__list.wp-block-columns {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.p-product__scenes__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  gap: 20px !important;
}
@media screen and (max-width: 1000px) {
  .p-product__scenes__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-product__scenes__list > div {
  width: calc(25% - 15px) !important;
  list-style: none;
  background-color: #fff;
  border: solid 1px #ccc;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  -ms-flex-preferred-size: unset !important;
      flex-basis: unset !important;
}
@media only screen and (max-width: 1300px) {
  .p-product__scenes__list > div {
    width: calc(50% - 10px) !important;
  }
}
@media screen and (max-width: 1000px) {
  .p-product__scenes__list > div {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-product__scenes__list > div {
    padding: 15px;
    gap: 5px;
  }
}
.p-product__scenes__list > div > p {
  margin-top: 0;
}
.p-product__scenes__list .wp-block-image {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product__scenes__list .wp-block-image img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__scenes__list__title {
  font-size: 1.8rem !important;
  font-weight: 700;
  line-height: 1.6 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .p-product__scenes__list__title {
    font-size: 1.6rem !important;
  }
}
.p-product__scenes__list__title::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../img/icon_exclamation-mark-circle.svg);
          mask-image: url(../img/icon_exclamation-mark-circle.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-product__scenes__list__title::before {
    width: 20px;
    height: 20px;
  }
}
.p-product__specifications__list {
  padding: 35px 50px 50px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .p-product__specifications__list {
    padding: 15px 20px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-product__specifications__list dt {
  width: 250px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem !important;
  font-weight: 700;
  line-height: 1.8 !important;
  border-top: 0 !important;
  border-bottom: dashed 1px #ccc !important;
}
@media screen and (max-width: 767px) {
  .p-product__specifications__list dt {
    font-size: 1.4rem !important;
    width: 100% !important;
    border-bottom: 0 !important;
  }
}
.p-product__specifications__list dd {
  width: calc(100% - 250px) !important;
  font-size: 1.6rem !important;
  line-height: 1.8 !important;
  border-top: 0 !important;
  border-bottom: dashed 1px #ccc !important;
}
@media screen and (max-width: 767px) {
  .p-product__specifications__list dd {
    font-size: 1.4rem !important;
    width: 100% !important;
  }
}
.p-product__topics {
  background-color: #E5F1F8;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-product__topics {
    padding-bottom: 50px 0;
  }
}

/* TOPICS LIST
============================================  */
.p-topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .p-topics-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-topics-list {
    gap: 20px;
  }
}
.p-topics-list__item {
  display: block;
  width: calc(33.333% - 26.666px);
  background-color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-topics-list__item {
    width: 100%;
  }
}
.p-topics-list__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color-primary);
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.p-topics-list__item::after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.p-topics-list__item__thumb {
  width: 100%;
  max-height: 230px;
  aspect-ratio: 1/0.5;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #fff;
}
.p-topics-list__item__thumb img {
  width: auto;
  max-width: 88%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-topics-list__item__inner {
  padding: 20px 25px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-topics-list__item__inner {
    padding: 15px 20px 60px;
    gap: 5px;
  }
}
.p-topics-list__item__inner__title {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topics-list__item__inner__title {
    font-size: 1.6rem;
  }
}
.p-topics-list__item__inner__category {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: #eee;
  padding: 5px 20px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-topics-list__item__inner__category {
    font-size: 1.2rem;
    padding: 5px 15px;
  }
}
.p-topics-list__item__inner__catchcopy {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topics-list__item__inner__catchcopy {
    font-size: 1.4rem;
  }
}
.p-topics-list__item:hover::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.p-topics-list__item:hover .p-top-topics__list__item__thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.p-product__bnr-contact {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 10;
  width: 180px;
  height: 180px;
  border-radius: 10px;
  background-image: url(../img/bnr-contact_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-product__bnr-contact {
    right: 10px;
    bottom: 70px;
    width: 120px;
    height: 120px;
  }
}
.p-product__bnr-contact:hover {
  opacity: 0.8;
}
.p-product__bnr-contact .bnr-close {
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 10;
  width: 37px;
  height: 37px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-product__bnr-contact .bnr-close {
    top: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
  }
}
.p-product__bnr-contact__link {
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(13, 37, 136, 0.7), rgba(18, 183, 164, 0.7));
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-product__bnr-contact__link {
    gap: 15px;
  }
}
.p-product__bnr-contact__link__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product__bnr-contact__link__title {
    font-size: 1.2rem;
  }
}
.p-product__bnr-contact__link__icon {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .p-product__bnr-contact__link__icon {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
採用情報
============================================  */
body.recruit {
  background-color: #111;
}

.p-recruit__section {
  color: #fff;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-recruit__section {
    margin-bottom: 50px;
  }
}
.p-recruit__subvisual {
  position: relative;
  color: #fff;
  padding: 225px 0 130px;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual {
    padding: 120px 0 80px;
  }
}
.p-recruit__subvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.p-recruit__subvisual__inner {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner {
    width: 88%;
  }
}
.p-recruit__subvisual__inner {
  position: relative;
  z-index: 3;
}
.p-recruit__subvisual__inner__contents {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner__contents {
    gap: 10px;
  }
}
.p-recruit__subvisual__inner__contents__title {
  color: var(--color-accent);
  font-size: 3rem;
  line-height: 1;
  font-family: "Syncopate";
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner__contents__title {
    font-size: 1.8rem;
  }
}
.p-recruit__subvisual__inner__contents__maintext, .p-recruit__subvisual__inner__contents__subtext {
  opacity: 0;
}
.p-recruit__subvisual__inner__contents__maintext {
  font-size: 10rem;
  line-height: 1.6;
  -webkit-animation: fadeBlurUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: fadeBlurUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner__contents__maintext {
    font-size: 3rem;
    gap: 10px;
  }
}
.p-recruit__subvisual__inner__contents__maintext span {
  display: inline-block;
  padding: 5px 5px 15px;
  background-color: rgba(13, 37, 136, 0.9);
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner__contents__maintext span {
    padding: 5px;
  }
}
.p-recruit__subvisual__inner__contents__subtext {
  color: #333;
  font-size: 2.4rem;
  line-height: 1.6;
  -webkit-animation: fadeBlurUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: fadeBlurUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__subvisual__inner__contents__subtext {
    font-size: 1.6rem;
  }
}
.p-recruit__subvisual__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.p-recruit__subvisual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit .l-panNav {
  color: #fff;
}
.p-recruit .l-panNav__list__item a {
  color: #ccc;
}
.p-recruit__anchorlink {
  padding: 45px 0 70px;
}
@media screen and (max-width: 767px) {
  .p-recruit__anchorlink {
    padding: 25px 0 35px;
  }
}
.p-recruit__anchorlink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__anchorlink__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__anchorlink__list {
    gap: 10px;
  }
}
.p-recruit__anchorlink__list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__anchorlink__list__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__anchorlink__list__item {
    width: calc(50% - 5px);
  }
}
.p-recruit__anchorlink__list__item a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#C60910), to(#FFAA55));
  background-image: linear-gradient(90deg, #C60910, #FFAA55);
  padding: 15px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruit__anchorlink__list__item a {
    font-size: 1.4rem;
    padding: 10px;
    gap: 10px;
  }
}
.p-recruit__anchorlink__list__item a:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.p-recruit__anchorlink__list__item a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  -webkit-mask-image: url(../img/icon_arrow_bottom.svg);
          mask-image: url(../img/icon_arrow_bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__anchorlink__list__item a::after {
    width: 10px;
    height: 14px;
  }
}
.p-recruit__title {
  color: #ccc;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 20px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__title {
    font-size: 2rem;
    padding-top: 15px;
    margin-bottom: 20px;
  }
}
.p-recruit__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#E58220), to(#FCEA8B));
  background-image: linear-gradient(90deg, #E58220, #FCEA8B);
}
@media screen and (max-width: 767px) {
  .p-recruit__title::before {
    height: 3px;
  }
}
.p-recruit__sub-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__sub-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-left: 22px;
    margin-top: 25px;
  }
}
.p-recruit__sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#E58220), to(#FCEA8B));
  background-image: linear-gradient(90deg, #E58220, #FCEA8B);
}
@media screen and (max-width: 767px) {
  .p-recruit__sub-title::before {
    width: 15px;
    height: 4px;
  }
}
.p-recruit__business__contents {
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__business__contents {
    padding: 0 0 190px 0;
  }
}
.p-recruit__business__contents__text {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 60px;
  color: #333;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: var(--container-margin);
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 1200px) {
  .p-recruit__business__contents__text {
    padding: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__business__contents__text {
    font-size: 1.6rem;
    padding: 20px;
  }
}
.p-recruit__business__contents__text span {
  color: var(--color-accent);
  font-size: 5rem;
}
@media only screen and (max-width: 1200px) {
  .p-recruit__business__contents__text span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__business__contents__text span {
    font-size: 2.4rem;
  }
}
.p-recruit__business__contents__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit__business__contents__image {
    height: 200px;
    width: 80%;
  }
}
.p-recruit__business__contents__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__business__3unit {
  position: relative;
  padding: 20px 0 80px;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-recruit__business__3unit {
    padding: 20px 0 50px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__business__3unit .l-inner {
    width: 100%;
  }
}
.p-recruit__business__3unit__image {
  width: 100%;
  max-width: 1015px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-recruit__business__3unit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.p-recruit__business__3unit__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-recruit__business__3unit__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__introduction__video {
  -webkit-box-shadow: 0 0 40px var(--color-accent);
          box-shadow: 0 0 40px var(--color-accent);
}
.p-recruit__number__area {
  margin-top: 50px;
  padding: 75px 0 85px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area {
    margin-top: 30px;
    padding: 30px 0 40px;
  }
}
.p-recruit__number__area__list {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area__list {
    gap: 10px;
  }
}
.p-recruit__number__area__list__item {
  width: calc(33.333% - 26.666px);
  background-color: rgba(0, 0, 0, 0.7);
  border: solid 1px var(--color-accent);
  padding: 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__number__area__list__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area__list__item {
    width: calc(50% - 5px);
    padding: 20px 10px;
  }
}
.p-recruit__number__area__list__item__title {
  color: #ccc;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 1200px) {
  .p-recruit__number__area__list__item__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area__list__item__title {
    font-size: 1.6rem;
  }
}
.p-recruit__number__area__list__item__data__count {
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}
@media only screen and (max-width: 1200px) {
  .p-recruit__number__area__list__item__data__count {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area__list__item__data__count {
    font-size: 4rem;
  }
}
.p-recruit__number__area__list__item__data__small {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 1200px) {
  .p-recruit__number__area__list__item__data__small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area__list__item__data__small {
    font-size: 1.4rem;
  }
}
.p-recruit__number__area::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-recruit__number__area::after {
  content: "";
  display: block;
  width: 1770px;
  height: 803px;
  background-image: url(../../img/recruit/number-light.png);
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit__number__area::after {
    width: 885px;
    height: 401px;
    bottom: -10px;
  }
}
.p-recruit__number__area__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-recruit__number__area__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__welfare__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .p-recruit__welfare__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__welfare__list {
    gap: 10px;
  }
}
.p-recruit__welfare__list__item {
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 25px 20px 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-recruit__welfare__list__item {
    width: calc(50% - 10px);
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__welfare__list__item {
    width: calc(50% - 5px);
    padding: 15px;
    font-size: 1.4rem;
    gap: 10px;
  }
}
.p-recruit__welfare__list__item__icon {
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__welfare__list__item__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }
}
.p-recruit__welfare__list__item__icon img {
  width: auto;
  height: 100%;
}
.p-recruit__welfare__list__item__note {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-recruit__welfare__list__item__note {
    font-size: 1.2rem;
  }
}
.p-recruit__faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list {
    gap: 10px;
    margin-top: 20px;
  }
}
.p-recruit__faq__list__item {
  color: #333;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item {
    padding: 15px;
  }
}
.p-recruit__faq__list__item__question {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: relative;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__question {
    font-size: 1.4rem;
    gap: 10px;
    padding-right: 40px;
  }
}
.p-recruit__faq__list__item__question:hover {
  cursor: pointer;
}
.p-recruit__faq__list__item__question::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__question::before {
    top: 14px;
    width: 20px;
    height: 2px;
  }
}
.p-recruit__faq__list__item__question::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__question::after {
    top: 14px;
    width: 20px;
    height: 2px;
  }
}
.p-recruit__faq__list__item__question__icon {
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__question__icon {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
  }
}
.p-recruit__faq__list__item__question h4 {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__question h4 {
    margin-top: 3px;
  }
}
.p-recruit__faq__list__item__answer {
  border-radius: 5px;
  padding: 0 20px 0 60px;
  color: #fff;
  background-color: var(--color-accent);
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__answer {
    font-size: 1.4rem;
    padding: 0 15px 0 50px;
  }
}
.p-recruit__faq__list__item__answer__icon {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item__answer__icon {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
  }
}
.p-recruit__faq__list__item.is-open .p-recruit__faq__list__item__question::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-recruit__faq__list__item.is-open .p-recruit__faq__list__item__answer {
  opacity: 1;
  margin-top: 20px;
  height: auto;
  padding: 20px 20px 20px 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__faq__list__item.is-open .p-recruit__faq__list__item__answer {
    padding: 15px 15px 15px 50px;
  }
}
.p-recruit__link {
  padding: 75px 0 85px;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFAA55), to(#C60910));
  background-image: linear-gradient(90deg, #FFAA55, #C60910);
}
@media screen and (max-width: 767px) {
  .p-recruit__link {
    padding: 30px 0 40px;
  }
}
.p-recruit__link__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__link__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-recruit__link__columns__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__link__columns__column {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-recruit__link__columns__column:nth-child(1) {
  padding-right: 30px;
  border-right: solid 1px #fff;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__link__columns__column:nth-child(1) {
    padding-right: 10px;
    padding-left: 10px;
    border-right: none;
    padding-bottom: 50px;
    border-bottom: solid 1px #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column:nth-child(1) {
    padding-bottom: 30px;
  }
}
.p-recruit__link__columns__column:nth-child(2) {
  padding-left: 30px;
}
@media only screen and (max-width: 1000px) {
  .p-recruit__link__columns__column:nth-child(2) {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column:nth-child(2) {
    padding-top: 30px;
  }
}
.p-recruit__link__columns__column__title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column__title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.p-recruit__link__columns__column__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column__text {
    font-size: 1.4rem;
  }
}
.p-recruit__link__columns__column__button {
  color: var(--color-accent);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  margin-top: 30px;
  border-radius: 5px;
  padding: 20px 50px;
  background-color: #fff;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column__button {
    font-size: 1.6rem;
    padding: 15px 30px;
    margin-top: 20px;
    min-height: auto;
  }
}
.p-recruit__link__columns__column__button:hover {
  background-color: #333;
  color: #fff;
}
.p-recruit__link__columns__column__button:hover::after {
  background-color: #fff;
}
.p-recruit__link__columns__column__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  -webkit-mask-image: url(../img/icon-blank.svg);
          mask-image: url(../img/icon-blank.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-accent);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__link__columns__column__button::after {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
.p-recruit__bnr {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 10;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr {
    left: 10px;
    bottom: 10px;
  }
}
.p-recruit__bnr .bnr-close {
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 10;
  width: 37px;
  height: 37px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr .bnr-close {
    top: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
  }
}
.p-recruit__bnr__area {
  width: 300px;
  padding: 15px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFAA55), to(#C60910));
  background-image: linear-gradient(90deg, #FFAA55, #C60910);
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr__area {
    width: 240px;
    padding: 10px;
  }
}
.p-recruit__bnr__area__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr__area__columns {
    gap: 10px;
  }
}
.p-recruit__bnr__area__columns__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit__bnr__area__columns__column__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr__area__columns__column__title {
    font-size: 1.4rem;
  }
}
.p-recruit__bnr__area__columns__column__button {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin-top: 5px;
  border-radius: 5px;
  padding: 5px 20px 5px 5px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  height: 34px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr__area__columns__column__button {
    font-size: 1.2rem;
    margin-top: 8px;
    height: 30px;
  }
}
.p-recruit__bnr__area__columns__column__button::after {
  content: "";
  width: 14px;
  height: 14px;
  -webkit-mask-image: url(../img/icon-blank.svg);
          mask-image: url(../img/icon-blank.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-accent);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-recruit__bnr__area__columns__column__button::after {
    width: 10px;
    height: 10px;
    right: 5px;
  }
}
.p-recruit__bnr__area__columns__column__button:hover {
  background-color: #333;
  color: #fff;
}
.p-recruit__bnr__area__columns__column__button:hover::after {
  background-color: #fff;
}
.p-recruit__bnr__area__columns__column:nth-child(1) .p-recruit__bnr__area__columns__column__button {
  padding-right: 5px;
}

@-webkit-keyframes fadeBlurUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes fadeBlurUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
/* ============================================
  お問い合わせ
============================================  */
.p-contact {
  background-color: #fff;
  padding: 50px 50px 100px;
  border-radius: 10px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 50px;
    padding: 30px 20px 60px;
    border-radius: 5px;
  }
}
.p-contact > ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 0;
}
.p-contact > ._list > ._title {
  width: 27rem;
  margin-bottom: 3rem;
  margin-right: 3rem;
  padding: 0 !important;
  border-top: 0;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 0;
    margin-right: 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.p-contact > ._list > ._title:first-child {
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title:first-child {
    margin-top: 0;
  }
}
.p-contact > ._list > ._title > p {
  margin-top: 0;
}
.p-contact > ._list > ._title .hissu,
.p-contact > ._list > ._title .ninni {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
  height: 2.5rem;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title .hissu,
  .p-contact > ._list > ._title .ninni {
    font-size: 1.2rem;
    border-radius: 2px;
  }
}
.p-contact > ._list > ._title .hissu {
  color: #fff;
  background-color: var(--color-primary);
}
.p-contact > ._list > ._title .ninni {
  color: #666;
  background-color: #eee;
}
.p-contact > ._list ._input {
  width: calc(100% - 30rem);
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 0 !important;
  border-top: 0;
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input {
    width: 100%;
  }
}
.p-contact > ._list ._input .wpcf7-checkbox {
  margin-top: 0 !important;
}
.p-contact > ._list ._input.select-wrap p {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact > ._list ._input.select-wrap p::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 3.2rem;
  width: 0.9rem;
  height: 0.6rem;
  background-image: url(../img/icon_select.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input.select-wrap p::after {
    top: 2.3rem;
  }
}
.p-contact > ._list ._input .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input .wpcf7-form-control {
    gap: 0.5rem;
    margin-top: 0;
  }
}
.p-contact > ._list ._input .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact > ._list ._input input[type=checkbox] {
  /* 1. ブラウザ独自のデフォルトスタイルを無効化する */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* 2. カスタムスタイル */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  background-color: rgb(255, 255, 255);
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  vertical-align: middle;
  cursor: pointer;
  /* ★【重要】これがないと中のチェックマークがどこかへ飛んでいきます */
  position: relative;
}
.p-contact > ._list ._input input[type=checkbox]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.p-contact > ._list ._input input[type=checkbox] {
  /* チェックが入った時の中身（::after） */
}
.p-contact > ._list ._input input[type=checkbox]:checked::after {
  content: "";
  display: block;
  /* サイズ設定 */
  width: 1.2rem;
  height: 1.2rem;
  /* 背景画像の設定 */
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  /* ★位置設定：真ん中に配置するための確実な指定 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 自身のサイズを考慮して完全中央揃え */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* レスポンシブ（SP）対応 */
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input input[type=checkbox]:checked::after {
    width: 1.2rem;
    height: 1.2rem;
    /* transformによる中央揃えにしているので、
      SP側でtopやleftを細かく計算し直す必要がなくなります */
  }
}
.p-contact > ._list ._input input[type=text],
.p-contact > ._list ._input input[type=tel],
.p-contact > ._list ._input input[type=email],
.p-contact > ._list ._input input[type=number],
.p-contact > ._list ._input textarea,
.p-contact > ._list ._input select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 5rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input input[type=text],
  .p-contact > ._list ._input input[type=tel],
  .p-contact > ._list ._input input[type=email],
  .p-contact > ._list ._input input[type=number],
  .p-contact > ._list ._input textarea,
  .p-contact > ._list ._input select {
    font-size: 1.4rem;
  }
}
.p-contact > ._list ._input input[type=text].hissuColor,
.p-contact > ._list ._input input[type=tel].hissuColor,
.p-contact > ._list ._input input[type=email].hissuColor,
.p-contact > ._list ._input input[type=number].hissuColor,
.p-contact > ._list ._input textarea.hissuColor,
.p-contact > ._list ._input select.hissuColor {
  background-color: #E5EAFC;
}
.p-contact > ._list ._input textarea {
  height: 16rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-contact > ._list ._input select {
  color: #333;
  max-width: 34rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input select {
    max-width: auto;
  }
}
.p-contact > ._list ._input select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-contact > ._list ._input ._postal-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 900px) {
  .p-contact > ._list ._input ._postal-code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact > ._list ._input ._postal-code ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(1) {
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(2) {
  margin-top: 1.2rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(3) {
  width: 8rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8rem;
}
.p-contact > ._list ._input ._postal-code ._note {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input ._postal-code ._note {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.p-contact ._agree {
  padding: 50px 25px;
  background-color: #E5EAFC;
  border-radius: 10px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree {
    padding: 30px 15px;
    border-radius: 5px;
    margin-top: 25px;
  }
}
.p-contact ._agree ._text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._text {
    font-size: 1.2rem;
    text-align: left;
  }
}
.p-contact ._agree ._checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact ._agree ._checkbox input[type=checkbox] {
  display: none;
}
.p-contact ._agree ._checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
}
.p-contact ._agree ._checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
  opacity: 1;
}
.p-contact ._agree ._checkbox .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  padding-left: 4.5rem;
  display: block;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._checkbox .wpcf7-list-item-label {
    text-align: left;
    font-size: 1.4rem;
    padding-left: 3.5rem;
  }
}
.p-contact ._agree ._checkbox .wpcf7-list-item-label::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  border-radius: 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 3rem;
  height: 3rem;
  margin-right: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.3rem;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._checkbox .wpcf7-list-item-label::before {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    margin-top: -0.9rem;
    border-radius: 0.5rem;
  }
}
.p-contact ._agree ._checkbox .wpcf7-list-item-label::after {
  content: "";
  display: none;
  opacity: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 0.7rem;
  top: calc(50% - 0.7rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._checkbox .wpcf7-list-item-label::after {
    width: 1.2rem;
    height: 1.2rem;
    left: 0.5rem;
    top: calc(50% - 0.6rem);
  }
}
.p-contact ._recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.4rem auto 0;
}
.p-contact ._submit {
  margin-top: 50px;
}
.p-contact ._submit ._text {
  color: #f00;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact ._submit ._text {
    text-align: left;
  }
}
.p-contact ._submit ._text::after {
  content: "▼";
}
.p-contact ._submit ._button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  width: 100%;
  max-width: 29rem;
  height: 6rem;
  background-color: var(--color-primary);
  border-radius: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact ._submit ._button {
    font-size: 1.8rem;
    height: 5rem;
  }
}
@media (any-hover: hover) {
  .p-contact ._submit ._button:hover {
    opacity: 0.6;
  }
}
.p-contact ._submit ._button input[type=submit] {
  display: none;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  line-height: 1.6;
  margin: 2em 0.5em 1em;
  padding: 1em 1em !important;
  border: 2px solid #00a0d2;
  font-size: 1.6rem !important;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.4rem !important;
    text-align: left !important;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 5px solid #f00 !important;
  background-color: #FFF5F4;
}
.wpcf7 form.sent .wpcf7-response-output::before {
  content: "送信完了";
  display: block;
  color: #f00;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}

/* ============================================
  技術情報詳細
============================================  */
.p-technologys__categorylist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
  padding: 0 !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-technologys__categorylist {
    gap: 5px;
  }
}

.p-technologys__categorylist li {
  list-style: none !important;
  background-color: #E5F1F8;
  padding: 5px 1em;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-technologys__categorylist li {
    font-size: 1.4rem;
  }
}

.p-technologys__maincopy {
  font-size: 3rem !important;
  font-weight: bold;
  line-height: 1.6 !important;
  margin-top: 0.75em !important;
}
@media screen and (max-width: 767px) {
  .p-technologys__maincopy {
    font-size: 2rem !important;
  }
}

.p-technologys__image {
  border-radius: 10px;
  overflow: hidden;
}
.p-technologys__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-technologys__processlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 0 !important;
}

.p-technologys__processlist li {
  list-style: none !important;
  background-color: #fff;
  padding: 10px 10px 10px 40px;
  font-size: 1.8rem;
  position: relative;
}
.p-technologys__processlist li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: calc(10px + 0.6em);
  width: 18px;
  height: 14px;
  -webkit-mask-image: url(../img/icon_check.svg);
          mask-image: url(../img/icon_check.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-primary);
}

.p-technologys .p-technologys__termlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0 !important;
  padding: 0 !important;
  border-bottom: 0 !important;
  width: 100% !important;
}
.p-technologys .p-technologys__termlist dt, .p-technologys .p-technologys__termlist dd {
  border-top: 0 !important;
  width: 100% !important;
}
.p-technologys .p-technologys__termlist dt {
  font-size: 1.8rem !important;
  padding-bottom: 5px !important;
}
@media screen and (max-width: 767px) {
  .p-technologys .p-technologys__termlist dt {
    font-size: 1.6rem !important;
  }
}
.p-technologys .p-technologys__termlist dd {
  padding-top: 0 !important;
  border-bottom: dotted 1px #ccc;
}

.p-technology__caselist > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
}
@media screen and (max-width: 767px) {
  .p-technology__caselist > div {
    gap: 20px;
  }
}

.p-technology__case {
  width: calc(33.333% - 14px);
  border: solid 1px var(--color-primary);
  background-color: #E5F1F8;
  padding: 40px 20px 20px 20px;
}
@media only screen and (max-width: 1000px) {
  .p-technology__case {
    width: calc(50% - 10px);
  }
}
.p-technology__case__title {
  font-size: 1.8rem !important;
  font-weight: bold;
  line-height: 1.6 !important;
}
@media screen and (max-width: 767px) {
  .p-technology__case__title {
    font-size: 1.6rem !important;
  }
}
.p-technology__case__text {
  font-size: 1.4rem !important;
  font-weight: var(--font-weight-medium);
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-technology__case__text {
    font-size: 1.2rem !important;
  }
}

/* ============================================
  検索結果
============================================  */
.p-search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-search__list__item {
  color: #333 !important;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-search__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-search__list__item__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  padding: 5px;
  background-color: #fff;
}
.p-search__list__item__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-search__list__item__content {
  width: 100%;
  position: relative;
  padding-right: 50px;
}
.p-search__list__item__content::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(13, 37, 136, 0.5);
}
.p-search__list__item__content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
.p-search__list__item__content__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-search__list__item__content__title {
    font-size: 1.6rem;
  }
}
.p-search__list__item__content__text {
  margin-top: 10px !important;
}
.p-search__list__item:hover {
  color: #fff !important;
  background-color: var(--color-primary);
}
.p-search__list__item:hover .p-search__list__item__content::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.p-search__list__item:hover .p-search__list__item__content::after {
  background-color: #fff;
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
/* ============================================
  英語版調整
============================================  */
html[lang=en] .p-top-mainvisual__copy__main {
  font-size: 5rem;
}
@media screen and (max-width: 1450px) {
  html[lang=en] .p-top-mainvisual__copy__main {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1150px) {
  html[lang=en] .p-top-mainvisual__copy__main {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-top-mainvisual__copy__main {
    font-size: 1.8rem;
  }
}
html[lang=en] .p-top-mainvisual__copy__main__emphasis {
  font-size: 7rem;
}
@media screen and (max-width: 1450px) {
  html[lang=en] .p-top-mainvisual__copy__main__emphasis {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1150px) {
  html[lang=en] .p-top-mainvisual__copy__main__emphasis {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-top-mainvisual__copy__main__emphasis {
    font-size: 2.2rem;
  }
}
html[lang=en] .p-top-mainvisual__copy__sub {
  font-size: 3.3rem;
}
@media screen and (max-width: 1450px) {
  html[lang=en] .p-top-mainvisual__copy__sub {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1150px) {
  html[lang=en] .p-top-mainvisual__copy__sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-top-mainvisual__copy__sub {
    font-size: 1.2rem;
  }
}
html[lang=en] .p-top-mainvisual__copy__sub__emphasis {
  font-size: 4rem;
}
@media screen and (max-width: 1450px) {
  html[lang=en] .p-top-mainvisual__copy__sub__emphasis {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1150px) {
  html[lang=en] .p-top-mainvisual__copy__sub__emphasis {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-top-mainvisual__copy__sub__emphasis {
    padding: 5px;
    font-size: 1.4rem;
  }
}
html[lang=en] .p-recruit__subvisual__inner__contents__maintext {
  font-size: 8rem;
}
@media only screen and (max-width: 1000px) {
  html[lang=en] .p-recruit__subvisual__inner__contents__maintext {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-recruit__subvisual__inner__contents__maintext {
    font-size: 2rem;
  }
}
html[lang=en] .p-recruit__business__contents__text span {
  font-size: 4rem;
}
@media only screen and (max-width: 1200px) {
  html[lang=en] .p-recruit__business__contents__text span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-recruit__business__contents__text span {
    font-size: 2rem;
  }
}
html[lang=en] .p-recruit__number__area__list__item__title {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  html[lang=en] .p-recruit__number__area__list__item__title {
    font-size: 1.8rem;
  }
}
html[lang=en] .p-recruit__number__area__list__item__data__count {
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-recruit__number__area__list__item__data__count {
    font-size: 3rem;
  }
}
html[lang=en] .p-recruit__number__area__list__item__data__small {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  html[lang=en] .p-recruit__number__area__list__item__data__small {
    font-size: 1.4rem;
  }
}

/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-caption {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 767px) {
  .u-caption {
    font-size: 1.2rem !important;
  }
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.u-indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.u-inline-block {
  display: inline-block;
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

/* ============================================
  margin/padding
============================================  */
.u-mt0 {
  margin-top: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* ============================================
  Hover Animation
============================================  */
/* underline
------------------------- */
.a-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.a-underline:hover::after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/* underlineLeft
------------------------- */
.a-underlineLeft {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underlineLeft::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.a-underlineLeft:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* borderBox
------------------------- */
.borderBox {
  position: relative;
  overflow: hidden;
}
.borderBox__in::before, .borderBox__in::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in {
  /* 上のボーダー */
}
.borderBox__in::before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in:hover::before {
  right: 0;
}
.borderBox__in {
  /* 左のボーダー */
}
.borderBox__in::after {
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in:hover::after {
  top: 0;
}
.borderBox__in__in::before, .borderBox__in__in::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in__in {
  /* 下のボーダー */
}
.borderBox__in__in::before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in__in:hover::before {
  left: 0;
}
.borderBox__in__in {
  /* 右のボーダー */
}
.borderBox__in__in::after {
  content: "";
  bottom: -100%;
  right: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in__in:hover::after {
  bottom: 0;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-scroll-animation-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* fadeRight
------------------------- */
.a-fadeRight {
  opacity: 0;
}
.a-fadeRight.is-scroll-animation-active {
  -webkit-animation-name: fade-right;
          animation-name: fade-right;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.a-curtain::after {
  background-color: var(--color-primary);
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 2;
  -webkit-transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.a-curtain.is-scroll-animation-active::after {
  left: 100%;
  width: 100%;
}
.a-curtain > div, .a-curtain > img {
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}
.a-curtain.is-scroll-animation-active > div, .a-curtain.is-scroll-animation-active > img {
  opacity: 1;
}

/* scale
------------------------- */
.a-scale img {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.a-scale.is-scroll-animation-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* hideTxt
------------------------- */
.a-hideTxt {
  overflow: hidden;
}
.a-hideTxt__item {
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.a-hideTxt.is-scroll-animation-active__item {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

/* Fade Up Animation
------------------------- */
/* 初期状態（spanに適用） */
.fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* 表示アニメーション状態 */
.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* pタグ自体のスタイル（このままでもOK） */
.is-load-text {
  opacity: 0;
}

.is-load-text.is-scroll-animation-active {
  opacity: 1;
}

/* ============================================
  scrolldown
============================================  */
/*スクロールダウン全体の場所*/
.c-scrolldown {
  height: 100px;
  /*Scrollテキストの描写*/
}
.c-scrolldown p {
  /*描画位置*/
  position: absolute;
  left: 0;
  top: -60px;
  /*テキストの形状*/
  color: #333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
}
.c-scrolldown {
  /* 線の描写 */
}
.c-scrolldown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.25);
}
.c-scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 12px;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #333;
  /*線の動き*/
  -webkit-animation: pathmove 2.2s forwards infinite;
          animation: pathmove 2.2s forwards infinite;
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}
/* fadeArrow
------------------------- */
@-webkit-keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%);
            transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%);
            transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%);
            transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%);
            transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
/* fadeUp
------------------------- */
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ============================================
  共通
============================================  */
.w-editorarea h2 {
  color: #333;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding: 20px 30px 15px;
  background-color: #fff;
  margin-bottom: 40px;
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .w-editorarea h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 13px 15px 10px;
    margin-top: 50px;
  }
}
.w-editorarea h2:first-child {
  margin-top: 0 !important;
}
.w-editorarea h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0D2588), to(#12B7A4));
  background-image: linear-gradient(90deg, #0D2588, #12B7A4);
}
@media screen and (max-width: 767px) {
  .w-editorarea h2::before {
    height: 3px;
  }
}
.w-editorarea h3 {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .w-editorarea h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 30px;
  }
}
.w-editorarea h3:first-child {
  margin-top: 0 !important;
}
.w-editorarea h3::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 34px;
  height: 29px;
  -webkit-mask-image: url(../img/logo_A.svg);
          mask-image: url(../img/logo_A.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.25em;
}
@media screen and (max-width: 767px) {
  .w-editorarea h3::before {
    width: 24px;
    height: 21px;
  }
}
.w-editorarea h4 {
  color: #333;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 15px;
  margin-top: 50px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .w-editorarea h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    margin-top: 25px;
  }
}
.w-editorarea h4:first-child {
  margin-top: 0 !important;
}
.w-editorarea hr {
  margin: 80px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.w-editorarea p {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .w-editorarea p {
    font-size: 1.4rem;
  }
}
.w-editorarea p:first-child {
  margin-top: 0;
}
.w-editorarea .has-small-font-size p,
.w-editorarea .has-medium-font-size p,
.w-editorarea .has-large-font-size p,
.w-editorarea .has-medium-font-size p {
  font-size: inherit;
}
.w-editorarea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: solid 1px #ccc;
}
.w-editorarea dl dt {
  font-size: 1.6rem !important;
  font-weight: var(--font-weight-bold) !important;
  line-height: 1.875;
  width: 185px;
  padding-top: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 20px !important;
  border-top: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dt {
    font-size: 1.4rem !important;
    width: 100%;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    padding-right: 0 !important;
  }
}
.w-editorarea dl dd {
  font-size: 1.6rem !important;
  line-height: 1.875;
  width: calc(100% - 185px);
  padding: 20px 0 !important;
  border-top: solid 1px #ccc;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dd {
    font-size: 1.4rem !important;
    width: 100%;
    border-top: 0;
    padding: 0 0 10px !important;
  }
}
.w-editorarea ul, .w-editorarea ol {
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .w-editorarea ul, .w-editorarea ol {
    font-size: 1.4rem;
  }
}
.w-editorarea ul > li {
  list-style: disc;
}
.w-editorarea ol > li {
  list-style: decimal;
}
.w-editorarea .wp-block-table {
  margin: 30px 0;
  overflow-x: unset;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-block-table {
    margin: 20px 0;
  }
}
.w-editorarea table {
  width: 100%;
  border-collapse: collapse;
}
.w-editorarea table thead {
  border-bottom: 0;
}
.w-editorarea table th,
.w-editorarea table td {
  border: solid 1px #ccc;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.875;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .w-editorarea table th,
  .w-editorarea table td {
    font-size: 1.4rem;
  }
}
.w-editorarea table th {
  background-color: #E5F1F8;
  font-weight: var(--font-weight-bold);
}
.w-editorarea table td {
  vertical-align: baseline;
}
.w-editorarea .wp-element-caption {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-element-caption {
    font-size: 1.2rem;
  }
}
.w-editorarea :where(.wp-block-columns.is-layout-flex) {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .w-editorarea :where(.wp-block-columns.is-layout-flex) {
    gap: 20px;
  }
}
.w-editorarea .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
  padding-top: 56.25%;
}
.w-editorarea .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.w-editorarea .wp-block-button__link {
  display: block;
  min-width: 240px;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: left;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#0D2588), color-stop(51%, #12B7A4), to(#0D2588));
  background-image: linear-gradient(to right, #0D2588 0%, #12B7A4 51%, #0D2588 100%);
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-block-button__link {
    font-size: 1.4rem;
    padding: 8px 15px;
  }
}
.w-editorarea .wp-block-button__link {
  display: block;
  padding-right: 50px;
  position: relative;
}
.w-editorarea .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  display: block;
  width: 1px;
  height: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.5);
}
.w-editorarea .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.w-editorarea .wp-block-button__link:hover {
  background-position: right center;
}
.w-editorarea .wp-block-button__link:hover::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.w-editorarea a {
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .w-editorarea .sp-gap0 {
    gap: 0 !important;
  }
}

/* ============================================
  固定ページ
============================================  */
/* ============================================
  製品情報
============================================  */
.p-product .w-editorarea {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-product .w-editorarea {
    margin-top: 50px;
  }
}
.p-product .w-editorarea h3 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-product .w-editorarea h3 {
    margin-top: 50px;
  }
}

/* ============================================
  記事
============================================  */
.single .w-editorarea h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h1 {
    font-size: 2.4rem;
  }
}
.single .w-editorarea ._date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.single .w-editorarea ._date-area ._category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 5px 1em;
  min-height: 25px;
  border-radius: 5px;
  background-color: #eee;
}
.single .w-editorarea ._date-area ._category.--event {
  color: #fff;
  background-color: var(--color-primary);
}
.single .w-editorarea ._date-area ._category.--business {
  background-color: var(--color-secondary);
}
.single .w-editorarea ._date-area ._category.--seminar {
  color: #fff;
  background-color: #3d4791;
}
.single .w-editorarea ._date-area ._category.--workshop {
  color: #fff;
  background-color: #589190;
}
.single .w-editorarea ._date-area ._category.--news {
  background-color: #FDDB2E;
}
.single .w-editorarea ._date-area ._category.--update {
  background-color: #eee;
}
.single .w-editorarea ._date-area ._category.--important {
  color: #fff;
  background-color: #CC0000;
}
.single .w-editorarea ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
}
.single .w-editorarea h2 {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 100px;
  padding: 10px 20px;
  background-color: #F2F2F2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h2 {
    font-size: 2rem;
  }
}
.single .w-editorarea ._date-area + h2 {
  margin-top: 0 !important;
}
.single .w-editorarea h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 50px;
  padding-left: 15px;
  border-left: solid 4px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h3 {
    font-size: 1.8rem;
  }
}
.single .w-editorarea .wp-block-image {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns .wp-block-image {
  margin: 0;
}
.single .prev-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
.single .prev-button .c-button {
  min-width: 270px;
}

/* ============================================
  WP-PageNavi
============================================  */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .larger {
  display: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  font-size: 1.6rem;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi .page {
  background-color: #fff;
  border: 2px solid #ccc;
}
.wp-pagenavi .page:hover {
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.wp-pagenavi .current {
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary) !important;
  font-weight: var(--font-weight-regular) !important;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 1.6rem;
  border: none;
  color: var(--color-primary);
  text-decoration: underline;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  text-decoration: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  margin: 0 15px;
}/*# sourceMappingURL=style.css.map */