@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");
/* ============================================
  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 {
  --vw: 1vw;
  --color-base: #333;
  --color-primary: #435BB3;
  --color-secondary: #ACDFDF;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
}

/* ============================================
  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: 160px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

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: #fff;
  overscroll-behavior-y: none;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
    padding-top: 60px;
  }
}
body.front {
  padding-top: 0;
}
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: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 80px;
  height: 120px;
  width: 100%;
  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;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1360px) {
  .l-header {
    padding: 0 4%;
  }
}
@media only screen and (max-width: 1100px) {
  .l-header {
    padding: 0 2%;
  }
}
@media only screen and (max-width: 1000px) {
  .l-header {
    height: 90px;
    padding: 0 6%;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px !important;
  }
}
.l-header .headerBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  background-color: #fff;
  height: 120px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.l-header .menuBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.l-header ._logo {
  position: relative;
  z-index: 102;
  width: 390px;
}
@media only screen and (max-width: 1300px) {
  .l-header ._logo {
    width: 28%;
  }
}
@media only screen and (max-width: 1000px) {
  .l-header ._logo {
    width: 390px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 240px;
  }
}
.l-header ._nav {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  height: 100%;
}
@media only screen and (max-width: 1000px) {
  .l-header ._nav {
    display: none;
  }
}
.l-header ._nav ._main {
  height: 50%;
  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.7rem;
  text-transform: uppercase;
  gap: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1200px) {
  .l-header ._nav ._main {
    gap: 1em;
  }
}
.l-header ._nav ._main ._item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
.l-header ._nav ._main ._item ._perent {
  position: relative;
  z-index: 102;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}
.l-header ._nav ._main ._item ._perent > a {
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.l-header ._nav ._main ._item ._perent > a:hover {
  color: var(--color-primary);
}
.l-header ._nav ._main ._item.--hasMenu ._perent > a {
  padding-right: 18px;
}
.l-header ._nav ._main ._item.--hasMenu ._perent > a::before, .l-header ._nav ._main ._item.--hasMenu ._perent > a::after {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #666;
  position: absolute;
  right: 0;
  top: 9px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._nav ._main ._item.--hasMenu ._perent > a::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-header ._nav ._main ._item.--hasMenu ._perent.--active > a::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.l-header ._nav ._main ._item ._menu {
  position: fixed;
  width: 100vw;
  top: 120px;
  left: 0;
  padding-top: 20px;
  padding-bottom: 60px;
  z-index: 100;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.l-header ._nav ._main ._item ._menu.--active {
  height: auto;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.l-header ._nav ._main ._item ._menu ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.l-header ._nav ._main ._item ._menu ._inner ._title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 320px;
  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 ._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 ._main ._item ._menu ._inner ._title ._ja {
  font-size: 2rem;
  font-weight: var(--font-weight-regular);
}
.l-header ._nav ._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 ._main ._item ._menu ._inner ._title a ._arrow {
  margin-top: 10px;
  position: relative;
  display: block;
  width: 54px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
.l-header ._nav ._main ._item ._menu ._inner ._title a ._arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 50%;
  left: 50%;
  translate: -50% -50%;
}
.l-header ._nav ._main ._item ._menu ._inner ._title a:hover ._arrow::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-header ._nav ._main ._item ._menu ._inner a._title {
  text-decoration: none;
}
.l-header ._nav ._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 ._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 #e6e6e6;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media only screen and (max-width: 1200px) {
  .l-header ._nav ._main ._item ._menu ._inner ._list ._item {
    font-size: 1.6rem;
  }
}
.l-header ._nav ._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 ._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 ._main ._item ._menu ._inner ._list ._item::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.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);
  -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 ._main ._item ._menu ._inner ._list ._item:hover::before {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-header ._nav ._main ._item ._menu ._inner ._list ._item:nth-child(3n) {
  margin-right: 0;
}
.l-header ._nav ._sub {
  position: relative;
  z-index: 102;
  height: 50%;
  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.5rem;
  gap: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 10px;
}
.l-header ._nav ._sub ._list {
  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.5rem;
  gap: 1.5em;
}
.l-header ._nav ._sub ._list ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header ._nav ._sub ._list ._item a {
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._nav ._sub ._list ._item a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background-image: url("../img/icon_arrow-right-min.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._nav ._sub ._list ._item a:hover {
  color: var(--color-primary);
}
.l-header ._nav ._sub ._list ._item a:hover::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-header ._nav ._sub ._contact {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  height: 50px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#5972D1), color-stop(51%, #0B2BA0), to(#5972D1));
  background-image: linear-gradient(to right, #5972D1 0%, #0B2BA0 51%, #5972D1 100%);
}
.l-header ._nav ._sub ._contact:hover {
  background-color: #0B2BA0;
  background-position: right center;
}
.l-header ._nav ._sub ._contact::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  -webkit-mask-image: url("../img/icon_mail.svg");
          mask-image: url("../img/icon_mail.svg");
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.header-active .l-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  height: 90px;
}
.header-active .l-header .headerBg {
  height: 90px;
}
.header-active .l-header ._nav {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
.header-active .l-header ._nav ._main {
  height: 100%;
  padding-bottom: 0;
}
.header-active .l-header ._nav ._main ._item ._perent {
  padding-bottom: 0;
}
.header-active .l-header ._nav ._main ._item ._menu {
  top: 90px;
}
.header-active .l-header ._nav ._sub {
  margin-top: 0;
}
.header-active .l-header ._nav ._sub ._list {
  display: none;
}
.header-active .l-header ._nav ._sub ._contact {
  width: 50px;
  height: 50px;
  padding: 0;
}
.header-active .l-header ._nav ._sub ._contact span {
  display: none;
}

.menuActive .l-header {
  background-color: rgb(255, 255, 255) !important;
  backdrop-filter: blur(0) !important;
}
.menuActive .l-header .headerBg, .menuActive .l-header .menuBg {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .is-open .l-header {
    height: 100px !important;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}
@media only screen and (max-width: 1000px) {
  .is-open .l-header::after {
    content: "";
    width: 88%;
    height: 1px;
    background-color: #777;
    position: fixed;
    top: 99px;
    left: 6%;
    z-index: 100;
  }
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  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;
  padding-top: 120px;
  padding-bottom: 60px;
}
.l-hamburger ._menu ._inner {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._menu ._inner {
    width: 88%;
  }
}
.l-hamburger ._menu ._inner ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
  font-size: 1.5rem;
}
.l-hamburger ._menu ._inner ._nav ._main ._item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-transform: uppercase;
  padding-bottom: 11px;
  padding-right: 30px;
  padding-top: 10px;
  position: relative;
  border-bottom: solid 1px #e6e6e6;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.l-hamburger ._menu ._inner ._nav ._main ._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-hamburger ._menu ._inner ._nav ._main ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-hamburger ._menu ._inner ._nav ._main ._item::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.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);
  -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-hamburger ._menu ._inner ._nav ._main ._item:hover::before {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-hamburger ._menu ._inner ._nav ._sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  font-size: 1.8rem;
}
.l-hamburger ._menu ._inner ._nav ._sub ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._menu ._inner ._nav ._sub ._item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background-image: url("../img/icon_arrow-right-min.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._menu ._inner ._nav ._sub ._item:hover {
  color: var(--color-primary);
}
.l-hamburger ._menu ._inner ._nav ._sub ._item:hover::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-hamburger ._menu ._inner ._nav ._contact {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  height: 50px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#5972D1), color-stop(51%, #0B2BA0), to(#5972D1));
  background-image: linear-gradient(to right, #5972D1 0%, #0B2BA0 51%, #5972D1 100%);
}
.l-hamburger ._menu ._inner ._nav ._contact:hover {
  background-color: #0B2BA0;
  background-position: right center;
}
.l-hamburger ._menu ._inner ._nav ._contact::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  -webkit-mask-image: url("../img/icon_mail.svg");
          mask-image: url("../img/icon_mail.svg");
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.l-hamburger ._line {
  position: fixed;
  right: 6%;
  top: 36px;
  width: 40px;
  height: 17px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line {
    top: 21px;
  }
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #777;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 8px;
}
.l-hamburger ._line ._item--3 {
  top: 16px;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  top: 14px;
}

/* 表示された時用のCSS */
.is-open ._menu {
  opacity: 1;
  visibility: visible;
}
.is-open ._line {
  top: 39px;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-open ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

main {
  overflow: hidden;
}

/* ============================================
  subvisual
============================================  */
.l-subvisual {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.l-subvisual .l-inner {
  position: relative;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-subvisual .l-inner {
    height: 250px;
  }
}
.l-subvisual .l-inner ._title {
  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;
  position: relative;
  z-index: 1;
}
.l-subvisual .l-inner ._title ._ja {
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .l-subvisual .l-inner ._title ._ja {
    font-size: 3rem;
  }
}
.l-subvisual .l-inner ._title ._en {
  color: var(--color-primary);
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-subvisual .l-inner ._title ._en {
    font-size: 1.6rem;
  }
}
.l-subvisual ._bgText {
  color: #E5EAFC;
  font-family: "Roboto", sans-serif;
  font-size: 20rem;
  font-weight: 100;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-subvisual ._bgText {
    font-size: 10rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 0;
  }
}
.l-subvisual .l-panNav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 15px 0;
}
.l-panNav ._list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-panNav ._list ._item {
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-panNav ._list ._item::after {
  content: "-";
  padding: 0 5px;
}
.l-panNav ._list ._item:last-child::after {
  display: none;
}
.l-panNav ._list ._item a {
  color: #333;
  text-decoration: none;
}
.l-panNav ._list ._item a:hover {
  text-decoration: underline;
}

/* ============================================
  子ページリスト
============================================  */
.l-child-page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 40px;
}
.l-child-page-list ._item {
  width: calc(50% - 20px);
  text-decoration: none;
  border-bottom: solid 1px #ccc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-child-page-list ._item {
    width: 100%;
  }
}
.l-child-page-list ._item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  -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;
}
.l-child-page-list ._item ._thumbnail {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
}
.l-child-page-list ._item ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-child-page-list ._item ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  padding: 20px 0;
  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: 20px;
}
.l-child-page-list ._item ._title ._arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: block;
  width: 54px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
