@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..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");
/* ============================================
  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)) {
  -webkit-clip-path: inset(50%) !important;
          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 {
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
  --header-height-open: 100px;
}

/* ============================================
  base
============================================  */
html {
  font-size: 62.5%; /* 62.5%を指定すると「1.0 rem = 10px」 */
  -webkit-text-size-adjust: 100%;
  overflow: auto;
}

html.fz_sm {
  font-size: 56.25%;
}

html.fz_md {
  font-size: 62.5%;
}

html.fz_lg {
  font-size: 68.75%;
}

body {
  width: 100%;
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    overflow-x: none;
  }
}
body.is-open {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

body:not(.front) {
  padding-top: 140px;
}
@media only screen and (max-width: 999px) {
  body:not(.front) {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  body:not(.front) {
    padding-top: 60px;
  }
}

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 (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ============================================
  header
============================================  */
.l-header {
  height: 140px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 999px) {
  .l-header {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header ._option {
  height: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 40px;
}
@media only screen and (min-width: 1321px) {
  .l-header ._option {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1321px) and (max-width: 767px) {
  .l-header ._option {
    width: 88%;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1320px) {
  .l-header ._option {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 999px) {
  .l-header ._option {
    display: none;
  }
}
.l-header ._option ._fontSize {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.l-header ._option ._fontSize ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.l-header ._option ._fontSize ._list ._item {
  display: block;
  border-radius: 5px;
  background-color: #eee;
  padding: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
}
@media (any-hover: hover) {
  .l-header ._option ._fontSize ._list ._item:hover {
    color: #fff;
    background-color: #ED1C22;
  }
}
.l-header ._option ._fontSize ._list ._item.is_active {
  color: #fff;
  background-color: #ED1C22;
}
.l-header ._option ._search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header ._option ._search ._bar {
  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; /*アイコン、テキストボックスを横方向の中心に*/
  height: 30px;
  width: 200px;
  border-bottom: solid 1px #ccc;
}
.l-header ._option ._search ._bar ._icon { /*アイコンに一定のスペースを設ける*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 17px;
  width: 17px;
  background-image: url(../img/icon_search.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-header ._option ._search ._bar input {
  color: #333;
  font-size: 1.6rem;
  width: 100%; /*flexの中で100%広げる*/
  background-color: #fff;
  border: none; /*枠線非表示*/
  outline: none; /*フォーカス時の枠線非表示*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .l-header ._option ._search ._bar {
    font-size: 1.4rem;
  }
}
.l-header ._inner {
  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;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  height: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 1321px) {
  .l-header ._inner {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1321px) and (max-width: 767px) {
  .l-header ._inner {
    width: 88%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .l-header ._inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._inner {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
    height: 60px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-header ._inner {
    width: 88%;
  }
}
.l-header ._inner ._logo {
  width: 330px;
}
@media screen and (max-width: 767px) {
  .l-header ._inner ._logo {
    width: 60%;
    max-width: 330px;
  }
}
.l-header ._inner ._logo img {
  mix-blend-mode: multiply;
}
.l-header ._inner ._navArea {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 999px) {
  .l-header ._inner ._navArea {
    display: none;
  }
}
.l-header ._inner ._navArea ._nav {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  font-size: 1.6rem;
}
.l-header ._inner ._navArea ._nav > ._item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 70px;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.l-header ._inner ._navArea ._nav > ._item > a {
  color: #777;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  position: relative;
}
.l-header ._inner ._navArea ._nav > ._item > a::before {
  position: absolute;
  top: calc(50% - 0.5em);
  left: -1.5em;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  font-size: 0.8rem;
  background-color: #ED1C22;
  border-radius: 50%;
  display: none;
}
@media (any-hover: hover) {
  .l-header ._inner ._navArea ._nav > ._item > a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ED1C22;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
@media (any-hover: hover) {
  .l-header ._inner ._navArea ._nav > ._item > a:hover::after {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-header ._inner ._navArea .c-button {
    min-width: auto;
    padding: 1rem 1.5rem 1rem 25px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-header ._inner ._navArea .c-button::before {
    width: 8rem;
    height: 6rem;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-header ._inner ._navArea .c-button ._frame ._mask {
    display: none;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-header ._inner ._navArea .c-button ._frame ._deco {
    padding-left: 5px;
    border-left: 0;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-header ._inner ._navArea .c-button ._frame ._deco ._decoInner {
    right: -7px;
  }
}

.header-active .l-header {
  height: 70px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.9);
}
.header-active ._option {
  height: 0;
  opacity: 0;
}

.navHover {
  position: fixed;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
  top: 140px;
  left: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #eee;
  padding: 3rem 0;
}
.navHover.active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.navHover ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 3em;
}
@media only screen and (min-width: 1321px) {
  .navHover ._contents {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1321px) and (max-width: 767px) {
  .navHover ._contents {
    width: 88%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  .navHover ._contents {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .navHover ._contents {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .navHover ._contents {
    width: 88%;
  }
}
.navHover ._contents ._parent {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 3em;
  height: 3rem;
  border-right: solid 1px #999;
}
.navHover ._contents ._parent a {
  color: #333;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  position: relative;
}
@media (any-hover: hover) {
  .navHover ._contents ._parent a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ED1C22;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .navHover ._contents ._parent a:hover::before {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
  }
}
.navHover ._contents ._child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 3em;
  -webkit-box-align: 30px;
      -ms-flex-align: 30px;
          align-items: 30px;
}
.navHover ._contents ._child ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3rem;
}
.navHover ._contents ._child ._item a {
  color: #333;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  position: relative;
}
@media (any-hover: hover) {
  .navHover ._contents ._child ._item a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ED1C22;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
@media (any-hover: hover) {
  .navHover ._contents ._child ._item a:hover::before {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
  }
}

.header-active .l-header {
  height: 70px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
  .header-active .l-header {
    height: 60px;
  }
}
.header-active ._option {
  height: 0;
  opacity: 0;
}
.header-active .navHover {
  top: 70px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(238, 238, 238, 0.9);
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media only screen and (max-width: 999px) {
  .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: rgb(255, 255, 255);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
  opacity: 0;
  padding-top: var(--header-height-open);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hamburger ._menu ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3em;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .l-hamburger ._menu ._inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger ._menu ._inner {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) 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: 1.5em;
}
.l-hamburger ._menu ._inner ._nav ._item {
  display: block;
  color: #777;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  width: 50%;
  position: relative;
  padding-left: 4.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
  opacity: 0;
  translate: 0.5rem 0;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .l-hamburger ._menu ._inner ._nav ._item {
    font-size: 3rem;
  }
}
@media (any-hover: hover) {
  .l-hamburger ._menu ._inner ._nav ._item:hover {
    color: #ED1C22;
  }
}
.l-hamburger ._menu ._inner ._nav ._item::before {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 2rem;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  font-size: 0.8rem;
  background-color: #ED1C22;
  border-radius: 50%;
  display: none;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(1) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.05s ease, translate 0.25s 0.05s ease;
  transition: color 0.25s ease, opacity 0.25s 0.05s ease, translate 0.25s 0.05s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(2) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.1s ease, translate 0.25s 0.1s ease;
  transition: color 0.25s ease, opacity 0.25s 0.1s ease, translate 0.25s 0.1s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(3) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.15s ease, translate 0.25s 0.15s ease;
  transition: color 0.25s ease, opacity 0.25s 0.15s ease, translate 0.25s 0.15s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(4) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.2s ease, translate 0.25s 0.2s ease;
  transition: color 0.25s ease, opacity 0.25s 0.2s ease, translate 0.25s 0.2s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(5) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.25s ease, translate 0.25s 0.25s ease;
  transition: color 0.25s ease, opacity 0.25s 0.25s ease, translate 0.25s 0.25s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(6) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.3s ease, translate 0.25s 0.3s ease;
  transition: color 0.25s ease, opacity 0.25s 0.3s ease, translate 0.25s 0.3s ease;
}
.l-hamburger ._menu ._inner ._nav ._item:nth-child(7) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.35s ease, translate 0.25s 0.35s ease;
  transition: color 0.25s ease, opacity 0.25s 0.35s ease, translate 0.25s 0.35s ease;
}
.l-hamburger ._menu ._inner .c-button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 4.8rem;
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-hamburger ._menu ._inner .c-button {
    min-width: auto;
    padding: 10px 15px 10px 25px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-hamburger ._menu ._inner .c-button ._frame ._mask {
    display: none;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-hamburger ._menu ._inner .c-button ._frame ._deco {
    padding-left: 5px;
    border-left: 0;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
  .l-hamburger ._menu ._inner .c-button ._frame ._deco ._decoInner {
    right: -7px;
  }
}
.l-hamburger ._menu ._inner ._option {
  height: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  margin-left: 4.8rem;
}
.l-hamburger ._menu ._inner ._option ._fontSize {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.l-hamburger ._menu ._inner ._option ._fontSize ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.l-hamburger ._menu ._inner ._option ._fontSize ._list ._item {
  display: block;
  border-radius: 5px;
  background-color: #eee;
  padding: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
}
@media (any-hover: hover) {
  .l-hamburger ._menu ._inner ._option ._fontSize ._list ._item:hover {
    color: #fff;
    background-color: #ED1C22;
  }
}
.l-hamburger ._menu ._inner ._option ._fontSize ._list ._item.is_active {
  color: #fff;
  background-color: #ED1C22;
}
.l-hamburger ._menu ._inner ._option ._search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hamburger ._menu ._inner ._option ._search ._bar {
  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; /*アイコン、テキストボックスを横方向の中心に*/
  height: 30px;
  width: 200px;
  border-bottom: solid 1px #ccc;
}
.l-hamburger ._menu ._inner ._option ._search ._bar ._icon { /*アイコンに一定のスペースを設ける*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 17px;
  width: 17px;
  background-image: url(../img/icon_search.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-hamburger ._menu ._inner ._option ._search ._bar input {
  color: #333;
  font-size: 1.6rem;
  width: 100%; /*flexの中で100%広げる*/
  background-color: #fff;
  border: none; /*枠線非表示*/
  outline: none; /*フォーカス時の枠線非表示*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._menu ._inner ._option ._search ._bar {
    font-size: 1.4rem;
  }
}
.l-hamburger ._line {
  position: fixed;
  right: 6%;
  top: 22px;
  width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 17px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line {
    top: 27px;
    right: 5%;
  }
}
.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;
}
@media (any-hover: hover) {
  .l-hamburger ._line:hover ._item--1 {
    top: 2px;
  }
}
@media (any-hover: hover) {
  .l-hamburger ._line:hover ._item--3 {
    top: 14px;
  }
}

.front ._item.front::before,
.front ._item.front > a::before,
.company ._item.company::before,
.company ._item.company > a::before,
.business ._item.business::before,
.business ._item.business > a::before,
.recruit ._item.recruit::before,
.recruit ._item.recruit > a::before,
.news ._item.news::before,
.news ._item.news > a::before,
.sdgs ._item.sdgs::before,
.sdgs ._item.sdgs > a::before {
  display: block !important;
}

/* 表示された時用のCSS */
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-open .l-header {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .is-open .l-header {
    height: 100px;
  }
}
.is-open .l-header ._inner {
  border-bottom: solid 1px #777;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-open .l-header ._inner {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .is-open .l-header ._inner {
    height: 100px;
  }
}
.is-open .l-hamburger ._menu {
  opacity: 1;
  visibility: visible;
}
.is-open .l-hamburger ._menu ._nav ._item {
  opacity: 1;
  translate: 0;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(7) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.05s ease, translate 0.25s 0.05s ease;
  transition: color 0.25s ease, opacity 0.25s 0.05s ease, translate 0.25s 0.05s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(6) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.1s ease, translate 0.25s 0.1s ease;
  transition: color 0.25s ease, opacity 0.25s 0.1s ease, translate 0.25s 0.1s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(5) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.15s ease, translate 0.25s 0.15s ease;
  transition: color 0.25s ease, opacity 0.25s 0.15s ease, translate 0.25s 0.15s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(4) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.2s ease, translate 0.25s 0.2s ease;
  transition: color 0.25s ease, opacity 0.25s 0.2s ease, translate 0.25s 0.2s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(3) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.25s ease, translate 0.25s 0.25s ease;
  transition: color 0.25s ease, opacity 0.25s 0.25s ease, translate 0.25s 0.25s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(2) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.3s ease, translate 0.25s 0.3s ease;
  transition: color 0.25s ease, opacity 0.25s 0.3s ease, translate 0.25s 0.3s ease;
}
.is-open .l-hamburger ._menu ._nav ._item:nth-child(1) {
  -webkit-transition: color 0.25s ease, opacity 0.25s 0.35s ease, translate 0.25s 0.35s ease;
  transition: color 0.25s ease, opacity 0.25s 0.35s ease, translate 0.25s 0.35s ease;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-open .l-hamburger ._line {
    top: 67px;
  }
}
@media screen and (max-width: 767px) {
  .is-open .l-hamburger ._line {
    top: 42px;
  }
}
.is-open .l-hamburger ._line ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-open .l-hamburger ._line ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open .l-hamburger ._line ._item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

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

/* ============================================
  subvisual
============================================  */
.l-subvisual {
  min-height: 250px;
  background-color: #fff;
  overflow: hidden;
  background-image: url(../img/subvisual_bg.png);
  background-position: left calc(50% + 270px) top -285px;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-subvisual {
    min-height: 200px;
    background-position: left calc(50% + 270px) top -335px;
  }
}
.l-subvisual ._inner {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
  min-height: 250px;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    min-height: 200px;
    padding: 50px 0;
  }
}
.l-subvisual ._inner ._title ._sub {
  font-family: "Roboto";
  font-size: 6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._sub {
    font-size: 4rem;
  }
}
.l-subvisual ._inner ._title ._main {
  color: #ED1C22;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}

/* ============================================
  child-page-list
============================================  */
.l-child-page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(60px + 3rem) 30px;
}
@media screen and (max-width: 767px) {
  .l-child-page-list {
    gap: calc(40px + 3rem) 30px;
  }
}
.l-child-page-list ._item {
  width: calc(50% - 15px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-child-page-list ._item {
    width: 100%;
  }
}
.l-child-page-list ._item ._thumbnail {
  padding-top: 300px;
  border-radius: 5px 5px 0 0;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .l-child-page-list ._item ._thumbnail {
    padding-top: 56%;
  }
}
.l-child-page-list ._item ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.l-child-page-list ._item .c-button {
  position: absolute;
  left: -10px;
  bottom: -3rem;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
  font-size: 2rem;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  max-width: 36rem;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .l-child-page-list ._item .c-button {
    font-size: 1.6rem;
    padding: 1rem 1.5rem 1rem 2.5rem;
    width: 90%;
  }
}
@media (any-hover: hover) {
  .l-child-page-list ._item .c-button::before {
    background-color: #ED1C22;
  }
}

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

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

/* ============================================
  サイドメニュー
============================================  */
.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;
  }
}
.l-column main {
  width: calc(100% - 300px);
}
@media screen and (max-width: 767px) {
  .l-column main {
    width: 100%;
  }
}
.l-column aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .l-column aside {
    width: 100%;
  }
}

.l-sidemenu {
  margin-bottom: 40px;
}
.l-sidemenu:last-child {
  margin-bottom: 0;
}
.l-sidemenu ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  padding-left: 7px;
  border-left: solid 5px #ED1C22;
}
.l-sidemenu ._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: 2px;
}
.l-sidemenu ._list ._item {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  padding: 1.5rem;
  border-radius: 2px;
  background-color: #eee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-sidemenu ._list ._item {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-sidemenu ._list ._item:hover {
    color: #fff;
    background-color: #ED1C22;
  }
}
.l-sidemenu ._list ._item.current {
  color: #fff;
  background-color: #ED1C22;
}
.l-sidemenu ._list label input[type=checkbox] {
  display: none;
}
.l-sidemenu ._list label span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  padding: 1.5rem;
  border-radius: 2px;
  background-color: #eee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-sidemenu ._list label span {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-sidemenu ._list label span:hover {
    color: #fff;
    background-color: #ED1C22;
  }
}
.l-sidemenu ._list label input[type=checkbox]:checked + span {
  color: #fff;
  background-color: #ED1C22;
}

.l-number {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.l-number ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.l-number ._list ._item {
  display: block;
  border-radius: 5px;
  background-color: #eee;
  padding: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  text-decoration: none;
}
@media (any-hover: hover) {
  .l-number ._list ._item:hover {
    color: #fff;
    background-color: #ED1C22;
  }
}
.l-number ._list ._item.is_active {
  color: #fff;
  background-color: #ED1C22;
}

/* ============================================
  絞り込みメニュー
============================================  */
.l-search-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-search-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-bottom: 20px;
  }
}
.l-search-category ._title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .l-search-category ._title {
    font-size: 1.8rem;
  }
}
.l-search-category ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.l-search-category ._list label input[type=checkbox] {
  display: none;
}
.l-search-category ._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;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 20px;
  background-color: #fff;
  border: solid 1px #333;
  text-align: center;
  border-radius: 9999px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-search-category ._list label span {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-search-category ._list label span:hover {
    color: #fff;
    background-color: #ED1C22;
    border: solid 1px #ED1C22;
  }
}
.l-search-category ._list label input[type=checkbox]:checked + span {
  color: #fff;
  background-color: #ED1C22;
  border: solid 1px #ED1C22;
}
.l-search-category ._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;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 20px;
  background-color: #fff;
  border: solid 1px #333;
  text-align: center;
  border-radius: 9999px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-search-category ._list a._item {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .l-search-category ._list a._item:hover {
    color: #fff;
    background-color: #ED1C22;
    border: solid 1px #ED1C22;
  }
}
.l-search-category ._list a._item.current {
  color: #fff;
  background-color: #ED1C22;
  border: solid 1px #ED1C22;
}
.l-search-category:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-search-category:last-child {
    margin-bottom: 40px;
  }
}

