@charset "UTF-8";
/* CSS Document */
/* ============================================
  Font
============================================  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..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)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-base: #222;
  --color-primary: #0075C1;
  --color-secondary: #E76C46;
  --color-accent: #1A1C3E;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

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

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

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

sup {
  vertical-align: super;
}

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

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

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

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

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

/* ============================================
  header
============================================  */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 0 0 2%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
  background-color: #fff;
}
@media only screen and (max-width: 1100px) {
  .l-header {
    padding: 0 4% 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 42px;
  }
}
.l-header::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 139px;
  left: 0;
  top: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(31.55%, #FFFFFF), color-stop(54.85%, rgba(255, 255, 255, 0.620192)), color-stop(74.82%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFFFFF 31.55%, rgba(255, 255, 255, 0.620192) 54.85%, rgba(255, 255, 255, 0) 74.82%);
}
@media screen and (max-width: 767px) {
  .l-header::before {
    display: none;
  }
}
.l-header ._logo {
  width: 253px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 101;
}
@media only screen and (max-width: 1300px) {
  .l-header ._logo {
    width: 160px;
  }
}
.l-header ._navarea {
  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: 40px;
  position: relative;
  z-index: 101;
}
@media only screen and (max-width: 1300px) {
  .l-header ._navarea {
    gap: 20px;
  }
}
.l-header ._navarea ._nav {
  height: 70px;
  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: 40px;
}
@media only screen and (max-width: 1300px) {
  .l-header ._navarea ._nav {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._navarea ._nav {
    display: none;
  }
}
.l-header ._navarea ._nav ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--clolor-accent);
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.1em;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .l-header ._navarea ._nav ._item {
    font-size: 1.5rem;
  }
}
.l-header ._navarea ._nav ._item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.l-header ._navarea ._nav ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-header ._navarea ._entrybtn {
  width: 288px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1100px) {
  .l-header ._navarea ._entrybtn {
    display: none;
  }
}
.l-header ._navarea ._entrybtn ._btn {
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 70px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._navarea ._entrybtn ._btn.--accent {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
}
.l-header ._navarea ._entrybtn ._btn.--secondary {
  background-color: var(--color-secondary);
  border: solid 2px var(--color-secondary);
}
.l-header ._navarea ._entrybtn ._btn.--blank::after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  width: 15px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-header ._navarea ._entrybtn ._btn.--arrow::after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
  width: 15px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-header ._navarea ._entrybtn ._btn:hover {
  background-color: #fff;
}
.l-header ._navarea ._entrybtn ._btn:hover.--accent {
  color: var(--color-accent);
}
.l-header ._navarea ._entrybtn ._btn:hover.--accent.--blank::after, .l-header ._navarea ._entrybtn ._btn:hover.--accent.--arrow::after {
  background-color: var(--color-accent);
}
.l-header ._navarea ._entrybtn ._btn:hover.--secondary {
  color: var(--color-secondary);
}
.l-header ._navarea ._entrybtn ._btn:hover.--secondary.--blank::after, .l-header ._navarea ._entrybtn ._btn:hover.--secondary.--arrow::after {
  background-color: var(--color-secondary);
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._nav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 99;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding-top: 80px;
  background-color: rgb(255, 255, 255);
  padding: 80px 6%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.l-hamburger ._nav ._list ._item {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: solid 1px #b3b3b3;
  position: relative;
}
.l-hamburger ._nav ._entrybtn {
  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: 10px;
}
.l-hamburger ._nav ._entrybtn:hover {
  background-color: #fff;
}
.l-hamburger ._nav ._entrybtn:hover.--accent {
  color: var(--color-accent);
}
.l-hamburger ._nav ._entrybtn:hover.--accent.--blank::after, .l-hamburger ._nav ._entrybtn:hover.--accent.--arrow::after {
  background-color: var(--color-accent);
}
.l-hamburger ._nav ._entrybtn:hover.--secondary {
  color: var(--color-secondary);
}
.l-hamburger ._nav ._entrybtn:hover.--secondary.--blank::after, .l-hamburger ._nav ._entrybtn:hover.--secondary.--arrow::after {
  background-color: var(--color-secondary);
}
.l-hamburger ._nav ._entrybtn ._btn {
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: 100%;
  height: 50px;
  background-color: #fff;
  padding: 20px 0;
  height: 110px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._nav ._entrybtn ._btn.--accent {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
}
.l-hamburger ._nav ._entrybtn ._btn.--secondary {
  background-color: var(--color-secondary);
  border: solid 2px var(--color-secondary);
}
.l-hamburger ._nav ._entrybtn ._btn.--blank::after {
  content: "";
  position: absolute;
  right: 50px;
  top: calc(50% - 9px);
  width: 26px;
  height: 18px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._entrybtn ._btn.--blank::after {
    width: 21px;
    height: 13px;
    top: calc(50% - 7px);
    right: 20px;
  }
}
.l-hamburger ._nav ._entrybtn ._btn.--arrow::after {
  content: "";
  position: absolute;
  right: 50px;
  top: calc(50% - 4px);
  width: 20px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._entrybtn ._btn.--arrow::after {
    right: 20px;
    top: calc(50% - 4px);
    width: 20px;
    height: 8px;
  }
}
.l-hamburger ._line {
  background-color: var(--color-primary);
  position: fixed;
  right: 0;
  top: 0;
  width: 42px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 42px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 101;
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 27px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 13px;
  left: 8px;
}
.l-hamburger ._line ._item--2 {
  width: 14px;
  top: 20px;
  left: 21px;
}
.l-hamburger ._line ._text {
  position: absolute;
  left: 10px;
  bottom: 6px;
  color: #fff;
  font-size: 0.9rem;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px !important;
  width: 20px !important;
  left: 10px !important;
}
.is-open ._item--2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 15px !important;
  width: 20px !important;
  left: 10px !important;
}

/* ============================================
  subvisual
============================================  */
.l-subvisual {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .l-subvisual {
    height: 200px;
  }
}
.l-subvisual ._inner {
  position: relative;
  max-width: 1500px;
  width: 75%;
  margin: 0 auto;
  height: 300px;
  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;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    height: 200px;
  }
}
.l-subvisual ._inner ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}
.l-subvisual ._inner ._title ._main {
  position: relative;
  font-size: 4rem;
  font-weight: var(--font-weight-medium);
  padding-left: 80px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._main {
    font-size: 2.5rem;
    padding-left: 40px;
  }
}
.l-subvisual ._inner ._title ._main::before {
  content: "";
  display: block;
  background-image: url(../img/subvisual_materiaru.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 65px;
  height: 36px;
  position: absolute;
  top: calc(0.5em - 18px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._main::before {
    width: 32px;
    height: 18px;
    top: calc(0.5em - 9px);
  }
}
.l-subvisual ._inner ._title ._sub {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._sub {
    font-size: 1.4rem;
  }
}
.l-subvisual ._inner::after {
  content: "";
  display: block;
  background-image: url(../img/subvisual_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 983px;
  height: 542px;
  position: absolute;
  top: -190px;
  right: -290px;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner::after {
    scale: 50%;
    top: -210px;
    right: -407px;
  }
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 15px 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
@media screen and (max-width: 767px) {
  .l-panNav {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    padding: 10px 0;
  }
}
.l-panNav ._list {
  max-width: 1500px;
  width: 75%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-panNav ._list {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-panNav ._list {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.l-panNav ._list ._item {
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-panNav ._list ._item::after {
  content: "ー";
  color: var(--color-primary);
  padding: 0 5px;
}
.l-panNav ._list ._item:last-child::after {
  display: none;
}
.l-panNav ._list ._item a {
  color: #aaa;
  text-decoration: none;
}
.l-panNav ._list ._item a:hover {
  text-decoration: underline;
}

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

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

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

/* ============================================
  h
============================================  */
/* ============================================
  アンカーリスト
============================================  */
.l-anchorlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-anchorlist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.l-anchorlist a {
  display: block;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  text-decoration: none;
  padding: 5px 10px;
  width: 244px;
  position: relative;
  border-bottom: solid 1px var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-anchorlist a {
    font-size: 1.3rem;
    width: 200px;
  }
}
.l-anchorlist a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: solid 1px var(--color-primary);
  border-bottom: solid 1px var(--color-primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-anchorlist a:hover {
  color: #333;
}
.l-anchorlist a:hover::after {
  top: calc(50% - 0px);
}

/* ============================================
  エントリーバナー
============================================  */
.l-entrybtn {
  padding: 45px 0;
  background-color: #E4EAED;
}
@media screen and (max-width: 767px) {
  .l-entrybtn {
    padding: 30px 0;
  }
}
.l-entrybtn .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .l-entrybtn .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.l-entrybtn ._btn {
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: 100%;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 0;
  height: 110px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-entrybtn ._btn {
    font-size: 1.4rem;
    border-radius: 10px;
    height: 60px;
  }
}
.l-entrybtn ._btn.--accent {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
}
.l-entrybtn ._btn.--secondary {
  background-color: var(--color-secondary);
  border: solid 2px var(--color-secondary);
}
.l-entrybtn ._btn.--blank::after {
  content: "";
  position: absolute;
  right: 50px;
  top: calc(50% - 9px);
  width: 26px;
  height: 18px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-entrybtn ._btn.--blank::after {
    width: 21px;
    height: 13px;
    top: calc(50% - 7px);
    right: 20px;
  }
}
.l-entrybtn ._btn.--arrow::after {
  content: "";
  position: absolute;
  right: 50px;
  top: calc(50% - 4px);
  width: 20px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-entrybtn ._btn.--arrow::after {
    right: 20px;
    top: calc(50% - 4px);
    width: 20px;
    height: 8px;
  }
}
.l-entrybtn ._btn:hover {
  background-color: #fff;
}
.l-entrybtn ._btn:hover.--accent {
  color: var(--color-accent);
}
.l-entrybtn ._btn:hover.--accent.--blank::after, .l-entrybtn ._btn:hover.--accent.--arrow::after {
  background-color: var(--color-accent);
}
.l-entrybtn ._btn:hover.--secondary {
  color: var(--color-secondary);
}
.l-entrybtn ._btn:hover.--secondary.--blank::after, .l-entrybtn ._btn:hover.--secondary.--arrow::after {
  background-color: var(--color-secondary);
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #fff;
  padding: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 22px 0 0;
  }
}
.l-footer .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }
}
.l-footer .l-inner ._companyinfo ._logo {
  margin-bottom: 40px;
  max-width: 336px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._companyinfo ._logo {
    width: 270px;
    margin-left: 17px;
    margin-bottom: 15px;
  }
}
.l-footer .l-inner ._companyinfo ._address {
  color: var(--color-accent);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._companyinfo ._address {
    font-size: 1.2rem;
  }
}
.l-footer .l-inner ._navarea ._nav {
  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: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._nav {
    gap: 18px 4%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.l-footer .l-inner ._navarea ._nav ._item {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._nav ._item {
    width: 48%;
    font-size: 1.3rem;
  }
}
.l-footer .l-inner ._navarea ._nav ._item a {
  text-decoration: none;
  padding-left: 1.2em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._nav ._item a {
    padding-left: 1.5em;
  }
}
.l-footer .l-inner ._navarea ._nav ._item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-accent);
  background-image: url("../img/icon-arrow2.svg");
  background-size: 5px 5px;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._nav ._item a::before {
    top: 3px;
  }
}
.l-footer .l-inner ._navarea ._nav ._item a:hover {
  text-decoration: underline;
}
.l-footer .l-inner ._navarea ._link {
  width: 175px;
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 5px;
  border-bottom: 1px solid var(--color-primary);
  margin-left: auto;
  margin-right: 0;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._link {
    font-size: 1.3rem;
    width: 185px;
    margin-right: auto;
    margin-top: 20px;
  }
}
.l-footer .l-inner ._navarea ._link::after {
  content: "";
  position: absolute;
  right: 2px;
  top: calc(50% - 6px);
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url("../img/icon-arrow2.svg");
  background-size: 5px 5px;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-footer .l-inner ._navarea ._link::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    background-size: 7px 7px;
  }
}
.l-footer .l-inner ._navarea ._link:hover::after {
  right: 0;
}
.l-footer ._copyright {
  color: #909FAE;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  padding: 30px 6%;
  border-top: 1px dashed #A5A5A5;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer ._copyright {
    margin-top: 25px;
    padding: 15px 6% 60px;
  }
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background-color: rgb(26, 28, 62);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-pagetop span {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-pagetop span {
    font-size: 0.8rem;
  }
}
.l-pagetop:hover {
  background-color: rgba(26, 28, 62, 0.8);
}

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

/* ============================================
  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 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--color-primary);
  border: solid 2px var(--color-primary);
  padding: 15px 40px 15px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.3rem;
    text-align: center;
    padding: 10px 40px;
  }
}
.c-button.--accent {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
}
.c-button.--secondary {
  background-color: var(--color-secondary);
  border: solid 2px var(--color-secondary);
}
.c-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-arrow2.svg");
          mask-image: url("../img/icon-arrow2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button.--blank::after {
  top: calc(50% - 5px);
  width: 14px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
}
.c-button.--arrow::after {
  top: calc(50% - 2px);
  width: 12px;
  height: 5px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
}
.c-button:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.c-button:hover::after {
  background-color: var(--color-primary);
}
.c-button:hover.--accent {
  color: var(--color-accent);
}
.c-button:hover.--secondary {
  color: var(--color-secondary);
}

/* 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: 400px;
  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%;
}

#studio-companion-notice {
  display: none !important;
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  height: 980px;
  min-height: auto;
  position: relative;
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    max-height: 172vw;
    background-image: url(../../front/img/mainvisual-sp01.png), url(../../front/img/mainvisual-sp02.png);
    background-position: top center, bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 0;
  }
}
.f-mainvisual .l-inner {
  padding-top: 275px;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .f-mainvisual .l-inner {
    padding-top: 65vw;
  }
}
.f-mainvisual ._catchcopy {
  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;
  position: relative;
}
.f-mainvisual ._catchcopy ._materiaru {
  opacity: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._materiaru {
    width: 72px;
    height: 40px;
    margin-bottom: 15px;
  }
}
.f-mainvisual ._catchcopy ._text {
  color: var(--color-accent);
  font-size: 4.7rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._text {
    font-size: 2.7rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.f-mainvisual ._catchcopy ._text ._highlight {
  color: var(--color-secondary);
  font-size: 5.9rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._text ._highlight {
    font-size: 3.4rem;
  }
}
.f-mainvisual ._catchcopy ._text ._curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.f-mainvisual ._catchcopy ._text ._curtain::after {
  background-color: var(--color-primary);
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 2;
  -webkit-transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.8s 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.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.f-mainvisual ._catchcopy ._text ._curtain ._curtain2::after {
  background-color: var(--color-secondary);
  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.6s 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.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.f-mainvisual ._catchcopy ._text ._curtain ._curtain3::after {
  background-color: var(--color-accent);
  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);
}
.f-mainvisual ._catchcopy ._text ._curtain ._inner {
  opacity: 0;
}
.f-mainvisual ._catchcopy ._btnlist {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._btnlist {
    gap: 10px;
    width: 100%;
  }
}
.f-mainvisual ._catchcopy ._btnlist ._button {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: 100%;
  max-width: 235px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  padding: 15px 45px 15px 30px;
  border: solid 2px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._btnlist ._button {
    font-size: 1.2rem;
    padding: 15px 20px;
    max-width: none;
  }
}
.f-mainvisual ._catchcopy ._btnlist ._button.--accent {
  background-color: var(--color-accent);
}
.f-mainvisual ._catchcopy ._btnlist ._button.--secondary {
  background-color: var(--color-secondary);
}
.f-mainvisual ._catchcopy ._btnlist ._button.--blank::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  width: 14px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._btnlist ._button.--blank::after {
    right: 10px;
  }
}
.f-mainvisual ._catchcopy ._btnlist ._button.--arrow::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  width: 12px;
  height: 5px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._catchcopy ._btnlist ._button.--arrow::after {
    right: 10px;
  }
}
.f-mainvisual ._catchcopy ._btnlist ._button:hover.--accent {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background-color: #fff;
}
.f-mainvisual ._catchcopy ._btnlist ._button:hover.--secondary {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background-color: #fff;
}
.f-mainvisual ._catchcopy ._btnlist ._button:hover.--blank::after {
  background-color: var(--color-accent);
}
.f-mainvisual ._catchcopy ._btnlist ._button:hover.--arrow::after {
  background-color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._bgimage {
    display: none;
  }
}
.f-mainvisual ._bgimage ._img {
  position: absolute;
  z-index: 2;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}
.f-mainvisual ._bgimage ._img.--01 {
  top: 0;
  right: calc(50% + 60px);
  width: 704px;
  height: 470px;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}
.f-mainvisual ._bgimage ._img.--02 {
  top: 0;
  left: calc(50% + 60px);
  width: 670px;
  height: 441px;
  -webkit-transform: translate(50px, -50px);
          transform: translate(50px, -50px);
}
.f-mainvisual ._bgimage ._img.--03 {
  top: 221px;
  right: calc(50% + 280px);
  width: 879px;
  height: 879px;
  -webkit-transform: translate(-50px, 50px);
          transform: translate(-50px, 50px);
}
.f-mainvisual ._bgimage ._img.--04 {
  top: 221px;
  left: calc(50% + 280px);
  width: 813px;
  height: 813px;
  -webkit-transform: translate(50px, 50px);
          transform: translate(50px, 50px);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._bgrectangle {
    display: none;
  }
}
.f-mainvisual ._bgrectangle ._rectangle {
  position: absolute;
  z-index: 5;
  opacity: 0;
}
.f-mainvisual ._bgrectangle ._rectangle.--01 {
  top: 305px;
  left: calc(50% - 803px);
}
.f-mainvisual ._bgrectangle ._rectangle.--02 {
  top: 760px;
  left: calc(50% - 833px);
}
.f-mainvisual ._bgrectangle ._rectangle.--03 {
  top: 554px;
  left: calc(50% - 433px);
}
.f-mainvisual ._bgrectangle ._rectangle.--04 {
  top: 35px;
  right: calc(50% - 871px);
}
.f-mainvisual ._bgrectangle ._rectangle.--05 {
  top: 737px;
  right: calc(50% - 931px);
}
.f-mainvisual ._bgrectangle ._rectangle.--05 {
  top: 737px;
  right: calc(50% - 931px);
}
.f-mainvisual ._bgrectangle ._rectangle.--06 {
  top: -214px;
  left: calc(50% - 1390px);
  z-index: 1;
}
.f-mainvisual ._bgrectangle ._rectangle.--07 {
  top: 148px;
  right: calc(50% - 1100px);
  z-index: 1;
}
.f-mainvisual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: 4;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(31.55%, #FFFFFF), color-stop(54.85%, rgba(255, 255, 255, 0.620192)), color-stop(74.82%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFFFFF 31.55%, rgba(255, 255, 255, 0.620192) 54.85%, rgba(255, 255, 255, 0) 74.82%);
}
@media screen and (max-width: 767px) {
  .f-mainvisual::before {
    display: none;
  }
}
.f-mainvisual::after {
  content: "";
  position: absolute;
  bottom: -500px;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 4;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .f-mainvisual::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._bg {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
  }
}

.is-loaded.active ._catchcopy ._materiaru {
  opacity: 1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is-loaded.active ._catchcopy ._btnlist {
  opacity: 1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is-loaded.active .f-info ._contents {
  opacity: 1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.is-loaded.active ._bgimage ._img {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.is-loaded.active ._rectangle {
  opacity: 1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.is-loaded.active ._bg {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is-loaded.active ._curtain::after {
  left: 100% !important;
  width: 100% !important;
}
.is-loaded.active ._curtain ._curtain2::after,
.is-loaded.active ._curtain ._curtain3::after {
  left: 100% !important;
  width: 100% !important;
}
.is-loaded.active ._curtain ._inner {
  opacity: 1 !important;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* ============================================
  お知らせ
============================================  */
@media screen and (max-width: 767px) {
  .f-info {
    padding-bottom: 35px;
    padding-top: 50px;
  }
}
.f-info .l-inner {
  position: relative;
}
.f-info .l-inner ._contents {
  opacity: 0;
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 28, 65, 0.2);
          box-shadow: 0px 0px 30px rgba(0, 28, 65, 0.2);
  border-radius: 20px;
  padding: 35px 20px 35px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 70px;
  top: -240px;
  z-index: 10;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._contents {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.f-info .l-inner ._contents ._title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._contents ._title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.f-info .l-inner ._contents ._list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 15px;
}
@media only screen and (max-width: 767px) {
  .f-info .l-inner ._contents ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-info .l-inner ._contents ._list ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  color: #676767;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._contents ._list ._date {
    font-size: 1.3rem;
  }
}
.f-info .l-inner ._contents ._list ._date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: calc(1em - 7px);
}
.f-info .l-inner ._contents ._list ._text {
  width: calc(100% - 135px);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  padding-right: 45px;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._contents ._list ._text {
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #E0E3EF;
    margin-bottom: 10px;
  }
}
.f-info .l-inner ._contents ._list ._text a {
  text-decoration: none;
}
.f-info .l-inner ._contents ._list ._text a::after {
  content: "";
  position: absolute;
  right: 2px;
  top: calc(50% - 11px);
  display: block;
  width: 23px;
  height: 23px;
  background-color: var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-mask-image: url("../img/icon-arrow2.svg");
          mask-image: url("../img/icon-arrow2.svg");
  -webkit-mask-size: 9px 9px;
          mask-size: 9px 9px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._contents ._list ._text a::after {
    top: calc(50% - 19px);
  }
}
.f-info .l-inner ._contents ._list ._text a:hover {
  text-decoration: underline;
}
.f-info .l-inner ._link {
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-primary);
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._link {
    width: 118px;
    font-size: 1.3rem;
    margin-left: auto;
    margin-right: 0;
    margin-top: 5px;
  }
}
.f-info .l-inner ._link::after {
  content: "";
  position: absolute;
  right: 2px;
  top: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url("../img/icon-arrow2.svg");
  background-size: 6px 6px;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .f-info .l-inner ._link::after {
    top: calc(50% - 7px);
    width: 15px;
    height: 15px;
  }
}
.f-info .l-inner ._link:hover::after {
  right: 0;
}

/* ============================================
  当社について
============================================  */
.f-about {
  padding: 90px 0;
  background-color: #fff;
  background-image: url(../../front/img/about_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .f-about {
    padding: 50px 0;
  }
}
.f-about ._title {
  font-size: 3.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .f-about ._title {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.f-about ._text {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-about ._text {
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.7;
    text-align: left;
  }
}
.f-about ._button {
  position: relative;
  display: block;
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: 100%;
  max-width: 380px;
  border-radius: 9999px;
  background-color: #fff;
  padding: 15px 45px 15px 30px;
  margin: 50px auto 0 auto;
  border: solid 2px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-about ._button {
    font-size: 1.3rem;
    max-width: 260px;
  }
}
.f-about ._button::after {
  content: "";
  position: absolute;
  right: 35px;
  top: calc(50% - 5px);
  width: 14px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-blank.svg");
          mask-image: url("../img/icon-blank.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .f-about ._button::after {
    right: 16px;
  }
}
.f-about ._button:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.f-about ._button:hover::after {
  background-color: #fff;
}

/* ============================================
  仕事を知る
============================================  */
.f-work {
  position: relative;
  padding: 110px 0 144px;
}
@media screen and (max-width: 767px) {
  .f-work {
    padding: 30px 0 60px;
  }
}
.f-work ._contents {
  position: relative;
  width: 50%;
  background: #E8F4F9;
  padding: 80px 0 100px 200px;
  padding-right: calc(var(--vw) * 12.5);
  padding-left: calc(var(--vw) * 12.5);
  border-radius: 20px 0px 0px 20px;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-work ._contents {
    width: 94%;
    padding: 50px 30px 100px 30px;
    border-radius: 10px 0 0 10px;
    padding-bottom: calc(120px + 65vw);
  }
}
.f-work ._contents::after {
  display: block;
  content: "";
  -webkit-mask-image: url("../../front/img/materiaru_bg.svg");
          mask-image: url("../../front/img/materiaru_bg.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  width: 630px;
  height: 347px;
  position: absolute;
  right: -190px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .f-work ._contents::after {
    width: 387px;
    height: 216px;
    right: auto;
    bottom: auto;
    left: 91px;
    top: 98px;
  }
}
.f-work ._contents ._title {
  color: var(--color-accent);
  font-size: 3.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .f-work ._contents ._title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.f-work ._contents ._text {
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .f-work ._contents ._text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.f-work ._contents .c-button {
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.f-work ._images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 966px;
  position: absolute;
  top: 75px;
  right: 42.5%;
}
@media screen and (max-width: 767px) {
  .f-work ._images {
    top: auto;
    right: auto;
    left: 0;
    bottom: 110px;
    width: 100%;
    gap: 4%;
  }
}
@media screen and (max-width: 767px) {
  .f-work ._images ._img.--01 {
    width: 58%;
  }
}
.f-work ._images ._img.--02 {
  margin-top: 173px;
}
@media screen and (max-width: 767px) {
  .f-work ._images ._img.--02 {
    width: 38%;
    margin-top: 30vw;
  }
}

/* ============================================
  働く環境を知る
============================================  */
.f-environment {
  background: #E8F4F9;
  padding-left: 12.5%;
  padding-top: 75px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-environment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 50px 0 50px 15px;
  }
}
.f-environment::after {
  display: block;
  content: "";
  -webkit-mask-image: url("../../front/img/materiaru_bg.svg");
          mask-image: url("../../front/img/materiaru_bg.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  width: 630px;
  height: 347px;
  position: absolute;
  left: -190px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .f-environment::after {
    display: none;
    width: 387px;
    height: 216px;
    bottom: auto;
    left: 91px;
    top: 98px;
  }
}
.f-environment ._titlearea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 350px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .f-environment ._titlearea {
    margin-top: 0;
    width: 100%;
  }
}
.f-environment ._titlearea ._title {
  color: var(--color-accent);
  font-size: 3.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .f-environment ._titlearea ._title {
    font-size: 2.5rem;
    text-align: center;
    padding-right: 15px;
    margin-bottom: 0;
  }
}
.f-environment .c-button {
  height: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-environment .c-button {
    height: 40px;
    margin-bottom: 15px;
    max-width: 260px;
  }
}
.f-environment .c-button.--01 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .f-environment .c-button.--01 {
    margin-bottom: 15px;
  }
}
.f-environment .environmentslide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.f-environment ._list ._item {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item {
    width: 210px;
  }
}
.f-environment ._list ._item ._title {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._title {
    font-size: 1.5rem;
  }
}
.f-environment ._list ._item ._contents {
  width: 100%;
  height: 220px;
  background: #fff;
  border-radius: 40px;
  padding: 25px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents {
    height: 155px;
    padding: 15px;
  }
}
.f-environment ._list ._item ._contents ._icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #E8F4F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents ._icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
}
.f-environment ._list ._item ._contents ._icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: none;
  max-height: 80%;
}
.f-environment ._list ._item ._contents ._numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.f-environment ._list ._item ._contents ._numbers.--overseas {
  border-top: 1px dashed #A5A5A5;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents ._numbers.--overseas {
    margin-top: 10px;
  }
}
.f-environment ._list ._item ._contents ._numbers dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents ._numbers dt {
    font-size: 1.3rem;
  }
}
.f-environment ._list ._item ._contents ._numbers dd {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents ._numbers dd {
    font-size: 1.2rem;
  }
}
.f-environment ._list ._item ._contents ._numbers dd span {
  color: var(--color-primary);
  font-size: 4.4rem;
  padding-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-environment ._list ._item ._contents ._numbers dd span {
    font-size: 3.2rem;
  }
}

/* ============================================
  よくあるご質問
============================================  */
.f-faq {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-faq {
    padding-top: 50px;
    padding-bottom: calc(50px + 18vw);
  }
}
.f-faq::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  background-image: url(../../front/img/materiaru_bg2.svg);
  display: block;
  width: 983px;
  height: 542px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-faq::before {
    left: 9%;
    top: auto;
    bottom: -30px;
    width: 496px;
    height: 278px;
  }
}
.f-faq .l-inner {
  position: relative;
  z-index: 1;
}
.f-faq ._title {
  color: var(--color-accent);
  font-size: 3.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .f-faq ._title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
  }
}
.f-faq ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.f-faq ._list ._item {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 76, 126, 0.15);
          box-shadow: 0px 0px 20px rgba(0, 76, 126, 0.15);
  background-color: #fff;
  padding: 25px 30px;
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item {
    border-radius: 5px;
    padding: 15px;
  }
}
.f-faq ._list ._item ._question {
  position: relative;
  color: var(--color-accent);
  padding-left: 50px;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._question {
    font-size: 1.3rem;
    padding-left: 30px;
    gap: 10px;
  }
}
.f-faq ._list ._item ._question ._titlearea ._icon {
  display: block;
  position: absolute;
  left: 0;
  top: -18px;
  color: var(--color-primary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._question ._titlearea ._icon {
    font-size: 2.5rem;
    top: -13px;
  }
}
.f-faq ._list ._item ._question ._status {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 27px;
  height: 27px;
  background-color: var(--color-accent);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._question ._status {
    width: 24px;
    height: 24px;
  }
}
.f-faq ._list ._item ._question ._status::before, .f-faq ._list ._item ._question ._status::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 8px;
  top: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._question ._status::before, .f-faq ._list ._item ._question ._status::after {
    width: 8px;
    right: 8px;
    top: 12px;
  }
}
.f-faq ._list ._item ._question ._status::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.f-faq ._list ._item ._question.is-open ._status::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.f-faq ._list ._item ._answer {
  display: none;
  position: relative;
  color: var(--color-base);
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  padding: 20px 20px 20px 60px;
  background-color: #E8F4F9;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._answer {
    margin-left: 30px;
    padding: 15px 15px 15px 40px;
    font-size: 1.3rem;
    margin-top: 15px;
  }
}
.f-faq ._list ._item ._answer ._icon {
  display: block;
  position: absolute;
  left: 25px;
  top: 6px;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-faq ._list ._item ._answer ._icon {
    font-size: 2rem;
    left: 15px;
  }
}
.f-faq ._linkwrap {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .f-faq ._linkwrap {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 35px 0 0 auto;
  }
}
.f-faq ._link {
  width: 140px;
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .f-faq ._link {
    width: 120px;
    font-size: 1.3rem;
  }
}
.f-faq ._link::after {
  content: "";
  position: absolute;
  right: 2px;
  top: calc(50% - 11px);
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url("../img/icon-arrow2.svg");
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .f-faq ._link::after {
    width: 16px;
    height: 16px;
    background-size: 7px 7px;
    top: calc(50% - 8px);
  }
}
.f-faq ._link:hover::after {
  right: 0;
}