.l-child-page-list ._item ._title ._arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 50%;
  left: 50%;
  translate: -50% -50%;
}
.l-child-page-list ._item:hover ._thumbnail {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.l-child-page-list ._item:hover ._thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.l-child-page-list ._item:hover ._arrow::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.l-child-page-list ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

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

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .l-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

._aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 767px) {
  ._aside {
    width: 100%;
  }
}

._main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

/* ============================================
  h
============================================  */
/* ============================================
  footer
============================================  */
.l-footer {
  position: relative;
  background-color: #eee;
  padding: 70px 0 45px;
}
.l-footer a {
  text-decoration: none;
}
.l-footer a:hover {
  text-decoration: underline !important;
}
.l-footer ._colWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8em;
}
@media screen and (max-width: 767px) {
  .l-footer ._colWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer ._company {
  width: 33.3333%;
}
@media screen and (max-width: 767px) {
  .l-footer ._company {
    width: 100%;
  }
}
.l-footer ._company ._logo {
  margin-bottom: 28px;
}
.l-footer ._company ._indent {
  margin-left: -0.6em;
}
.l-footer ._navWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 4em;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
.l-footer ._navWrap > ._col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer ._nav:not(:last-child) {
  margin-bottom: 2em;
}
.l-footer ._nav ._parent {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  text-decoration: none;
}
.l-footer ._nav ._child {
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  margin-top: 0.5em;
  padding-left: 1em;
}
.l-footer ._nav ._child li:not(:last-child) {
  margin-bottom: 1em;
}
.l-footer ._navArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  gap: 0.5em 2em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer ._navArea ._item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.875;
}
.l-footer ._copyright {
  color: #666;
  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(0, 0, 0, 0.8);
  cursor: pointer;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: rgba(67, 91, 179, 0.8) !important;
}
.l-pagetop:hover svg {
  fill: #000 !important;
}

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

/* ============================================
  text
============================================  */
.c-read {
  font-size: 2rem !important;
  font-weight: var(--font-weight-bold) !important;
}