aside .l-search-category {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
aside .l-search-category ._list label {
  width: 100%;
}
@media screen and (max-width: 767px) {
  aside .l-search-category ._list label {
    width: calc(50% - 5px);
  }
}
aside .l-search-category:last-child {
  margin-bottom: 0;
}

/* ============================================
  p
============================================  */
/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #fff;
  padding: 100px 0 44px;
  background: url(../img/footer_bg.png), -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(10vw, #fff), color-stop(10vw, #eee), to(#eee));
  background: url(../img/footer_bg.png), linear-gradient(180deg, #fff 0%, #fff 10vw, #eee 10vw, #eee 100%);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 100px;
}
body:has(.l-recruit_banner) .l-footer {
  padding-bottom: 250px;
}
.l-footer ._logo {
  width: 80%;
  max-width: 330px;
  margin: 0 auto 40px;
}
.l-footer ._logo img {
  mix-blend-mode: multiply;
}
.l-footer ._col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 999px) {
  .l-footer ._col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 60px;
  }
}
.l-footer ._nav01 {
  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.5rem;
  line-height: 1.2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 999px) {
  .l-footer ._nav01 {
    width: calc(50% - 20px);
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._nav01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.4rem;
  }
}
.l-footer ._nav01 ._item {
  text-decoration: none;
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer ._nav01 ._item.--parent {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .l-footer ._nav01 ._item.--parent {
    font-size: 1.5rem;
  }
}
.l-footer ._nav01 ._item.--child {
  margin-left: 1em;
}
@media (any-hover: hover) {
  .l-footer ._nav01 ._item::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ED1C22;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
@media (any-hover: hover) {
  .l-footer ._nav01 ._item:hover::before {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
  }
}
.l-footer ._nav02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 45px;
  gap: 1em 2em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 45px;
  }
}
.l-footer ._nav02 ._item {
  display: block;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav02 ._item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (any-hover: hover) {
  .l-footer ._nav02 ._item::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ED1C22;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}
@media (any-hover: hover) {
  .l-footer ._nav02 ._item:hover::before {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
  }
}
.l-footer ._nav02 ._item::after {
  position: absolute;
  top: -1px;
  right: -1em;
  content: "|";
}
@media screen and (max-width: 767px) {
  .l-footer ._nav02 ._item::after {
    display: none;
  }
}
.l-footer ._nav02 ._item:last-child::after {
  display: none;
}
.l-footer ._copyright {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}

.l-catalog {
  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;
  position: fixed;
  right: 0;
  top: calc(30vh - 75px);
  z-index: 50;
  padding: 20px 15px;
  background-color: #EEE;
  border: solid 1px #ccc;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px 0 0 5px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .l-catalog {
    top: 100px;
    padding: 15px 10px;
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .l-catalog:hover {
    padding: 20px 25px 20px 15px;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .l-catalog:hover {
    padding: 15px 15px 15px 10px;
  }
}
.l-catalog span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .l-catalog span {
    font-size: 1.4rem;
  }
}
.l-catalog img {
  width: 1.6rem;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  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: #777777;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    width: 50px;
    height: 50px;
  }
}
.l-pagetop svg {
  fill: #fff;
}
@media (any-hover: hover) {
  .l-pagetop:hover {
    background-color: #ED1C22;
  }
}

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

/* ============================================
  h
============================================  */
.f-h2 {
  margin-bottom: 4rem;
}
.f-h2 ._main {
  display: block;
  font-family: "Roboto";
  color: #ED1C22;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-h2 ._main {
    font-size: 3rem;
  }
}
.f-h2 ._main::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #777;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.f-h2 ._main.is-active::after {
  width: 100%;
}
.f-h2 ._sub {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-top: 1.6rem;
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .f-h2 ._sub {
    font-size: 1.6rem;
  }
}
.f-h2 ._sub::before {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #ED1C22;
  border-radius: 9999px;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}

.f-partner .f-h2 ._main::after {
  display: none;
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  z-index: 0;
  /*スクロールダウン全体の場所*/
}
.f-mainvisual ._inner {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.f-mainvisual ._content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
}
.f-mainvisual ._content .l-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.f-mainvisual ._content ._catchcopy {
  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: 0.5em;
  position: absolute;
  left: 0;
  bottom: 9rem;
  z-index: 20;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._content ._catchcopy {
    font-size: 2.4rem;
    width: 90%;
    bottom: auto;
    top: 9rem;
  }
}
.f-mainvisual ._content ._catchcopy ._main {
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-transform: uppercase;
  opacity: 0;
  translate: 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
.f-mainvisual ._content ._catchcopy ._sub {
  font-family: "Roboto";
  font-size: 3.6rem;
  text-transform: uppercase;
  opacity: 0;
  translate: 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._content ._catchcopy ._sub {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.f-mainvisual ._content ._catchcopy ._button {
  display: block;
  text-transform: uppercase;
  opacity: 0;
  translate: 0.5rem 0;
}
.f-mainvisual .swiper {
  overflow: hidden;
  position: relative;
}
.f-mainvisual .slider {
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.f-mainvisual .slider .swiper-slide ._slideimg {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.f-mainvisual .slider .swiper-slide ._slideimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.f-mainvisual .slider .swiper-slide ._slideimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}
.f-mainvisual .slider .swiper-slide.--recruit01 {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit01 {
    padding-top: 60px;
  }
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._slideimg {
  height: calc(100vh - 140px);
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit01 ._slideimg {
    height: calc(100vh - 60px);
  }
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._slideimg::after {
  display: none;
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._slideimg img {
  width: auto;a
  height: 100%;
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._catchcopy {
  top: calc(140px + 5vh);
  bottom: auto;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit01 ._catchcopy {
    top: calc(60px + 5vh);
  }
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._catchcopy ._main {
  color: #333;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0);
}
.f-mainvisual .slider .swiper-slide.--recruit01 ._catchcopy ._sub {
  color: #ED1C22;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0);
}
.f-mainvisual .slider .swiper-slide.--recruit02 {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit02 {
    padding-top: 60px;
  }
}
.f-mainvisual .slider .swiper-slide.--recruit02 ._slideimg {
  height: calc(100vh - 41rem);
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit02 ._slideimg {
    height: calc(100vh - 60px);
  }
}
.f-mainvisual .slider .swiper-slide.--recruit02 ._slideimg::after {
  display: none;
}
.f-mainvisual .slider .swiper-slide.--recruit02 ._slideimg img {
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit02 ._slideimg img {
    -o-object-position: center center;
       object-position: center center;
  }
}
.f-mainvisual .slider .swiper-slide.--recruit02 ._catchcopy ._main {
  color: #333;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0);
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit02 ._catchcopy ._main {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
  }
}
.f-mainvisual .slider .swiper-slide.--recruit02 ._catchcopy ._sub {
  color: #ED1C22;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0);
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-slide.--recruit02 ._catchcopy ._sub {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
  }
}
.f-mainvisual .slider .swiper-slide-active ._catchcopy ._main {
  opacity: 1;
  translate: 0;
  -webkit-transition: color 0.6s ease, opacity 0.6s 0.5s ease, translate 0.6s 0.5s ease;
  transition: color 0.6s ease, opacity 0.6s 0.5s ease, translate 0.6s 0.5s ease;
}
.f-mainvisual .slider .swiper-slide-active ._catchcopy ._sub {
  opacity: 1;
  translate: 0;
  -webkit-transition: color 0.6s ease, opacity 0.6s 0.35s ease, translate 0.6s 0.35s ease;
  transition: color 0.6s ease, opacity 0.6s 0.35s ease, translate 0.6s 0.35s ease;
}
.f-mainvisual .slider .swiper-slide-active ._catchcopy ._button {
  opacity: 1;
  translate: 0;
  -webkit-transition: color 0.6s ease, opacity 0.6s 0.35s ease, translate 0.6s 0.35s ease;
  transition: color 0.6s ease, opacity 0.6s 0.35s ease, translate 0.6s 0.35s ease;
}
.f-mainvisual .slider .swiper-button-prev,
.f-mainvisual .slider .swiper-button-next {
  top: calc(50% - 20px) !important;
  width: 20px !important;
  height: 40px !important;
  cursor: pointer !important;
  background-image: url(../img/swier_icon_arrow.svg) !important;
  background-size: contain !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-button-prev,
  .f-mainvisual .slider .swiper-button-next {
    width: 15px !important;
    height: 30px !important;
    top: calc(50% - 8px) !important;
  }
}
@media (any-hover: hover) {
  .f-mainvisual .slider .swiper-button-prev:hover,
  .f-mainvisual .slider .swiper-button-next:hover {
    background-image: url(../img/swier_icon_arrow--hover.svg) !important;
  }
}
.f-mainvisual .slider .swiper-button-prev {
  left: 20px !important;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-button-prev {
    left: 6% !important;
  }
}
.f-mainvisual .slider .swiper-button-next {
  right: 20px !important;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .slider .swiper-button-next {
    right: 6% !important;
  }
}
.f-mainvisual .swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  line-height: 1;
  text-align: center;
}
.f-mainvisual .swiper-pagination .swiper-pagination-bullet {
  background-color: #777;
  opacity: 1;
  margin: 0 10px !important;
  width: 9px;
  height: 9px;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
}
.f-mainvisual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ED1C22;
}
.f-mainvisual .scrolldown1 {
  position: absolute;
  right: 54px;
  bottom: -30px;
  height: 100px;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  /*Scrollテキストの描写*/
  /* 線の描写 */
}
@media only screen and (max-width: 767px) {
  .f-mainvisual .scrolldown1 {
    right: 40px;
  }
}
.f-mainvisual .scrolldown1 p {
  /*描画位置*/
  position: absolute;
  left: 0;
  top: -107px;
  z-index: 20;
  /*テキストの形状*/
  font-family: "Roboto";
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 15px !important;
  font-weight: bold;
  display: block;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
.f-mainvisual .scrolldown1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  z-index: 20;
  width: 1px;
  height: 70px;
  background: #777;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
}
.f-mainvisual .scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 13px;
  z-index: 21;
  /*線の形状*/
  width: 1px;
  height: 0;
  background: #ED1C22;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 2.2s forwards infinite;
          animation: pathmove 2.2s forwards infinite;
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
  opacity: 0;
}
.f-mainvisual.active .slider {
  opacity: 1;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 70px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 70px;
    top: 0;
    opacity: 1;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 70px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 70px;
    top: 0;
    opacity: 1;
  }
}
.f-contents {
  position: relative;
  z-index: 1;
  background-color: #fff;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
  -webkit-transform: translateY(calc(var(--vh, 1vh) * 100));
          transform: translateY(calc(var(--vh, 1vh) * 100));
}

/* ============================================
  事業内容
============================================  */
.f-business {
  padding: 60px 0 170px;
  position: relative;
  overflow: hidden;
}
.f-business ._list {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .f-business ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-business ._list ._item {
  opacity: 0;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 65px 40px 60px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item {
    padding: 35px 20px 30px;
  }
}
.f-business ._list ._item--1 {
  background-image: url(../../img/business_img01.jpg);
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item--1 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-business ._list ._item--2 {
  background-image: url(../../img/business_img02.jpg);
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item--2 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.f-business ._list ._item--3 {
  background-image: url(../../img/business_img03.jpg);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media (any-hover: hover) {
  .f-business ._list ._item:hover {
    -webkit-box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .f-business ._list ._item:hover {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}
@media (any-hover: hover) {
  .f-business ._list ._item:hover._item--1 {
    -webkit-transform: translateY(96px);
            transform: translateY(96px);
  }
}
@media (any-hover: hover) {
  .f-business ._list ._item:hover._item--2 {
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
.f-business ._list ._item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.3;
}
.f-business ._list ._item ._contents {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item ._contents {
    gap: 10px;
  }
}
.f-business ._list ._item ._contents ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.f-business ._list ._item ._contents ._title ._main {
  font-size: 3rem;
  line-height: 1.6;
  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;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item ._contents ._title ._main {
    font-size: 2.2rem;
  }
}
.f-business ._list ._item ._contents ._title ._sub {
  font-size: 1.8rem;
  line-height: 1.6;
  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;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item ._contents ._title ._sub {
    font-size: 1.6rem;
  }
}
.f-business ._list ._item ._contents ._icon {
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item ._contents ._icon {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.f-business ._list ._item ._contents ._text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: var(--font-weight-bold);
  text-align: center;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
}
@media screen and (max-width: 767px) {
  .f-business ._list ._item ._contents ._text {
    font-size: 1.6rem;
    text-align: left;
  }
}
.f-business ._list.is-active ._item {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .f-business ._list.is-active ._item {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}
.f-business ._list.is-active ._item--1 {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.f-business ._list.is-active ._item--2 {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.f-business ._list.is-active ._item--3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.f-business ._list.is-active ._item:hover {
  -webkit-box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
.f-business ._list.is-active ._item:hover._item--1 {
  -webkit-transform: translateY(96px);
          transform: translateY(96px);
}
.f-business ._list.is-active ._item:hover._item--2 {
  -webkit-transform: translateY(46px);
          transform: translateY(46px);
}
.f-business ._illust {
  position: absolute;
  right: -25px;
  bottom: -66px;
}

/* ============================================
  お知らせ
============================================  */
.f-news {
  background-color: #F3F3EC;
  padding: 60px 0 70px;
  overflow: hidden;
}
.f-news ._button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}

/* ============================================
  日の丸サンズのSDGs
============================================  */
.f-sustainability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-top: 70px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-sustainability {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-sustainability ._contents {
  width: calc(37.5% - 50px);
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .f-sustainability ._contents {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .f-sustainability ._contents {
    width: 88%;
  }
}
.f-sustainability ._contents .f-h2 {
  margin-bottom: 20px;
}
.f-sustainability ._img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  height: 450px;
  border-radius: 30px 0 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .f-sustainability ._img {
    height: auto;
    padding-top: 50%;
    width: 90%;
    margin-left: 10%;
  }
}
.f-sustainability ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

/* ============================================
  採用情報
============================================  */
.f-recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-recruit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 70px;
  }
}
.f-recruit ._contents {
  width: calc(37.5% - 50px);
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .f-recruit ._contents {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .f-recruit ._contents {
    width: 88%;
  }
}
.f-recruit ._contents .f-h2 {
  margin-bottom: 20px;
}
.f-recruit ._img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .f-recruit ._img {
    width: 90%;
    margin-right: 10%;
    border-radius: 0 30px 0 0;
  }
}
.f-recruit ._img .swiper-slide {
  height: 450px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-recruit ._img .swiper-slide {
    height: auto;
    padding-top: 50%;
  }
}
.f-recruit ._img .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left top;
  object-position: left top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.f-recruit ._img .swiper-button-prev-recruit,
.f-recruit ._img .swiper-button-next-recruit {
  position: absolute;
  top: calc(50% - 20px) !important;
  width: 20px !important;
  height: 40px !important;
  cursor: pointer !important;
  background-image: url(../img/swier_icon_arrow.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat;
  margin-top: 0 !important;
  z-index: 10 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(15, 15, 35, 0.6));
}
@media screen and (max-width: 767px) {
  .f-recruit ._img .swiper-button-prev-recruit,
  .f-recruit ._img .swiper-button-next-recruit {
    width: 15px !important;
    height: 30px !important;
    top: calc(50% - 8px) !important;
  }
}
@media (any-hover: hover) {
  .f-recruit ._img .swiper-button-prev-recruit:hover,
  .f-recruit ._img .swiper-button-next-recruit:hover {
    background-image: url(../img/swier_icon_arrow--hover.svg) !important;
  }
}
.f-recruit ._img .swiper-button-prev-recruit {
  left: 20px !important;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .f-recruit ._img .swiper-button-prev-recruit {
    left: 6% !important;
  }
}
.f-recruit ._img .swiper-button-next-recruit {
  right: 20px !important;
}
@media screen and (max-width: 767px) {
  .f-recruit ._img .swiper-button-next-recruit {
    right: 6% !important;
  }
}
.f-recruit ._illust {
  position: absolute;
  top: -130px;
  right: calc(50% - 780px);
  width: 480px;
}
@media screen and (max-width: 767px) {
  .f-recruit ._illust {
    top: -250px;
    right: calc(50% - 490px);
  }
}

/* ============================================
  新規のお取引希望の事業者様へ
============================================  */
.f-partner {
  padding: 65px 0 100px;
  background-color: #fff;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  height: 560px;
}
@media only screen and (max-width: 1000px) {
  .f-partner {
    height: auto;
  }
}
.f-partner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 560px;
  background-image: linear-gradient(180deg, rgb(237, 28, 34) 0%, rgb(237, 28, 34) 300px, rgba(237, 28, 34, 0));
  width: 70%;
  border-radius: 0 300px 0 0;
}
@media only screen and (max-width: 1000px) {
  .f-partner::before {
    width: 98%;
    border-radius: 0 100px 0 0;
  }
}
.f-partner .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 130px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1000px) {
  .f-partner .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.f-partner ._contents .f-h2 ._main {
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
  border-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .f-partner ._contents .f-h2 ._main {
    font-size: 2.4rem;
  }
}
.f-partner ._contents .f-h2 ._sub {
  color: #fff;
  padding-left: 0;
}
.f-partner ._contents .f-h2 ._sub::before {
  display: none;
}
.f-partner ._contents p {
  color: #fff;
}
.f-partner ._imgArea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .f-partner ._imgArea {
    width: 80%;
    margin: 0 0 0 auto;
  }
}
.f-partner ._imgArea ._img01 {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 767px) {
  .f-partner ._imgArea ._img01 {
    height: auto;
    padding-top: 70%;
  }
}
.f-partner ._imgArea ._img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.f-partner ._imgArea ._absolute {
  position: absolute;
  bottom: -45px;
  left: -110px;
  width: 314px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .f-partner ._imgArea ._absolute {
    left: -25%;
    width: 60%;
    height: 60%;
  }
}
.f-partner ._imgArea ._absolute ._img02 {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.f-partner ._imgArea ._absolute ._img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

/* ============================================
  企業情報
============================================  */
.f-company {
  padding: 60px 0 70px;
  background-color: #F5F5F5;
  overflow: hidden;
}
.f-company .l-inner {
  position: relative;
}
.f-company ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1500px) {
  .f-company ._list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.f-company ._list ._item {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  padding: 40px 30px 30px 30px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media only screen and (max-width: 1500px) {
  .f-company ._list ._item {
    width: calc(50% - 10px);
    padding: 35px 20px 20px 30px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media screen and (max-width: 767px) {
  .f-company ._list ._item {
    width: 100%;
  }
}
.f-company ._list ._item ._icon {
  height: 80px;
  margin-bottom: 40px;
  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) {
  .f-company ._list ._item ._icon {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 25px;
  }
}
.f-company ._list ._item ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .f-company ._list ._item ._title {
    margin-bottom: 10px;
  }
}
.f-company ._list ._item ._text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .f-company ._list ._item ._text {
    font-size: 1.4rem;
  }
}
.f-company ._list ._item .c-button {
  min-width: auto;
  margin: auto auto 0;
}
.f-company ._list ._item .c-button ._frame {
  gap: 0 20px;
}
.f-company ._list.is-active ._item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.f-company ._list.is-active ._item:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.f-company ._list.is-active ._item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.f-company ._list.is-active ._item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.f-company ._list.is-active ._item:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.f-company ._illust {
  position: absolute;
  left: -22%;
  bottom: -63px;
  z-index: 0;
}

/* ============================================
  施設情報
============================================  */
.f-information {
  padding: 65px 0 0;
}
.f-information ._timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .f-information ._timeline {
    -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-information ._timeline ._sns-instagram {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 5px;
}
.f-information ._timeline ._sns-instagram ._item {
  width: calc(33.33% - 4px);
}
@media only screen and (max-width: 1400px) {
  .f-information ._timeline ._sns-instagram ._item {
    width: calc(50% - 3px);
  }
}
@media screen and (max-width: 767px) {
  .f-information ._timeline ._sns-instagram ._item {
    width: 100%;
  }
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header .sbi_header_text,
.f-information ._timeline ._sns-instagram ._item .sb_instagram_header .sbi_header_text {
  gap: 10px;
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header .sbi_header_img_hover, .f-information ._timeline ._sns-instagram ._item .sb_instagram_header .sbi_header_img_hover {
  opacity: 1 !important;
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,
.f-information ._timeline ._sns-instagram ._item .sb_instagram_header.sbi_medium .sbi_header_img {
  width: 4rem !important;
  height: 4rem !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,
.f-information ._timeline ._sns-instagram ._item .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,
.f-information ._timeline ._sns-instagram ._item .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo {
  margin-top: -1.2rem !important;
  margin-left: -1.2rem !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
.f-information ._timeline ._sns-instagram ._item .sb_instagram_header.sbi_medium .sbi_header_text h3 {
  font-size: 1.6rem;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
  .f-information ._timeline ._sns-instagram ._item .sb_instagram_header.sbi_medium .sbi_header_text h3 {
    font-size: 1.4rem;
  }
}
.f-information ._timeline ._sns-instagram ._item .sbi_bio {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 767px) {
  .f-information ._timeline ._sns-instagram ._item .sbi_bio {
    font-size: 1.2rem !important;
  }
}
.f-information ._timeline ._sns-instagram ._item #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .f-information ._timeline ._sns-instagram ._item .sb_instagram_header.sbi_medium .sbi_header_img img {
  display: none !important;
}
.f-information ._timeline ._right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 340px;
  width: 100%;
}
.f-information ._timeline ._right ._sns-x {
  margin-bottom: 40px;
}
.f-information ._timeline ._right ._bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.f-information ._timeline ._right ._bnr-list ._item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .f-information ._timeline ._right ._bnr-list ._item:hover {
    opacity: 0.6;
  }
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
  btn
============================================  */
.c-button {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  padding: 1rem 1.5rem 1rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background-color: #777;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .c-button:before {
    position: absolute;
    inset: 50%;
    z-index: 1;
    content: "";
    display: block;
    width: 120%;
    padding-top: 90%;
    background-color: #ED1C22;
    border-radius: 50%;
    translate: -50% -50%;
    -webkit-transform: translateY(calc(100% + 2.9rem));
            transform: translateY(calc(100% + 2.9rem));
  }
}
.c-button ._frame {
  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: 0 1em;
  position: relative;
  z-index: 2;
}
.c-button ._frame ._mask {
  overflow: hidden;
  height: calc(1em + 1rem);
  line-height: calc(1em + 1rem);
}
.c-button ._frame ._mask ._txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-button ._frame ._mask ._txt::before {
  content: attr(data-txt);
}
.c-button ._frame ._mask ._txt::after {
  content: attr(data-txt);
}
.c-button ._frame ._deco {
  position: relative;
  z-index: 2;
  padding-left: 28px;
  border-left: solid 1px #fff;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  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;
  height: 25px;
}
.c-button ._frame ._deco ._decoInner {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8rem;
  height: 1rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
.c-button ._frame ._deco ._decoInner ._arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 4rem;
  -webkit-transform: translate(-3.2rem);
          transform: translate(-3.2rem);
}
.c-button ._frame ._deco ._decoInner ._arrow::before, .c-button ._frame ._deco ._decoInner ._arrow::after,
.c-button ._frame ._deco ._decoInner ._arrow ._main {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1rem;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (any-hover: hover) {
  .c-button:hover:before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    -webkit-animation: none;
            animation: none;
  }
}
@media (any-hover: hover) {
  .c-button:hover ._frame ._mask ._txt {
    -webkit-animation: bottomUpTextRoll 0.5s ease;
            animation: bottomUpTextRoll 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@media (any-hover: hover) {
  .c-button:hover ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutIn 0.5s ease;
            animation: kvArrowSlideOutIn 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.c-button.--red {
  background-color: #ED1C22;
}
@media (any-hover: hover) {
  .c-button.--red::before {
    background-color: #777;
  }
}
.c-button.--white {
  color: #333;
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button.--white:before {
    background-color: #777;
  }
}
.c-button.--white ._frame ._deco {
  border-left: solid 1px #333;
}
.c-button.--white ._frame ._deco ._decoInner ._arrow::before, .c-button.--white ._frame ._deco ._decoInner ._arrow::after {
  background-color: #333;
}
.c-button.--white ._frame ._deco ._decoInner ._arrow ._main {
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button.--white:hover ._frame ._mask ._txt {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .c-button.--white:hover ._frame ._deco {
    border-left: solid 1px #fff;
  }
}
.c-button.--blank ._frame ._deco ._decoInner {
  width: 17px;
  height: 17px;
  right: -10px;
}
.c-button.--blank ._frame ._deco ._decoInner ._arrow {
  width: 85px;
  -webkit-transform: translate(-68px);
          transform: translate(-68px);
}
.c-button.--blank ._frame ._deco ._decoInner ._arrow::before, .c-button.--blank ._frame ._deco ._decoInner ._arrow::after,
.c-button.--blank ._frame ._deco ._decoInner ._arrow ._main {
  background-image: url(../img/icon_blank.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: unset;
  -webkit-clip-path: none;
          clip-path: none;
  width: 17px;
  height: 17px;
}
@media (any-hover: hover) {
  .c-button.--blank:hover ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutInBlank 0.5s ease;
            animation: kvArrowSlideOutInBlank 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.c-button.--blank.--white ._frame ._deco ._decoInner ._arrow::before, .c-button.--blank.--white ._frame ._deco ._decoInner ._arrow::after {
  background-image: url(../img/icon_blank--b.svg);
}
.c-button.--mail ._frame ._deco ._decoInner {
  width: 15px;
  height: 12px;
  right: -6px;
}
.c-button.--mail ._frame ._deco ._decoInner ._arrow {
  width: 75px;
  -webkit-transform: translate(-60px);
          transform: translate(-60px);
}
.c-button.--mail ._frame ._deco ._decoInner ._arrow::before, .c-button.--mail ._frame ._deco ._decoInner ._arrow::after,
.c-button.--mail ._frame ._deco ._decoInner ._arrow ._main {
  background-image: url(../img/icon_mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: unset;
  -webkit-clip-path: none;
          clip-path: none;
  width: 15px;
  height: 12px;
}
@media (any-hover: hover) {
  .c-button.--mail:hover ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutInMail 0.5s ease;
            animation: kvArrowSlideOutInMail 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@media (any-hover: hover) {
  .c-button.--mouseout:before {
    -webkit-animation: slideOutCircle 0.5s ease;
            animation: slideOutCircle 0.5s ease;
  }
}
@media (any-hover: hover) {
  .c-button.--mouseout ._frame ._mask ._txt {
    -webkit-animation: bottomUpTextRoll--end 0.5s ease;
            animation: bottomUpTextRoll--end 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@media (any-hover: hover) {
  .c-button.--mouseout ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutIn--end 0.5s ease;
            animation: kvArrowSlideOutIn--end 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@media (any-hover: hover) {
  .c-button.--mouseout.--blank ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutInBlank--end 0.5s ease;
            animation: kvArrowSlideOutInBlank--end 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@media (any-hover: hover) {
  .c-button.--mouseout.--mail ._frame ._deco ._decoInner ._arrow {
    -webkit-animation: kvArrowSlideOutInMail--end 0.5s ease;
            animation: kvArrowSlideOutInMail--end 0.5s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}

@-webkit-keyframes slideOutCircle {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc((100% + 2.8rem) * -1));
            transform: translateY(calc((100% + 2.8rem) * -1));
  }
}

@keyframes slideOutCircle {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc((100% + 2.8rem) * -1));
            transform: translateY(calc((100% + 2.8rem) * -1));
  }
}
@-webkit-keyframes bottomUpTextRoll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-33.33%);
            transform: translateY(-33.33%);
  }
}
@keyframes bottomUpTextRoll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-33.33%);
            transform: translateY(-33.33%);
  }
}
@-webkit-keyframes bottomUpTextRoll--end {
  0% {
    -webkit-transform: translateY(-33.33%);
            transform: translateY(-33.33%);
  }
  100% {
    -webkit-transform: translateY(-66.66%);
            transform: translateY(-66.66%);
  }
}
@keyframes bottomUpTextRoll--end {
  0% {
    -webkit-transform: translateY(-33.33%);
            transform: translateY(-33.33%);
  }
  100% {
    -webkit-transform: translateY(-66.66%);
            transform: translateY(-66.66%);
  }
}
@-webkit-keyframes kvArrowSlideOutIn {
  0% {
    -webkit-transform: translate(-3.2rem);
            transform: translate(-3.2rem);
  }
  to {
    -webkit-transform: translate(-1.6rem);
            transform: translate(-1.6rem);
  }
}
@keyframes kvArrowSlideOutIn {
  0% {
    -webkit-transform: translate(-3.2rem);
            transform: translate(-3.2rem);
  }
  to {
    -webkit-transform: translate(-1.6rem);
            transform: translate(-1.6rem);
  }
}
@-webkit-keyframes kvArrowSlideOutIn--end {
  0% {
    -webkit-transform: translate(-1.6rem);
            transform: translate(-1.6rem);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes kvArrowSlideOutIn--end {
  0% {
    -webkit-transform: translate(-1.6rem);
            transform: translate(-1.6rem);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes kvArrowSlideOutInMail {
  0% {
    -webkit-transform: translate(-60px);
            transform: translate(-60px);
  }
  to {
    -webkit-transform: translate(-30px);
            transform: translate(-30px);
  }
}
@keyframes kvArrowSlideOutInMail {
  0% {
    -webkit-transform: translate(-60px);
            transform: translate(-60px);
  }
  to {
    -webkit-transform: translate(-30px);
            transform: translate(-30px);
  }
}
@-webkit-keyframes kvArrowSlideOutInMail--end {
  0% {
    -webkit-transform: translate(-30px);
            transform: translate(-30px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes kvArrowSlideOutInMail--end {
  0% {
    -webkit-transform: translate(-30px);
            transform: translate(-30px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes kvArrowSlideOutInBlank {
  0% {
    -webkit-transform: translate(-68px);
            transform: translate(-68px);
  }
  to {
    -webkit-transform: translate(-34px);
            transform: translate(-34px);
  }
}
@keyframes kvArrowSlideOutInBlank {
  0% {
    -webkit-transform: translate(-68px);
            transform: translate(-68px);
  }
  to {
    -webkit-transform: translate(-34px);
            transform: translate(-34px);
  }
}
@-webkit-keyframes kvArrowSlideOutInBlank--end {
  0% {
    -webkit-transform: translate(-34px);
            transform: translate(-34px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes kvArrowSlideOutInBlank--end {
  0% {
    -webkit-transform: translate(-34px);
            transform: translate(-34px);
  }
  to {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/* gradientBtn
------------------------- */
.c-gradientBtn {
  cursor: pointer;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  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: 240px;
  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%;
}

/* ============================================
  採用情報
============================================  */
.general-recruit {
  margin-top: 100px;
}
.general-recruit ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(30px + 3rem) 30px;
}
@media screen and (max-width: 767px) {
  .general-recruit ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.general-recruit ._list ._item {
  width: calc(33.33% - 20px);
  padding: 40px 10px 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .general-recruit ._list ._item {
    width: 100%;
    padding: 30px 10px 60px;
  }
}
.general-recruit ._list ._item.--1 {
  background-color: #804000;
}
.general-recruit ._list ._item.--2 {
  background-color: #369CB2;
}
.general-recruit ._list ._item.--3 {
  background-color: #C9C928;
}
.general-recruit ._list ._item ._title {
  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: 2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .general-recruit ._list ._item ._title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.general-recruit ._list ._item .c-button {
  position: absolute;
  left: -10px;
  bottom: -3rem;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  min-width: 23rem;
  width: 70%;
}
@media only screen and (max-width: 900px) {
  .general-recruit ._list ._item .c-button {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    min-width: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .general-recruit ._list ._item .c-button {
    font-size: 1.6rem;
    padding: 1rem 1.5rem 1rem 2.5rem;
    width: 90%;
  }
}
@media (any-hover: hover) {
  .general-recruit ._list ._item .c-button::before {
    background-color: #ED1C22;
  }
}

.p-numbers-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
.p-numbers-list > ._item {
  padding: 3rem;
  border-radius: 5px;
  border: solid 1px #ED1C22;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1000px) {
  .p-numbers-list > ._item {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item {
    padding: 2.5rem;
  }
}
.p-numbers-list > ._item.--1, .p-numbers-list > ._item.--2 {
  width: calc(50% - 2rem);
}
.p-numbers-list > ._item.--3, .p-numbers-list > ._item.--4, .p-numbers-list > ._item.--5, .p-numbers-list > ._item.--6, .p-numbers-list > ._item.--7, .p-numbers-list > ._item.--8, .p-numbers-list > ._item.--9 {
  width: calc(33.33% - 2.7rem);
}
.p-numbers-list > ._item.--10 {
  width: calc(66.66% - 1.3rem);
}
.p-numbers-list > ._item.--11, .p-numbers-list > ._item.--12 {
  width: calc(50% - 2rem);
}
.p-numbers-list > ._item > ._title {
  font-size: 3rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item > ._title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.p-numbers-list > ._item > ._title > span {
  font-size: 66.66%;
}
.p-numbers-list > ._item > ._icon {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-numbers-list > ._item > ._col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item > ._col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-numbers-list > ._item > ._col > ._item > ._title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item > ._col > ._item > ._title {
    font-size: 1.8rem;
  }
}
.p-numbers-list > ._item > ._age-col {
  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: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item > ._age-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-numbers-list > ._item > ._age-col > ._item > ._title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-numbers-list > ._item > ._age-col > ._item > ._title {
    font-size: 1.8rem;
  }
}
.p-numbers-list > ._item ._text {
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  text-align: center;
}
.p-numbers-list > ._item ._text ._count {
  color: #ED1C22;
  font-size: 7rem;
  font-weight: var(--font-weight-bold);
}
.p-numbers-list > ._item ._note {
  margin-top: 4rem;
}
.p-numbers-list > ._item .doughnut {
  height: 300px;
}
.p-numbers-list > ._item .ageBar {
  width: 248px;
  height: 300px;
}
.p-numbers-list > ._item.--12 {
  background-image: url(../img/numbers/numbers12.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1.178/1;
  position: relative;
  overflow: hidden;
}
.p-numbers-list > ._item.--12 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 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 {
  text-decoration: none;
  width: calc(33.33% - 27px);
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-interview-list ._item:hover {
    -webkit-box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@media screen and (max-width: 767px) {
  .p-interview-list ._item {
    width: 100%;
  }
}
.p-interview-list ._item ._thumbnail {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.p-interview-list ._item ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-interview-list ._item ._inner {
  padding: 20px 20px 40px 20px;
}
.p-interview-list ._item ._inner ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  padding-bottom: 15px;
  border-bottom: solid 2px #ccc;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-interview-list ._item ._inner ._title {
    font-size: 1.8rem;
  }
}
.p-interview-list ._item ._inner ._title::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #ED1C22;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
}
.p-interview-list ._item ._inner ._place,
.p-interview-list ._item ._inner ._job-type {
  font-size: 1.4rem;
  list-style: 1.8;
}
@media screen and (max-width: 767px) {
  .p-interview-list ._item ._inner ._place,
  .p-interview-list ._item ._inner ._job-type {
    font-size: 1.2rem;
  }
}
.p-interview-list ._item ._inner ._name {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  list-style: 1.6;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-interview-list ._item ._inner ._name {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 1200px) {
  .l-column .p-interview-list ._item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 900px) {
  .l-column .p-interview-list ._item {
    width: 100%;
  }
}

.p-interview ._subvisual {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-interview ._subvisual ._thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._thumbnail {
    height: 250px;
  }
}
.p-interview ._subvisual ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-interview ._subvisual ._text-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 500px;
  width: calc(50% - 100px);
  min-width: 550px;
  background-color: #ED1C22;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .p-interview ._subvisual ._text-area {
    min-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area {
    width: 100%;
    height: auto;
    min-width: auto;
  }
}
.p-interview ._subvisual ._text-area::before {
  content: "";
  width: 758px;
  height: 758px;
  border-radius: 50%;
  background-color: #ED1C22;
  position: absolute;
  left: -100px;
  top: calc(50% - 379px);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area::before {
    display: none;
  }
}
.p-interview ._subvisual ._text-area ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 500px;
  padding-right: 80px;
  background-image: url(../img/interview_round.png);
  background-position: left 210px top -70px;
  background-repeat: no-repeat;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area ._inner {
    padding: 40px 6%;
    height: auto;
  }
}
.p-interview ._subvisual ._text-area ._inner ._title {
  margin-bottom: 3rem;
}
.p-interview ._subvisual ._text-area ._inner ._title ._sub {
  color: #fff;
  font-family: "Roboto";
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1000px) {
  .p-interview ._subvisual ._text-area ._inner ._title ._sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area ._inner ._title ._sub {
    font-size: 2rem;
  }
}
.p-interview ._subvisual ._text-area ._inner ._title ._main {
  position: relative;
  z-index: 1;
}
.p-interview ._subvisual ._text-area ._inner ._title ._main span {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 2.5;
  background-color: #fff;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 1rem 1.5rem;
}
@media only screen and (max-width: 1000px) {
  .p-interview ._subvisual ._text-area ._inner ._title ._main span {
    font-size: 2.4rem;
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area ._inner ._title ._main span {
    font-size: 2rem;
  }
}
.p-interview ._subvisual ._text-area ._inner ._place,
.p-interview ._subvisual ._text-area ._inner ._job-type {
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area ._inner ._place,
  .p-interview ._subvisual ._text-area ._inner ._job-type {
    font-size: 1.4rem;
  }
}
.p-interview ._subvisual ._text-area ._inner ._name {
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-interview ._subvisual ._text-area ._inner ._name {
    font-size: 1.8rem;
  }
}
.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: 70px;
}
.p-interview ._faq ._item ._title {
  color: #ED1C22;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  list-style: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-interview ._faq ._item ._title {
    font-size: 2.2rem;
  }
}
.p-interview ._faq ._item ._img {
  margin-top: 40px;
}

/* ============================================
  お知らせ
============================================  */
.p-newsList {
  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-newsList ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 10px;
  gap: 10px 20px;
}
@media only screen and (max-width: 1000px) {
  .p-newsList ._item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-newsList ._item:last-child {
  margin-bottom: 0;
}
.p-newsList ._item ._date-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-newsList ._item ._date-area ._date {
  color: #aaa;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-newsList ._item ._date-area ._date {
    font-size: 1.2rem;
  }
}
.p-newsList ._item ._date-area ._cate {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.8;
  padding: 3px 5px;
  background-color: #eee;
  border-radius: 5px;
  width: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-newsList ._item ._date-area ._cate {
    font-size: 1.2rem;
    height: 24px;
    padding: 8px;
    line-height: 10px;
  }
}
.p-newsList ._item ._date-area ._cate.news {
  background-color: #FCDBD5;
}
.p-newsList ._item ._date-area ._cate.recruit {
  background-color: #DDE3FF;
}
.p-newsList ._item ._date-area ._cate.sdgs {
  background-color: #D6F4D6;
}
.p-newsList ._item ._title {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-newsList ._item ._title {
    font-size: 1.4rem;
  }
}
.p-newsList a._item {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-newsList a._item:hover {
    -webkit-box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.p-newsList.--archive ._item {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
}

.p-news ._title {
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: double 3px #ED1C22;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-news ._title {
    font-size: 2.4rem;
  }
}
.p-news ._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: 40px;
}
.p-news ._date-area ._cate {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.8;
  padding: 3px 5px;
  background-color: #eee;
  border-radius: 5px;
  width: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news ._date-area ._cate {
    font-size: 1.2rem;
    height: 24px;
    padding: 8px;
    line-height: 10px;
  }
}
.p-news ._date-area ._cate.news {
  background-color: #FCDBD5;
}
.p-news ._date-area ._cate.recruit {
  background-color: #DDE3FF;
}
.p-news ._date-area ._cate.sdgs {
  background-color: #D6F4D6;
}
.p-news ._date-area ._date {
  color: #aaa;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-news ._date-area ._date {
    font-size: 1.2rem;
  }
}

/* ============================================
  お問い合わせ
============================================  */
.p-inquiry > ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
}
.p-inquiry > ._list > ._title {
  width: 27rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list > ._title {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 0;
    margin-right: 0;
  }
}
.p-inquiry > ._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-inquiry > ._list > ._title > p {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    font-size: 1.4rem;
  }
}
.p-inquiry > ._list > ._title .hissu,
.p-inquiry > ._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-inquiry > ._list > ._title .hissu,
  .p-inquiry > ._list > ._title .ninni {
    font-size: 1.2rem;
  }
}
.p-inquiry > ._list > ._title .hissu {
  color: #fff;
  background-color: #ED1C22;
}
.p-inquiry > ._list > ._title .ninni {
  color: #666;
  background-color: #eee;
}
.p-inquiry > ._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;
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list ._input {
    width: 100%;
  }
}
.p-inquiry > ._list ._input.select-wrap {
  position: relative;
}
.p-inquiry > ._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-inquiry > ._list ._input.select-wrap::after {
    right: 2rem;
  }
}
.p-inquiry > ._list ._input input[type=text],
.p-inquiry > ._list ._input input[type=tel],
.p-inquiry > ._list ._input input[type=email],
.p-inquiry > ._list ._input input[type=number],
.p-inquiry > ._list ._input textarea,
.p-inquiry > ._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-inquiry > ._list ._input input[type=text],
  .p-inquiry > ._list ._input input[type=tel],
  .p-inquiry > ._list ._input input[type=email],
  .p-inquiry > ._list ._input input[type=number],
  .p-inquiry > ._list ._input textarea,
  .p-inquiry > ._list ._input select {
    font-size: 1.4rem;
  }
}
.p-inquiry > ._list ._input input[type=text].hissuColor,
.p-inquiry > ._list ._input input[type=tel].hissuColor,
.p-inquiry > ._list ._input input[type=email].hissuColor,
.p-inquiry > ._list ._input input[type=number].hissuColor,
.p-inquiry > ._list ._input textarea.hissuColor,
.p-inquiry > ._list ._input select.hissuColor {
  background-color: #FFF5F5;
}
.p-inquiry > ._list ._input textarea {
  height: 16rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-inquiry > ._list ._input select {
  color: #333;
  max-width: 34rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list ._input select {
    max-width: auto;
  }
}
.p-inquiry > ._list ._input select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-inquiry > ._list ._input ._postal-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 900px) {
  .p-inquiry > ._list ._input ._postal-code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-inquiry > ._list ._input ._postal-code ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-inquiry > ._list ._input ._postal-code ._inner span:nth-child(1) {
  width: 7rem;
}
.p-inquiry > ._list ._input ._postal-code ._inner span:nth-child(2) {
  margin-top: 1.2rem;
}
.p-inquiry > ._list ._input ._postal-code ._inner span:nth-child(3) {
  width: 8rem;
}
.p-inquiry > ._list ._input ._postal-code ._inner input[type=text].postal-code1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7rem;
}
.p-inquiry > ._list ._input ._postal-code ._inner input[type=text].postal-code2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8rem;
}
.p-inquiry > ._list ._input ._postal-code ._note {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list ._input ._postal-code ._note {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.p-inquiry > ._list ._input ._example {
  padding: 3rem;
  background-color: #F5F5F5;
}
.p-inquiry > ._list ._input ._example > ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list ._input ._example > ._title {
    font-size: 1.4rem;
  }
}
.p-inquiry > ._list ._input ._example ._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: 1rem;
}
.p-inquiry > ._list ._input ._example ._list ._item {
  padding: 2rem 5.6rem 2rem 2.5rem;
  background-color: #fff;
}
.p-inquiry > ._list ._input ._example ._list ._item ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-inquiry > ._list ._input ._example ._list ._item ._title {
    font-size: 1.4rem;
  }
}
.p-inquiry > ._list ._input ._example ._list ._item ._title::before, .p-inquiry > ._list ._input ._example ._list ._item ._title::after {
  content: "";
  width: 1.6rem;
  height: 0.3rem;
  background-color: #ED1C22;
  position: absolute;
  right: -2.6rem;
  top: 1.1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-inquiry > ._list ._input ._example ._list ._item ._title::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-inquiry > ._list ._input ._example ._list ._item ._title.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.p-inquiry > ._list ._input ._example ._list ._item ._contents {
  display: none;
  margin-top: 1.5rem;
}
.p-inquiry ._agree ._text {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-inquiry ._agree ._text {
    text-align: left;
  }
}
.p-inquiry ._agree ._privacy-link {
  text-align: center;
}
.p-inquiry ._agree ._privacy-link a {
  display: inline-block;
  color: #ED1C22;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-inquiry ._agree ._privacy-link a {
    font-size: 1.4rem;
  }
}
.p-inquiry ._agree ._privacy-link a::after {
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background-image: url(../img/icon_blank--red.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -2.7rem;
  top: calc(50% - 0.75rem);
}
.p-inquiry ._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: #FFF5F5;
}
.p-inquiry ._agree ._checkbox input[type=checkbox] {
  display: none;
}
.p-inquiry ._agree ._checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border: 1px solid #ED1C22;
  background-color: #ED1C22;
}
.p-inquiry ._agree ._checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
  opacity: 1;
}
.p-inquiry ._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-inquiry ._agree ._checkbox .wpcf7-list-item-label {
    text-align: left;
  }
}
.p-inquiry ._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-inquiry ._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-inquiry ._recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.4rem auto 0;
}
.p-inquiry ._submit {
  margin-top: 3.4rem;
}
.p-inquiry ._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-inquiry ._submit ._text {
    text-align: left;
  }
}
.p-inquiry ._submit ._text::after {
  content: "▼";
}
.p-inquiry ._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: #ED1C22;
  border-radius: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-inquiry ._submit ._button {
    font-size: 2rem;
    height: 5rem;
  }
}
@media (any-hover: hover) {
  .p-inquiry ._submit ._button:hover {
    opacity: 0.6;
  }
}
.p-inquiry ._submit ._button input[type=submit] {
  display: none;
}
.p-inquiry .wpcf7-list-item {
  margin: 0;
}
.p-inquiry .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-search ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-search ._list ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 25px;
  min-height: 80px;
  background-color: #fff;
  border-radius: 10px;
  gap: 20px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-search ._list ._item {
    min-height: 70px;
  }
}
@media (any-hover: hover) {
  .p-search ._list ._item:hover {
    -webkit-box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.p-search ._list ._item ._thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-search ._list ._item ._thumbnail img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-search ._list ._item ._thumbnail img {
    height: 40px;
  }
}
.p-search ._list ._item ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-search ._list ._item ._inner h3 {
  margin-bottom: 0;
}
.p-search ._list ._item ._inner p {
  margin-top: 10px;
}

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

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

/* ============================================
  font
============================================  */
.u-text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.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;
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 1.6rem;
  height: 1.5rem;
  background-image: url(../img/icon_blank--b.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.5rem;
  display: inline-block;
  position: relative;
  top: 0.2rem;
}

/* ============================================
  margin
============================================  */
.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-hidden {
  overflow: hidden;
}

/* ============================================
  Hover Animation
============================================  */
@media (any-hover: hover) {
  /* 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
============================================  */
/* fadeIn
------------------------- */
.a-fadeIn {
  opacity: 0;
}
.a-fadeIn.is-active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    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: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

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

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    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 {
  -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);
}

.a-uppercase {
  text-transform: uppercase;
  opacity: 0;
  translate: 0.5rem 0;
}
.a-uppercase.is-active {
  opacity: 1;
  translate: 0;
  -webkit-transition: color 0.6s ease, opacity 0.6s 0.05s ease, translate 0.6s 0.05s ease;
  transition: color 0.6s ease, opacity 0.6s 0.05s ease, translate 0.6s 0.05s ease;
}

/* ============================================
  固定ページ
============================================  */
.w-page-editor {
  /* h
  ============================================  */
  /* ul
  ============================================  */
  /* ol
  ============================================  */
  /* p
  ============================================  */
  /* gmap
  ============================================  */
}
.w-page-editor h2.wp-block-heading {
  font-size: 3rem;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .w-page-editor h2.wp-block-heading {
    font-size: 2.2rem;
  }
}
.w-page-editor h2.wp-block-heading::before, .w-page-editor h2.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.w-page-editor h3.wp-block-heading {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .w-page-editor h3.wp-block-heading {
    font-size: 2rem;
  }
}
.w-page-editor h3.wp-block-heading::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #ED1C22;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.w-page-editor ul.wp-block-list li {
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.w-page-editor ul.wp-block-list li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .w-page-editor ul.wp-block-list li {
    font-size: 1.4rem;
  }
}
.w-page-editor ul.wp-block-list li:last-child {
  margin-bottom: 0;
}
.w-page-editor ol.wp-block-list {
  list-style-type: decimal;
}
.w-page-editor ol.wp-block-list li {
  list-style-position: inside;
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 767px) {
  .w-page-editor ol.wp-block-list li {
    font-size: 1.4rem;
  }
}
.w-page-editor ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
.w-page-editor p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .w-page-editor p {
    font-size: 1.4rem;
  }
}
.w-page-editor p.read {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .w-page-editor p.read {
    font-size: 1.8rem;
    text-align: left;
    margin: 30px 0;
  }
}
.w-page-editor .w-gmap > div {
  height: 240px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .w-page-editor .w-gmap > div {
    height: 200px;
  }
}
.w-page-editor .w-gmap > div iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ============================================
  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: 50px;
}
.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: 4.5rem;
  height: 4.5rem;
  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: 0.5rem;
  border-radius: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi .page {
  background-color: #fff;
  border: 0.2rem solid #ccc;
}
@media (any-hover: hover) {
  .wp-pagenavi .page:hover {
    color: #fff;
    background-color: #ED1C22;
    border: 0.2rem solid #ED1C22;
  }
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #ED1C22;
  border: 0.2rem solid #ED1C22 !important;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 1.6rem;
  border: none;
  color: #ED1C22;
  text-decoration: underline;
  margin: 0 1.5rem;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */


/* ============================================
  採用バナー
============================================  */
.l-recruit_banner {
  position: fixed;
  right: 60px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 50;
}

.l-recruit_banner ._item {
  position: relative;
}

.l-recruit_banner a {
  display: block;
  transition: all 0.3s;
}

.l-recruit_banner a:hover {
  opacity: 0.8;
}

.l-recruit_banner ._item.--2 ._01 {
  position: fixed;
  bottom: 20px;
  right: 289px;
  z-index: 51;
}
.l-recruit_banner ._item.--2 ._02 {
  position: fixed;
  bottom: 20px;
  right: 81px;
  z-index: 51;
}


.bnr-close {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  font-size: 16px;
  background: rgba(0,0,0,1);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.l-recruit_banner ._item.--1 .bnr-close{
  top: 8px;
  right: 5px;
}

.l-recruit_banner ._item.--2 .bnr-close{
  top: -3px;
  right: 5px;
}

.bnr-close:hover {
  background: rgba(0,0,0,0.8);
}

@media only screen and (max-width: 767px) {
  .l-recruit_banner {
    right: auto;
    left: 10px;
    width: 280px;
  }

  .l-recruit_banner ._item.--1 .bnr-close{
    top: 0;
    right: -1px;
  }

  .l-recruit_banner ._item.--2 .bnr-close{
    top: -7px;
    right: -1px;
  }

  .l-recruit_banner ._item.--2 ._01 {
    position: fixed;
    bottom: 13px;
    right: auto;
    left: 19px;
    z-index: 51;
    width: 129px;
  }
  .l-recruit_banner ._item.--2 ._02 {
    position: fixed;
    bottom: 13px;
    right: auto;
    left: 149px;
    z-index: 51;
    width: 129px;
  }

}