/* ============================================
  仕事を知る
============================================  */
.recruit_work_box {
  margin-bottom: 80px;
}

.recruit_work_box:last-child {
  margin-bottom: 0;
}

.ecruit_work_box_inner {
  gap: 40px;
}

.ecruit_work_box_inner > div:first-child {
  width: 48%;
}

.ecruit_work_box_inner > div:first-child img {
  width: 100%;
  border-radius: 20px;
}

.ecruit_work_box_inner > div:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0 1;
          flex: 0 0 0 1;
}

.ecruit_work_box_inner > div:last-child h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 35px;
}

.ecruit_work_box_inner > div:last-child h4 {
  font-size: 1.4rem;
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
}

.ecruit_work_box_inner > div:last-child h4::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background: #0075C1;
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
}

.ecruit_work_box_inner > div:last-child p {
  line-height: 1.87;
}

.recruit_work_box_inner_btn {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

@media screen and (max-width: 767px) {
  /*
  .ecruit_work_box_inner > div:last-child h3 {
      font-size: 4.0rem;
      margin-bottom: 35px;
  }
  .ecruit_work_box_inner > div:last-child h4 {
      font-size: 2.4rem;
  }
  .ecruit_work_box_inner > div:last-child p {
      font-size: 2.6rem;
  }
  */
  .ecruit_work_box_inner > div:last-child h3 {
    font-size: 2.3rem;
    margin-bottom: 30px;
  }
  .recruit_work_box_inner_btn {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .recruit_work_box_inner_btn .wp-block-button {
    width: 100%;
    text-align: center;
  }
  .w-editorarea .recruit_work_box_inner_btn a.wp-block-button__link {
    width: 80% !important;
    margin: 30px auto 0;
  }
}
/* サブページ */
.recruit_work_sub_introduction {
  gap: 60px;
  margin-bottom: 120px;
}

.recruit_work_sub_introduction > div {
  position: relative;
}

.recruit_work_sub_introduction img {
  border-radius: 20px;
}

.recruit_work_sub_introduction > div figure:first-child {
  width: 100%;
}

.recruit_work_sub_introduction > div figure:first-child img {
  width: 90%;
  aspect-ratio: 1.2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 220px;
}

.recruit_work_sub_introduction > div figure:last-child {
  width: 50%;
  position: absolute;
  left: 50%;
  bottom: -90px;
}

.recruit_work_sub_introduction > div figure:last-child img {
  aspect-ratio: 1.3/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

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

.recruit_work_sub_lead {
  font-size: 1.8rem !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 0 !important;
}

/* rayout */
@media screen and (max-width: 1600px) {
  .recruit_work_sub_introduction {
    margin-bottom: 150px;
  }
  .recruit_work_sub_introduction > div figure:last-child {
    bottom: -120px;
  }
}
@media screen and (max-width: 1100px) {
  .recruit_work_sub_introduction {
    display: block !important;
  }
  .recruit_work_sub_introduction > div:first-child {
    margin-bottom: 100px;
  }
  .recruit_work_sub_introduction > div figure:first-child img {
    width: 80%;
  }
  .recruit_work_sub_introduction > div figure:last-child {
    width: 45%;
    left: auto;
    right: 0;
    bottom: -90px;
  }
  .recruit_work_sub_introduction {
    margin-bottom: 60px;
  }
  .recruit_work_sub_lead {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruit_work_sub_lead {
    font-size: 1.6rem !important;
  }
}
.recruit_work_sub_skills {
  background: #E8F4F9;
  border-radius: 20px;
  padding: 35px;
}

.recruit_work_sub_skills_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  color: var(--color-primary);
  font-size: 2.8rem !important;
  font-weight: bold;
  line-height: 1 !important;
  position: relative;
}

.recruit_work_sub_skills_ttl::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--color-primary);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/*
.recruit_work_sub_skills_ttl::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #47a3ca;

  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}
*/
.recruit_work_sub_skills ul {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 25px;
}

.recruit_work_sub_skills ul li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 6px 20px 8px 43px;
  background: #fff;
  border-radius: 6px;
  position: relative;
}

.recruit_work_sub_skills ul li::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background: url("/wp_jtrc/wp-content/themes/jtrc/assets/img/icon_recruit_sub_check.svg") no-repeat;
  background-size: 23px;
  background-position: center;
  position: absolute;
  left: 10px;
  top: calc(50% - 14px);
}

@media screen and (max-width: 768px) {
  .recruit_work_sub_skills ul {
    display: block;
  }
  .recruit_work_sub_skills ul li {
    margin-top: 10px;
    line-height: 1.5;
  }
  .recruit_work_sub_skills ul li::before {
    top: 6px;
  }
}
.recruit_work_sub_schedule {
  margin-top: 60px;
  padding: 50px;
  background: #fafafa;
}

.recruit_work_sub_schedule_ttl {
  color: var(--color-primary);
  font-size: 3.6rem !important;
  font-weight: bold;
  text-align: center;
}

.recruit_work_sub_schedule_ttl code {
  display: inline-block;
  position: relative;
  padding-left: 65px;
  line-height: 1.5;
}

.recruit_work_sub_schedule_ttl code::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url("https://image.jtrc.co.jp/media/2025/09/icon_recruit_sub_time.svg") no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 4px;
  left: 0;
}

.recruit_work_sub_schedule_ttl span {
  display: inline-block;
}

.recruit_work_sub_schedule_list {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 30px 0 0;
  font-size: 1.6rem;
}

.recruit_work_sub_schedule_list::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-49%);
          transform: translateY(-49%);
  left: calc(50% - 1px);
  height: calc(100% - 130px);
  width: 2px;
  background: #ccc;
}

.recruit_work_sub_schedule_list li {
  position: relative;
  margin: 2em 0;
  width: calc(50% + 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: -30px;
}

.recruit_work_sub_schedule_list li:first-child {
  margin-top: 0;
}

.recruit_work_sub_schedule_list li:last-child {
  margin-bottom: 0;
}

.recruit_work_sub_schedule_list li::before {
  content: "";
  width: 150px;
  height: 2px;
  background: #ccc;
  position: absolute;
  right: 0;
}

.recruit_work_sub_schedule_list li time {
  width: 100px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 12px;
  background: var(--color-primary);
  border: 5px solid #fafafa;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

/* イベントを左右交互に配置 */
.recruit_work_sub_schedule_list li:nth-child(odd) {
  margin-right: auto;
  text-align: right;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.recruit_work_sub_schedule_list li:nth-child(odd) {
  margin-right: auto;
  text-align: right;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.recruit_work_sub_schedule_list li:nth-child(even) {
  margin-left: auto;
  text-align: left;
}

.recruit_work_sub_schedule_list li:nth-child(even)::before {
  left: 0;
  right: auto;
}

/* イベントボックス */
.timeline_wrap {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  font-size: 2.2rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
}

.timeline_wrap span {
  display: block;
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.timeline_wrap code {
  display: inline-block;
}

@media screen and (max-width: 1500px) {
  .timeline_wrap {
    font-size: 1.8rem;
  }
  .timeline_wrap span {
    font-size: 2.2rem;
  }
  .recruit_work_sub_schedule_list li time {
    padding: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .recruit_work_sub_schedule_ttl {
    font-size: 3rem !important;
    line-height: 1.4 !important;
    margin-bottom: 30px;
  }
  .recruit_work_sub_schedule_ttl code {
    position: relative;
    padding-left: 52px;
  }
  .recruit_work_sub_schedule_ttl code::after {
    content: "";
    display: block;
    width: 42px;
    height: 42px;
  }
  .recruit_work_sub_schedule_list::before {
    display: none;
  }
  .recruit_work_sub_schedule_list li {
    width: 100%;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .recruit_work_sub_schedule_list li::before {
    display: none;
  }
  .recruit_work_sub_schedule_list li:nth-child(odd) {
    margin-right: 0;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .recruit_work_sub_schedule_list li:nth-child(even) {
    margin-left: 0;
  }
  .recruit_work_sub_schedule_list li::before {
    left: 0;
    right: auto;
  }
  .timeline_wrap {
    padding: 0;
  }
  .recruit_work_sub_schedule_list li time {
    margin-top: -10px;
  }
}
@media screen and (max-width: 864px) {
  .recruit_work_sub_schedule_ttl code {
    display: block;
    position: relative;
    padding-left: 0px;
    padding-top: 52px;
  }
  .recruit_work_sub_schedule_ttl code::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .recruit_work_sub_schedule {
    padding: 50px 25px;
  }
  .recruit_work_sub_schedule_list li time {
    padding: 10px;
    width: 100px;
    text-align: center;
    font-size: 1.8rem;
  }
  .timeline_wrap {
    padding: 0;
    font-size: 1.6rem;
  }
  .timeline_wrap span {
    font-size: 2rem;
  }
}
/* その他の職種 */
.recruit_work_sub_otherlink {
  margin-top: 60px;
}

.recruit_work_sub_otherlink h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.recruit_work_sub_otherlink figure {
  overflow: hidden;
  border-radius: 10px;
}

.recruit_work_sub_otherlink figure img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recruit_work_sub_otherlink > div > div > div:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.recruit_work_sub_otherlink > div > div > div.current:hover figure img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.current img {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}

.recruit_work_sub_otherlink p {
  margin-top: 0 !important;
  position: relative;
  padding: 5px 15px 5px 0;
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.recruit_work_sub_otherlink p::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recruit_work_sub_otherlink > div > div > div:hover p::after {
  right: 5px;
}

.recruit_work_sub_otherlink > div > div > div.current:hover p::after {
  right: 10px;
}

@media screen and (max-width: 1400px) {
  .recruit_work_sub_otherlink > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 40px 2%;
  }
  .recruit_work_sub_otherlink > div > div > div {
    width: 32%;
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
    -webkit-box-flex: inherit !important;
        -ms-flex-positive: inherit !important;
            flex-grow: inherit !important;
  }
}
@media screen and (max-width: 768px) {
  .recruit_work_sub_otherlink > div > div {
    gap: 40px 4%;
  }
  .recruit_work_sub_otherlink > div > .wp-block-columns:not(.is-not-stacked-on-mobile) > div.wp-block-column {
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
    width: 48%;
  }
}
.sc_overseas {
  background: #f2f3fa;
}

.overseas_ttl {
  color: #20276c;
  font-size: 2.8rem !important;
  font-weight: bold !important;
  text-align: center;
  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 25px;
  margin-bottom: 20px;
}

.overseas_ttl::before, .overseas_ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #20276c;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.overseas_ttl_att {
  text-align: right;
  font-size: 1.6rem !important;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .overseas_ttl_att {
    text-align: left;
  }
}

.sc_overseas .recruit_work_sub_schedule_list li time {
  background: #20276c;
  border: 5px solid #f2f3fa;
}

.sc_overseas .timeline_wrap span {
  color: #20276c;
}

.sc_overseas .timeline_wrap {
  background: #f2f3fa;
}

.recruit_work_sub_otherlink a {
  text-decoration: none;
}

/* ============================================
  働く環境を知る
============================================  */
.p-datalist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-datalist {
    gap: 10px;
    margin-top: 20px;
  }
}
.p-datalist ._item {
  width: calc(50% - 20px);
  background-color: #E8F4F9;
  border-radius: 30px;
  padding: 30px;
}
@media only screen and (max-width: 1000px) {
  .p-datalist ._item {
    width: 100%;
    padding: 15px;
  }
}
.p-datalist ._item ._title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-datalist ._item ._title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
.p-datalist ._item ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-datalist ._item ._contents ._numberwrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 210px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}
@media only screen and (max-width: 1000px) {
  .p-datalist ._item ._contents ._numberwrap {
    width: calc(50% - 5px);
    min-width: 140px;
  }
}
.p-datalist ._item ._contents ._numberwrap ._number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: dotted 2px var(--color-primary);
}
.p-datalist ._item ._contents ._numberwrap ._number:nth-child(2) {
  border-bottom: 0;
  padding-bottom: 0;
}
.p-datalist ._item ._contents ._numberwrap ._number dt {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  height: 18px;
  border-top: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-datalist ._item ._contents ._numberwrap ._number dt {
    font-size: 1.3rem;
  }
}
.p-datalist ._item ._contents ._numberwrap ._number dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  border-top: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-primary);
  font-size: 7rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-datalist ._item ._contents ._numberwrap ._number dd {
    font-size: 4rem;
  }
}
.p-datalist ._item ._contents ._numberwrap ._number dd ._small {
  color: var(--color-base);
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-datalist ._item ._contents ._numberwrap ._number dd ._small {
    font-size: 1.3rem;
  }
}
.p-datalist ._item ._contents ._numberwrap.--small dd {
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-datalist ._item ._contents ._numberwrap.--small dd {
    font-size: 3rem;
  }
}
.p-datalist ._item ._contents ._illust {
  width: calc(100% - 10px);
  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: 13vw;
}
@media only screen and (max-width: 1000px) {
  .p-datalist ._item ._contents ._illust {
    width: calc(50% - 5px);
    height: 28vw;
  }
}
.p-datalist ._item ._contents ._illust img {
  max-height: 100%;
}

.doughnut canvas {
  width: 250px;
  height: 250px;
}

.p-benefitslist {
  margin-top: 60px;
}
.p-benefitslist > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-benefitslist > div {
    gap: 10px;
  }
}
.p-benefitslist ._item {
  width: calc(50% - 20px);
  padding: 35px 50px;
  border-radius: 30px;
  background-color: #fae1da;
  gap: 30px !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
@media only screen and (max-width: 1000px) {
  .p-benefitslist ._item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-benefitslist ._item {
    padding: 18px 24px;
    border-radius: 15px;
    gap: 15px !important;
  }
}
.p-benefitslist ._item ._icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 130px;
  height: 130px;
  max-width: 130px;
  border-radius: 50%;
  background-color: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-benefitslist ._item ._icon {
    width: 75px;
    height: 75px;
    max-width: 75px;
    padding: 15px;
    margin: 0;
  }
}
.p-benefitslist ._item h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}
.p-benefitslist ._item p {
  margin-top: 0;
}
.p-benefitslist .wp-block-columns {
  margin-bottom: 0;
}

/* ============================================
  よくある質問
============================================  */
.p-faqlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-faqlist {
    margin-top: 30px;
  }
}
.p-faqlist ._item {
  border-radius: 30px;
  overflow: hidden;
  background-color: #E8F4F9;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item {
    border-radius: 5px;
    padding: 15px;
  }
}
.p-faqlist ._item ._question {
  position: relative;
  color: var(--color-accent);
  padding-left: 50px;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._question {
    font-size: 1.3rem;
    padding-left: 30px;
    gap: 10px;
  }
}
.p-faqlist ._item ._question ._titlearea ._icon {
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  color: #fff;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._question ._titlearea ._icon {
    width: 24px;
    height: 24px;
    font-size: 1.5rem;
    top: -3px;
  }
}
.p-faqlist ._item ._question ._status {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._question ._status {
    width: 15px;
    height: 15px;
  }
}
.p-faqlist ._item ._question ._status::before, .p-faqlist ._item ._question ._status::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  right: 0;
  top: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._question ._status::before, .p-faqlist ._item ._question ._status::after {
    width: 15px;
    right: 0;
    top: 8px;
  }
}
.p-faqlist ._item ._question ._status::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-faqlist ._item ._question.is-open ._status::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-faqlist ._item ._answer {
  display: none;
  position: relative;
  color: var(--color-base);
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  padding: 20px 20px 20px 60px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 25px;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._answer {
    margin-left: 30px;
    padding: 15px 15px 15px 40px;
    font-size: 1.3rem;
    margin-top: 15px;
  }
}
.p-faqlist ._item ._answer ._icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  background-color: #E8F4F9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .p-faqlist ._item ._answer ._icon {
    font-size: 2rem;
    left: 10px;
    top: 12px;
    width: 24px;
    height: 24px;
    font-size: 1.5rem;
  }
}
.p-faqlist ._item ._answer ._contents {
  word-break: break-all;
}

/* ============================================
  募集要項
============================================  */
.p-recruitment {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruitment {
    margin-top: 40px;
  }
}
.p-recruitment ._list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruitment ._list {
    margin-top: 30px;
  }
}
.p-recruitment ._button {
  max-width: 360px;
  margin: 40px auto 0;
}

.recruitment-title-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .recruitment-title-list {
    gap: 10px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.recruitment-title-list li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
}
@media screen and (max-width: 767px) {
  .recruitment-title-list li {
    width: calc(50% - 5px);
    min-width: auto;
  }
}
.recruitment-title-list li a {
  display: block;
  color: #333;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  text-decoration: none;
  padding: 15px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #daebf5;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruitment-title-list li a {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}
.recruitment-title-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitment-title-list li a:hover::after {
  opacity: 1;
}
.recruitment-title-list li.active a {
  color: var(--color-primary);
}
.recruitment-title-list li.active a::after {
  opacity: 1;
}

.recruitment-content {
  display: none;
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .recruitment-content {
    margin: 40px 0;
  }
}

/* ============================================
  エントリーフォーム
============================================  */
.p-contact {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 30px;
  }
}
.p-contact > ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 0;
}
.p-contact > ._list > ._title {
  width: 32rem;
  padding-bottom: 2rem;
  padding-top: 2.7rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 1000px) {
  .p-contact > ._list > ._title {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title {
    padding-bottom: 0.5rem;
    padding-top: 1rem;
    padding-right: 0;
  }
}
.p-contact > ._list > ._title > p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title > p {
    font-size: 1.3rem;
  }
}
.p-contact > ._list > ._title .hissu {
  color: #f00;
}
.p-contact > ._list ._input {
  width: calc(100% - 35rem);
  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 only screen and (max-width: 1000px) {
  .p-contact > ._list ._input {
    width: 100%;
    border-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input {
    padding-bottom: 1em;
  }
}
.p-contact > ._list ._input.select-wrap {
  position: relative;
}
.p-contact > ._list ._input.select-wrap::after {
  content: "";
  position: absolute;
  left: 31rem;
  top: 2.3rem;
  width: 0.9rem;
  height: 0.6rem;
  background-image: url(../img/icon_select.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input.select-wrap::after {
    right: 2rem;
  }
}
.p-contact > ._list ._input input[type=text],
.p-contact > ._list ._input input[type=tel],
.p-contact > ._list ._input input[type=email],
.p-contact > ._list ._input input[type=number],
.p-contact > ._list ._input textarea,
.p-contact > ._list ._input select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 5rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input input[type=text],
  .p-contact > ._list ._input input[type=tel],
  .p-contact > ._list ._input input[type=email],
  .p-contact > ._list ._input input[type=number],
  .p-contact > ._list ._input textarea,
  .p-contact > ._list ._input select {
    font-size: 1.3rem;
    height: 4rem;
  }
}
.p-contact > ._list ._input input[type=text].hissuColor,
.p-contact > ._list ._input input[type=tel].hissuColor,
.p-contact > ._list ._input input[type=email].hissuColor,
.p-contact > ._list ._input input[type=number].hissuColor,
.p-contact > ._list ._input textarea.hissuColor,
.p-contact > ._list ._input select.hissuColor {
  background-color: #dbeaf6;
}
.p-contact > ._list ._input textarea {
  height: 16rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-contact > ._list ._input select {
  color: #333;
  max-width: 34rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input select {
    max-width: auto;
  }
}
.p-contact > ._list ._input select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-contact > ._list ._input ._postal-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 900px) {
  .p-contact > ._list ._input ._postal-code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact > ._list ._input ._postal-code ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(1) {
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(2) {
  margin-top: 1.2rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(3) {
  width: 8rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8rem;
}
.p-contact ._radiotitle {
  padding-top: 2rem !important;
}
@media screen and (max-width: 767px) {
  .p-contact ._radiotitle {
    padding-top: 1rem !important;
  }
}
.p-contact ._radio input[type=radio] {
  display: none;
}
.p-contact ._radio .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.p-contact ._radio .wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-contact ._radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-contact ._radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #fff;
  border: 10px solid var(--color-primary);
  width: 20px;
  height: 20px;
}
.p-contact ._recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.4rem auto 0;
}
.p-contact ._submit {
  margin-top: 3.4rem;
}
.p-contact ._submit ._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: 26rem;
  height: 6rem;
  background-color: var(--color-primary);
  border-radius: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact ._submit ._button {
    font-size: 1.6rem;
    height: 4rem;
    max-width: 20rem;
  }
}
@media (any-hover: hover) {
  .p-contact ._submit ._button:hover {
    opacity: 0.6;
  }
}
.p-contact ._submit ._button input[type=submit] {
  display: none;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-spinner {
  display: none !important;
}

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

.grecaptcha-badge {
  bottom: 85px !important;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 115px !important;
  }
}

/* ============================================
  お知らせ一覧
============================================  */
.p-infolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-infolist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.p-infolist ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 140px;
  color: #676767;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
  padding-right: 20px;
  border-bottom: 2px solid #E0E3EF;
  border-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-infolist ._date {
    width: 100%;
    font-size: 1.3rem;
    border-bottom: 0;
  }
}
.p-infolist ._date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: calc(1em + 13px);
}
@media screen and (max-width: 767px) {
  .p-infolist ._date::before {
    top: calc(1em + 4px);
  }
}
.p-infolist ._text {
  width: calc(100% - 140px);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  padding-right: 45px;
  border-bottom: 2px solid #E0E3EF;
  border-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-infolist ._text {
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 15px;
  }
}
.p-infolist ._text a {
  text-decoration: none;
}
.p-infolist ._text a::after {
  content: "";
  position: absolute;
  right: 2px;
  top: calc(50% - 11px);
  display: block;
  width: 23px;
  height: 23px;
  background-color: var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-mask-image: url("../img/icon-arrow2.svg");
          mask-image: url("../img/icon-arrow2.svg");
  -webkit-mask-size: 9px 9px;
          mask-size: 9px 9px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-infolist ._text a::after {
    top: calc(50% - 19px);
  }
}
.p-infolist ._text a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.u-cap {
  font-size: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 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: var(--color-primary);
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 20px;
  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);
}

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

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

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

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

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

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

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}
/* ============================================
  swiper
============================================  */
/* ============================================
  共通
============================================  */
.w-editorarea {
  max-width: 1500px;
  width: 75%;
  margin: 0 auto;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    padding-bottom: 50px;
  }
}
.w-editorarea hr {
  margin: 80px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.w-editorarea p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.875;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .w-editorarea p {
    font-size: 1.3rem;
  }
}
.w-editorarea p:first-child {
  margin-top: 0;
}
.w-editorarea .wp-block-button__link {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  text-align: left;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
  flex: 1;
  width: 360px !important;
  border-radius: 9999px;
  background-color: var(--color-primary);
  border: solid 2px var(--color-primary);
  padding: 15px 40px 15px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-block-button__link {
    font-size: 1.3rem;
    text-align: center;
    padding: 10px 40px;
    width: 260px !important;
    margin-top: 20px;
  }
}
.w-editorarea .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  -webkit-mask-image: url("../img/icon-arrow2.svg");
          mask-image: url("../img/icon-arrow2.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.w-editorarea .wp-block-button__link:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.w-editorarea .wp-block-button__link:hover::after {
  background-color: var(--color-primary);
}
.w-editorarea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: dashed 1px #ccc;
}
.w-editorarea dl dt {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  width: 185px;
  padding: 20px 0;
  border-top: dashed 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dt {
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 0;
  }
}
.w-editorarea dl dd {
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.875;
  width: calc(100% - 185px);
  padding: 20px 0;
  border-top: dashed 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dd {
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    border-top: 0;
    padding-top: 0;
  }
}

/* ============================================
  固定ページ
============================================  */
.page .w-editorarea h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 20px;
  font-size: 3.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-bottom: 40px;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .page .w-editorarea h2 {
    font-size: 2rem;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.page .w-editorarea h2:first-child {
  margin-top: 0;
}
.page .w-editorarea h2::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  content: "";
  height: 1px;
  background-color: var(--color-primary);
}

/* ============================================
  記事
============================================  */
.single .w-editorarea h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.single .w-editorarea ._date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea ._date-area {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.single .w-editorarea ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea ._date-area ._date {
    font-size: 1.3rem;
  }
}
.single .w-editorarea h2 {
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-top: 80px;
  padding: 10px 20px;
  background-color: #F2F2F2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.single .w-editorarea ._date-area + h2 {
  margin-top: 0 !important;
}
.single .w-editorarea h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-top: 40px;
  padding-left: 15px;
  border-left: solid 4px var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h3 {
    font-size: 1.6rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.single .w-editorarea .wp-block-image {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns .wp-block-image {
  margin: 0;
}
.single .w-editorarea ul, .single .w-editorarea ol {
  padding-left: 1.5em;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 2;
  margin-top: 35px;
}
.single .w-editorarea ul > li {
  list-style: disc;
}
.single .w-editorarea ol > li {
  list-style: decimal;
}/*# sourceMappingURL=style.css.map */