/* ============================================
  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: var(--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
============================================  */
.c-button {
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 50px 20px 30px;
  border-radius: 9999px;
  width: 100%;
  max-width: 230px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 30px;
}
.c-button:hover {
  letter-spacing: 0.3rem;
}
.c-button:hover::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.c-button.--primary {
  color: #fff;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#5972D1), color-stop(51%, #0B2BA0), to(#5972D1));
  background-image: linear-gradient(to right, #5972D1 0%, #0B2BA0 51%, #5972D1 100%);
}
.c-button.--primary:hover {
  background-color: #0B2BA0;
  background-position: right center;
}
.c-button.--primary::after {
  background-color: #fff;
}
.c-button.--white {
  color: var(--color-primary);
  background-color: #fff;
}
.c-button.--white::after {
  background-color: var(--color-primary);
}

@-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;
  }
}
/* gradientBtn
------------------------- */
.c-gradientBtn {
  cursor: pointer;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 99999999px;
  -webkit-box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
          box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#71c9ce), color-stop(51%, #95e2e6), to(#71c9ce));
  background-image: linear-gradient(to right, #71c9ce 0%, #95e2e6 51%, #71c9ce 100%);
}
.c-gradientBtn:hover {
  background-color: #95e2e6;
  background-position: right center;
}

/* ============================================
  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: 350px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-gmap {
    height: 200px;
  }
}
.c-gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ============================================
  画像を100vw表示
============================================  */
.c-vw100 img {
  width: calc(var(--vw) * 100);
  max-width: none !important;
  -webkit-transform: translateX(-6%);
          transform: translateX(-6%);
}

/* ============================================
  共通
============================================  */
.f-h2 {
  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;
  margin-bottom: 40px;
}
.f-h2 ._en {
  font-family: "Roboto";
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .f-h2 ._en {
    font-size: 4rem;
  }
}
.f-h2 ._ja {
  font-size: 1.8rem;
  font-weight: var(--font-weight-regular);
}
.f-h2.--primary ._en {
  background: -webkit-linear-gradient(0deg, #229DE8, #1757BC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.f-h2.--white {
  color: #fff !important;
}

.f-read {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .f-read {
    font-size: 2.4rem;
  }
}

.f-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .f-text {
    font-size: 1.4rem;
  }
}

/* ============================================
  背景動画
============================================  */
.f-backgroundMovie {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
}
.f-backgroundMovie video {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
@media screen and (max-width: 767px) {
  .f-backgroundMovie video {
    width: 47.08vh;
    height: 212.4vw;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.is-loaded.active .f-backgroundMovie video {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* ============================================
  背景切り替え
============================================  */
.f-bgSwitch {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.f-bgSwitch.active {
  background-color: rgba(67, 91, 179, 0.9);
}

.f-contents {
  position: relative;
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
  margin-bottom: calc(60vh - 145px);
}
.f-mainvisual .l-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.f-mainvisual .l-inner ._copy {
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
.f-mainvisual .l-inner ._copy ._main {
  overflow: hidden;
  font-size: 11rem;
  color: #fff;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}
@media only screen and (max-width: 1000px) {
  .f-mainvisual .l-inner ._copy ._main {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual .l-inner ._copy ._main {
    font-size: 4rem;
  }
}
.f-mainvisual .l-inner ._copy ._main span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.f-mainvisual .l-inner ._copy ._sub {
  overflow: hidden;
  font-size: 3.3rem;
  color: #fff;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .l-inner ._copy ._sub {
    font-size: 1.6rem;
  }
}
.f-mainvisual .l-inner ._copy ._sub span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.scroll-down {
  position: absolute;
  right: 90px;
  bottom: 80px;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .scroll-down {
    right: 20px;
    bottom: 20px;
  }
}
.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;
}
.scroll-down .scroll-down-text {
  color: #fff;
  font-family: "Roboto";
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .scroll-down .scroll-down-text {
    font-size: 1.2rem;
  }
}
.scroll-down .circle-arrow {
  width: 120px;
  height: 120px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-inline: auto;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
@media screen and (max-width: 767px) {
  .scroll-down .circle-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
  }
}
.scroll-down .circle-arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-mask-image: url(../../page/front/img/icon-scroll-down-arrow.svg);
          mask-image: url(../../page/front/img/icon-scroll-down-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) {
  .scroll-down .circle-arrow::after {
    width: 18px;
    height: 16px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.is-loaded.active .f-mainvisual ._copy span {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}
.is-loaded.active .scroll-down {
  opacity: 1;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

/* ============================================
  お知らせ
============================================  */
.f-news {
  padding-bottom: 120px;
}
.f-news .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 130px;
}
@media only screen and (max-width: 1000px) {
  .f-news .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-news .f-h2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.f-news ._contents {
  width: 100%;
}
.f-news .c-button {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .f-news .c-button {
    margin: 0 auto;
  }
}

/* ============================================
  CTTとは
============================================  */
.f-about {
  padding-top: 100px;
  padding-bottom: calc(100px + 2.6vw);
  background-color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 1000px) {
  .f-about {
    padding-bottom: calc(100px + 7vw);
  }
}
.f-about .f-h2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.f-about .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px calc(8.85vw + 40px);
}
@media only screen and (max-width: 1000px) {
  .f-about .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-about ._imgArea {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1000px) {
  .f-about ._imgArea {
    width: calc(100% - 8.85vw);
    margin-right: 0;
    margin-left: auto;
  }
}
.f-about ._imgArea ._img {
  position: relative;
}
.f-about ._imgArea ._img .about_img_sub {
  position: absolute;
  bottom: -2.6vw;
  left: -8.85vw;
  width: 17.7vw;
  max-width: 340px;
  z-index: 2;
}
@media only screen and (min-width: 1920px) {
  .f-about ._imgArea ._img .about_img_sub {
    left: -170px;
    bottom: -50px;
  }
}
@media only screen and (max-width: 1000px) {
  .f-about ._imgArea ._img .about_img_sub {
    width: 50%;
    bottom: -7vw;
  }
}
.f-about ._imgArea ._img .about_img_sub02 {
  position: absolute;
  top: 1.6vw;
  left: -4.85vw;
  width: 10.7vw;
  max-width: 240px;
  z-index: 1;
}
@media only screen and (min-width: 1920px) {
  .f-about ._imgArea ._img .about_img_sub02 {
    left: -100px;
    top: 50px;
  }
}
@media only screen and (max-width: 1000px) {
  .f-about ._imgArea ._img .about_img_sub02 {
    width: 23%;
    top: -2vw;
  }
}
.f-about ._button {
  margin-top: 30px;
}

/* ============================================
  事業案内
============================================  */
.f-service {
  color: #fff;
  padding-top: 100px;
  padding-bottom: calc(100px + 2.6vw);
  background-color: rgba(67, 91, 179, 0.9);
}
.f-service ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .f-service ._list {
    -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;
  }
}
.f-service ._list ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}
.f-service ._list ._item ._thumb {
  position: relative;
}
.f-service ._list ._item ._thumb ._no {
  position: absolute;
  left: -0.25em;
  top: -0.5em;
  font-family: "Roboto";
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.f-service ._list ._item ._title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .f-service ._list ._item ._title {
    font-size: 2.2rem;
  }
}
.f-service ._list ._item:nth-child(1) {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.f-service ._list ._item:nth-child(2) {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .f-service ._list ._item:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._list ._item:nth-child(3) {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
@media screen and (max-width: 767px) {
  .f-service ._list ._item:nth-child(3) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._list ._item:nth-child(4) {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}
@media screen and (max-width: 767px) {
  .f-service ._list ._item:nth-child(4) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._list.is-active ._item {
  opacity: 1;
}
.f-service ._list.is-active ._item:nth-child(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.f-service ._list.is-active ._item:nth-child(2) {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media screen and (max-width: 767px) {
  .f-service ._list.is-active ._item:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._list.is-active ._item:nth-child(3) {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .f-service ._list.is-active ._item:nth-child(3) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._list.is-active ._item:nth-child(4) {
  -webkit-transform: translateY(-90px);
          transform: translateY(-90px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-service ._list.is-active ._item:nth-child(4) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-service ._button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ============================================
  事業所紹介
============================================  */
.f-office {
  background-color: #EFF2F4;
  padding-top: 100px;
  padding-bottom: 100px;
}
.f-office .l-inner .f-read span {
  color: var(--color-primary);
  font-size: 6rem;
  padding-right: 0.1em;
}
.f-office .l-inner ._button {
  margin-top: 40px;
}
.f-office ._officeSlideArea {
  margin-top: 50px;
  overflow: hidden;
}
.f-office ._officeSlideList ._item {
  position: relative;
  width: 700px;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideList ._item {
    width: 100%;
    max-width: 700px;
  }
}
.f-office ._officeSlideList ._item ._label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideList ._item ._label {
    top: 10px;
    left: 10px;
    font-size: 1.4rem;
  }
}
.f-office ._officeSlideList ._item ._button {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideList ._item ._button {
    right: 10px;
    bottom: 10px;
  }
}
.f-office ._officeSlideList ._item ._button .c-button {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideList ._item ._button .c-button {
    font-size: 1.4rem;
    padding: 10px 50px 10px 30px;
    width: auto;
  }
}
.f-office ._officeSlideBtnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.f-office ._officeSlideBtnList ._item {
  position: relative;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-align: center;
  width: calc(33.33% - 14px);
  padding: 0 20px;
  border: solid 1px var(--color-primary);
  border-radius: 9999px;
  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: #fff;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideBtnList ._item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 480px) {
  .f-office ._officeSlideBtnList ._item {
    width: 100%;
  }
}
.f-office ._officeSlideBtnList ._item:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.f-office ._officeSlideBtnList ._item::after {
  content: "";
  background-color: var(--color-primary);
  width: 0%;
  height: 5px;
  display: block;
  position: absolute;
  left: 15px;
  bottom: -1px;
  right: auto;
  top: auto;
  z-index: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideBtnList ._item::after {
    left: 10px;
  }
}
.f-office ._officeSlideBtnList ._item.swiper-slide-thumb-active {
  color: var(--color-primary);
  background-color: #ACDFDF;
}
.f-office ._officeSlideBtnList ._item.swiper-slide-thumb-active::after {
  -webkit-animation: progress-sp 5s linear forwards;
          animation: progress-sp 5s linear forwards;
}
@media screen and (max-width: 767px) {
  .f-office ._officeSlideBtnList ._item.swiper-slide-thumb-active::after {
    -webkit-animation: progress-sp 5s linear forwards;
            animation: progress-sp 5s linear forwards;
  }
}
.f-office ._officeSlideBtnList ._item p {
  font-size: 1.4rem;
  line-height: 1.4;
}

@-webkit-keyframes progress {
  0% {
    width: 0%;
  }
  to {
    width: calc(100% - 30px);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  to {
    width: calc(100% - 30px);
  }
}
@-webkit-keyframes progress-sp {
  0% {
    width: 0%;
  }
  to {
    width: calc(100% - 20px);
  }
}
@keyframes progress-sp {
  0% {
    width: 0%;
  }
  to {
    width: calc(100% - 20px);
  }
}
/* ============================================
  バナーエリア
============================================  */
.f-banner {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.9);
}
.f-banner .p-banner ._item {
  height: 250px;
}

/* ============================================
  サステナビリティ
============================================  */
.f-sustainability {
  background-image: url(../../page/front/img/sustainability_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 90px;
}
.f-sustainability ._contents {
  width: 750px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  padding: 80px 80px 50px;
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 1000px) {
  .f-sustainability ._contents {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .f-sustainability ._contents {
    padding: 40px 8%;
  }
}
.f-sustainability ._button {
  margin-top: 40px;
}

/* ============================================
  採用情報
============================================  */
.f-recruit {
  padding-top: 220px;
  padding-bottom: 200px;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-recruit {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.f-recruit ._inner {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-recruit ._inner {
    width: 88%;
  }
}
.f-recruit ._inner ._contents {
  width: 550px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-recruit ._inner ._contents {
    width: 100%;
    padding-bottom: calc(40px + 60vw);
  }
}
.f-recruit ._inner ._contents::before {
  content: "";
  position: absolute;
  background-image: url(../../page/front/img/recruit_bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -265px;
  right: calc(100% + 40px);
  width: 430px;
  height: 532px;
}
@media screen and (max-width: 767px) {
  .f-recruit ._inner ._contents::before {
    width: 35%;
    height: 38vw;
    top: auto;
    bottom: 21vw;
    left: 0;
    right: auto;
  }
}
.f-recruit ._inner ._contents::after {
  content: "";
  position: absolute;
  background-image: url(../../page/front/img/recruit_bg02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -130px;
  left: calc(100% - 125px);
  width: 1114px;
  height: 950px;
}
@media screen and (max-width: 767px) {
  .f-recruit ._inner ._contents::after {
    width: 70%;
    height: 52vw;
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
  }
}
.f-recruit ._inner ._contents ._button {
  margin-top: 45px;
}

/* ============================================
  共通
============================================  */
.p-catchcopy {
  width: calc(var(--vw) * 94);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.p-catchcopy p {
  color: #fff;
  font-size: 4rem !important;
  font-weight: var(--font-weight-bold) !important;
  line-height: 1.5 !important;
  position: absolute;
  top: 80px;
  left: 0;
  padding: 0 60px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-catchcopy p {
    font-size: 2.4rem !important;
    top: 40px;
    padding: 0 30px;
  }
}
.p-catchcopy img {
  width: 100%;
  height: 600px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-catchcopy img {
    height: 300px !important;
  }
}

.p-anchor-list {
  margin: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
}
.p-anchor-list li {
  width: calc((100% - 60px) / 3);
}
@media only screen and (max-width: 1000px) {
  .p-anchor-list li {
    width: 100%;
  }
}
.p-anchor-list li a {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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 #e6e6e6;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
.p-anchor-list li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
  mask-image: url(../img/icon_btn_arrow.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);
  -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: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-anchor-list li a::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;
}
.p-anchor-list li a:hover::before {
  top: calc(50% - 3px);
}
.p-anchor-list li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* ============================================
  事業所紹介
============================================  */
.p-company-map {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
.p-company-map a:hover .cls-4 {
  fill: #fff;
}
.p-company-map a:hover .cls-5 {
  fill: #fff;
}
.p-company-map a:hover .cls-8 {
  fill: #435bb3;
  stroke: #435bb3;
}

.p-company-block-wrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .p-company-block-wrap > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-company-block {
  width: calc(50% - 20px);
  padding: 35px 40px;
  background-color: #EFF2F4;
}
@media only screen and (max-width: 767px) {
  .p-company-block {
    width: 100%;
  }
}
.p-company-block > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  height: 100%;
}
.p-company-block .wp-block-columns {
  margin-bottom: 0 !important;
}
.p-company-block h3 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .p-company-block h3 {
    font-size: 2rem;
  }
}
.p-company-block .wp-block-buttons {
  height: 100%;
}
.p-company-block .wp-block-button {
  width: 100%;
  height: 100%;
}
.p-company-block .wp-block-button a {
  min-width: auto !important;
}
@media only screen and (max-width: 1000px) {
  .p-company-block .wp-block-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ============================================
  事業所詳細
============================================  */
.p-accessarea h4 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-bottom: 15px;
}
.p-accessarea p {
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-accessarea ul {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 40px;
}
.p-accessarea ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.p-accessarea ul li::before {
  content: "・";
}

.p-border-box {
  padding: 50px;
  border: solid 1px #ccc !important;
}

.p-bt-none {
  border-top: none !important;
  padding-top: 0 !important;
}

.p-logo-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 40px 60px;
  margin: 40px auto 0;
}
.p-logo-list > div {
  -webkit-box-flex: 1 !important;
      -ms-flex: auto !important;
          flex: auto !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-logo-list > div > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1 !important;
      -ms-flex: auto !important;
          flex: auto !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-logo-list > div p {
  margin-bottom: 10px !important;
}
.p-logo-list > div figure {
  margin: 0 0 0 0 !important;
}
.p-logo-list > div img {
  max-height: 150px;
  width: auto;
}

/* ============================================
  一目でわかるCTT
============================================  */
.p-data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.p-data-list > ._item {
  width: calc(33.33% - 14px);
  padding: 20px 20px 40px;
  border-radius: 5px;
  background-color: #EFF2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1000px) {
  .p-data-list > ._item {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-data-list > ._item {
    padding: 20px 20px 40px;
  }
}
.p-data-list > ._item.--col2 {
  width: calc(50% - 10px);
}
.p-data-list > ._item > ._title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
  padding: 10px 30px;
  margin-bottom: 40px;
  border-radius: 9999px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-data-list > ._item > ._title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.p-data-list > ._item > ._title > span {
  font-size: 66.66%;
}
.p-data-list > ._item ._contents {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-data-list > ._item ._contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-data-list > ._item ._contents ._icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-data-list > ._item ._contents ._icon img {
  height: 100%;
}
.p-data-list > ._item ._contents ._textarea ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
}
.p-data-list > ._item ._contents ._textarea ._text {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  margin-top: 0;
}
.p-data-list > ._item ._contents ._textarea ._text ._count {
  color: var(--color-primary);
  font-size: 7rem;
  font-weight: var(--font-weight-bold);
}
.p-data-list > ._item ._contents ._textarea ._text ._count.--small {
  font-size: 4rem;
  line-height: 1.5;
}
.p-data-list > ._item ._contents ._textarea ._text ._count.--small2 {
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-data-list > ._item ._contents.--age {
  margin-top: 40px;
  gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .p-data-list > ._item ._contents.--age {
    margin-top: 0;
  }
}
.p-data-list > ._item ._contents.--age ._icon {
  height: 200px;
}
.p-data-list > ._item ._contents.--age ._title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-data-list > ._item ._contents.--age ._title {
    font-size: 1.8rem;
  }
}
.p-data-list > ._item ._contents.--age ._text {
  font-size: 3rem;
}
.p-data-list > ._item ._note {
  font-size: 1.4rem;
}
.p-data-list > ._item .doughnut {
  height: 300px;
}
.p-data-list > ._item .ageBar {
  width: 248px;
  height: 300px;
}

/* ============================================
  お知らせ一覧
============================================  */
.news .p-newsList ._card {
  -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);
}

.p-newsList ._card {
  color: #333;
  background-color: #333;
  display: block;
  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;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-newsList ._card {
    padding: 20px 8%;
  }
}
.p-newsList ._card ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
}
.p-newsList ._card ._date span {
  display: block;
  font-size: 4rem;
  text-align: center;
  margin-top: 5px;
}
.p-newsList ._card ._title-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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 40px;
}
.p-newsList ._card ._title-area ._category {
  color: #333;
  background-color: #eee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  width: 120px;
  padding: 9px;
  min-height: 30px;
  border-radius: 9999px;
  background-color: #eee;
}
.p-newsList ._card ._title-area ._category.--important {
  color: #fff;
  background-color: #CC0000;
}
.p-newsList ._card ._title-area ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.875;
}
.p-newsList a._card:hover {
  padding: 20px 20px 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-newsList a._card:hover {
    padding: 20px 4% 20px 12%;
  }
}

/* ============================================
  スペシャルコンテンツ
============================================  */
.p-specialContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 1000px) {
  .p-specialContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-specialContents ._item {
  text-decoration: none;
  gap: 30px;
  position: relative;
  overflow: hidden;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .p-specialContents ._item {
    gap: 10px;
  }
}
.p-specialContents ._item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.p-specialContents ._item:hover::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-specialContents ._item ._title {
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .p-specialContents ._item ._title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-specialContents ._item ._title svg {
    width: 50px;
    height: 50px;
  }
}
.p-specialContents ._item ._text {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-specialContents ._item ._text {
    font-size: 1.8rem;
  }
}
.p-specialContents ._item.--data {
  color: #fff;
  background-color: var(--color-primary);
}
.p-specialContents ._item.--data::after {
  background-color: #fff;
}
.p-specialContents ._item.--column {
  color: var(--color-primary);
  background-color: var(--color-secondary);
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.p-specialContents ._item.--column::after {
  background-color: var(--color-primary);
}
.p-specialContents ._item.--job {
  color: var(--color-primary);
  border: solid 2px var(--color-primary);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  height: 200px;
}
.p-specialContents ._item.--job::after {
  background-color: var(--color-primary);
}
.p-specialContents ._item::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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;
  bottom: 25px;
  right: 25px;
}
.p-specialContents ._item:hover::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.p-specialContents .--data, .p-specialContents .--column {
  width: calc(50% - 20px);
  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;
}
@media only screen and (max-width: 1000px) {
  .p-specialContents .--data, .p-specialContents .--column {
    width: 100%;
    height: 250px;
  }
}
.p-specialContents .--job {
  width: 100%;
  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 only screen and (max-width: 1000px) {
  .p-specialContents .--job {
    height: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ============================================
  採用情報バナー
============================================  */
.p-recruitBanner {
  padding: 80px 0;
  background-image: url(../../page/recruit/bg_recruit_banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 100px;
  width: calc(var(--vw) * 100);
  -webkit-transform: translateX(-6%);
          transform: translateX(-6%);
}
.p-recruitBanner .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 1000px) {
  .p-recruitBanner .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruitBanner ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 200px;
  border-radius: 10px;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  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;
  padding: 0 55px 0 45px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .p-recruitBanner ._item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitBanner ._item {
    font-size: 2.4rem;
  }
}
.p-recruitBanner ._item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.p-recruitBanner ._item:hover::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-recruitBanner ._item ._arrow {
  margin-top: 10px;
  position: relative;
  display: block;
  width: 54px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
.p-recruitBanner ._item ._arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-recruitBanner ._item.--requirements {
  background-color: #fff;
  border: solid 1px var(--color-primary);
}
.p-recruitBanner ._item.--requirements ._arrow {
  background-color: var(--color-primary);
}
.p-recruitBanner ._item.--requirements ._arrow::after {
  background-color: #fff;
}
.p-recruitBanner ._item.--entry {
  color: #fff;
  background-color: #F58220;
}
.p-recruitBanner ._item.--entry ._arrow {
  background-color: #fff;
}
.p-recruitBanner ._item.--entry ._arrow::after {
  background-color: #F58220;
}
.p-recruitBanner ._item:hover ._arrow::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}

.page.interview .p-recruitBanner,
.page.description .p-recruitBanner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ============================================
  インタビュー一覧
============================================  */
.p-interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.p-interview-list ._item {
  width: calc(33.33% - 27px);
  border-bottom: solid 1px #ccc;
  text-decoration: none;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .p-interview-list ._item {
    width: 100%;
  }
}
.p-interview-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;
}
.p-interview-list ._item ._thumbnail {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.p-interview-list ._item ._thumbnail img {
  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-interview-list ._item ._thumbnail ._job {
  font-size: 1.4rem;
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 5px;
  background-color: #fff;
  padding: 3px 5px;
  min-width: 112px;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-interview-list ._item ._inner {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.p-interview-list ._item ._inner ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-top: 0;
}
.p-interview-list ._item ._inner ._office {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  margin-top: 0;
}
.p-interview-list ._item ._inner ._name {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  margin-top: 0;
  padding-right: 74px;
}
.p-interview-list ._item ._inner ._arrow {
  position: absolute;
  bottom: 18px;
  right: 10px;
  width: 54px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
.p-interview-list ._item ._inner ._arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-interview-list ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.p-interview-list ._item:hover ._thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-interview-list ._item:hover ._thumbnail ._job {
  color: #fff;
  background-color: var(--color-primary);
}
.p-interview-list ._item:hover ._arrow::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}

/* ============================================
  インタビュー詳細
============================================  */
.p-interview_subvisual {
  position: relative;
}
.p-interview_subvisual.--individual ._thumbnail {
  margin-left: 6%;
}
.p-interview_subvisual.--individual ._contents {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 60px 6% 60px 3%;
  border-radius: 0 10px 10px 0;
}
.p-interview_subvisual.--dialogue ._contents {
  right: 0;
  bottom: 0;
  padding: 35px 3% 0 6%;
  border-radius: 10px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual.--dialogue ._contents {
    border-radius: 0 10px 10px 0;
    padding: 40px 6% 40px 3% !important;
  }
}
.p-interview_subvisual ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview_subvisual ._contents {
  width: 94%;
  max-width: 550px;
  position: absolute;
  background-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: 20px;
}
@media only screen and (max-width: 1000px) {
  .p-interview_subvisual ._contents {
    padding: 40px 6% 40px 3%;
  }
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents {
    position: static;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16);
  }
}
.p-interview_subvisual ._contents ._main {
  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-interview_subvisual ._contents ._main ._title {
  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;
}
.p-interview_subvisual ._contents ._main ._title ._parent {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._main ._title ._parent {
    font-size: 2.4rem;
  }
}
.p-interview_subvisual ._contents ._main ._title ._format {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._main ._title ._format {
    font-size: 1.2rem;
  }
}
.p-interview_subvisual ._contents ._main ._catchcopy {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
@media only screen and (max-width: 1000px) {
  .p-interview_subvisual ._contents ._main ._catchcopy {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._main ._catchcopy {
    font-size: 2rem;
  }
}
.p-interview_subvisual ._contents ._main ._name {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
}
@media only screen and (max-width: 1000px) {
  .p-interview_subvisual ._contents ._main ._name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._main ._name {
    font-size: 1.6rem;
  }
}
.p-interview_subvisual ._contents ._sub {
  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;
  position: relative;
}
.p-interview_subvisual ._contents ._sub::before {
  content: "";
  width: 70px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}
.p-interview_subvisual ._contents ._sub ._office {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}
@media only screen and (max-width: 1000px) {
  .p-interview_subvisual ._contents ._sub ._office {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._sub ._office {
    font-size: 1.4rem;
  }
}
.p-interview_subvisual ._contents ._sub ._job {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  padding: 5px;
  border: solid 1px #ccc;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._sub ._job {
    font-size: 1.2rem;
  }
}
.p-interview_subvisual ._contents ._sub ._year {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-interview_subvisual ._contents ._sub ._year {
    font-size: 1.2rem;
  }
}

.single.interview .l-panNav {
  padding-top: 30px;
  padding-bottom: 50px;
}

.p-interview ._introductory {
  font-size: 1.8rem;
  line-height: 1.875;
  padding: 40px 50px;
  border-radius: 10px;
  background-color: #EFF2F4;
}
@media screen and (max-width: 767px) {
  .p-interview ._introductory {
    font-size: 1.8rem;
    padding: 20px 30px;
  }
}
.p-interview ._interlocutor {
  margin-top: 50px;
  margin-bottom: 100px;
}
.p-interview ._interlocutor ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 160px;
}
@media screen and (max-width: 767px) {
  .p-interview ._interlocutor ._list {
    -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: 60px;
  }
}
.p-interview ._interlocutor ._list ._item {
  width: 200px;
}
.p-interview ._interlocutor ._list ._item ._img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 30px;
  overflow: hidden;
}
.p-interview ._interlocutor ._list ._item ._img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview ._interlocutor ._list ._item ._name {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-interview ._interlocutor ._list ._item ._text {
  font-size: 1.4rem;
  line-height: 1.875;
}
.p-interview ._faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}
.p-interview ._faq ._group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1000px) {
  .p-interview ._faq ._group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-interview ._faq ._group:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 1000px) {
  .p-interview ._faq ._group:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-interview ._faq ._group > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-interview ._faq ._group ._img img {
  margin: 0 auto;
}
.p-interview ._faq ._group ._title {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-interview ._faq ._group ._title {
    font-size: 2rem;
  }
}
.p-interview ._faq ._group ._block {
  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-interview ._faq ._group ._block:not(:last-child) {
  margin-bottom: 50px;
}
.p-interview ._faq ._group ._question {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  padding-left: 3em;
  line-height: 1.875;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-interview ._faq ._group ._question {
    font-size: 1.8rem;
  }
}
.p-interview ._faq ._group ._question::before {
  content: "";
  width: 2em;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0.9em;
}
.p-interview ._faq ._group ._answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  font-size: 1.6rem;
  line-height: 1.875;
}
.p-interview ._faq ._group ._answer ._name {
  width: 4em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: var(--font-weight-bold);
}
.p-interview ._lastimg {
  margin-top: 50px;
}
.p-interview ._lastimg img {
  width: 100%;
}

/* ============================================
  カテゴリー一覧
============================================  */
.l-search-category {
  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;
  margin-bottom: 40px;
}
.l-search-category.--format {
  margin-bottom: 100px;
}
.l-search-category ._block {
  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-search-category ._block ._title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
.l-search-category ._block ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.l-search-category ._block ._list label {
  width: calc(25% - 8px);
}
@media screen and (max-width: 767px) {
  .l-search-category ._block ._list label {
    width: calc(50% - 5px);
  }
}
.l-search-category ._block ._list label input[type=checkbox] {
  display: none;
}
.l-search-category ._block ._list label 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;
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 20px;
  border: solid 1px var(--color-primary);
  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;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .l-search-category ._block ._list label span {
    font-size: 1.2rem;
  }
}
.l-search-category ._block ._list label span:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.l-search-category ._block ._list label input[type=checkbox]:checked + span {
  color: #fff;
  background-color: var(--color-primary);
}
.l-search-category ._block ._list a._item {
  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: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 20px;
  width: calc(25% - 8px);
  border: solid 1px var(--color-primary);
  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;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .l-search-category ._block ._list a._item {
    font-size: 1.2rem;
    width: calc(50% - 5px);
  }
}
.l-search-category ._block ._list a._item:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.l-search-category ._block ._list a._item.current {
  color: #fff;
  background-color: var(--color-primary);
}

.page.interview .l-search-category {
  margin-top: 100px;
  margin-bottom: 0;
}

.page.description .l-search-category {
  margin-bottom: 0;
}

.l-column .l-search-category ._list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-column .l-search-category ._list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-column .l-search-category ._list label {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-column .l-search-category ._list label {
    width: calc(50% - 5px);
  }
}

/* ============================================
  タンクターミナル事業のいろは
============================================  */
.p-column-list {
  margin: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
}
.p-column-list li {
  width: calc((100% - 60px) / 3);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .p-column-list li {
    width: 100%;
  }
}
.p-column-list li code {
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.p-column-list li a {
  width: 100%;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  padding-bottom: 21px;
  padding-top: 20px;
  padding-left: 50px;
  position: relative;
  border-bottom: solid 1px #e6e6e6;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
.p-column-list li a::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;
}
.p-column-list li a:hover::before {
  top: calc(50% - 3px);
}
.p-column-list li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.p-anchor-box_wrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.p-anchor-box_wrap > div > .p-anchor-box {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 1000px) {
  .p-anchor-box_wrap > div > .p-anchor-box {
    width: 100%;
  }
}

.p-anchor-box {
  padding: 30px 40px 40px 40px;
  background-color: #EFF2F4;
  margin-top: 20px;
}
.p-anchor-box:nth-child(even) {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media only screen and (max-width: 1000px) {
  .p-anchor-box:nth-child(even) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-anchor-box h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--color-primary);
  margin-bottom: 20px;
}
.p-anchor-box h3 code {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.p-tips {
  color: #fff;
  background-color: var(--color-primary);
  padding: 40px;
  margin-top: 40px;
}
.p-tips ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.p-tips ._title::before, .p-tips ._title::after {
  content: "";
  display: block;
  width: 3px;
  height: 27px;
  background-color: #fff;
}
.p-tips ._title::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.p-tips ._title::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

/* ============================================
  お問い合わせ
============================================  */
.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-top: 1rem;
  margin-right: 3rem;
  padding: 0;
  border-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 0;
    margin-right: 0;
  }
}
.p-contact > ._list > ._title > p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  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: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title > p {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    font-size: 1.4rem;
  }
}
.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;
  width: 4.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title .hissu,
  .p-contact > ._list > ._title .ninni {
    font-size: 1.2rem;
  }
}
.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;
  border-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input {
    width: 100%;
  }
}
.p-contact > ._list ._input.select-wrap {
  position: relative;
}
.p-contact > ._list ._input.select-wrap::after {
  content: "";
  position: absolute;
  left: 31rem;
  top: 2.3rem;
  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::after {
    right: 2rem;
  }
}
.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 ._text {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._text {
    text-align: left;
  }
}
.p-contact ._agree ._privacy-link {
  text-align: center;
}
.p-contact ._agree ._privacy-link a {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact ._agree ._privacy-link a {
    font-size: 1.4rem;
  }
}
.p-contact ._agree ._privacy-link a::after {
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background-image: url(../img/icon_blank.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -2.7rem;
  top: calc(50% - 0.75rem);
}
.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;
  height: 9rem;
  background-color: #E5EAFC;
}
.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;
  }
}
.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;
}
.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;
}
.p-contact ._recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.4rem auto 0;
}
.p-contact ._submit {
  margin-top: 3.4rem;
}
.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: 2rem;
    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-description-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: 40px;
}
.p-description-list ._item {
  color: #333;
  display: block;
  padding: 20px 30px;
  background-color: #fff;
  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;
  gap: 10px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -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);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-description-list ._item {
    padding: 20px 30px 50px;
  }
}
.p-description-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;
}
.p-description-list ._item ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-description-list ._item ._title {
    font-size: 1.8rem;
  }
}
.p-description-list ._item ._category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p-description-list ._item ._category li {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 9999px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
}
.p-description-list ._item ._arrow {
  position: absolute;
  bottom: calc(50% - 14px);
  right: 10px;
  width: 54px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-description-list ._item ._arrow {
    bottom: 10px;
  }
}
.p-description-list ._item ._arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-description-list ._item:hover {
  padding: 20px 20px 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-description-list ._item:hover {
    padding: 20px 4% 20px 12%;
  }
}
.p-description-list ._item:hover ._arrow::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}

/* ============================================
  募集要項詳細
============================================  */
.single-description .l-subvisual .l-inner ._title ._en {
  padding: 10px 30px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  .single-description .l-subvisual .l-inner ._title ._en {
    font-size: 1.6rem;
    padding: 5px 20px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ============================================
  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-cap {
  font-size: 1.5rem;
}

.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-inlineblock {
  display: inline-block;
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank_w.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;
}

/* ============================================
  name
============================================  */
/* ============================================
  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__in {
  overflow: hidden;
  /* 上のボーダー */
  /* 左のボーダー */
}
.borderBox__in::before, .borderBox__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in::before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in:hover::before {
  right: 0;
}
.borderBox__in::after {
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in:hover::after {
  top: 0;
}
.borderBox__in__in {
  /* 下のボーダー */
  /* 右のボーダー */
}
.borderBox__in__in::before, .borderBox__in__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in__in::before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in__in:hover::before {
  left: 0;
}
.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-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -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-active {
  -webkit-animation-name: fade-right;
          animation-name: fade-right;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -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;
  }
}
/* fadeLeft
------------------------- */
.a-fadeLeft {
  opacity: 0;
}
.a-fadeLeft.is-active {
  -webkit-animation-name: fade-Left;
          animation-name: fade-Left;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -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-Left {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-Left {
  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: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.a-curtain::after {
  background-color: #404040;
  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-active::after {
  left: 100%;
  width: 100%;
}
.a-curtain > div, .a-curtain > img {
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}
.a-curtain.is-active > div, .a-curtain.is-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-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* hideTxt
------------------------- */
.a-hideTxt {
  overflow: hidden;
}
.a-hideTxt._item {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.a-hideTxt.is-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-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::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;
  }
}
/* ============================================
  swiper
============================================  */
/* ============================================
  共通
============================================  */
.w-editorarea {
  width: 88%;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    width: 88%;
  }
}
.w-editorarea:has(.p-recruitBanner) {
  padding-bottom: 0;
}
.w-editorarea hr {
  margin: 80px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.w-editorarea p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.875;
  margin-top: 1em;
}
.w-editorarea p:first-child {
  margin-top: 0;
}
.w-editorarea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: dashed 1px #ccc;
}
.w-editorarea dl dt {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  width: 240px;
  padding: 20px 0;
  border-top: dashed 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dt {
    width: 100%;
    padding-bottom: 10px;
  }
}
.w-editorarea dl dd {
  font-size: 1.8rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.875;
  width: calc(100% - 240px);
  padding: 20px 0;
  border-top: dotted 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dd {
    width: 100%;
    border-top: 0;
    padding-top: 0;
  }
}
.w-editorarea .wp-block-button .wp-block-button__link {
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 70px 20px 30px;
  border-radius: 9999px;
  min-width: 230px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#5972D1), color-stop(51%, #0B2BA0), to(#5972D1));
  background-image: linear-gradient(to right, #5972D1 0%, #0B2BA0 51%, #5972D1 100%);
}
.w-editorarea .wp-block-button .wp-block-button__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url(../img/icon_btn_arrow.svg);
          mask-image: url(../img/icon_btn_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -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: 30px;
  background-color: #fff;
}
.w-editorarea .wp-block-button .wp-block-button__link:hover {
  background-color: #0B2BA0;
  background-position: right center;
}
.w-editorarea .wp-block-button .wp-block-button__link:hover::after {
  -webkit-animation: arrow 0.5s;
          animation: arrow 0.5s;
}
.w-editorarea .wp-block-button.--wh .wp-block-button__link {
  color: var(--color-primary);
  background-image: none;
  background-color: #fff;
}
.w-editorarea .wp-block-button.--wh .wp-block-button__link::after {
  background-color: var(--color-primary);
}
.w-editorarea .wp-block-button.--blank .wp-block-button__link::after {
  height: 16px;
  -webkit-mask-image: url(../img/icon_blank.svg);
          mask-image: url(../img/icon_blank.svg);
}
.w-editorarea a {
  color: var(--color-primary);
}
@media only screen and (max-width: 781px) {
  .w-editorarea .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
  }
}

/* ============================================
  固定ページ
============================================  */
.page .w-editorarea h2 {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-bottom: 40px;
  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: 0.5em;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .page .w-editorarea h2 {
    font-size: 2.4rem;
  }
}
.page .w-editorarea h2::before, .page .w-editorarea h2::after {
  content: "";
  width: 50px;
  border-top: double 3px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .page .w-editorarea h2::before, .page .w-editorarea h2::after {
    width: 25px;
  }
}

/* ============================================
  記事
============================================  */
.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;
  color: #333;
  background-color: #eee;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  width: 120px;
  padding: 9px;
  min-height: 30px;
  border-radius: 9999px;
}
.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-medium);
  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 .w-editorarea ul, .single .w-editorarea ol {
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 35px;
}
.single .w-editorarea ul > li {
  list-style: disc;
}
.single .w-editorarea ol > li {
  list-style: decimal;
}

/* ============================================
  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;
  margin: 0 15px;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */